 
  /* START HERO SECTION STYLE  */

 #hero-slider-section *, #hero-slider-section *::before, #hero-slider-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* ── Tokens ── */
  #hero-slider-section {
    --hs-purple: #4a1a7a;
    --hs-accent: #c89fff;
    --hs-white: #ffffff;
    --hs-overlay-from: rgba(20, 6, 38, 0.68);
    --hs-overlay-to: rgba(20, 6, 38, 0.18);
    --hs-transition: 1.1s cubic-bezier(0.77, 0, 0.18, 1);
    --hs-ease: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    width: 100%;
    max-width: 100%;       /* KEY FIX: never let this exceed its parent */
    /* Full-viewport height on desktop, slightly shorter on mobile */
    height: clamp(480px, 90vh, 860px);
    overflow: hidden;
    background: #0e0a14;
    user-select: none;
    cursor: grab;
  }

  /* ── Track ── */
  #hero-slider-section .hs-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform var(--hs-transition);
    will-change: transform;
  }

  /* ── Slide ── */
  #hero-slider-section .hs-slide {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
  }

  /* ── Slide image — always fills, always centered, never crops weirdly ── */
  #hero-slider-section .hs-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /*  Ken Burns subtle zoom on active slide  */
    transform: scale(1.06);
    transition: transform 6s ease-out;
    filter: brightness(0.88);
  }

  #hero-slider-section .hs-slide.is-active .hs-slide-img {
    transform: scale(1);
  }

  /* ── Gradient overlay ── */
  #hero-slider-section .hs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      var(--hs-overlay-from) 0%,
      var(--hs-overlay-to) 60%,
      transparent 100%
    );
  }

  /* ── Slide content ── */
  #hero-slider-section .hs-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: clamp(32px, 6vw, 80px) clamp(24px, 6vw, 80px) clamp(70px, 10vw, 110px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* Content starts hidden, animates in */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease 0.35s, transform 0.65s ease 0.35s;
  }

  #hero-slider-section .hs-slide.is-active .hs-slide-content {
    opacity: 1;
    transform: translateY(0);
  }

  #hero-slider-section .hs-slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(11px, 1.4vw, 13px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hs-accent);
  }

  #hero-slider-section .hs-slide-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--hs-accent);
    border-radius: 2px;
    flex-shrink: 0;
  }

  #hero-slider-section .hs-slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 5vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--hs-white);
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }

  #hero-slider-section .hs-slide-title em {
    font-style: normal;
    color: var(--hs-accent);
  }

  #hero-slider-section .hs-slide-sub {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.80);
    max-width: 100%;
    line-height: 1.6;
  }

  #hero-slider-section .hs-slide-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 58px;
    max-width: 100%;
  }

  #hero-slider-section .hs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--hs-accent);
    color: #2d0c4b;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: background var(--hs-ease), transform var(--hs-ease), box-shadow var(--hs-ease);
    box-shadow: 0 4px 20px rgba(200,159,255,0.32);
    white-space: nowrap;
  }

  #hero-slider-section .hs-btn-primary:hover {
    background: #d9b2ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,159,255,0.48);
  }

  #hero-slider-section .hs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.28);
    letter-spacing: 0.03em;
    transition: background var(--hs-ease), border-color var(--hs-ease), transform var(--hs-ease);
    white-space: nowrap;
  }

  #hero-slider-section .hs-btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
  }

  /* ── Arrow buttons ── */
  #hero-slider-section .hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--hs-ease), transform var(--hs-ease);
  }

  #hero-slider-section .hs-arrow:hover {
    background: rgba(200,159,255,0.22);
    transform: translateY(-50%) scale(1.08);
  }

  #hero-slider-section .hs-arrow svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 2.2;
    fill: none;
  }

  #hero-slider-section .hs-arrow-prev { left: 20px; }
  #hero-slider-section .hs-arrow-next { right: 20px; }

  /* ── Dots ── */
  #hero-slider-section .hs-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    max-width: calc(100% - 40px);
    flex-wrap: wrap;
    justify-content: center;
  }

  #hero-slider-section .hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background var(--hs-ease), width var(--hs-ease), border-radius var(--hs-ease);
  }

  #hero-slider-section .hs-dot.is-active {
    width: 26px;
    border-radius: 4px;
    background: var(--hs-accent);
  }

  /* ── Slide counter badge ── */
  #hero-slider-section .hs-counter {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
  }

  #hero-slider-section .hs-counter span {
    color: var(--hs-accent);
    font-size: 18px;
    font-weight: 800;
    vertical-align: middle;
    line-height: 1;
  }

  /* ── Progress bar ── */
  #hero-slider-section .hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.12);
    z-index: 10;
    overflow: hidden;
  }

  #hero-slider-section .hs-progress-fill {
    height: 100%;
    background: var(--hs-accent);
    width: 0%;
    transition: width linear;
  }

  /* ═══════════════════════════════════════
     RESPONSIVE BREAKPOINTS — 3 device tiers
     Desktop : > 1024px
     Tablet  : 577–1024px
     Mobile  : ≤ 576px
  ═══════════════════════════════════════ */

  /* ── Tablet ── */
  @media (max-width: 1024px) {
    #hero-slider-section {
      height: clamp(420px, 75vh, 700px);
    }

    #hero-slider-section .hs-slide-actions {
      margin-bottom: 40px;
    }
  }

  /* ── Mobile ── */
  @media (max-width: 576px) {
    #hero-slider-section {
      height: clamp(380px, 70vh, 560px);
    }

    #hero-slider-section .hs-arrow {
      width: 38px;
      height: 38px;
    }

    #hero-slider-section .hs-arrow svg {
      width: 18px;
      height: 18px;
    }

    #hero-slider-section .hs-counter {
      display: none;
    }

    #hero-slider-section .hs-btn-ghost {
      display: none;
    }

    #hero-slider-section .hs-slide-actions {
      margin-bottom: 30px;
    }

    #hero-slider-section .hs-slide-content {
      padding-bottom: clamp(50px, 8vw, 70px);
    }
  }

  @media (max-width: 400px) {
    #hero-slider-section .hs-arrow-prev { left: 10px; }
    #hero-slider-section .hs-arrow-next { right: 10px; }
  }

  /* END HERO SECTION STYLE  */
