:root {
      --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
      --home-soft: cubic-bezier(0.16, 1, 0.3, 1);
      --home-lift: 0 24px 54px rgba(15, 27, 61, 0.14);
    }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    .home-page {
      overflow-x: hidden;
    }

    .reveal {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
      filter: blur(6px);
      transition:
        opacity 0.8s var(--home-ease),
        transform 0.8s var(--home-ease),
        filter 0.8s var(--home-ease);
      will-change: transform, opacity;
    }

    .reveal.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }

    .reveal-left {
      transform: translate3d(-42px, 24px, 0);
    }

    .reveal-right {
      transform: translate3d(42px, 24px, 0);
    }

    .reveal-zoom {
      transform: translate3d(0, 24px, 0) scale(0.95);
    }

    .reveal.d1 { transition-delay: 0.08s; }
    .reveal.d2 { transition-delay: 0.16s; }
    .reveal.d3 { transition-delay: 0.24s; }
    .reveal.d4 { transition-delay: 0.32s; }
    .reveal.d5 { transition-delay: 0.40s; }
     
       /* ═══ HERO ═══ */
    .hero {
      position: relative;
      min-height: calc(100vh - 56px);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
 
    /* Layer 1 – real spice photo */
    .hero-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* very important */
      z-index: 0;
    }

 
    /* Layer 2 – directional overlay: near-black left → semi-transparent right */
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        98deg,
        rgba(5,8,7,0.97)  0%,
        rgba(5,8,7,0.92)  30%,
        rgba(5,8,7,0.72)  52%,
        rgba(5,8,7,0.40)  70%,
        rgba(5,8,7,0.18) 100%
      );
      /* z-index: 1; */
    }
 
    /* Layer 3 – bottom fade */
    .hero-bg-bottom {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      /* background: linear-gradient(to top, rgba(5,8,7,0.98) 0%, transparent 100%); */
      z-index: 2;
    }
 
    /* Watermark "tock" */
    .hero-watermark {
      position: absolute;
      left: 40%;
      top: 46%;
      transform: translateY(-50%);
      font-family: 'Merriweather', serif;
      font-size: clamp(5rem, 13vw, 10rem);
      font-weight: 900;
      color: rgba(255,255,255,0.06);
      letter-spacing: -0.03em;
      pointer-events: none;
      user-select: none;
      z-index: 3;
      white-space: nowrap;
    }
 
    /* ── Outer wrapper ── */
    .hero-wrap {
      position: relative;
      z-index: 4;
      flex: 1;
      width: 100%;
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      flex-direction: column;
    }
 
    /* ── Content row ── */
    .hero-main {
      flex: 1;
      display: flex;
      align-items: center;
      padding-top: 0;
      padding-bottom: 5px;
      position: relative;
    }
 
    /* ── Left copy — 55% width ── */
    .hero-copy { width: 100%; max-width: 800px; margin-top: -40px;}
 
    .hero-copy h1 {
      font-family:sans-serif;
      font-size:40px;
      font-weight: 900;
      color: #fff;
      line-height: 1.13;
      letter-spacing: -0.018em;
      margin-bottom: 26px;
      opacity: 0;
      animation: fadeLeft 1s ease forwards;
    }
 
    .hero-lead {
      font-size:16px;
      color: rgba(255,255,255,0.72);
      line-height: 1.80;
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeLeft 1s ease forwards;
  animation-delay: 0.4s;
    }
    .hero-lead strong { color: var(--teal); font-weight: 600; }
 
    .hero-body {
      font-size: 16px;
      color: rgba(255,255,255,0.52);
      line-height: 1.85;
      margin-bottom: 20px;
      opacity: 0;
     animation: fadeLeft 1s ease forwards;
  animation-delay: 0.6s;
    }
 
    /* Buttons */
    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      opacity: 0;
     animation: fadeLeft 1s ease forwards;
  animation-delay: 0.8s;
    }
 
    .btn-book {
      padding: 10px 22px;
       background:#ffffff;
      color:#0f1b3d;
      font-size: 0.83rem;
      font-weight: 700;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-book:hover {   background: #fff;        /* white background */
  color: #0f1b3d;          /* blue text */
  transform: translateY(-2px);
  border: 1px solid #0f1b3d; /* optional: keeps button visible */ }
 
    .btn-partner {
      padding: 9px 22px;
      background: #ffffff;
      color: #0f1b3d;
      font-size: 0.83rem;
      font-weight: 600;
      border-radius: 6px;
      border: #0f1b3d;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-partner:hover {
       background: #fff;        /* white background */
  color: #0f1b3d;          /* blue text */
  transform: translateY(-2px);
  border: 1px solid #0f1b3d; /* optional: keeps button visible */
    }
 
    /* ── STAR badge — absolute far right, vertically centred ── */
    .hero-badge {
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: zoomIn 0.8s 0.5s ease forwards;
    }
 
    .badge-img {
      width: 160px;
      height: 160px;
      object-fit: contain;
      /* subtle drop shadow so badge lifts off the bg */
      filter: drop-shadow(0 8px 32px rgba(0,0,0,0.65))
              drop-shadow(0 0 18px rgba(61,214,200,0.18));
      animation: float 4s ease-in-out infinite;
    }
 
    .badge-caption {
      font-size: 0.78rem;
      color: #D4AF37FF;
      font-weight: 500;
      letter-spacing: 0.01em;
      white-space: nowrap;
      text-align: center;
      /* subtle text shadow so it's always readable */
      text-shadow: 0 1px 8px rgba(0,0,0,0.8);
      animation: float 4s ease-in-out infinite;
    }
    .badge-caption .sep { color: rgba(255,255,255,0.35); margin: 0 4px; }
 
    /* ═══ STATS BAR ═══ */
    .stats-wrap {
      position: relative;
      z-index: 4;
      width: 100%;
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 48px;
    }
 
    .stats-row {
      border-top: 1px solid rgba(255,255,255,0.10);
      padding: 10px 0 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
 
    .stat {
      flex: 1 1 92px;
      min-width: 0;
      padding: 0 14px 0 0;
      border-right: 1px solid rgba(255,255,255,0.10);
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
    }
    .stat:first-child { padding-left: 0; }
    .stat:last-of-type { border-right: none; padding-right: 0; }
 
    .stat-num {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.8rem, 3.2vw, 2.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
      display: flex;
      align-items: baseline;
    }
    .stat-num .plus { color: #3dd6c8 !important; margin-left: 2px; }
 
    .stat-label {
      font-size: 0.58rem;
      font-weight: 600;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
 
    /* Testimonial chip */
    .testimonial {
      flex-shrink: 0;
      margin-left: auto;
      transform: translateX(18px);
      padding: 12px 15px;
      background: rgba(15,22,20,0.80);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      width: 210px;
      opacity: 0;
      animation: fadeUpRight 0.6s 0.48s ease forwards;
      backdrop-filter: blur(14px);
    }
 
    .t-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      overflow: hidden; /* IMPORTANT */
      flex-shrink: 0;
      border: 1.5px solid rgba(61,214,200,0.3);
    }
    .t-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* keeps it nicely cropped */
    }
    .t-quote {
      font-size: 0.68rem;
      font-style: italic;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      line-height: 1.45;
      margin-bottom: 4px;
    }
    .t-author {
      font-size: 0.58rem;
      color: rgba(255,255,255,0.38);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }
 
    /* ═══ KEYFRAMES ═══ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUpRight {
      from { opacity: 0; transform: translate(18px, 18px); }
      to   { opacity: 1; transform: translateX(18px); }
    }
    @keyframes zoomIn {
      from { opacity: 0; transform: translateY(-50%) scale(0.78); }
      to   { opacity: 1; transform: translateY(-50%) scale(1); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }
 
    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 960px) {
      .hero-main { flex-direction: column; align-items: flex-start; padding-top: 36px; gap: 0; }
      .hero-copy  { width: 100%; max-width: 100%; margin-top: -16px; }
      .hero-watermark { display: none; }
 
      .hero-badge {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 18px;
        margin-top: 36px;
        animation-name: fadeUp;
      }
      .badge-img { width: 100px; height: 100px; animation: none; }
    }
 
    @media (max-width: 640px) {
      .hero-wrap, .stats-wrap { padding: 0 20px; }
      .stats-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
        row-gap: 24px;
        align-items: start;
      }
      .stat {
        flex: none;
        min-width: 0;
        padding: 0;
        border-right: none;
        min-height: 86px;
      }
      .stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
      }
      .stat:nth-child(odd)  { padding-right: 16px; border-right: 1px solid rgba(255,255,255,0.1); }
      .stat:nth-child(even) { padding-left: 0; }
      .stat:last-of-type    { border-right: none; }
      .stat-num { width: 100%; justify-content: flex-start; }
      .stat-label {
        white-space: normal;
        line-height: 1.4;
        max-width: 100%;
        margin: 0;
        min-height: 34px;
      }
      .testimonial {
        grid-column: 1 / -1;
        flex: none;
        width: 100%;
        margin-left: 0;
        transform: none;
        animation-name: fadeUp;
      }
      .badge-img { width: 80px; height: 80px; }
    }
    @keyframes fadeLeft {
      0% {
        opacity: 0;
        transform: translateX(-200px); /* stronger start from left */
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }
    /* ══════════════════════════════
       BRANDS SECTION
    ══════════════════════════════ */

.brands-section {
  padding: 10px 16px 14px;
  text-align: center;
  background: #fff;
}
.brand-container {
  width: min(100%, 1360px);
  margin: 0 auto;
  background: #F3FAF2;   /* light green */
  border-radius: 14px;
  padding: 12px 0 0;
  box-sizing: border-box;
  /* margin-top: -38px; */
}
/* .brand-container .section-title {
  margin-bottom: 14px;
} */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f1b3d;
  margin-bottom: 14px;
}

.section-title .teal {
  color: #0f1b3d;
  font-weight: 700;
}

/* Row */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* 👈 gap between images */
  flex-wrap: wrap;
}

