  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
  }

  /* ── SECTION ── */
  .master-product-section {
    padding: 40px 0 60px;
    background: #ffffff;
    overflow: hidden;
  }

  .m-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .stream-row {
    width: 100%;
  }

  /* ── HEADER ── */
  .master-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .seo-hidden-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .m-title-png {
    width: 700px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 18px;
  }

  .m-description-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .m-tagline {
    font-size: 14px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
  }

  .m-main-para {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    font-style: italic;
    margin-bottom: 8px;
    text-align: center;
  }

  .m-main-para span {
    color: #003366;
    font-weight: 700;
    font-style: normal;
  }

  .m-main-para .interlink {
    color: #003366;
    text-decoration: none;
  }

  .m-main-para .interlink:hover {
    text-decoration: underline;
  }

  /* ── FILTER TABS ── */
  .m-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    padding: 0 10px;
  }

  .m-pill {
    padding: 9px 22px;
    border: 2px solid #003366;
    background: transparent;
    color: #003366;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .m-pill.active,
  .m-pill:hover {
    background: #003366;
    color: #fff;
  }

  /* ── SWIPER OUTER ── */
  .m-swiper-outer-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  /* ── NAV BUTTONS ── */
  .m-nav-btn {
    width: 46px;
    height: 46px;
    background: #003366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    transition: background 0.25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    font-size: 15px;
  }

  .m-nav-btn:hover {
    background: #f7941d;
  }

  .m-prev {
    left: 6px;
  }

  .m-next {
    right: 6px;
  }

  /* ── CARD ── */
  .m-card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    margin: 12px 8px;
    border: 1px solid #e0e6ed;
    min-height: 265px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }

  .m-card:hover {
    border-color: #003366;
    box-shadow: 0 14px 32px rgba(0, 51, 102, 0.09);
    transform: translateY(-4px);
  }

  /* Text column */
  .m-text-col {
    flex: 1.2;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .m-text-col h3 {
    color: #003366;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.35;
  }

  .m-text-col p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
  }

  /* Image columns */
  .m-img-col {
    flex: 1;
    padding: 16px;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f0f0;
  }

  .m-img-frame {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0px;
    margin-bottom: 12px;
    transition: transform 0.35s;
  }

  .m-card:hover .m-img-frame {
    transform: scale(1.08);
  }

  .m-label {
    font-weight: 800;
    color: #003366;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-align: center;
  }

  /* ── FOOTER ── */
  .m-footer {
    text-align: center;
    margin-top: 40px;
  }

  .m-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #003366;
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
  }

  .m-download-btn:hover {
    background: #f7941d;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(247, 148, 29, 0.22);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .m-swiper-outer-wrapper {
      padding: 0 50px;
    }

    .m-card {
      min-height: auto;
    }

    .m-nav-btn {
      width: 38px;
      height: 38px;
      font-size: 13px;
    }
  }

  @media (max-width: 768px) {
    .master-product-section {
      padding: 30px 0 50px;
    }

    .m-swiper-outer-wrapper {
      padding: 0 42px;
    }

    .m-card {
      flex-direction: column;
      margin: 8px 4px;
    }

    .m-img-col {
      border-left: none;
      border-top: 1px solid #f0f0f0;
      padding: 18px;
      flex-direction: row;
      gap: 12px;
    }

    .m-img-col:only-of-type {
      flex-direction: column;
    }

    .m-img-frame {
      height: 130px;
      max-width: 160px;
    }

    .m-text-col {
      padding: 22px 20px;
    }

    .m-text-col h3 {
      font-size: 15px;
    }

    .m-text-col p {
      font-size: 13px;
    }

    .m-tagline {
      font-size: 0.9rem;
    }

    .m-main-para {
      font-size: 0.9rem;
    }

    .m-pill {
      padding: 7px 15px;
      font-size: 12px;
    }

    .m-nav-btn {
      width: 34px;
      height: 34px;
      font-size: 12px;
    }

    .m-prev {
      left: 2px;
    }

    .m-next {
      right: 2px;
    }
  }

  @media (max-width: 480px) {
    .m-filter-tabs {
      gap: 7px;
    }

    .m-pill {
      padding: 6px 13px;
      font-size: 11px;
    }

    .m-swiper-outer-wrapper {
      padding: 0 38px;
    }
  }



  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --or: #F57C2B;
    --or-d: #C95F0D;
    --or-l: #FFF3EA;
    --or-m: #FDDFC8;
    --navy: #0D1F3C;
    --grey: #6B7280;
    --grey2: #9CA3AF;
    --bdr: #ECEAE4;
    --bg: #FFFFFF;
    --bg2: #F8F7F4;
    --green: #16A34A;
    --greenl: #DCFCE7;
    --blue: #1D6FB8;
    --bluel: #DBEAFE;
    --purp: #7C3AED;
    --purpl: #EDE9FE;
    --r8: 8px;
    --r14: 14px;
    --r20: 20px;
    font-family: 'Poppins', sans-serif;
  }

  .ab {
    background: var(--bg);
    overflow: hidden;
    position: relative;
  }

  .ab::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #e0dbd3 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.45;
  }

  .ab-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ── SEO hidden heading ── */
  .seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  /* ══════════════════════════
   1. INTRO TOP
══════════════════════════ */
  .ab-top {
    padding: 72px 0 0;
    text-align: center;
  }

  .ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--or-l);
    color: var(--or-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--or-m);
    margin-bottom: 22px;
  }

  .ab-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--or);
    display: inline-block;
    animation: blink 2s ease-in-out infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
      transform: scale(1)
    }

    50% {
      opacity: .3;
      transform: scale(.6)
    }
  }

  .ab-title-img {
    display: block;
    margin: 0 auto 18px;
    width: min(750px, 88vw);
    height: auto;
  }

  .ab-title-fallback {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 18px;
  }

  .ab-title-fallback em {
    color: var(--or);
    font-style: normal;
  }

  .ab-intro {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--grey);
    font-weight: 400;
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto 28px;
  }

  .ab-intro b {
    color: var(--navy);
    font-weight: 600;
  }

  .ab-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
  }

  .ab-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    transition: border-color .2s, box-shadow .2s, transform .2s;
  }

  .ab-pill:hover {
    border-color: var(--or);
    box-shadow: 0 4px 20px rgba(245, 124, 43, .13);
    transform: translateY(-2px);
  }

  .ab-pill .pi {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ══════════════════════════
   2. STATS STRIP
══════════════════════════ */
  .ab-stats-outer {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 52px auto 0;
    padding: 0 40px;
  }

  .ab-stats {
    border: 1.5px solid var(--bdr);
    border-top: 4px solid var(--or);
    border-radius: var(--r20);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 32px rgba(13, 31, 60, .06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat {
    padding: 30px 28px 26px;
    position: relative;
    transition: background .22s;
  }

  .stat:hover {
    background: var(--or-l);
  }

  .stat+.stat {
    border-left: 1.5px solid var(--bdr);
  }

  .stat-n {
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .stat-n .hi {
    color: var(--or);
  }

  .stat-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .stat-sub {
    font-size: 11.5px;
    color: var(--grey2);
  }

  /* ══════════════════════════
   3. MISSION — 2 col
══════════════════════════ */
  .ab-mission {
    max-width: 1200px;
    margin: 0 auto;
    padding: 68px 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .ab-quote-mark {
    font-size: 110px;
    line-height: .75;
    color: var(--or);
    font-family: Georgia, serif;
    display: block;
    opacity: .15;
    user-select: none;
    margin-bottom: -8px;
  }

  .ab-quote-text {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -.02em;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
  }

  .ab-quote-text em {
    color: var(--or);
    font-style: normal;
  }

  .ab-checks {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .ab-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
  }

  .chk-ic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--greenl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .chk-ic svg {
    width: 14px;
    height: 14px;
  }

  .ab-body-text {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 26px;
  }

  .ab-body-text b {
    color: var(--navy);
    font-weight: 600;
  }

  .ab-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 96px 96px;
    gap: 10px;
  }

  .mos {
    border-radius: var(--r8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }

  .mos:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }

  .mos-ico {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    opacity: .22;
  }

  .mos-lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.35;
  }

  /* ══════════════════════════
   4. FEATURE CARDS
══════════════════════════ */
  .ab-feat {
    max-width: 1200px;
    margin: 0 auto;
    padding: 68px 40px 0;
  }

  .ab-feat-hd {
    margin-bottom: 32px;
  }

  .ab-feat-hd h3 {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 6px;
  }

  .ab-feat-hd h3 em {
    color: var(--or);
    font-style: normal;
  }

  .ab-feat-hd p {
    font-size: 14px;
    color: var(--grey);
  }

  .row1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .fc {
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: var(--r14);
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
  }

  .fc:hover {
    border-color: var(--fc-c, var(--or));
    box-shadow: 0 10px 36px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
  }

  .fc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fc-c, var(--or));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }

  .fc:hover::before {
    transform: scaleX(1);
  }

  .fc-hd {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .fc-ico {
    width: 50px;
    height: 50px;
    border-radius: var(--r8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
  }

  .fc:hover .fc-ico {
    transform: scale(1.1) rotate(-4deg);
  }

  .fc-ico svg {
    width: 23px;
    height: 23px;
  }

  .fc-no {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fc-c, var(--or));
    opacity: .7;
    margin-bottom: 3px;
  }

  .fc-ti {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }

  .fc-de {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.8;
  }

  .fc-de b {
    color: var(--navy);
    font-weight: 600;
  }

  /* ══════════════════════════
   5. 5E BAR — dark
══════════════════════════ */
  .ab-5e {
    margin-top: 0;
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f6 50%, #e0e8f0 100%);
    /* Elegant subtle gradient */
    padding: 40px 20px 80px;
    position: relative;
    overflow: hidden;
    border-top: none;
  }

  /* Dotted background pattern */
  .ab-5e::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
  }

  .ab-5e-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .e5s {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    position: relative;
    margin-top: 50px;
    padding: 40px 0;
  }

  /* Beautiful gradient connecting line */
  .e5s::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #F7941D, #E11D48, #7C3AED, #1D6FB8, #16A34A);
    z-index: 0;
    border-radius: 4px;
    opacity: 0.3;
  }

  .e5 {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 45px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* Staggered layout */
  .e5:nth-child(odd) {
    transform: translateY(-30px);
  }

  .e5:nth-child(even) {
    transform: translateY(30px);
  }

  /* The icon bubble overlapping the top of the card */
  .e5-c {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -32px;
    left: 50%;
    margin-left: -32px;
    border: 3px solid #fff;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
  }

  /* Unique Theme Colors for Each Step */
  .e5:nth-child(1) .e5-c {
    color: #F7941D;
  }

  .e5:nth-child(2) .e5-c {
    color: #E11D48;
  }

  .e5:nth-child(3) .e5-c {
    color: #7C3AED;
  }

  .e5:nth-child(4) .e5-c {
    color: #1D6FB8;
  }

  .e5:nth-child(5) .e5-c {
    color: #16A34A;
  }

  .e5:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.15);
    border-color: #F7941D;
    transform: translateY(-40px);
  }

  .e5:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.15);
    border-color: #E11D48;
    transform: translateY(20px);
  }

  .e5:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: #7C3AED;
    transform: translateY(-40px);
  }

  .e5:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(29, 111, 184, 0.15);
    border-color: #1D6FB8;
    transform: translateY(20px);
  }

  .e5:nth-child(5):hover {
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
    border-color: #16A34A;
    transform: translateY(-40px);
  }

  .e5:hover .e5-c {
    transform: scale(1.15);
  }

  .e5:nth-child(1):hover .e5-c {
    background: #F7941D;
    color: #fff;
  }

  .e5:nth-child(2):hover .e5-c {
    background: #E11D48;
    color: #fff;
  }

  .e5:nth-child(3):hover .e5-c {
    background: #7C3AED;
    color: #fff;
  }

  .e5:nth-child(4):hover .e5-c {
    background: #1D6FB8;
    color: #fff;
  }

  .e5:nth-child(5):hover .e5-c {
    background: #16A34A;
    color: #fff;
  }

  .e5-n {
    font-size: 18px;
    font-weight: 900;
    transition: color .3s ease;
  }

  .e5-w {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    margin-top: 10px;
  }

  .e5-d {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
  }

  /* ══════════════════════════
   6. BOTTOM CTA
══════════════════════════ */
  .ab-cta {
    background: #ffffff;
    border-radius: 24px;
    margin: 60px 20px 20px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: 0 25px 60px rgba(0, 51, 102, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .ab-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(to bottom, #1D6FB8, #7C3AED, #F7941D);
  }

  .ab-cta h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    color: #003366;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
  }

  .ab-cta p {
    font-size: 15px;
    color: #64748b;
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 500;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .btn-p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F7941D 0%, #E11D48 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.25);
  }

  .btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.4);
  }

  .btn-p svg {
    width: 15px;
    height: 15px;
    transition: transform .2s;
  }

  .btn-p:hover svg {
    transform: translateX(4px);
  }

  .btn-o {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #003366;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 100px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }

  .btn-o:hover {
    border-color: #F7941D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.1);
  }

  /* ── Animations ── */
  .rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .rv.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Responsive ── */
  @media(max-width:860px) {
    .ab-mission {
      grid-template-columns: 1fr;
      gap: 36px;
      padding: 48px 20px 0;
    }

    .ab-feat {
      padding: 48px 20px 0;
    }

    .row1,
    .row2 {
      grid-template-columns: 1fr;
    }

    .ab-stats-outer {
      padding: 0 20px;
    }

    .ab-stats {
      grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
      border-top: 1.5px solid var(--bdr);
    }

    .stat:nth-child(4) {
      border-left: 1.5px solid var(--bdr);
    }

    .ab-wrap {
      padding: 0 20px;
    }

    .ab-5e {
      padding: 40px 20px;
    }

    .ab-cta {
      padding: 36px 20px;
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media(max-width:640px) {
    .e5s {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .e5s::before {
      display: none;
    }

    .e5:nth-child(odd),
    .e5:nth-child(even) {
      transform: none !important;
    }
  }

  @media(max-width:500px) {
    .e5s {
      grid-template-columns: 1fr;
    }

    .ab-stats {
      grid-template-columns: 1fr 1fr;
    }
  }



  /* ── TOKENS ─────────────────────────────────────────────── */
  :root {
    --d-orange: #FF6B2B;
    --d-orange-l: #FF8C57;
    --d-blue: #1A3A6B;
    --d-blue-m: #2251A3;
    --d-navy: #0E2347;
    --d-yellow: #FFD166;
    --d-green: #2EC98D;
    --d-cream: #FFF8F0;
    --d-muted: #5E6A7C;
    --d-border: rgba(26, 58, 107, .09);
    --r: 20px;
    --sh: 0 6px 36px rgba(26, 58, 107, .08);
    --sh-h: 0 16px 56px rgba(26, 58, 107, .15);
    --tr: .38s cubic-bezier(.4, 0, .2, 1);
  }

  /* ── SECTION ─────────────────────────────────────────────── */
  .su-diff {
    font-family: 'Poppins', sans-serif;
    background: #F7F9FF;
    position: relative;
    overflow: hidden;
  }

  /* grid texture overlay */
  .su-diff::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26, 58, 107, .028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 58, 107, .028) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  .su-diff__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 104px 24px 120px;
  }

  /* ── SECTION HEADER ──────────────────────────────────────── */
  .su-diff__head {
    text-align: center;
    margin-bottom: 80px;
  }

  .su-diff__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 43, .1);
    border: 1px solid rgba(255, 107, 43, .22);
    color: var(--d-orange);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
  }

  .su-diff__eyebrow-line {
    width: 20px;
    height: 2px;
    background: var(--d-orange);
    border-radius: 2px;
  }

  .su-diff__title-img {
    max-width: 720px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px;
  }

  .su-diff__desc {
    font-size: 16px;
    color: var(--d-muted);
    line-height: 1.78;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ══════════════════════════════════════════════════════════
   BLOCK 1 — COMPLETE KIT
   Layout: Big left panel (kit visual) + right panel (items)
   ══════════════════════════════════════════════════════════ */
  .su-diff__block {
    margin-bottom: 64px;
  }

  .su-diff__kit {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }

  /* LEFT — dark immersive kit panel */
  .su-kit__panel {
    background: linear-gradient(145deg, var(--d-navy) 0%, var(--d-blue) 100%);
    border-radius: 28px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* decorative corner circles */
  .su-kit__panel::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 40px solid rgba(255, 209, 102, .06);
    top: -120px;
    right: -80px;
    pointer-events: none;
  }

  .su-kit__panel::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(255, 107, 43, .07);
    bottom: -60px;
    left: -60px;
    pointer-events: none;
  }

  .su-kit__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 209, 102, .15);
    border: 1px solid rgba(255, 209, 102, .25);
    color: var(--d-yellow);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    align-self: flex-start;
  }

  .su-kit__h {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .su-kit__sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 36px;
  }

  /* Kit visual — open box metaphor */
  .su-kit__box-viz {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 180px;
  }

  .su-kit__box-3d {
    position: relative;
    width: 200px;
    height: 160px;
  }

  .su-kit__box-front {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(145deg, rgba(255, 209, 102, .2), rgba(255, 107, 43, .15));
    border: 1.5px solid rgba(255, 209, 102, .3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .su-kit__box-logo {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .su-kit__box-lid {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 209, 102, .25), rgba(255, 107, 43, .2));
    border: 1.5px solid rgba(255, 209, 102, .35);
    border-radius: 10px 10px 0 0;
    transform-origin: bottom center;
    transform: perspective(300px) rotateX(-28deg);
  }

  /* floating item chips */
  .su-kit__chip {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    white-space: nowrap;
    animation: chip-float var(--dur, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }

  @keyframes chip-float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  .su-kit__chip--a {
    top: 10px;
    left: -30px;
    --dur: 3.8s;
    --delay: 0s;
  }

  .su-kit__chip--b {
    top: 40px;
    right: -40px;
    --dur: 4.4s;
    --delay: .6s;
  }

  .su-kit__chip--c {
    bottom: 20px;
    left: -40px;
    --dur: 5s;
    --delay: 1.1s;
  }

  .su-kit__chip--d {
    bottom: 0px;
    right: -24px;
    --dur: 3.6s;
    --delay: .3s;
  }

  /* RIGHT — items list */
  .su-kit__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .su-kit__item {
    background: #fff;
    border: 1px solid var(--d-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--sh);
    transition: var(--tr);
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .su-kit__item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--item-color, var(--d-orange));
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform var(--tr);
    transform-origin: center;
  }

  .su-kit__item:hover {
    transform: translateX(4px);
    box-shadow: var(--sh-h);
    border-color: rgba(26, 58, 107, .15);
  }

  .su-kit__item:hover::after {
    transform: scaleY(1);
  }

  .su-kit__item-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--item-bg, #FFF0E6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .su-kit__item-text {}

  .su-kit__item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--d-blue);
    display: block;
    margin-bottom: 2px;
  }

  .su-kit__item-desc {
    font-size: 11.5px;
    color: var(--d-muted);
    display: block;
  }

  /* ══════════════════════════════════════════════════════════
   BLOCK 2 — LMS SUPPORT  (full-width dramatic strip)
   ══════════════════════════════════════════════════════════ */
  .su-diff__lms {
    background: #fff;
    border: 1px solid var(--d-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--sh);
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 380px;
    margin-bottom: 64px;
  }

  /* Left pane */
  .su-lms__left {
    background: linear-gradient(155deg, var(--d-orange) 0%, #FF4500 100%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .su-lms__left::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
  }

  .su-lms__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 22px;
    align-self: flex-start;
  }

  .su-lms__h {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .su-lms__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .su-lms__stat {
    margin-top: auto;
    display: flex;
    gap: 24px;
  }

  .su-lms__stat-item {
    color: #fff;
  }

  .su-lms__stat-num {
    font-size: 22px;
    font-weight: 800;
    display: block;
    line-height: 1;
  }

  .su-lms__stat-lbl {
    font-size: 10px;
    opacity: .7;
    display: block;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  /* Right pane */
  .su-lms__right {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .su-lms__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .su-lms__feature {
    background: #F7F9FF;
    border: 1px solid var(--d-border);
    border-radius: 14px;
    padding: 18px 18px 16px;
    transition: var(--tr);
    cursor: default;
  }

  .su-lms__feature:hover {
    background: #fff;
    border-color: rgba(255, 107, 43, .2);
    box-shadow: 0 6px 24px rgba(255, 107, 43, .08);
    transform: translateY(-3px);
  }

  .su-lms__feature-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .su-lms__feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }

  .su-lms__feature-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--d-blue);
  }

  .su-lms__feature-desc {
    font-size: 11.5px;
    color: var(--d-muted);
    line-height: 1.65;
  }

  /* Bottom note */
  .su-lms__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 107, 43, .05);
    border: 1px solid rgba(255, 107, 43, .12);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 12.5px;
    color: var(--d-muted);
    line-height: 1.6;
  }

  .su-lms__note-ico {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ══════════════════════════════════════════════════════════
   BLOCK 3 — CURRICULUM COVERAGE
   "Science Subjects" horizontal showcase
   ══════════════════════════════════════════════════════════ */
  .su-diff__curric {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: stretch;
  }

  /* Left — text intro */
  .su-curric__intro {
    background: var(--d-blue);
    border-radius: 28px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .su-curric__intro::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    top: -60px;
    right: -60px;
    pointer-events: none;
  }

  .su-curric__eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--d-yellow);
    margin-bottom: 14px;
  }

  .su-curric__h {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .su-curric__body {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .su-curric__grades {
    margin-top: auto;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .su-curric__grade-pill {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
  }

  /* Right — subject cards in a 2×3 grid */
  .su-curric__subjects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .su-curric__subj {
    background: #fff;
    border: 1px solid var(--d-border);
    border-radius: 20px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--sh);
    transition: var(--tr);
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .su-curric__subj::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--subj-glow, rgba(255, 107, 43, .08)) 0%, transparent 65%);
    opacity: 0;
    transition: opacity var(--tr);
  }

  .su-curric__subj:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-h);
    border-color: rgba(26, 58, 107, .14);
  }

  .su-curric__subj:hover::before {
    opacity: 1;
  }

  .su-curric__subj-emoji {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    transition: transform var(--tr);
  }

  .su-curric__subj:hover .su-curric__subj-emoji {
    transform: scale(1.15) translateY(-3px);
  }

  .su-curric__subj-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--d-blue);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .su-curric__subj-tag {
    font-size: 10.5px;
    color: var(--d-muted);
    line-height: 1.5;
  }

  /* Color accent bar on hover */
  .su-curric__subj-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--subj-color, var(--d-orange));
    transform: scaleX(0);
    transition: transform var(--tr);
    border-radius: 0 0 2px 2px;
  }

  .su-curric__subj:hover .su-curric__subj-bar {
    transform: scaleX(1);
  }


  /* ── ANIMATIONS ──────────────────────────────────────────── */
  .su-anim-d {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1),
      transform .6s cubic-bezier(.4, 0, .2, 1);
  }

  .su-anim-d.visible {
    opacity: 1;
    transform: none;
  }

  .sd1 {
    transition-delay: .08s;
  }

  .sd2 {
    transition-delay: .16s;
  }

  .sd3 {
    transition-delay: .24s;
  }

  .sd4 {
    transition-delay: .32s;
  }

  .sd5 {
    transition-delay: .40s;
  }

  .sd6 {
    transition-delay: .48s;
  }

  /* ── RESPONSIVE ──────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .su-diff__kit {
      grid-template-columns: 1fr;
    }

    .su-kit__panel {
      padding: 36px 28px;
    }

    .su-kit__box-viz {
      min-height: 140px;
    }

    .su-diff__lms {
      grid-template-columns: 1fr;
    }

    .su-lms__left {
      padding: 36px 28px;
    }

    .su-lms__right {
      padding: 32px 28px;
    }

    .su-diff__curric {
      grid-template-columns: 1fr;
    }

    .su-curric__intro {
      padding: 36px 28px;
    }

    .su-curric__subjects {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 640px) {
    .su-diff__inner {
      padding: 72px 16px 88px;
    }

    .su-kit__items {
      gap: 10px;
    }

    .su-lms__grid {
      grid-template-columns: 1fr;
    }

    .su-curric__subjects {
      grid-template-columns: repeat(2, 1fr);
    }

    .su-kit__chip {
      display: none;
    }
  }




  /* ─────────────────────────────────────────────
   SEO-ONLY (reused from your existing page)
───────────────────────────────────────────── */
  .seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  /* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
  :root {
    --navy: #003366;
    --navy-deep: #001f40;
    --navy-soft: rgba(0, 51, 102, 0.07);
    --orange: #f7941d;
    --orange-dk: #e07810;
    --orange-lt: #fff6ed;
    --orange-md: rgba(247, 148, 29, 0.18);
    --cream: #fdf9f4;
    --sand: #f2ede4;
    --white: #ffffff;
    --ink: #1a1c2e;
    --body: #52546e;
    --muted: #9496b0;
    --border: #e6e2da;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.1);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* ─────────────────────────────────────────────
   BASE
───────────────────────────────────────────── */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--ink);
    overflow-x: hidden;
  }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
  }

  img {
    display: block;
    max-width: 100%;
  }

  a {
    text-decoration: none;
  }

  /* ─────────────────────────────────────────────
   SCROLL-REVEAL BASE STATES
───────────────────────────────────────────── */
  [data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  [data-reveal="left"] {
    transform: translateX(-36px);
  }

  [data-reveal="right"] {
    transform: translateX(36px);
  }

  [data-reveal="scale"] {
    transform: scale(0.92);
  }

  [data-reveal="up"] {
    transform: translateY(36px);
  }

  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }


  /* ══════════════════════════════════════════════════
   SECTION 1  —  WHY SCHOOLS CHOOSE
══════════════════════════════════════════════════ */
  .wsc-section {
    padding: 100px 0 90px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  /* Animated floating molecules in background */
  .wsc-bg-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }

  .mol {
    position: absolute;
    border-radius: 50%;
    animation: floatMol linear infinite;
    opacity: 0;
  }

  .mol-ring {
    border: 2px solid rgba(0, 51, 102, 0.07);
    background: transparent;
  }

  .mol-dot {
    background: rgba(247, 148, 29, 0.08);
  }

  @keyframes floatMol {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 0;
    }

    10% {
      opacity: 1;
    }

    90% {
      opacity: 1;
    }

    100% {
      transform: translateY(-120px) rotate(180deg);
      opacity: 0;
    }
  }

  /* Dot-grid texture overlay */
  .wsc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 51, 102, 0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
  }

  /* Big ghost text watermark */
  .wsc-watermark {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 16vw, 200px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 51, 102, 0.045);
    letter-spacing: -8px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  /* ── Section Header ── */
  .wsc-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 2;
  }

  .pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .pill-orange {
    background: var(--orange-lt);
    border: 1.5px solid var(--orange-md);
    color: var(--orange);
  }

  .pill-navy {
    background: var(--navy-soft);
    border: 1.5px solid rgba(0, 51, 102, 0.15);
    color: var(--navy);
  }

  .wsc-title-img {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 16px;
  }

  .wsc-title-fallback {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.13;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    display: none;
  }

  .wsc-title-fallback em {
    font-style: normal;
    color: var(--orange);
  }

  .wsc-sub {
    font-size: 1rem;
    color: var(--body);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
  }

  /* ── Benefits Grid ── */
  .wsc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
  }

  .wsc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 32px 26px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;

    /* reveal */
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.6s var(--ease),
      transform 0.6s var(--ease),
      border-color 0.3s,
      box-shadow 0.35s var(--ease);
  }

  .wsc-card.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .wsc-card:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 52px rgba(0, 51, 102, 0.10);
    transform: translateY(-7px) !important;
  }

  /* Animated shine sweep on hover */
  .wsc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
    z-index: 1;
  }

  .wsc-card:hover::after {
    left: 160%;
  }

  /* Top gradient bar */
  .wsc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 3px 3px 0 0;
    transition: transform 0.4s var(--ease);
  }

  .wsc-card:hover::before {
    transform: scaleX(1);
  }

  /* Ghost number */
  .wsc-ghost-num {
    position: absolute;
    bottom: -16px;
    right: 10px;
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 51, 102, 0.06);
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke 0.3s;
  }

  .wsc-card:hover .wsc-ghost-num {
    -webkit-text-stroke: 1.5px rgba(247, 148, 29, 0.18);
  }

  /* Icon box */
  .wsc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(140deg, var(--navy) 0%, #00509d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
    transition: transform 0.35s var(--ease-back), background 0.3s;
    position: relative;
    z-index: 2;
  }

  .wsc-card:hover .wsc-icon {
    background: linear-gradient(140deg, var(--orange) 0%, var(--orange-dk) 100%);
    transform: rotate(-8deg) scale(1.12);
  }

  .wsc-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 9px;
    line-height: 1.35;
    position: relative;
    z-index: 2;
  }

  .wsc-card p {
    font-size: 12.5px;
    color: var(--body);
    line-height: 1.68;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
  }

  .wsc-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    background: var(--orange-lt);
    border-radius: 50px;
    padding: 3px 12px;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
  }

  /* 7th card — full-width standout */
  .wsc-card.wsc-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 30px 36px;
  }

  .wsc-card.wsc-card--wide::before {
    height: 4px;
  }

  .wsc-card.wsc-card--wide .wsc-ghost-num {
    font-size: 110px;
    bottom: -22px;
    right: 20px;
  }

  .wsc-card.wsc-card--wide .wsc-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 26px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .wsc-card.wsc-card--wide .wsc-body {
    flex: 1;
  }

  .wsc-card.wsc-card--wide h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .wsc-card.wsc-card--wide p {
    margin-bottom: 10px;
    font-size: 13px;
  }


  /* ══════════════════════════════════════════════════
   SECTION 2  —  WHAT SCHOOLS SAY (Video)
══════════════════════════════════════════════════ */
  .vid-section {
    padding: 70px 0 60px;
    /* Reduced gap */
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  /* Ambient mesh glow instead of harsh diagonal wash */
  .vid-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(29, 111, 184, 0.04) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
  }

  .vid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  /* ── Left column ── */
  .vid-left {}

  .vid-heading {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.7px;
  }

  .vid-heading em {
    font-style: normal;
    color: var(--orange);
    position: relative;
    display: inline-block;
  }

  .vid-heading em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    opacity: 0.3;
  }

  .vid-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 440px;
  }

  /* Witness points */
  .vid-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .vid-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ECEAE4;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateX(-22px);
  }

  .vid-point.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  .vid-point:hover {
    background: #FAFBFC;
    border-color: var(--or);
    box-shadow: 0 8px 20px rgba(245, 124, 43, 0.08);
    transform: translateX(8px) !important;
  }

  .vp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 124, 43, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .vid-point:hover .vp-icon {
    background: var(--or);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
  }

  /* ── Right: Video card ── */
  .vid-card-wrap {
    position: relative;
  }

  /* Floating proof chips */
  .vchip {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 10px 18px 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    z-index: 6;
    animation: chipFloat 5s ease-in-out infinite;
  }

  .vchip:nth-child(2) {
    animation-delay: -1.5s;
  }

  .vchip:nth-child(3) {
    animation-delay: -3s;
  }

  @keyframes chipFloat {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  .vchip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
  }

  @keyframes dotPulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.4;
      transform: scale(0.7);
    }
  }

  .vchip-1 {
    top: -16px;
    left: -16px;
  }

  .vchip-2 {
    bottom: 80px;
    right: -24px;
  }

  .vchip-3 {
    bottom: -16px;
    left: 24px;
    animation-delay: -2s;
  }

  .vid-card {
    display: block;
    background: var(--white);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 25px 60px rgba(29, 111, 184, 0.08);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .vid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 35px 80px rgba(245, 124, 43, 0.12);
  }

  /* Video thumbnail area */
  .vid-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #d6e8f8 0%, #c0d9f0 50%, #aecde8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Science icon grid in thumbnail bg */
  .vid-thumb-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    opacity: 0.09;
    pointer-events: none;
  }

  .vid-thumb-bg span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
  }

  .vid-thumb-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(0, 51, 102, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.6;
  }

  /* Play button */
  .vid-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    padding-left: 6px;
    z-index: 4;
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.45), 0 18px 44px rgba(247, 148, 29, 0.4);
    animation: playPulse 2.5s infinite;
    transition: transform 0.3s var(--ease-back), background 0.25s;
  }

  .vid-card:hover .vid-play {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--orange-dk);
  }

  @keyframes playPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.5), 0 18px 44px rgba(247, 148, 29, 0.35);
    }

    70% {
      box-shadow: 0 0 0 26px rgba(247, 148, 29, 0), 0 18px 44px rgba(247, 148, 29, 0.35);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(247, 148, 29, 0), 0 18px 44px rgba(247, 148, 29, 0.35);
    }
  }

  /* Bottom info bar */
  .vid-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }

  .vid-bar-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }

  .vid-bar-text {
    flex: 1;
    min-width: 0;
  }

  .vid-bar-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vid-bar-text p {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vid-bar-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.5px;
    transition: gap 0.25s;
  }

  .vid-card:hover .vid-bar-cta {
    gap: 11px;
  }


  /* ══════════════════════════════════════════════════
   SECTION 3  —  BRING STEM TO YOUR SCHOOL
══════════════════════════════════════════════════ */
  .cta-section {
    padding: 80px 0;
    background: #FAFBFC;
    position: relative;
    overflow: hidden;
  }

  /* Decorative rings */
  .cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
    pointer-events: none;
    animation: ringBreath 6s ease-in-out infinite;
  }

  .cta-ring-1 {
    width: 380px;
    height: 380px;
    top: -140px;
    left: -120px;
    border-color: rgba(0, 51, 102, 0.06);
    animation-delay: 0s;
  }

  .cta-ring-2 {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -60px;
    border-color: rgba(0, 51, 102, 0.04);
    animation-delay: -2s;
  }

  .cta-ring-3 {
    width: 320px;
    height: 320px;
    bottom: -100px;
    right: -100px;
    border-color: rgba(247, 148, 29, 0.08);
    animation-delay: -4s;
  }

  @keyframes ringBreath {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.06);
    }
  }

  /* ── Header ── */
  .cta-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
  }

  .cta-heading {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -1px;
  }

  .cta-heading strong {
    color: var(--orange);
  }

  .cta-lead {
    font-size: 15px;
    color: var(--body);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── 3 Service Cards ── */
  .cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
  }

  .cta-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    opacity: 0;
    transform: translateY(28px);
  }

  .cta-card.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 60px rgba(0, 51, 102, 0.08), 0 15px 30px rgba(247, 148, 29, 0.08);
    border-color: rgba(247, 148, 29, 0.3);
  }

  /* Animated gradient top bar */
  .cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1D6FB8, #7C3AED, #F7941D);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 5px 5px 0 0;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .cta-card:hover::before {
    transform: scaleX(1);
  }

  /* Ghost BG number */
  .cta-card-num {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 51, 102, 0.03);
    pointer-events: none;
    user-select: none;
    transition: all 0.4s ease;
  }

  .cta-card:hover .cta-card-num {
    -webkit-text-stroke: 2px rgba(247, 148, 29, 0.1);
    transform: scale(1.05) rotate(-5deg);
  }

  /* Icon */
  .cta-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1D6FB8 0%, #16A34A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(29, 111, 184, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s, box-shadow 0.4s;
  }

  .cta-card:hover .cta-icon {
    background: linear-gradient(135deg, #F7941D 0%, #E11D48 100%);
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.3);
  }

  .cta-card h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
  }

  .cta-card p {
    font-size: 13px;
    color: var(--body);
    line-height: 1.68;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
  }

  .cta-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 2;
    transition: color 0.25s, gap 0.3s;
  }

  .cta-card:hover .cta-card-cta {
    color: var(--orange);
    gap: 13px;
  }

  /* ── Bottom CTA Banner ── */
  .cta-banner {
    background: linear-gradient(135deg, #1D6FB8 0%, #7C3AED 50%, #E11D48 100%);
    border-radius: 30px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);

    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .cta-banner.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Inner glow blobs */
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.12);
    pointer-events: none;
    animation: blobMorph 8s ease-in-out infinite;
  }

  .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 200px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    pointer-events: none;
    animation: blobMorph 10s ease-in-out infinite reverse;
  }

  @keyframes blobMorph {

    0%,
    100% {
      border-radius: 50%;
      transform: scale(1) rotate(0deg);
    }

    33% {
      border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
      transform: scale(1.08) rotate(10deg);
    }

    66% {
      border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
      transform: scale(0.95) rotate(-5deg);
    }
  }

  .cta-banner-left {
    position: relative;
    z-index: 1;
  }

  .cta-banner-left h3 {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 7px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .cta-banner-left p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.52);
    font-style: italic;
  }

  .cta-banner-right {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  /* Buttons */
  .btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.38);
  }

  .btn-orange:hover {
    background: var(--orange-dk);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(247, 148, 29, 0.45);
  }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease);
  }

  .btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
  }

  /* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .wsc-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .wsc-card.wsc-card--wide {
      grid-column: 1 / -1;
    }

    .vid-section::before {
      display: none;
    }

    .vid-inner {
      grid-template-columns: 1fr;
      gap: 56px;
    }

    .vid-desc {
      max-width: 100%;
    }

    .cta-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {

    .wsc-section,
    .vid-section,
    .cta-section {
      padding: 70px 0;
    }

    .wsc-grid {
      grid-template-columns: 1fr;
    }

    .wsc-card.wsc-card--wide {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .wsc-card.wsc-card--wide .wsc-icon {
      margin-bottom: 0;
    }

    .vchip-2 {
      display: none;
    }

    .cta-cards {
      grid-template-columns: 1fr;
    }

    .cta-banner {
      flex-direction: column;
      text-align: center;
      padding: 36px 28px;
    }

    .cta-banner-right {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .wrap {
      padding: 0 18px;
    }

    .vid-heading {
      font-size: 1.75rem;
    }

    .cta-heading {
      font-size: 1.9rem;
    }

    .vchip-3 {
      display: none;
    }

    .btn-orange,
    .btn-outline-white {
      font-size: 13px;
      padding: 13px 22px;
    }
  }

  /*
 * ScienceUtsav — CSS Animation Patch
 * Add this AFTER your existing stylesheet.
 *
 * ROOT CAUSE: The About section uses .rv with .in as the trigger class,
 * but the original .rv rule was incomplete — it had no .rv.in definition.
 * The JS was also using .revealed instead of .in for these elements.
 * This patch ensures all three animation systems work correctly.
 */

  /* ── Fix 1: .rv elements (About section) ──────────────────
   JS now adds .in — this makes them visible                */
  .rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .rv.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Fix 2: .su-anim-d elements (What Makes Us Different) ─
   JS adds .visible — this makes them visible               */
  .su-anim-d {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(.4, 0, .2, 1),
      transform 0.6s cubic-bezier(.4, 0, .2, 1);
  }

  .su-anim-d.visible {
    opacity: 1;
    transform: none;
  }

  /* Stagger delays — keep these */
  .sd1 {
    transition-delay: .08s;
  }

  .sd2 {
    transition-delay: .16s;
  }

  .sd3 {
    transition-delay: .24s;
  }

  .sd4 {
    transition-delay: .32s;
  }

  .sd5 {
    transition-delay: .40s;
  }

  .sd6 {
    transition-delay: .48s;
  }

  /* ── Fix 3: [data-reveal] elements (WSC, Video, CTA) ──────
   JS adds .revealed — verify these rules exist            */
  [data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-reveal="left"] {
    transform: translateX(-36px);
  }

  [data-reveal="right"] {
    transform: translateX(36px);
  }

  [data-reveal="scale"] {
    transform: scale(0.92);
  }

  [data-reveal="up"] {
    transform: translateY(36px);
  }

  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }

  /* ── Fix 4: .wsc-card and .cta-card revealed state ────────
   JS adds .revealed with stagger delays                   */
  .wsc-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.3s,
      box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .wsc-card.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-card {
    opacity: 0;
    transform: translateY(28px);
  }

  .cta-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.42s ease,
      border-color 0.3s;
  }

  /* ── Fix 5: .vid-point revealed state ─────────────────────*/
  .vid-point {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.5s ease, transform 0.5s ease,
      background 0.25s, border-color 0.25s;
  }

  .vid-point.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  /* ── Fix 6: .cta-banner revealed state ────────────────────*/
  #ctaBanner {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  #ctaBanner.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Redesign: What Makes Us Different & Our Promise ── */

  .su-diff-new {
    padding: 80px 0;
    background: #ffffff;
    background: var(--white, #ffffff);
    border-bottom: 1px solid #e6e2da;
    border-bottom: 1px solid var(--border, #e6e2da);
  }

  .su-diff-new__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  /* LEFT COLUMN — was completely missing, causing layout collapse */
  .su-diff-new__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .su-diff-new__title-img {
    max-width: 750px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
  }

  .su-diff-new__title .highlight-yellow {
    color: #F7941D;
    position: relative;
    display: inline-block;
  }

  .su-diff-new__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #52546e;
    color: var(--body, #52546e);
    max-width: 520px;
  }

  .su-diff-new__right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .su-diff-new__img {
    max-width: 100%;
    height: auto;
    display: block;
    background: none;
  }

  @media (max-width: 992px) {
    .su-diff-new__wrap {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }

    .su-diff-new__desc {
      max-width: 100%;
    }

    .su-diff-new__right {
      order: -1;
    }
  }

  /* Our Promise Section */
  .ab-new {
    padding: 80px 0 40px;
    background: #f8fafc;
  }

  @media (max-width: 768px) {
    .ab-new {
      padding: 40px 0 20px;
    }
  }

  .ab-new__top-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
  }

  .ab-new__left {
    position: sticky;
    top: 100px;
  }

  .ab-new__promise {
    margin-bottom: 20px;
  }

  .promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .ab-new__heading {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .ab-new__heading .highlight-orange {
    color: #F7941D;
  }

  .ab-new__heading .highlight-purple {
    color: #7C3AED;
  }

  .ab-new__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ab-new__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }

  .chk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
  }

  .chk-icon.green {
    background: #16A34A;
  }

  .chk-icon.purple {
    background: #7C3AED;
  }

  .chk-icon.orange {
    background: #F7941D;
  }

  .ab-new__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .ab-new__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .ab-new__image-block {
    position: relative;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.05) 0%, transparent 70%);
    padding: 30px;
    border-radius: 30px;
  }

  .ab-new__img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .ab-new__stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s var(--ease);
  }

  .stat-card:hover {
    transform: translateY(-5px);
  }

  .stat-card .stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .stat-card.card-orange .stat-icon {
    background: #FFF0E6;
    color: #F7941D;
  }

  .stat-card.card-blue .stat-icon {
    background: #EEF3FF;
    color: #1D6FB8;
  }

  .stat-card.card-green .stat-icon {
    background: #E6FAF2;
    color: #16A34A;
  }

  .stat-card.card-purple .stat-icon {
    background: #F5EEFF;
    color: #7C3AED;
  }

  .stat-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .stat-content .lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--grey);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .stat-content .sub {
    font-size: 9.5px;
    color: var(--muted);
  }

  .ab-new__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .pillar-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 30px 24px;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
  }

  .pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 51, 102, 0.08);
  }

  .pillar-card .num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--grey);
    opacity: 0.5;
  }

  .pillar-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .pillar-card.card-orange .card-icon {
    background: #FFF0E6;
    color: #F7941D;
  }

  .pillar-card.card-blue .card-icon {
    background: #EEF3FF;
    color: #1D6FB8;
  }

  .pillar-card.card-green .card-icon {
    background: #E6FAF2;
    color: #16A34A;
  }

  .pillar-card.card-purple .card-icon {
    background: #F5EEFF;
    color: #7C3AED;
  }

  .pillar-card h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }

  .pillar-card p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
  }

  @media (max-width: 992px) {
    .ab-new__top-wrap {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .ab-new__left {
      position: static;
    }

    .ab-new__bottom {
      grid-template-columns: repeat(2, 1fr);
    }

    .ab-new__cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .ab-new__stats-grid {
      grid-template-columns: 1fr;
    }

    .ab-new__bottom {
      grid-template-columns: 1fr;
    }

    .ab-new__cards-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ── C-STEM REDESIGN: Stats Bar, Advantage, & Empowering Classrooms ── */

  /* 1. What Makes Us Different features */
  .su-diff-new__features {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
  }

  .su-feat-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFF8F2;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(247, 148, 29, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .su-feat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(247, 148, 29, 0.3);
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.06);
  }

  .su-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
  }

  .su-feat-icon.orange {
    background: #F7941D;
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.2);
  }

  .su-feat-icon.blue {
    background: #1D6FB8;
    box-shadow: 0 4px 12px rgba(29, 111, 184, 0.2);
  }

  .su-feat-icon.green {
    background: #16A34A;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
  }

  .su-feat-content {
    display: flex;
    flex-direction: column;
  }

  .su-feat-content strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }

  .su-feat-content span {
    font-size: 12px;
    color: var(--grey);
  }

  /* 2. Stats Bar */
  .stats-bar-new {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid #ECEAE4;
    border-top: 1px solid #ECEAE4;
    position: relative;
    z-index: 2;
  }

  .stats-bar-new__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .stat-item {
    background: #fff;
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid #ECEAE4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s, border-color 0.35s;
    z-index: 1;
  }

  .stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(13, 31, 60, 0.08);
  }

  .stat-item.orange:hover {
    border-color: #F7941D;
  }

  .stat-item.blue:hover {
    border-color: #1D6FB8;
  }

  .stat-item.green:hover {
    border-color: #16A34A;
  }

  .stat-item.purple:hover {
    border-color: #7C3AED;
  }

  .stat-deco-icon {
    position: absolute;
    right: -15px;
    bottom: -20px;
    font-size: 90px;
    opacity: 0.05;
    color: var(--navy);
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.3s ease;
    z-index: 0;
  }

  .stat-item.orange:hover .stat-deco-icon {
    color: #F7941D;
    opacity: 0.1;
  }

  .stat-item.blue:hover .stat-deco-icon {
    color: #1D6FB8;
    opacity: 0.1;
  }

  .stat-item.green:hover .stat-deco-icon {
    color: #16A34A;
    opacity: 0.1;
  }

  .stat-item.purple:hover .stat-deco-icon {
    color: #7C3AED;
    opacity: 0.1;
  }

  .stat-item:hover .stat-deco-icon {
    transform: scale(1.15) rotate(-10deg);
  }

  .stat-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  .stat-number {
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }

  .stat-item.orange .stat-number {
    color: #F7941D;
  }

  .stat-item.blue .stat-number {
    color: #1D6FB8;
  }

  .stat-item.green .stat-number {
    color: #16A34A;
  }

  .stat-item.purple .stat-number {
    color: #7C3AED;
  }

  /* Ensure spans inside .stat-number inherit correct typography */
  .stat-number span {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
  }

  .stat-content h4 {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    text-transform: uppercase;
    line-height: 1.3;
  }

  .stat-content>span {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.4;
  }

  /* 3. About Section Cards Grid */
  .ab-new__illustration {
    display: flex;
    align-items: center;
    margin-top: 40px;
  }

  .ab-new__cards-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
  }

  .ab-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ECEAE4;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .ab-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 31, 60, 0.05);
  }

  .ab-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .ab-card.card-orange .ab-card-icon {
    background: #FFF0E6;
    color: #F7941D;
  }

  .ab-card.card-blue .ab-card-icon {
    background: #EEF3FF;
    color: #1D6FB8;
  }

  .ab-card.card-green .ab-card-icon {
    background: #E6FAF2;
    color: #16A34A;
  }

  .ab-card.card-purple .ab-card-icon {
    background: #F5EEFF;
    color: #7C3AED;
  }

  .ab-card.card-orange:hover {
    border-color: #F7941D;
  }

  .ab-card.card-blue:hover {
    border-color: #1D6FB8;
  }

  .ab-card.card-green:hover {
    border-color: #16A34A;
  }

  .ab-card.card-purple:hover {
    border-color: #7C3AED;
  }

  .ab-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ab-card-content h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  .ab-card-content p {
    font-size: 11px;
    color: var(--grey);
    line-height: 1.4;
  }

  /* 4. The ScienceUtsav Advantage */
  .adv-section {
    padding: 50px 0 90px;
    background: #fff;
    border-bottom: 1px solid #ECEAE4;
  }

  .adv-section__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .adv-section__head {
    text-align: center;
    margin-bottom: 60px;
  }

  .adv-section__title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.25;
  }

  .adv-section__sub {
    font-size: 15px;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .adv-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .adv-card {
    background: #fff;
    border: 1px solid #ECEAE4;
    border-radius: 20px;
    padding: 40px 28px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s, border-color 0.35s;
  }

  .adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(13, 31, 60, 0.08);
  }

  .adv-card:nth-child(1):hover {
    border-color: #F7941D;
  }

  .adv-card:nth-child(2):hover {
    border-color: #1D6FB8;
  }

  .adv-card:nth-child(3):hover {
    border-color: #16A34A;
  }

  .adv-card__num {
    position: absolute;
    top: -17px;
    left: 28px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .adv-card:nth-child(1) .adv-card__num {
    background: #F7941D;
    box-shadow: 0 4px 10px rgba(247, 148, 29, 0.3);
  }

  .adv-card:nth-child(2) .adv-card__num {
    background: #1D6FB8;
    box-shadow: 0 4px 10px rgba(29, 111, 184, 0.3);
  }

  .adv-card:nth-child(3) .adv-card__num {
    background: #16A34A;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
  }

  .adv-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 8px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .adv-card__desc {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
  }

  /* 3D float keyframe */
  @keyframes adv-float {

    0%,
    100% {
      transform: translateY(0px);
      filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
    }

    50% {
      transform: translateY(-10px);
      filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.13));
    }
  }

  .adv-card__img-box {
    height: 220px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    overflow: visible;
  }

  .adv-card__img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: contain;
    animation: adv-float 4s ease-in-out infinite;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
    transition: transform 0.4s ease;
  }

  /* stagger each card's animation start */
  .adv-card:nth-child(1) .adv-card__img {
    animation-delay: 0s;
  }

  .adv-card:nth-child(2) .adv-card__img {
    animation-delay: 0.6s;
  }

  .adv-card:nth-child(3) .adv-card__img {
    animation-delay: 1.2s;
  }

  .adv-card:hover .adv-card__img {
    animation-play-state: paused;
    transform: translateY(-14px) scale(1.05);
    filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.22));
  }

  .adv-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
  }

  .badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    background: #F8F9FA;
    color: var(--navy);
    border: 1px solid #ECEAE4;
  }

  .badge-item i {
    font-size: 11px;
  }

  .badge-item i.fa-shield-alt {
    color: #F7941D;
  }

  .badge-item i.fa-graduation-cap {
    color: #1D6FB8;
  }

  .badge-item i.fa-thumbs-up {
    color: #16A34A;
  }

  .badge-item i.fa-book {
    color: #7C3AED;
  }

  .badge-item i.fa-users {
    color: #1D6FB8;
  }

  .badge-item i.fa-school {
    color: #16A34A;
  }

  .badge-item i.fa-flask {
    color: #F7941D;
  }

  .badge-item i.fa-calculator {
    color: #16A34A;
  }

  .badge-item i.fa-star {
    color: #7C3AED;
  }

  /* 5. Empowering Classrooms Section */
  .emp-section {
    padding: 90px 0;
    background: #F8F9FA;
    border-bottom: 1px solid #ECEAE4;
  }

  .emp-section__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
  }

  .emp-section__left {
    display: flex;
    justify-content: center;
  }

  .emp-section__img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #ECEAE4;
  }

  .emp-section__right {
    display: flex;
    flex-direction: column;
  }

  .emp-section__title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .emp-section__title .highlight-blue {
    color: #1D6FB8;
  }

  .emp-section__desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 35px;
  }

  .emp-section__desc strong {
    color: var(--navy);
  }

  .emp-section__icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .emp-icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .emp-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ECEAE4;
    color: #1D6FB8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .emp-icon-item:hover .emp-icon-box {
    transform: scale(1.1) rotate(4deg);
    color: #F7941D;
    border-color: #F7941D;
  }

  .emp-icon-content h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .emp-icon-content p {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
  }

  /* 6. Responsive Adaptations */
  @media (max-width: 992px) {
    .su-diff-new__features {
      justify-content: center;
    }

    .stats-bar-new__wrap {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .adv-section__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .emp-section__wrap {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }

    .emp-section__icons {
      justify-content: center;
    }

    .emp-section__left {
      order: 2;
    }

    .emp-section__right {
      order: 1;
    }
  }

  @media (max-width: 600px) {
    .stats-bar-new__wrap {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .emp-section__icons {
      grid-template-columns: 1fr;
      align-items: center;
    }

    .emp-icon-item {
      justify-content: flex-start;
      margin-left: 20%;
    }
  }



  /* STEM STREAM SECTION */
  .stem-stream-section {
    padding: 10px 0;
    /* REDUCED: Was 20px, now 10px to tighten space with above section */
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  /* Heading Container */
  .section-intro {
    text-align: center;
    margin-bottom: 5px;
    /* REDUCED: Minimum gap before the content below starts */
  }

  /* PNG Heading Size & Alignment */
  .heading-png {
    max-width: 750px;
    /* Scaling the title to a standard desktop heading size */
    width: 100%;
    /* Responsive: shrinks on mobile */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centers the image */
  }

  /* Title Line (The yellow line) */
  .title-line {
    width: 50px;
    height: 3px;
    background-color: #ffcc00;
    margin: 8px auto 0;
    /* REDUCED: Very small gap (8px) between PNG and line */
  }

  /* Optional: Science Grid Pattern */
  .stem-stream-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e1e8ed 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
  }

  .stream-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }

  .stream-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    /* Softly fades the edges into the white background */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  }

  .stream-track {
    display: flex;
    gap: 15px;
    width: max-content;
  }

  .stream-track img {
    height: 220px;
    width: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
    background: #f8fafc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
  }

  /* Animation Speeds */
  .stream-left .stream-track {
    animation: scrollLeftInfinite 45s linear infinite;
  }

  .stream-right .stream-track {
    animation: scrollRightInfinite 45s linear infinite;
  }

  /* Hover: Pause & Highlight */
  .stream-row:hover .stream-track {
    animation-play-state: paused;
  }

  .stream-track img:hover {
    transform: scale(1.05) translateY(-5px);
    border: 3px solid #003d71;
    /* Science Utsav Royal Blue */
    box-shadow: 0 15px 30px rgba(0, 61, 113, 0.15);
    z-index: 10;
  }

  /* Keyframes for Smooth Looping */
  @keyframes scrollLeftInfinite {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% / 2));
    }
  }

  @keyframes scrollRightInfinite {
    from {
      transform: translateX(calc(-100% / 2));
    }

    to {
      transform: translateX(0);
    }
  }

  /* Responsive Scaling */
  @media (max-width: 768px) {
    .stream-track img {
      height: 140px;
      width: 200px;
    }

    .stream-row {
      mask-image: none;
      /* Clearer on mobile */
    }
  }

  /* ── CURRICULUM-BASED STEM KITS INTRO ── */
  .cstem-intro-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .cstem-intro-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
  }

  .cstem-intro-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .cstem-intro-header {
    text-align: center;
    margin-bottom: 25px;
  }

  .cstem-intro-header img {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    display: block;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  }

  .cstem-intro-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }

  .cstem-intro-content {
    flex: 1 1 40%;
    min-width: 320px;
  }

  .cstem-intro-title {
    color: #1e3a8a;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px 0;
  }

  .cstem-intro-desc {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .cstem-intro-image-wrapper {
    position: relative;
    width: 110%;
    margin-left: -5%;
    margin-top: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .cstem-intro-image-wrapper:hover {
    transform: scale(1.03);
  }

  .cstem-intro-features {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 40px;
    align-content: center;
    max-width: 700px;
  }

  .cstem-feature-card {
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: span 2;
  }

  .cstem-feature-card:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .cstem-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
  }

  .cstem-feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.3s ease;
  }

  .cstem-feature-card:hover .cstem-feature-icon {
    transform: scale(1.1);
  }

  .cstem-feature-title {
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .cstem-feature-text {
    color: #64748b;
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
  }

  .cstem-intro-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px dashed #e2e8f0;
  }

  .cstem-bottom-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 200px;
    padding: 15px;
    border-radius: 12px;
    transition: background 0.3s ease;
  }

  .cstem-bottom-item:hover {
    background: #f8fafc;
  }

  .cstem-bottom-icon {
    font-size: 32px;
  }

  .cstem-bottom-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
  }

  .cstem-bottom-text {
    color: #64748b;
    font-size: 13px;
    margin: 0;
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .cstem-intro-features {
      flex: 1 1 60%;
    }
  }

  @media (max-width: 992px) {
    .cstem-intro-main {
      flex-direction: column;
    }

    .cstem-intro-title {
      font-size: 32px;
    }

    .cstem-intro-image-wrapper {
      width: 100%;
      margin-left: 0;
      margin-top: 0;
    }

    .cstem-intro-features {
      width: 100%;
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .cstem-intro-title {
      font-size: 28px;
    }

    .cstem-intro-features {
      grid-template-columns: repeat(4, 1fr);
    }

    .cstem-feature-card {
      grid-column: span 2;
    }

    .cstem-feature-card:nth-child(5) {
      grid-column: span 2;
      /* Reset the offset */
    }

    .cstem-intro-bottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .cstem-bottom-item {
      width: 100%;
    }
  }

  @media (max-width: 500px) {
    .cstem-intro-features {
      grid-template-columns: 1fr;
    }

    .cstem-feature-card {
      grid-column: span 1;
    }

    .cstem-feature-card:nth-child(5) {
      grid-column: span 1;
    }
  }

/* ==========================================================================
   CURRICULUM SUPPORT SECTION
   ========================================================================== */
.cstem-curriculum-section {
  padding: 30px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.cstem-curriculum-section::before,
.cstem-curriculum-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}
.cstem-curriculum-section::before { top: 20px; left: 20px; }
.cstem-curriculum-section::after { bottom: 20px; right: 20px; }
.cstem-curriculum-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cstem-curriculum-header {
  text-align: center;
  margin-bottom: 0px;
}
.cstem-curriculum-title-img {
  max-width: 750px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.cstem-curriculum-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}
.cstem-curr-left {
  flex: 1 1 40%;
  min-width: 320px;
}
.cstem-curr-right {
  flex: 1 1 50%;
  text-align: center;
}
.cstem-curr-right-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.cstem-curr-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.cstem-curr-icon-circle {
  width: 70px;
  height: 70px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}
.cstem-curr-heading {
  color: #1e3a8a;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}
.cstem-curr-text {
  color: #334155;
  font-size: 22px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  border-left: 4px solid #3b82f6;
  padding-left: 20px;
}
.cstem-curr-mid {
  margin-bottom: 30px;
}
.cstem-curr-subtitle {
  color: #1e3a8a;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.cstem-curr-underline {
  width: 50px;
  height: 4px;
  background: #fbbf24;
  border-radius: 2px;
}
.cstem-curr-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}
.cstem-curr-card {
  flex: 1 1 160px;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.cstem-curr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.cstem-curr-card-icon-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.cstem-curr-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
}
.cstem-curr-card-line {
  width: 35px;
  height: 4px;
  border-radius: 2px;
}
.cstem-curr-banner {
  background: #eff6ff;
  border-radius: 16px;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}
.cstem-curr-banner-icon {
  width: 55px;
  height: 55px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  flex-shrink: 0;
}
.cstem-curr-banner-text {
  color: #1e293b;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .cstem-curriculum-top {
    flex-direction: column;
    text-align: center;
  }
  .cstem-curr-heading-wrap {
    justify-content: center;
  }
  .cstem-curr-mid {
    text-align: center;
  }
  .cstem-curr-underline {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cstem-curr-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
}

/* ==========================================================================
   GRADE-WISE STEM KITS SECTION
   ========================================================================== */
.cstem-gradewise-section {
  padding: 60px 20px 80px;
  background: #f8fafc;
  position: relative;
}
.cstem-gradewise-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cstem-gradewise-header {
  text-align: center;
  margin-bottom: 60px;
}
.cstem-gradewise-title-img {
  max-width: 650px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}
.cstem-gradewise-subtitle {
  color: #1e3a8a;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.cstem-gradewise-underline {
  width: 50px;
  height: 4px;
  background: #fbbf24;
  margin: 0 auto;
  border-radius: 2px;
}
.cstem-gradewise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.cstem-gw-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px 60px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cstem-gw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.cstem-gw-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -20%;
  width: 140%;
  height: 80px;
  background: var(--gw-light);
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
.cstem-gw-card > * {
  position: relative;
  z-index: 1;
}
.cstem-gw-grade-label {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  color: var(--gw-color);
}
.cstem-gw-grade-pill {
  background: var(--gw-color);
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  padding: 5px 30px;
  border-radius: 25px;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 1.2;
}
.cstem-gw-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed var(--gw-color);
  color: var(--gw-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 25px;
}
.cstem-gw-card-title {
  color: var(--gw-color);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  min-height: 50px;
}
.cstem-gw-card-line {
  width: 30px;
  height: 4px;
  background: var(--gw-color);
  border-radius: 2px;
  margin-bottom: 20px;
}
.cstem-gw-card-desc {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .cstem-gradewise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cstem-gradewise-grid {
    grid-template-columns: 1fr;
  }
  .cstem-gw-card-title {
    min-height: auto;
  }
}

/* ── HOW CHILDREN LEARN SECTION ── */
.how-children-learn-section {
  padding: 60px 0;
  background: #fcfcfc;
}
.hcl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.hcl-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.hcl-title-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hcl-text-block {
  background: #ffffff;
  border: 2px solid #1D6FB8;
  border-radius: 30px;
  padding: 40px 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
.hcl-text-block::before {
  content: "“";
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #facc15;
  position: absolute;
  top: -30px;
  left: 25px;
  background: #fff;
  padding: 0 10px;
  line-height: 1;
}
.hcl-text-block::after {
  content: "”";
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #facc15;
  position: absolute;
  bottom: -45px;
  right: 25px;
  background: #fff;
  padding: 0 10px;
  line-height: 1;
}
.hcl-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}
.hcl-bottom-image-wrapper {
  text-align: center;
}
.hcl-bottom-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .how-children-learn-section {
    padding: 40px 0;
  }
  .hcl-container {
    padding: 0 20px;
  }
  .hcl-text-block {
    padding: 20px 25px;
  }
  .hcl-text {
    font-size: 15px;
  }
}

/* ── LMS CTA SECTION ── */
.lms-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.lms-cta-box {
  background: #ffffff;
  border: 1.5px solid #1D6FB8;
  border-radius: 40px;
  padding: 15px 40px 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 650px;
  width: 100%;
  z-index: 1;
}

.lms-cta-text {
  text-align: center;
  flex: 1;
}

.lms-cta-text h3 {
  color: #10326B;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 5px 0;
}

.lms-cta-text p {
  color: #10326B;
  font-size: 16px;
  margin: 0;
}

.lms-cta-btn {
  background: #1D6FB8;
  color: #ffffff;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-top: -25px; /* Overlaps the box slightly */
  z-index: 2;
  position: relative;
  box-shadow: 0 6px 0 #facc15; /* Yellow 3d shadow */
  transition: all 0.2s ease;
}

.lms-cta-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #facc15;
  color: #ffffff;
}

.lms-btn-icon {
  background: #ffffff;
  color: #1D6FB8;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}

@media (max-width: 768px) {
  .lms-cta-box {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
  }
  .lms-cta-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}