/* START STATS SECTION STYLE */
    #skfs-section *,
  #skfs-section *::before,
  #skfs-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .centerDivForSlider {
  display: flex;
  justify-content: center;
  align-items: center;
}

  /* ── Outer wrapper ── */
  #skfs-section {
    width: 100%;
    max-width: 100%;
    background: #f0f2f5;
    font-family: 'Inter', sans-serif;
    padding: 0 20px;
    overflow: hidden; /* safety net: never lets internal content force page scroll */
  }

  /* ── Inner — matches navbar 1280px ── */
  #skfs-section .skfs-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 0;
  }

  /* ── Single row of 4 items (desktop only — see breakpoints below) ── */
  #skfs-section .skfs-row {
    display: flex;
    align-items: stretch;
    width: 100%;
  }

  /* ── Each stat item ── */
  #skfs-section .skfs-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 18px);
    padding: 28px clamp(16px, 2vw, 32px);
  }

  /* ── Vertical divider between items ── */
  #skfs-section .skfs-item + .skfs-item {
    border-left: 1.5px solid #dde0e8;
  }

  /* ── Icon ── */
  #skfs-section .skfs-icon {
    flex-shrink: 0;
  }

  #skfs-section .skfs-icon svg {
    width: clamp(44px, 4.5vw, 64px);
    height: clamp(44px, 4.5vw, 64px);
    flex-shrink: 0;
    display: block;
    fill: #c8cdd8;
  }

  /* ── Text block ── */
  #skfs-section .skfs-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  /* ── Big number ── */
  #skfs-section .skfs-num {
    font-size: clamp(28px, 3.8vw, 56px);
    font-weight: 800;
    color: #2d3e7c;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  /* ── Label ── */
  #skfs-section .skfs-lbl {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a85a3;
    line-height: 1.4;
    overflow-wrap: break-word; /* extra safety: never lets one long word blow out the item */
  }

  /* ══════════════════════════════
     RESPONSIVE — 3 device tiers
     Desktop : > 1100px  → single row
     Tablet  : 577–1100px → 2×2 grid
     Mobile  : ≤ 576px    → single column stack
  ══════════════════════════════ */

  /* Tablet: 2 rows × 2 columns
     NOTE: cutoff raised from the original 860px to 1100px.
     At 4-items-in-a-row, the icon + padding + longest label word
     (e.g. "PRODUCTION") need ~1100px minimum combined — below that,
     the row can't shrink further and forces a horizontal scrollbar.
     The 2x2 grid has much more room per item, so it safely covers
     the entire tablet range instead. */
  @media (max-width: 1100px) {
    #skfs-section .skfs-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    #skfs-section .skfs-item {
      padding: 28px 24px;
    }

    /* Reset all left borders, then apply grid borders */
    #skfs-section .skfs-item + .skfs-item {
      border-left: none;
    }

    /* Right column gets left border */
    #skfs-section .skfs-item:nth-child(2),
    #skfs-section .skfs-item:nth-child(4) {
      border-left: 1.5px solid #dde0e8;
    }

    /* Bottom row gets top border */
    #skfs-section .skfs-item:nth-child(3),
    #skfs-section .skfs-item:nth-child(4) {
      border-top: 1.5px solid #dde0e8;
    }
  }

  /* Mobile: single column stack */
  @media (max-width: 576px) {
    #skfs-section {
      padding: 0 16px;
    }

    #skfs-section .skfs-inner {
      padding: 32px 0;
    }

    #skfs-section .skfs-row {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    #skfs-section .skfs-item {
      padding: 22px 16px;
      gap: 16px;
    }

    /* All items get top border except first */
    #skfs-section .skfs-item + .skfs-item {
      border-left: none;
      border-top: 1.5px solid #dde0e8;
    }

    #skfs-section .skfs-icon svg {
      width: 48px;
      height: 48px;
    }
  }

    /* END STATS SECTION STYLE */

    /* START About SECTION STYLE */

  #skfa-section *,
  #skfa-section *::before,
  #skfa-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  #skfa-section {
    width: 100%;
    background: #fff;
    font-family: 'Inter', sans-serif;
    padding: 72px 24px 80px;
  }

  #skfa-section .skfa-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  /* ── Section header ── */
  #skfa-section .skfa-header {
    text-align: center;
    margin-bottom: 56px;
  }

  #skfa-section .skfa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #6b2fa0;
    margin-bottom: 12px;
  }
  #skfa-section .skfa-eyebrow::before,
  #skfa-section .skfa-eyebrow::after {
    content: '';
    width: 28px; height: 1.5px;
    background: #c89fff;
    border-radius: 2px;
  }

  #skfa-section .skfa-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #c0392b;
    line-height: 1.12;
  }
  #skfa-section .skfa-header h2 em {
    font-style: italic;
    color: #4a1a7a;
  }

  /* ── Two columns ── */
  #skfa-section .skfa-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #ede5f8;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Left col */
  #skfa-section .skfa-about-col {
    padding: 44px 48px;
    border-right: 1px solid #ede5f8;
  }

  /* Right col */
  #skfa-section .skfa-profile-col {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* ── Col label ── */
  #skfa-section .skfa-col-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #c89fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
  }
  #skfa-section .skfa-col-label::before {
    content: '';
    width: 18px; height: 2px;
    background: #c89fff;
    border-radius: 2px;
    flex-shrink: 0;
  }

  /* ── About text ── */
  #skfa-section .skfa-about-col p {
    font-size: clamp(14px, 1.25vw, 15px);
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
  }
  #skfa-section .skfa-about-col p:last-of-type { margin-bottom: 0; }

  #skfa-section .skfa-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 13.5px;
    font-weight: 700;
    color: #4a1a7a;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.25s, color 0.25s;
  }
  #skfa-section .skfa-more-link:hover { color: #6b2fa0; gap: 10px; }
  #skfa-section .skfa-more-link svg {
    width: 15px; height: 15px;
    stroke: currentColor; stroke-width: 2.2; fill: none;
    flex-shrink: 0;
  }

  /* ── Profile col ── */
  #skfa-section .skfa-profile-col h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #1e1e2e;
    line-height: 1.25;
  }

  #skfa-section .skfa-profile-col p {
    font-size: clamp(13.5px, 1.2vw, 15px);
    color: #666;
    line-height: 1.75;
  }

  /* ── Download button ── */
  #skfa-section .skfa-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: #4a1a7a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.04em;
    align-self: flex-start;
    transition: background 0.28s, transform 0.28s, box-shadow 0.28s;
    box-shadow: 0 4px 18px rgba(74,26,122,0.22);
  }
  #skfa-section .skfa-dl-btn:hover {
    background: #3a0f62;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(74,26,122,0.30);
  }
  #skfa-section .skfa-dl-btn:active { transform: translateY(0); }

  #skfa-section .skfa-dl-ic {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.14);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s;
  }
  #skfa-section .skfa-dl-btn:hover .skfa-dl-ic { background: rgba(255,255,255,0.24); }
  #skfa-section .skfa-dl-ic svg {
    width: 16px; height: 16px;
    stroke: #fff; stroke-width: 2.2; fill: none;
  }

  #skfa-section .skfa-dl-txt {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  }
  #skfa-section .skfa-dl-txt small {
    font-size: 10.5px; font-weight: 500; opacity: 0.70; letter-spacing: 0.05em;
  }
  #skfa-section .skfa-dl-txt strong {
    font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
  }

  /* ── Pills ── */
  #skfa-section .skfa-pills {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px;
  }
  #skfa-section .skfa-pill {
    font-size: 11px; font-weight: 600;
    color: #6b2fa0; background: #f4eeff;
    padding: 4px 12px; border-radius: 50px; letter-spacing: 0.04em;
  }

  /* ══════════════════════
     RESPONSIVE
  ══════════════════════ */
  @media (max-width: 860px) {
    #skfa-section .skfa-cols {
      grid-template-columns: 1fr;
      padding-right: 32px;
      
    }
    #skfa-section .skfa-about-col {
      border-right: 1px solid #ede5f8;
      border-bottom: 1px solid #ede5f8;
      padding: 36px 32px;
      
    }
    #skfa-section .skfa-profile-col {
      padding: 36px 32px;
      border-right: 1px solid #ede5f8;

      border-bottom: 1px solid #ede5f8;
    }
  }

  @media (max-width: 520px) {
    #skfa-section { padding: 52px 16px 60px; }
    #skfa-section .skfa-about-col,
    #skfa-section .skfa-profile-col { padding: 28px 22px; }
    #skfa-section .skfa-dl-btn { width: 100%; justify-content: center; }
  }