/* Each badge */
.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 27, 61, 0.05);
  transition: transform 0.35s var(--home-soft), box-shadow 0.35s var(--home-soft);
}

/* Image size control */
.brand-badge img {
  max-height: 100px;   /* 👈 reduce size */
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: grayscale(0.12);
}

/* Hover (optional nice effect) */
.brand-badge:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: var(--home-lift);
}
.brand-badge:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.swiper {
    margin-top: -34px;}
@media (max-width: 767px) {

  .section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .brands-row {
    gap: 16px;
  }

  .brand-badge {
    padding: 8px 10px;
  }

  .brand-badge img {
    max-height: 28px; /* smaller on mobile */
  }
}
@media (max-width: 400px) {
  .brand-badge img {
    max-height: 24px;
  }

  .brands-row {
    gap: 12px;
  }
}
.brandSwiper {
  width: 100%;
  padding: 0 2px 0;
}

.brandSwiper .swiper-wrapper {
  margin-top: 2px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
/* Card wrapper */
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 190px;
  margin-top: -12px;
  transition: transform 0.35s var(--home-soft);
}

/* Logo container */
.brand-logo-box {
  width: 100%;
  min-height: 84px;
  /* background: #fff; */
  border-radius: 12px;
  padding: 10px 14px;
  /* box-shadow: 0 8px 24px rgba(15, 27, 61, 0.06); */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.brand-logo-box img {
  width: 100%;
  max-width: 120px;
  max-height: 72px;
  object-fit: contain;
}

/* Separate name box */
.brand-name-box {
  margin-top: 4px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0f1b3d;
  text-align: center;
  box-shadow: 0 4px 10px rgba(15, 27, 61, 0.04);
}

/* Hover effect */
.brand-card:hover {
  transform: translateY(-6px);
}

.brand-card:hover .brand-name-box {
  background: #0f1b3d;
  color: #fff;
}

@media (max-width: 991px) {
  .brand-container {
    padding: 10px 0 0;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .brand-container .section-title {
    margin-bottom: 8px;
  }

  .brand-card {
    max-width: 180px;
    margin-top: -8px;
  }

  .brandSwiper .swiper-wrapper {
    margin-top: -6px;
  }
}

@media (max-width: 767px) {
  .brands-section {
    padding: 10px 12px 14px;
  }

  .brand-container {
    padding: 8px 0 0;
    border-radius: 12px;
    margin-top: -24px;
  }

  .brands-bar {
    height: auto;
    min-height: 0;
    padding: 4px 10px 2px;
    gap: 8px;
    align-items: flex-start;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .brand-container .section-title {
    margin-bottom: 2px;
  }

  .brand-card {
    max-width: 100%;
    margin-top: -4px;
  }

  .brandSwiper .swiper-wrapper {
    margin-top: -4px;
  }

  .brand-logo-box {
    min-height: 64px;
    padding: 8px 8px;
  }

  .brand-logo-box img {
    max-width: 78px;
    max-height: 36px;
  }

  .brand-name-box {
    font-size: 11px;
    padding: 6px;
  }
}

@media (max-width: 420px) {
  .brands-section {
    padding: 8px 10px 12px;
  }

  .brand-container {
    padding: 6px 0 0;
  }

  .brands-bar {
    padding: 3px 8px 0;
    gap: 6px;
  }

  .brand-logo-box {
    min-height: 98px;
    padding: 6px 6px;
  }

  .brand-logo-box img {
    max-width: 68px;
    max-height: 50px;
  }
}
    /* ══════════════════════════════
       PRODUCTS SECTION
    ══════════════════════════════ */
    .section-divider { border:none; border-top:1px solid #f0f0f0; margin:0 32px; }
    .products-section { padding: 14px 0 56px; background: #fff; }
    .products-heading { text-align:center; margin-bottom:8px; }
    .products-heading h2 { font-size:36px; font-weight:700; color:#0f1b3d; margin-bottom:6px; }
    .products-heading p { font-size:16px; color:#999; max-width:500px; margin:0 auto 18px; line-height:1.6; }

    /* Filter tabs */
    .filter-tabs-shell {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      padding: 0 16px;
    }
    .filter-tabs-track {
      flex: 1;
      overflow: hidden;
    }
    .filter-tabs {
      display: flex; justify-content: center;
      gap: 6px; margin-bottom: 0; flex-wrap: wrap; padding: 0;
    }
    .filter-nav-btn {
      width: 38px;
      height: 38px;
      border: 1px solid #d8e3e1;
      border-radius: 50%;
      background: #fff;
      color: #0f1b3d;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: all .2s;
      flex-shrink: 0;
    }
    .filter-nav-btn:hover {
      background: #0f1b3d;
      color: #fff;
      border-color: #0f1b3d;
    }
    .filter-nav-btn:disabled {
      opacity: .35;
      cursor: not-allowed;
    }
    .filter-nav-btn:disabled:hover {
      background: #fff;
      color: #0f1b3d;
      border-color: #d8e3e1;
    }
    .filter-tab {
      padding: 5px 16px; border-radius: 20px;
      font-size: 11.5px; font-weight: 600;
      border: 1.5px solid #ddd; background: #fff; color: #0f1b3d;
      cursor: pointer; transition: all .2s; font-family: sans-serif;
      white-space: nowrap;
    }
    .filter-tab.active { background: #0f1b3d; color: #fff; border-color: #2bb5a0; }
    .filter-tab:hover:not(.active) { border-color: #2bb5a0; color: #2bb5a0; }

    /* Product cards */
    .product-card {
       padding: 0;
    
     }
      .product-card:hover {
    box-shadow: var(--home-lift);
    transform: translateY(-8px);
  }
       /* .cardp{
box-shadow: 0px 2px 4px #1C1A1714, 0px 0px 0px #171a1f00;
background: #FFFFFFFF;
border-radius: 14px;
border-width: 1px;
border-color: #F6F5F480;
border-style: solid;

       } */
.cardp {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #F6F5F480;
  background: #fff;
 box-shadow: 0px 2px 4px #1C1A1714, 0px 0px 0px #171a1f00;
 transition: transform 0.35s var(--home-soft), box-shadow 0.35s var(--home-soft);
}

    .product-img-wrap {
      width: 100%; height: 140px;
      background: #F3FAF2; 
      overflow: hidden;
      position: relative;
      margin-bottom: 10px;
      transition: transform 0.3s;
      border-radius: 10px;
    }
    .home-prod-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 12px;
      border-radius: 8px;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }
    .home-prod-img.hover-img {
      opacity: 0;
    }
    .product-card.has-hover-image:hover .home-prod-img.primary-img {
      opacity: 0;
    }
    .product-card.has-hover-image:hover .home-prod-img.hover-img {
      opacity: 1;
    }
    .product-card:hover .home-prod-img {
      transform: scale(1.07);
    }
    .product-name { font-size:13px; font-weight:700; color:#0f1b3d; margin-bottom:3px; }
    .product-desc { font-size:10.5px; color:#aaa; line-height:1.5; margin-bottom:8px; }
    .btn-view-cat {
      font-size:11px; color:#0f1b3d; font-weight:600;
      display:inline-flex; align-items:center; gap:4px;
      border:none; background:none; padding:0; cursor:pointer;
      font-family:sans-serif; transition:color .2s;
      text-decoration: none;
    }
    .btn-view-cat:hover { color:#23998a; }
    .btn-view-cat svg { width:12px; height:12px; fill:none; stroke:#2bb5a0; stroke-width:2.5; transition:stroke .2s; }
    .btn-view-cat:hover svg { stroke:#23998a; }
    .home-products-more {
      text-align: center;
      margin-top: 22px;
    }
    .home-see-more-btn {
      border: none;
      background: none;
      color: #0f1b3d;
      font-size: 12px;
      font-weight: 600;
      font-family:sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: gap .2s, color .2s;
    }
    .home-see-more-btn:hover {
      gap: 10px;
      color: #23998a;
    }
    .home-see-more-btn::after {
      content: '>';
      font-size: 1rem;
    }

    /* ══════════════════════════════
       RESPONSIVE — MOBILE
    ══════════════════════════════ */
    @media (max-width: 767px) {
      /* hide desktop nav items */
      .nav-links, .nav-right { display: none; }
      .hamburger { display: flex; }
      .topbar { padding: 0 20px; }

      /* Hero stacks vertically */
      .hero { height: auto; min-height: calc(100svh - 50px); }
      .hero-inner { padding: 40px 20px; }
      .hero-left { padding-right: 0; margin-bottom: 32px; }
      .hero-lead { display: none; }
      .hero-title { font-size: 24px; }
      .hero-desc { font-size: 12px; }
      .hero-right { align-items: flex-start; padding-left: 0; }
      .stats-row { justify-content: flex-start; gap: 30px; padding-right: 0; }
      .stat-number { font-size: 30px; }
      .testi-card { width: 100%; }

      /* Brands */
      .brands-section { padding: 18px 12px 24px; }

      /* Products */
      .filter-tabs-shell { gap: 8px; padding: 0 10px; }
      .filter-tabs-track { overflow: hidden; }
      .filter-tabs {
        gap: 5px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-behavior: smooth;
      }
      .filter-tabs::-webkit-scrollbar { display: none; }
      .filter-nav-btn {
        width: 34px;
        height: 34px;
        font-size: .95rem;
      }
      .filter-tab { font-size: 10.5px; padding: 4px 12px; }
      .product-img-wrap { height: 120px; }
      .product-name { font-size: 12px; }
    }

    @media (max-width: 400px) {
      .hero-title { font-size: 20px; }
      .btn-book, .btn-partner { font-size: 11px; padding: 8px 14px; }
    }

    @media (min-width: 768px) and (max-width: 991px) {
      .nav-contact-item { display: none; }
      .hero-title { font-size: 24px; }
      .stat-number { font-size: 32px; }
      .testi-card { width: 240px; }
    }


    

       /* ══════════════════════════════
       SECTION 4 — FEATURED WHOLESALE
    ══════════════════════════════ */
    .featured-section {
         padding: 20px 24px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background: #F3FAF2;   /* light green */
  border-radius: 14px;
    }
    .featured-toprow {
      display: flex;
      align-items: center;
      justify-content: center;   /* ✅ center horizontally */
      text-align: center;        /* ✅ center text inside */
      flex-direction: column;    /* ✅ stack items vertically */
      margin-bottom: 28px;
      gap: 16px;
    }
    .featured-left-head { flex: 1; min-width: 200px; }
    .featured-title-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }
    .featured-title {
      font-size: 36px;
      font-weight: 700;
      color: #0f1b3d;
    }
    .badge-high-margin {
      background: #c8ede3;
      color: #0f1b3d;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 4px;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }
    .prod-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.4px;
      padding: 5px 10px;
      border-radius: 999px;
      box-shadow: 0 8px 20px rgba(15, 27, 61, 0.14);
      white-space: nowrap;
    }
    .prod-badge-top-selling {
      background: #fff2d8;
      color: #9a6700;
    }
    .prod-badge-high-margin {
      background: #c8ede3;
      color: #0f1b3d;
    }
    .prod-badge-fast-moving {
      background: #ffe2e2;
      color: #b42318;
    }
    .featured-subtitle {
      font-size: 16px;
      color: #888;
      line-height: 1.65;
      max-width: 500px;
    }
    .btn-b2b {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      border: 1.5px solid #2bb5a0;
      color: #0f1b3d;
      font-size: 11.5px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 20px;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s, color .2s;
      font-family:sans-serif;
      flex-shrink: 0;
    }
    .btn-b2b svg { width: 13px; height: 13px; stroke: #2bb5a0; fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke .2s; }
    .btn-b2b:hover { background: #2bb5a0; color: #fff; }
    .btn-b2b:hover svg { stroke: #fff; }
    .prod-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.35s var(--home-soft), box-shadow 0.35s var(--home-soft);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .featuredSwiper {
      padding: 4px 2px 8px;
    }
    .featuredSwiper .swiper-slide {
      height: auto;
      display: flex;
      box-sizing: border-box;
    }
    .featuredSwiper .swiper-slide .prod-card {
      width: 100%;
    }
    .prod-img-wrap {
      width: 100%; height: 170px;
      background: #f0f4f3;
      overflow: hidden;
      position: relative;
      border-radius: 10px 10px 0 0;
    }
    .featured-prod-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 14px;
      transition: transform .35s ease, opacity .35s ease;
    }
    .featured-prod-img.hover-img {
      opacity: 0;
    }
    .prod-card.has-hover-image:hover .featured-prod-img.primary-img {
      opacity: 0;
    }
    .prod-card.has-hover-image:hover .featured-prod-img.hover-img {
      opacity: 1;
    }
    .prod-card:hover .featured-prod-img { transform: scale(1.04); }
    .prod-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--home-lift);
    }
    .prod-body { padding: 14px 16px 18px; display: flex; flex-direction: column; flex: 1; }
    .prod-tag {
      font-size: 9.5px; font-weight: 700;
      color: #2bb5a0; letter-spacing: 0.8px;
      text-transform: uppercase; margin-bottom: 5px;
      min-height: 14px;
    }
    .prod-name {
      font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; line-height: 1.3;
      min-height: 30px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .prod-pack {
      font-size: 11px; color: #aaa; margin-bottom: 5px;
      min-height: 32px;
      display: flex;
      align-items: flex-start;
    }
    .prod-pack span { font-weight: 500; color: #888; }
    .btn-req-quote {
      background: #0f1b3d;
      color: #fff; font-size: 12px; font-weight: 600;
      padding: 9px 12px; border-radius: 6px; border: none;
      cursor: pointer; width: 100%; text-align: center;
      margin-bottom: 5px; font-family: sans-serif;
      transition: background .2s;
      display: block;
      text-decoration: none;
    }
    .btn-req-quote:hover { background: #0D1B2A; }
    .btn-view-details {
      background: none; border: none;
      color: #555; font-size: 12px; font-weight: 500;
      width: 100%; text-align: center; cursor: pointer;
      padding: 4px 0; font-family: 'Poppins', sans-serif;
      transition: color .2s;
      display: block;
      text-decoration: none;
    }
    .btn-view-details:hover { color: #2bb5a0; }
    .prod-body .btn-view-details {
      margin-top: auto;
    }

    @media (max-width: 767px) {
      .featured-section { padding: 30px 0 40px; }
      .featured-title { font-size: 17px; }
      .featured-toprow { flex-direction: column; gap: 12px; }
      .prod-img-wrap { height: 140px; }
      .featuredSwiper {
        padding-bottom: 4px;
      }
    }



       /* ══════════════════════════════
       SECTION 5 — CONTACT / MAP
    ══════════════════════════════ */
    .contact-section {
      background: #fff;
      padding: 10px 0 0;
      padding-bottom: 30px;
    }
    .contact-section .container { max-width: 1100px; }

    /* Form side */
     .contact-form-wrap {
  padding: 28px;
  background: #F3FAF2;   
  border-radius: 10px;   
  margin-right: 20px; /* space from map */
  transition: transform 0.35s var(--home-soft), box-shadow 0.35s var(--home-soft);
}
    .form-label-custom {
      font-size: 12px;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
      display: block;
    }
    .form-label-custom .req { color: #e55; }
    .form-control-custom {
      width: 100%;
      border: 1.5px solid #c8ede8;
      border-radius: 6px;
      padding: 9px 13px;
      font-size: 12.5px;
      font-family:sans-serif;
      color: #333;
      outline: none;
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
    }
    .form-control-custom::placeholder { color: #bbb; }
    .form-control-custom:focus {
      border-color: #2bb5a0;
      box-shadow: 0 0 0 3px rgba(43,181,160,.12);
    }
    select.form-control-custom {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 34px;
      cursor: pointer;
    }
    textarea.form-control-custom { resize: none; height: 100px; }
    .form-row-2 { display: flex; gap: 14px; margin-bottom: 14px; }
    .form-row-2 .form-group { flex: 1; }
    .form-group { margin-bottom: 14px; }
    .btn-send {
      width: 100%;
      background: #0f1b3d;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-family:sans-serif;
      margin-top: 6px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      letter-spacing: 0.3px;
    }
    .btn-send::before {
      content: '';
      position: absolute;
      top: 0;
      left: -130%;
      width: 70%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
      transform: skewX(-20deg);
      transition: left 0.55s ease;
    }
    .btn-send:hover {
      background: #128a7d;
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(18, 138, 125, 0.22);
    }
    .btn-send:hover::before { left: 140%; }
    .contact-form-wrap:hover,
    .map-wrap:hover {
      transform: translateY(-6px);
      box-shadow: var(--home-lift);
    }
  
    /* Map side */
    .map-wrap {
      position: relative;
      height: 100%;
      min-height: 340px;
      border-radius: 10px; 
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.35s var(--home-soft), box-shadow 0.35s var(--home-soft);
    }
    .map-frame {
      flex: 1;
      width: 100%;
      min-height: 240px;
      border: none;
      filter: saturate(0.6) brightness(1.05);
      transition: filter 0.35s ease, transform 0.35s ease;
    }
    .map-wrap:hover .map-frame {
      transform: scale(1.02);
      filter: saturate(0.8) brightness(1.02);
    }

    /* Contact info bar at bottom of map */
    .contact-info-bar {
      display: flex;
      background: #0f1b3d;
      color: #fff;
    }
    .contact-info-item {
      flex: 1;
      padding: 16px 18px;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .contact-info-item:last-child { border-right: none; }
    .ci-icon-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10.5px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .ci-icon-label svg {
      width: 13px; height: 13px;
      stroke: #2bb5a0; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .ci-value {
      font-size: 11.5px;
      color: rgba(255,255,255,.85);
      line-height: 1.55;
    }

    @media (max-width: 767px) {
      .contact-section { padding: 36px 0 0; }
      .contact-form-wrap { padding-right: 0; margin-bottom: 28px; }
      .form-row-2 { flex-direction: column; gap: 0; }
      .map-wrap { min-height: 260px; }
      .contact-info-bar { flex-direction: column; }
      .contact-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    }

      /* ══════════════════════════════
       SECTION 6 — TESTIMONIALS + FOOTER BAR
    ══════════════════════════════ */
    .testimonials-section {
      background: #fff;
      padding: 30px 0 0;
      margin-bottom:10px;
    }
    .testi-section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      color: #0f1b3d;
      margin-bottom: 8px;
    }
    .testi-section-sub {
      text-align: center;
      font-size: 16px;
      color: #aaa;
      margin-bottom: 33px;
    }

    /* Testimonial card */
    .review-card {
      background:#0f1b3d;
      border: 1.5px solid #e2e8e6;
      border-radius: 10px;
      padding: 24px 22px 20px;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: transform 0.35s var(--home-soft), box-shadow 0.35s var(--home-soft);
    }
    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--home-lift);
    }
    .testimonialSwiper {
      padding: 8px 2px 12px;
    }
    .testimonialSwiper .swiper-slide {
      height: auto;
      display: flex;
      box-sizing: border-box;
    }
    .testimonialSwiper .swiper-slide .review-card {
      width: 100%;
    }
    .stars {
      color: #f4b400;
      font-size: 16px;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }
    .review-text {
      font-size: 12px;
      color: #ffffff;
      line-height: 1.75;
      font-style: italic;
      flex: 1;
      margin-bottom: 20px;
    }
    .reviewer-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .reviewer-ava {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #2bb5a0;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: #fff;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
    }
    .reviewer-ava img {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 50%;
      object-fit: contain;
      object-position: center;
      background: #ffffff;
    }
    .reviewer-info .r-name {
      font-size: 12.5px;
      font-weight: 700;
      color: #ffffff;
    }
    .reviewer-info .r-role {
      font-size: 11px;
      color: #fff;
    }

    /* Footer CTA bar */
    .footer-cta-bar {
      background: #2bb5a0;
      margin-top: 48px;
      padding: 28px 0;
    }
    .footer-cta-bar .container {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 0;
    }
    .fcta-item {
      flex: 1;
      padding: 0 32px;
      border-right: 1px solid rgba(255,255,255,.25);
      text-align: left;
    }
    .fcta-item:last-child { border-right: none; }
    .fcta-label {
      font-size: 9.5px;
      font-weight: 700;
      color: rgba(255,255,255,.75);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .fcta-value {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }
    .fcta-value a { color: #fff; text-decoration: none; }
    .fcta-value a:hover { opacity: .85; }

    @media (max-width: 767px) {
      .testimonials-section { padding: 44px 0 0; }
      .testi-section-title { font-size: 20px; }
      .testi-section-sub { margin-bottom: 44px; }
      .review-card { margin-bottom: 16px; }
      .footer-cta-bar .container { flex-direction: column; gap: 20px; }
      .fcta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 0 16px 20px; }
      .fcta-item:last-child { border-bottom: none; padding-bottom: 0; }
      .fcta-value { font-size: 15px; }
    }
    @media (min-width: 768px) and (max-width: 991px) {
      .fcta-item { padding: 0 16px; }
      .fcta-value { font-size: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }

/* ══════════════════════════════
       WHY CHOOSE SECTION
    ══════════════════════════════ */
 
    .why_section {
      padding: 5px 24px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 10px;
    }
    .section__title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 8px;
      position: relative;
      display: inline-block;
      transition: transform 0.5s var(--home-soft), letter-spacing 0.45s var(--home-soft), opacity 0.45s var(--home-soft);
    }
    .section__title::after {
      content: "";
      display: block;
      width: clamp(72px, 12vw, 118px);
      height: 3px;
      margin: 12px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, #f1c47d 0%, #8cab6f 100%);
      transform: scaleX(0.55);
      transform-origin: center;
      opacity: 0.7;
      transition: transform 0.55s var(--home-soft), opacity 0.45s var(--home-soft);
    }
    .why_section.in-view .section__title {
      letter-spacing: 0.02em;
    }
    .why_section.in-view .section__title::after {
      transform: scaleX(1);
      opacity: 1;
    }
    .section__sub {
      font-size: 16px;
      color: #777;
      margin-bottom: 10px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      transition: transform 0.55s var(--home-soft), opacity 0.45s var(--home-soft), color 0.35s var(--home-soft);
    }
    .why_section.in-view .section__sub {
      color: #626262;
    }
 
    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: stretch;
    }
 
    /* ── Card base ── */
    .card {
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 250px;
      padding: 28px 22px 30px 24px;
      isolation: isolate;
      border: none;
      box-shadow: 0 18px 38px rgba(20, 33, 12, 0.08);
      transition: transform 0.45s var(--home-soft), box-shadow 0.45s var(--home-soft), background-color 0.35s var(--home-soft);
    }
    .card:hover {
      transform: translateY(-10px) scale(1.01);
      box-shadow: 0 24px 48px rgba(20, 33, 12, 0.14);
    }
    /* card colours */
    .card--green { background: #F1FDFAC9; }
    .card--peach { background: #EDFCF9CC; }
 
    /* ── Curved circle background behind image ── */
     .card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -50px;
      width: 190px;
      height: 180px;
      border-radius: 50%;
      transition: transform 0.7s var(--home-soft), opacity 0.45s var(--home-soft);
    }
    .card--green::before { background: #D5F5F1; }
    .card--peach::before { background: #D5F5F1; }
    .card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.42) 48%, transparent 76%);
      opacity: 0;
      transform: translateX(-130%);
      transition: transform 0.85s ease, opacity 0.35s ease;
      pointer-events: none;
      z-index: 0;
    }
    .why_section.in-view .card::before {
      animation: whyOrbFloat 5.4s ease-in-out infinite;
    }
    .card:hover::before {
      transform: scale(1.08) translate(-8px, 12px);
    }
    .card:hover::after {
      opacity: 1;
      transform: translateX(130%);
    }
 
    /* ── Top row ── */
    .card__top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }
 
    .card__title {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.3;
      text-align: left;
      max-width: 50%;
      flex-shrink: 0;
      margin-top:30px;
      transition: transform 0.45s var(--home-soft), color 0.35s var(--home-soft);
    }
 
    /* ── Image sits on top of the circle ── */
    .card__img-wrap {
      width: 110px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: -28px;
      margin-right: -22px;
      position: relative;
      overflow: hidden;
      z-index: 2;
      transform-origin: center bottom;
      transition: transform 0.55s var(--home-soft), filter 0.35s var(--home-soft);
    }
    .card__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      border-radius: 0;
      box-shadow: none;
      background: transparent;
      transition: transform 0.55s var(--home-soft), filter 0.35s var(--home-soft);
    }
 
    /* ── Description ── */
    .card__desc {
      font-size: 0.83rem;
      color: #555;
      line-height: 1.68;
      text-align: left;
      margin-top: 30px;
      position: relative;
      z-index: 1;
      transition: transform 0.45s var(--home-soft), color 0.35s var(--home-soft);
    }
 
    /* ── Responsive ── */
    .why_section.in-view .card__top,
    .why_section.in-view .card__desc {
      animation: whyContentRise 0.8s var(--home-soft) both;
    }
    .why_section.in-view .grid .card:nth-child(2) .card__top,
    .why_section.in-view .grid .card:nth-child(2) .card__desc {
      animation-delay: 0.1s;
    }
    .why_section.in-view .grid .card:nth-child(3) .card__top,
    .why_section.in-view .grid .card:nth-child(3) .card__desc {
      animation-delay: 0.2s;
    }
    .card:hover .card__title {
      transform: translateX(6px);
      color: #2f4723;
    }
    .card:hover .card__img-wrap {
      transform: translateY(-8px) rotate(-3deg) scale(1.03);
      filter: saturate(1.06);
    }
    .card:hover .card__img-wrap img {
      transform: scale(1.06);
      filter: saturate(1.08);
    }
    .card:hover .card__desc {
      transform: translateY(-4px);
      color: #424242;
    }

    @keyframes whyOrbFloat {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(-8px, 10px, 0) scale(1.04); }
    }

    @keyframes whyContentRise {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 820px) {
      .grid { grid-template-columns: 1fr 1fr; }
      .card:hover {
        transform: translateY(-8px);
      }
    }
    @media (max-width: 500px) {
      .section { padding: 40px 14px 50px; }
      .grid { grid-template-columns: 1fr; }
      .grid .card:last-child { grid-column: auto; max-width: 100%; }
      .card__title { max-width: 54%; }
      .card__img-wrap {
        width: 96px;
        height: 106px;
      }
    }

.fade-heading {
  transition: opacity 0.5s ease;
  font-size: 42px;
  font-weight: 700;
}

.fade-out {
  opacity: 0;
}

  .brands-bar {
      background: rgba(248, 249, 250, 0.2);
      border-top-left-radius: 25px;
      border-top-right-radius: 25px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      width: 100%;
      
      box-sizing: border-box;
      height: 118px;
      min-height: 118px;
      padding: 8px clamp(32px, 4vw, 80px) 10px;
      display: flex; align-items: flex-start; justify-content: space-between;
      align-content: flex-start;
      gap: 24px; flex-wrap: wrap;
      overflow: hidden;
      /* position: relative; z-index: 5; */
       position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
     

    }

    .brands-bar .section-title {
      margin-bottom: 0;
      line-height: 1.1;
      text-decoration: none;
      border-bottom: none;
    }
    .brands-bar .section-title::after {
      display: none;
    }
    .brands-bar .brand-label {
      font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark);
      flex: 0 0 auto; white-space: nowrap;
    }
