body {
  font-family: 'Inter', sans-serif;
  color: #111;
  overflow-x: hidden;
}

.logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  display: block;
}

.fw-800 {
  font-weight: 800;
}

/* Bold Navigation */
.navbar-nav .nav-link {
  font-weight: 700;
  color: #111 !important;
  margin: 0 10px;
  position: relative;
  padding: 10px 0;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 0;
  background-color: #111;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Swiper Hero Layout */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 80px 0;
}

/* Slide background colors */
.bg-light-blue {
  background-color: #eef2f7;
}

.bg-soft-peach {
  background-color: #faf3f0;
}

.hero-img {
  max-height: 550px;
  filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.swiper-slide-active .hero-img {
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Video Button */
.video-play-btn {
  background: none;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

.play-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.video-play-btn:hover .play-icon {
  background-color: #111;
  color: #fff;
  border-color: #111;
  transform: scale(1.1);
}

/* Swiper Dots */
.swiper-pagination-bullet-active {
  background: #111 !important;
}

/* Modal Close Button */
.btn-close-white {
  filter: invert(1);
  opacity: 1;
}

/* Responsive */
@media (max-width: 791px) {
  .hero-section {
    text-align: center;
  }

  .hero-section .row {
    flex-direction: column-reverse;
  }

  .hero-section .text-start {
    text-align: center !important;
  }

  .hero-section .justify-content-start {
    justify-content: center !important;
  }

  .hero-img {
    max-height: 250px;
    margin-bottom: 20px;
  }

  /* --- নতুন যোগ করা অংশ --- */

  /* মেইন হেডিং ছোট করার জন্য */
  .hero-section h1 {
    font-size: 28px !important;
    /* আপনার পছন্দমতো সাইজ দিন */
  }

  /* প্যারাগ্রাফ ছোট করার জন্য */
  .hero-section p {
    font-size: 14px !important;
  }

  /* বাটন ছোট এবং ডানে-বামে প্যাডিং কমানোর জন্য */
  .hero-section .btn {
    font-size: 14px !important;
    /* টেক্সট ছোট হবে */
    padding: 8px 20px !important;
    /* বাটন লম্বায় ছোট হবে */
  }
}


/*==============================feature============================================================================*/

/* Typography & Container */
.fw-800 {
  font-weight: 800;
}

.mega-features {
  background: #ffffff;
}

/* Big Card Styling */
.mega-card {
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  padding: 50px 30px;
  border-radius: 40px;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Large Icon Box */
.mega-icon-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.2rem;
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}

/* Extra Info List */
.extra-info {
  text-align: left;
  display: inline-block;
  font-size: 0.85rem;
  color: #111;
  font-weight: 600;
}

.extra-info li {
  margin-bottom: 5px;
}

.extra-info i {
  color: #000;
  margin-right: 8px;
  font-size: 0.9rem;
}

/* Hover Effects */
.mega-card:hover {
  background: #000;
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.mega-card:hover h3,
.mega-card:hover .extra-info,
.mega-card:hover .extra-info i {
  color: #fff;
}

.mega-card:hover .text-muted {
  color: #999 !important;
}

.mega-card:hover .mega-icon-box {
  background: #222;
  color: #fff;
  transform: rotateY(180deg);
}

/* Reveal Animation on Scroll/Load */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .mega-card {
    padding: 40px 20px;
  }
}

/*================================productcards====================================*/
/* Card Core Styling */
.minimal-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.card-image-box {
  background: #f1f3f5;
  /* Light grey background for image box */
  border-radius: 22px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image-box img {
  max-height: 75%;
  transition: transform 0.6s ease;
}

.card-body-content {
  padding: 24px 12px 12px;
}

.brand-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.92rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
}

.price-val {
  font-weight: 900;
  font-size: 1.2rem;
  color: #000;
}

.color-val {
  font-size: 11px;
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 700;
  color: #444;
  border: 1px solid #eee;
}

/* Hover State */
.minimal-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.minimal-card:hover .card-image-box img {
  transform: scale(1.1) rotate(-3deg);
}

.fw-800 {
  font-weight: 800;
}

/*==========================immesive===========================================================================================================*/
/* Immersive Section Custom Styles */
.bg-black {
  background-color: #000000 !important;
}

.rounded-5 {
  border-radius: 40px !important;
  /* ইমেজের মতো বড় রাউন্ডেড কর্নার */
}

.immersive-section .display-4 {
  line-height: 1.1;
  letter-spacing: -1px;
}

.immersive-section .text-secondary {
  color: #a0a0a0 !important;
}

/* Image container styling */
.immersive-img-box {
  height: 500px;
  /* ডেক্সটপ হাইট */
  width: 100%;
  overflow: hidden;
}

.immersive-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ইমেজটি যেন পুরো বক্স জুড়ে থাকে */
  object-position: center;
  transition: transform 0.5s ease;
}

.immersive-section:hover .immersive-img-box img {
  transform: scale(1.05);
  /* হোভার করলে হালকা জুম এফেক্ট */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .rounded-5 {
    border-radius: 25px !important;
    margin: 0 10px;
  }

  .immersive-img-box {
    height: 350px;
    /* মোবাইলে হাইট কিছুটা কম হবে */
  }

  .immersive-section .display-4 {
    font-size: 2.2rem;
  }
}

/*=============================castummrimage================================================================================================*/
/* Gallery Core Styling */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  /* আপনার ডিজাইন অনুযায়ী বড় রাউন্ডেড */
  background: #f8f9fa;
  transition: all 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Specific Heights */
.large-box {
  height: 520px;
  /* বড় ইমেজ */
}

.small-box {
  height: 250px;
  /* ছোট ইমেজ */
}

.medium-box {
  height: 254px;
  /* দ্বিতীয় বড় ইমেজ */
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Overlay Badge Style */
.gallery-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.gallery-overlay .badge {
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Fix */
@media (max-width: 768px) {

  .large-box,
  .small-box,
  .medium-box {
    height: 300px;
    /* মোবাইলে সব ইমেজ সমান সাইজ হয়ে যাবে সুন্দর দেখানোর জন্য */
  }
}

/*==========================emailandfotter================================================================================================*/

/* Newsletter Section */
.subscribe-box {
  max-width: 450px;
}

.subscribe-box .form-control {
  height: 50px;
  border: 1px solid #ddd;
}

.subscribe-box .form-control:focus {
  box-shadow: none;
  border-color: #000;
}

/* Footer Section */
.footer-section {
  border-top: 1px solid #f1f1f1;
}

.social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #333;
  transition: 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: #000;
  padding-left: 5px;
}

.footer-subscribe .form-control {
  background-color: #f9f9f9;
  border-color: #eee;
}

.footer-subscribe .btn {
  border-color: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .subscribe-box {
    max-width: 100%;
  }
}

/*==========================about==========================================================================about=============================*/
/* Typography */
.fw-800 {
  font-weight: 800;
}

/* Image Grid Styling */
.about-visual-grid {
  position: relative;
  padding-right: 20px;
}

.img-box {
  overflow: hidden;
  border-radius: 24px;
  /* Premium Rounded Corner */
  background: #eee;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tall-img {
  height: 450px;
}

.small-img {
  height: 215px;
}

.about-visual-grid:hover img {
  transform: scale(1.05);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: #000;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border: 5px solid #fff;
}

.floating-badge .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.floating-badge .txt {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
}

/* Icons */
.about-text-content i {
  color: #000;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .tall-img {
    height: 350px;
  }

  .small-img {
    height: 165px;
  }

  .about-visual-grid {
    margin-bottom: 50px;
  }
}

/*==============================tastionial==================================================================================================*/
.testimonial-section {
  padding: 80px 0;
  background-color: #f4f4f4;
  /* Light gray background */
}

.testimonial-card {
  background: #000000;
  /* Dark gray/Charcoal card */
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  /* White text for contrast */
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
}



.user-img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  /* Gray border for image */
}

.user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  /* Subtle gray effect on images */
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  /* Light gray text for paragraph */
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Gray Pagination Dots */
.swiper-pagination-bullet {
  background: #929292 !important;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
  width: 20px;
  border-radius: 10px;
}