/* START CERTIFICATIONS / ACCREDITATIONS SECTION STYLE */

#accred-section *, #accred-section *::before, #accred-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens ── */
#accred-section {
  --accred-bg: #f0f2f5;
  --accred-heading: #2d1b45;
  --accred-eyebrow: #7a4fb0;
  --accred-text-muted: #7a85a3;
  --accred-card-bg: #ffffff;
  --accred-overlay-default: #2d1b45;
  --accred-font: 'Inter', sans-serif;

  width: 100%;
  max-width: 100%;
  background: var(--accred-bg);
  font-family: var(--accred-font);
  padding: clamp(48px, 7vw, 96px) 24px;
  overflow: hidden;
}

/* ── Heading block ── */
#accred-section .accred-section__eyebrow {
  display: block;
  text-align: center;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accred-eyebrow);
  margin-bottom: 10px;
}

#accred-section .accred-section__title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--accred-heading);
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ── Grid ──
   CHANGED: switched from CSS Grid (auto-fit/minmax) to Flexbox.
   Grid leaves an incomplete last row left-aligned with empty space
   to the right — flexbox + justify-content:center naturally centers
   whatever's left on the final line instead. */
#accred-section .accred-section__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

/* ── Card ──
   flex-basis controls the "default" width per tier; flex-grow:0 keeps
   all cards the same size instead of stretching to fill a row.
   aspect-ratio increased (lower number = taller box) per your request. */
#accred-section .accred-card {
  position: relative;
  flex: 0 1 230px;
  aspect-ratio: 1.6 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--accred-card-bg);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#accred-section .accred-card:hover,
#accred-section .accred-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

/* ── Logo face ── */
#accred-section .accred-card__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 34px;
  background: var(--accred-card-bg);
}

#accred-section .accred-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Overlay (revealed on hover) ── */
#accred-section .accred-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  background: var(--accred-overlay-default);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#accred-section .accred-card:hover .accred-card__overlay,
#accred-section .accred-card:focus-within .accred-card__overlay,
#accred-section .accred-card.is-active .accred-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

#accred-section .accred-card__overlay-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
}

#accred-section .accred-card__overlay-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.9;
  max-width: 94%;
}

/* ── Per-brand overlay accent colors ── */
#accred-section .accred-card--rsc     { --accred-overlay: #1f6b4d; }
#accred-section .accred-card--amfori  { --accred-overlay: #1f3d7a; }
#accred-section .accred-card--sedex   { --accred-overlay: #0f6e6e; }
#accred-section .accred-card--bkmea   { --accred-overlay: #7a1f3d; }
#accred-section .accred-card--oeko    { --accred-overlay: #1f5c3d; }
#accred-section .accred-card--iso     { --accred-overlay: #1f3a63; }
#accred-section .accred-card--bgmea   { --accred-overlay: #8a1f2b; }

#accred-section .accred-card .accred-card__overlay {
  background: var(--accred-overlay, var(--accred-overlay-default));
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  #accred-section .accred-section__grid {
    gap: 18px;
  }

  #accred-section .accred-card {
    flex-basis: 190px;
    aspect-ratio: 1.5 / 1;
  }

  #accred-section .accred-card__logo {
    padding: 22px 26px;
  }

  #accred-section .accred-card__overlay-desc {
    font-size: 11.5px;
  }
}

@media (max-width: 576px) {
  #accred-section {
    padding: 40px 16px;
  }

  #accred-section .accred-section__grid {
    gap: 12px;
    padding-right: 24px;
  }

  #accred-section .accred-card {
    flex-basis: calc(50% - 6px); /* 2 per row, accounting for gap */
    max-width: 220px;
    aspect-ratio: 1.4 / 1;
    border-radius: 10px;
  }

  #accred-section .accred-card__logo {
    padding: 16px 18px;
  }

  #accred-section .accred-card__overlay {
    padding: 10px;
  }

  #accred-section .accred-card__overlay-title {
    font-size: 13px;
  }

  #accred-section .accred-card__overlay-desc {
    font-size: 10.5px;
  }
}

/* END CERTIFICATIONS / ACCREDITATIONS SECTION STYLE */



/* START CLIENTS SECTION STYLE */

#clients-section *, #clients-section *::before, #clients-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens ── */
#clients-section {
  --clnt-heading: #464343;
  --clnt-subheading: #66676b;
  --clnt-card-bg: #ffffff;
  --clnt-border: #e4e6ec;
  --clnt-font: 'Inter', sans-serif;

  width: 100%;
  max-width: 100%;
  font-family: var(--clnt-font);
  padding: clamp(32px, 5vw, 48px) 24px clamp(48px, 6vw, 64px);
  text-align: center;
  overflow: hidden;
}

/* ── Heading block ── */
#clients-section .clnt-title-big {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--clnt-heading);
  margin-bottom: 8px;
}

#clients-section .clnt-title {
  font-size: clamp(13px, 1.4vw, 14.5px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clnt-subheading);
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ──
   Flexbox + justify-content:center instead of CSS Grid: with 13 logos,
   no fixed column count divides evenly, so the last row would otherwise
   sit left-aligned with empty space. Flex naturally centers it. */
#clients-section .clnt-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-right: 25px;
}

/* ── Card ── */
#clients-section .clnt-card {
  flex: 0 1 160px;
  aspect-ratio: 1.5 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--clnt-card-bg);
  border: 1px solid var(--clnt-border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#clients-section .clnt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

#clients-section .clnt-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px → ~160px cards
   Tablet  : 577–1024px → ~130px cards
   Mobile  : ≤ 576px → 2 per row
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  #clients-section .clnt-grid {
    gap: 16px;
  }

  #clients-section .clnt-card {
    flex-basis: 130px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  #clients-section {
    padding: 28px 16px 40px;
  }

  #clients-section .clnt-grid {
    gap: 12px;
  }

  #clients-section .clnt-card {
    flex-basis: calc(50% - 6px); /* 2 per row, accounting for gap */
    max-width: 170px;
    aspect-ratio: 1.6 / 1;
    padding: 10px;
    border-radius: 7px;
  }
}

/* END CLIENTS SECTION STYLE */



/* START WHAT WE DO SECTION STYLE */

#wwd-section *, #wwd-section *::before, #wwd-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens (scoped — was previously global :root, risked
   colliding with any other section's --accent/--border/--muted etc.) ── */
#wwd-section {
  --wwd-bg: #0d0f15;
  --wwd-accent: #c8a97e;
  --wwd-accent-dim: rgba(200,169,126,0.18);
  --wwd-border: rgba(255,255,255,0.10);
  --wwd-text: #927539;
  --wwd-muted: rgba(240,236,228,0.58);
  --wwd-radius: 18px;

  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}

/* ── HEADER ── */
#wwd-section .wwd-header {
  text-align: center;
  margin-bottom: 60px;
  color: var(--wwd-text);
  padding: 0 24px;
}

#wwd-section .wwd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wwd-accent);
  margin-bottom: 18px;
}
#wwd-section .wwd-eyebrow::before,
#wwd-section .wwd-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--wwd-accent);
  opacity: 0.5;
}

#wwd-section .wwd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--wwd-text);
}
#wwd-section .wwd-title em {
  font-style: italic;
  color: var(--wwd-accent);
}

#wwd-section .wwd-rule {
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--wwd-accent), transparent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── GRID ── */
#wwd-section .wwd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── CARD ──
   KEY FIX: aspect-ratio locks every card to the same box size,
   independent of each photo's natural dimensions. Combined with the
   photo below being position:absolute + object-fit:cover, this is
   what actually makes all 4 cards identical in size. */
#wwd-section .wwd-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--wwd-radius);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--wwd-border);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transition:
    transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

#wwd-section .wwd-card:hover,
#wwd-section .wwd-card.is-active {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(200,169,126,0.45);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.65),
    0 0 0 1px rgba(200,169,126,0.12),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* background photo — CHANGED: absolute + inset:0 so it always fills
   the fixed-size card exactly; object-fit switched fill→cover so
   photos crop instead of stretching/distorting to match the box. */
#wwd-section .wwd-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.65s ease;
  filter: brightness(0.76) saturate(0.75);
}

#wwd-section .wwd-card:hover .wwd-card-photo,
#wwd-section .wwd-card.is-active .wwd-card-photo {
  transform: scale(1.07);
  filter: brightness(0.20) saturate(0.4) blur(2.5px);
}

/* always-visible bottom gradient + static label */
#wwd-section .wwd-card-base {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 26px;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(10,12,18,0.82) 100%
  );
  transition: opacity 0.35s ease;
}
#wwd-section .wwd-card:hover .wwd-card-base,
#wwd-section .wwd-card.is-active .wwd-card-base {
  opacity: 0;
}

#wwd-section .wwd-card-number {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wwd-accent);
  margin-bottom: 6px;
}
#wwd-section .wwd-card-base-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--wwd-text);
}

/* ── REVEAL PANEL (slides up) ── */
#wwd-section .wwd-card-reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 32px;
  overflow-y: auto; /* safety net if a description is too long for the fixed box */

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.11) 0%,
    rgba(200,169,126,0.05) 60%,
    rgba(255,255,255,0.04) 100%
  );
  backdrop-filter: blur(22px) saturate(1.7) brightness(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.7) brightness(1.05);
  border-radius: var(--wwd-radius);

  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.58s cubic-bezier(0.34, 1.15, 0.64, 1),
    opacity 0.30s ease;
}
#wwd-section .wwd-card:hover .wwd-card-reveal,
#wwd-section .wwd-card.is-active .wwd-card-reveal {
  transform: translateY(0%);
  opacity: 1;
}

#wwd-section .wwd-card-reveal::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.65), transparent);
}

#wwd-section .wwd-card-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--wwd-radius);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

#wwd-section .wwd-reveal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--wwd-text);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

#wwd-section .wwd-reveal-line {
  width: 36px;
  height: 1.5px;
  background: var(--wwd-accent);
  margin-bottom: 16px;
  position: relative; z-index: 1;
  border-radius: 2px;
}

#wwd-section .wwd-reveal-desc {
  font-size: clamp(12.5px, 1.15vw, 14.5px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--wwd-muted);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px → 2 columns, 4:3 cards
   Tablet  : 577–1024px → 2 columns, squarer cards for text room
   Mobile  : ≤ 576px → 1 column, taller cards for full-width text room
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  #wwd-section .wwd-grid {
    gap: 18px;
  }

  #wwd-section .wwd-card {
    aspect-ratio: 1 / 1;
  }

  #wwd-section .wwd-card-reveal {
    padding: 28px 26px;
  }
}

@media (max-width: 576px) {
  #wwd-section .wwd-header {
    margin-bottom: 40px;
  }

  #wwd-section .wwd-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  #wwd-section .wwd-card {
    aspect-ratio: 4 / 5;
  }

  #wwd-section .wwd-card-reveal {
    padding: 24px 22px;
  }

  #wwd-section .wwd-card-reveal::before {
    display: none;
  }
}

/* END WHAT WE DO SECTION STYLE */