/* ---------- hero : edge to edge, larger than life ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0c;
    isolation: isolate;
}

/* full bleed photo on the right */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
	overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    transform: scale(1.18);
    opacity: 0;
    animation: heroZoom 2.4s .2s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes heroZoom {
    0% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* dark scrims so left copy stays legible */

/* .hero-media::after{content:"";position:absolute;inset:0;background:
  linear-gradient(90deg,#070708 0%,rgba(8,8,10,.96) 26%,rgba(8,8,10,.72) 44%,rgba(8,8,10,.15) 66%,rgba(8,8,10,.05) 100%),
  linear-gradient(180deg,rgba(8,8,10,.55),transparent 30%,rgba(8,8,10,.4))} */


.hero-curtain {
    position: absolute;
    inset: 0;
    background: #0a6c74;
    z-index: 20;
    transform-origin: top;
    animation: curtain 1.1s .1s cubic-bezier(.76, 0, .24, 1) forwards;
}

@keyframes curtain {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 200px 40px 80px;
}

.hero-copy {
    max-width: 680px;
}

.hero .eyebrow {
    color: var(--teal-400);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: #fff;
    margin: 24px 0;
    letter-spacing: -.035em;
    line-height: .96;
}

.hero h1 .ln {
    display: block;
    overflow: hidden;
}

.hero h1 .ln span {
    display: block;
    transform: translateY(110%);
    animation: lineUp .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero h1 .ln:nth-child(1) span {
    animation-delay: .7s;
}

.hero h1 .ln:nth-child(2) span {
    animation-delay: .82s;
}

.hero h1 .ln:nth-child(3) span {
    animation-delay: .94s;
}

@keyframes lineUp {
    to {
        transform: translateY(0);
    }
}

.hero h1 .accent {
    position: relative;
    color: var(--teal-400);
    white-space: nowrap;
}

.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.02em;
    height: .14em;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline .9s 1.5s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

.hero p.lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #000;
    max-width: 540px;
    margin-bottom: 34px;
    opacity: 0;
    animation: fadeUp .9s 1.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s 1.7s forwards;
}

.hero-trust {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    opacity: 0;
    animation: fadeUp .9s 1.9s forwards;
}

.hero-trust .badges {
    display: flex;
    gap: 8px;
}

.hero-trust .badges i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 1rem;
}

.hero-trust b {
    color: #fff;
}

/* floating glass cards on the photo */
.float-card {
    position: absolute;
    z-index: 8;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 15px 20px 15px 16px;
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    gap: 13px;
    opacity: 0;
}

.float-card .dot {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex: none;
}

.float-card b {
    font-family: var(--display);
    font-size: 1.15rem;
    display: block;
    color: var(--teal-900);
    line-height: 1.1;
}

.float-card small {
    font-size: .78rem;
    color: var(--ink-soft);
}

.fc1 {
    top: 16%;
    right: 5%;
    animation: cardIn .8s 2s forwards, bob 6s 2.8s ease-in-out infinite;
}

.fc1 .dot {
    background: var(--cyan-100);
    color: var(--teal-700);
}

.fc2 {
    top: 58%;
    right: 4%;
    animation: cardIn .8s 2.2s forwards, bob 7s 3s ease-in-out infinite;
}

.fc2 .dot {
    background: #ffe9e6;
    color: var(--coral);
}

.fc3 {
    bottom: 9%;
    right: 16%;
    animation: cardIn .8s 2.4s forwards, bob 8s 3.2s ease-in-out infinite;
}

.fc3 .dot {
    background: var(--gold-soft);
    color: #b67d00;
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 2.6s forwards;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(rgba(255, 255, 255, .7), transparent);
    animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {

    0%,
    100% {
        transform: scaleY(.4);
        opacity: .4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* posters */
.posters {
    background: var(--paper);
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.poster {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
    transition: .4s;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
}

.poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pg);
    z-index: 0;
}

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .55));
    z-index: 1;
}

.poster>* {
    position: relative;
    z-index: 2;
}

.poster .ptag {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85;
    font-weight: 700;
}

.poster h4 {
    font-size: 1.15rem;
    margin: 6px 0 14px;
}

.poster .pbtn {
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: .92;
}

.poster:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.poster:hover .pbtn {
    gap: 12px;
}

.p1 {
    --pg: linear-gradient(160deg, #1e6fb5, #0a3d6b);
}

.p2 {
    --pg: linear-gradient(160deg, #ff7a5c, #d83b2e);
}

.p3 {
    --pg: linear-gradient(160deg, #9b6bd6, #5e35a8);
}

.p4 {
    --pg: linear-gradient(160deg, #16a3ad, #0a6c74);
}

/* footer */
footer {
    background: var(--teal-900);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.foot-cross {
    position: absolute;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    font-size: 14rem;
    right: -30px;
    top: -40px;
    line-height: 1;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.foot-grid .logo {
    color: #fff;
    margin-bottom: 16px;
}

.foot-grid .logo b {
    color: var(--coral);
}

.foot-about {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    max-width: 280px;
}

.foot-col h5 {
    font-family: var(--display);
    font-size: 1rem;
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    padding: 5px 0;
    transition: .25s;
}

.foot-col a:hover {
    color: #fff;
    padding-left: 6px;
}

.foot-bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, .5);
    font-size: .84rem;
    position: relative;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

.reveal.d5 {
    transition-delay: .4s;
}

.reveal.d6 {
    transition-delay: .48s;
}

/* responsive */
@media (max-width: 980px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .fc1 {
        top: 10%;
        right: 3%;
    }

    .fc3 {
        display: none;
    }

    .why-grid,
    .panel.active {
        grid-template-columns: 1fr;
    }

    .journey-grid,
    .eco-grid,
    .stats-grid,
    .poster-row {
        grid-template-columns: 1fr 1fr;
    }

    .stages-grid,
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .panel-body {
        padding: 30px;
    }

    .hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .foot-grid {
        gap: 30px;
    }
}

@media (max-width: 560px) {

    .journey-grid,
    .eco-grid,
    .stats-grid,
    .poster-row {
        grid-template-columns: 1fr;
    }

    .touch-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-inner {
        padding: 120px 22px 90px;
    }

    .float-card {
        display: none;
    }

    .wrap {
        padding: 0 18px;
    }
}

/* ===== ABOUT PAGE ===== */
.ahero {
    /*position: relative;*/
    /*isolation: isolate;*/
    /*overflow: hidden;*/
    /*background: #06181b;*/
    /*min-height: 90vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    /* padding: 150px 20px 40px; */
}

.ahero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(720px 520px at 78% 16%, rgba(63, 194, 203, .22), transparent 60%), radial-gradient(640px 520px at 8% 94%, rgba(255, 194, 75, .13), transparent 55%), linear-gradient(160deg, #06181b, #0a2a2f);
}

.ahero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 26px 26px;
}

.adot {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .6;
    animation: bob 9s ease-in-out infinite;
}

.ahero-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.ahero .eyebrow {
    color: var(--teal-400);
}

.ahero-copy>* {
    opacity: 0;
    animation: fadeUp .8s forwards;
}

.ahero-copy .eyebrow {
    animation-delay: .5s;
}

.ahero-copy h1 {
    animation-delay: .62s;
}

.ahero-copy .lead {
    animation-delay: .74s;
}

.ahero-copy .achips {
    animation-delay: .86s;
}

.ahero h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    color: #103137;
    margin: 18px 0;
    letter-spacing: -.03em;
    line-height: 1.0;
}

.ahero h1 .accent {
    color: #007c9f;
    position: relative;
    white-space: nowrap;
}

.ahero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.02em;
    height: .13em;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline .9s 1s cubic-bezier(.22, 1, .36, 1) forwards;
}

.ahero .lead {
    color: #000;
    max-width: 560px;
    font-size: 1.03rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.achips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.achips span {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    color: #000;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: .86rem;
    font-weight: 500;
}

.achips b {
    color: var(--teal-400);
}

.logo-card {
    position: relative;
    z-index: 5;
    background: linear-gradient(160deg, #fff, #fbf7ef);
    border-radius: 30px;
    padding: 50px 44px;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
    text-align: center;
    opacity: 0;
    animation: cardIn 1s .7s forwards;
}

.logo-card img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 6px;
}

.logo-card .lcsub {
    font-size: .84rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal-700);
    font-weight: 700;
}

.lead.light {
    font-weight: 400;
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(.95);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {

    .ahero-grid,
    .story-cols {
        grid-template-columns: 1fr;
    }

    .logo-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts {
        grid-template-columns: 1fr 1fr;
    }

    .ap-grid {
        grid-template-columns: 1fr;
    }

    .tcols {
        columns: 2;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 560px) {
    .hero-media img {
        object-position: 40% center;
    }

    .ahero {
        padding: 60px 0;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .tile.span2,
    .tile.row2 {
        grid-column: auto;
        grid-row: auto;
    }

    .facts {
        grid-template-columns: 1fr 1fr;
    }

    .tcols {
        columns: 1;
    }

    .cta-form input {
        min-width: 100%;
    }
}

/* akansha */

/* who we are */
.who {
    background: var(--paper)
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 50px;
    align-items: center
}

.who-copy p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    margin-bottom: 18px
}

.who-copy .first {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--teal-900);
    line-height: 1.32;
    margin-bottom: 20px
}

.who-copy .first .hl {
    color: var(--coral)
}

.cred {
    background: linear-gradient(155deg, #0a6c74, #053b41);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.cred::before {
    content: "+";
    position: absolute;
    right: -10px;
    top: -30px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 10rem;
    color: rgba(255, 255, 255, .06);
    line-height: 1
}

.cred .ci {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.cred .ci:last-child {
    border-bottom: none
}

.cred .ci .icn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex: none
}

.cred .ci b {
    font-family: var(--display);
    font-size: 1.2rem;
    display: block
}

.cred .ci small {
    color: rgba(255, 255, 255, .72);
    font-size: .86rem
}

/* ============ HERO ============ */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #063e45 0%, #053b41 40%, #0a2e33 100%);
    isolation: isolate;
}

.hero .field {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero .glow {
    position: absolute;
    border-radius: 50%;
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

.hero .sub {
    font-size: 1.18rem;
    color: #fff;
    font-weight: 600;
    max-width: 560px;
    margin-bottom: 16px;
    font-family: var(--display);
}

.hero .lead {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-art {
    position: relative;
    height: 430px;
}

/* Scene with Background Image */
.scene {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: url("/wp-content/uploads/2026/06/who-we-are-about-us.png") center center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

/* Optional Dark Overlay */
.scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.scene .ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.16);
}

.scene .r1 {
    width: 260px;
    height: 260px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: spin 26s linear infinite;
}

.scene .r2 {
    width: 160px;
    height: 160px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.10);
}

.scene .core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--teal-400), var(--teal-700));
    display: grid;
    place-items: center;
    font-size: 2.6rem;
    box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6);
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
}

.o1 {
    transform: translate(110px, -70px);
}

.o2 {
    transform: translate(-120px, -30px);
}

.o3 {
    transform: translate(90px, 80px);
}

.o4 {
    transform: translate(-90px, 90px);
}

.float-card1 {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 13px 18px 13px 14px;
    box-shadow: 0 26px 54px -24px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}

.float-card1 .dot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex: none;
}

.float-card1 b {
    font-family: var(--display);
    font-size: 1.05rem;
    display: block;
    color: var(--teal-900);
    line-height: 1.1;
}

.float-card1 small {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

.fcard-1 {
    top: 6%;
    left: -6%;
    animation: bob 6s 2s ease-in-out infinite;
}

.fcard-1 .dot {
    background: var(--gold-soft);
    color: #b67d00;
}

.fcard-2 {
    bottom: 4%;
    right: -4%;
    animation: bob 7.5s 2.4s ease-in-out infinite;
}

.fcard-2 .dot {
    background: #ffe9e6;
    color: var(--coral);
}


/* section base */
section {
    position: relative
}

.sec-pad {
    padding: 70px 0
}

.sec-head {
    text-align: center;
    max-width: 730px;
    margin: 0 auto 35px
}

.sec-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    color: var(--teal-900);
    margin: 16px 0 14px
}

.sec-head p {
    color: var(--ink-soft);
    font-size: 1.06rem
}

.sec-head .y {
    color: var(--coral)
}

/* what we do */
.do {
    background: var(--paper)
}

.do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.scard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px;
    transition: .4s;
    position: relative;
    overflow: hidden
}

.scard::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--ac, var(--teal-500));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s
}

.scard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    background: #fff
}

.scard:hover::after {
    transform: scaleY(1)
}

.scard .si {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    background: var(--sb, var(--cyan-100))
}

.scard h4 {
    font-size: 1.18rem;
    color: var(--teal-900);
    margin-bottom: 10px
}

.scard p {
    color: var(--ink-soft);
    font-size: .94rem
}

/* impact */
.impact {
    background: linear-gradient(180deg, var(--cream), var(--cyan-50))
}

.counts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.cbig {
    border-radius: var(--r-md);
    padding: 38px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.cbig::before {
    content: "";
    position: absolute;
    right: -26px;
    top: -26px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12)
}

.cbig.b1 {
    background: linear-gradient(150deg, #16a3ad, #0a6c74)
}

.cbig.b2 {
    background: linear-gradient(150deg, #ff7a5c, #d83b2e)
}

.cbig .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -.03em
}

.cbig .lbl {
    font-size: .98rem;
    margin-top: 8px;
    color: rgba(255, 255, 255, .92);
    max-width: 340px
}

.cqual {
    display: grid;
    gap: 12px
}

.qrow {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .35s
}

.qrow:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm)
}

.qrow .qi {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--cyan-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    flex: none
}

.qrow span.t {
    font-weight: 600;
    color: var(--teal-900);
    font-size: .98rem
}

.impact-note {
    text-align: center;
    max-width: 680px;
    margin: 38px auto 0;
    color: var(--ink-soft);
    font-size: 1.02rem;
    font-style: italic
}

.logo-card {
    position: relative;
    z-index: 5;
    background: linear-gradient(160deg, #fff, #fbf7ef);
    border-radius: 30px;
    padding: 50px 44px;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
    text-align: center;
    opacity: 0;
    animation: cardIn 1s .7s forwards;
}

.logo-card img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 6px;
}

.logo-card .lcsub {
    font-size: .84rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal-700);
    font-weight: 700;
}

/* IMAGE NOTE: replace .scene with a warm candid photo of a nurse officer with school students */
.hero-art {
    position: relative;
    height: 420px
}

.scene {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: radial-gradient(120% 90% at 80% 10%, rgba(63, 194, 203, .28), transparent 55%), radial-gradient(90% 80% at 12% 90%, rgba(255, 194, 75, .20), transparent 55%), linear-gradient(160deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center
}

.scene .bus {
    font-size: 6rem;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .4))
}

.scene .ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, .16);
    width: 280px;
    height: 280px;
    animation: spin 30s linear infinite
}

.kids {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.kids span {
    font-size: 2rem
}

.float-card {
    position: absolute;
    z-index: 8;
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    padding: 13px 18px 13px 14px;
    box-shadow: 0 26px 54px -24px rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    gap: 12px
}

.float-card .dot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex: none
}

.float-card b {
    font-family: var(--display);
    font-size: 1.02rem;
    display: block;
    color: var(--teal-900);
    line-height: 1.1
}

.float-card small {
    font-size: .76rem;
    color: var(--ink-soft)
}

.fcard-1 {
    top: 6%;
    left: -6%;
    animation: bob 6s 2s ease-in-out infinite
}

.fcard-1 .dot {
    background: var(--gold-soft);
    color: #b67d00
}

.fcard-2 {
    bottom: 5%;
    right: -4%;
    animation: bob 7.5s 2.4s ease-in-out infinite
}

.fcard-2 .dot {
    background: #ffe9e6;
    color: var(--coral)
}

/* ===== TRUST STRIP (marquee) ===== */
.trust {
    background: var(--teal-900);
    padding: 10px 0;
    overflow: hidden;
    position: relative
}

.trust::before,
.trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none
}

.trust::before {
    left: 0;
    background: linear-gradient(90deg, var(--teal-900), transparent)
}

.trust::after {
    right: 0;
    background: linear-gradient(270deg, var(--teal-900), transparent)
}

.marquee {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scroll 28s linear infinite
}

.trust:hover .marquee {
    animation-play-state: paused
}

.tbadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;
    padding: 10px 20px
}

.tbadge .e {
    font-size: 1.15rem
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

/* ===== section base ===== */
section {
    position: relative
}

.sec-pad {
    padding: 92px 0
}

.sec-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 54px
}

.sec-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    color: var(--teal-900);
    margin: 16px 0 14px
}

.sec-head p {
    color: var(--ink-soft);
    font-size: 1.05rem
}

.sec-head .y {
    color: var(--coral)
}

/* ===== why different approach ===== */
.why {
    background: var(--paper)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.wcard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 22px;
    transition: .4s
}

.wcard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    background: #fff
}

.wcard .wi {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: var(--cyan-100)
}

.wcard p {
    color: var(--ink);
    font-size: .94rem;
    font-weight: 500;
    line-height: 1.45
}

.wcard.c1 .wi {
    background: #ffe9e6
}

.wcard.c2 .wi {
    background: var(--gold-soft)
}

.wcard.c3 .wi {
    background: #dcebff
}

.wcard.c4 .wi {
    background: #ece2ff
}

.wcard.c5 .wi {
    background: var(--cyan-100)
}

/* ===== JOURNEY (tabs desktop / accordion mobile) ===== */
.journey {
    background: linear-gradient(180deg, var(--cyan-50), var(--cream))
}

.journey-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.jtab {
    font-family: var(--body);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    padding: 13px 22px;
    border-radius: 100px;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.jtab .e {
    font-size: 1.1rem
}

.jtab:hover {
    border-color: var(--teal-400);
    color: var(--teal-700)
}

.jtab.active {
    background: var(--teal-700);
    color: #fff;
    border-color: var(--teal-700);
    box-shadow: 0 14px 30px -14px rgba(10, 108, 116, .9)
}

.stages {
    max-width: 1040px;
    margin: 0 auto
}

.stage {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.stage+.stage {
    margin-top: 14px
}

.stage-head {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none
}

.stage-head .e {
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--cyan-100);
    display: grid;
    place-items: center;
    flex: none
}

.stage-head .sh-t {
    flex: 1
}

.stage-head b {
    font-family: var(--display);
    font-size: 1.12rem;
    color: var(--teal-900);
    display: block;
    letter-spacing: -.02em
}

.stage-head small {
    color: var(--coral);
    font-weight: 700;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.stage-head .chev {
    transition: transform .4s;
    color: var(--teal-500);
    font-size: 1.2rem
}

.stage.open .stage-head .chev {
    transform: rotate(180deg)
}

.stage-body {
    display: grid;
    grid-template-columns: 1.15fr .85fr
}

.sb-copy {
    padding: 40px 40px 40px
}

.sb-obj {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-soft);
    color: #7a5300;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 18px
}

.sb-copy h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--teal-900);
    margin-bottom: 14px;
    line-height: 1.1
}

.sb-copy>p {
    color: var(--ink-soft);
    font-size: 1rem;
    margin-bottom: 22px
}

.kp {
    display: grid;
    gap: 11px
}

.kp .k {
    display: flex;
    gap: 11px;
    align-items: flex-start
}

.kp .k .ck {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cyan-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    flex: none;
    font-size: .82rem;
    font-weight: 700;
    margin-top: 1px
}

.kp .k span.t {
    font-size: .95rem;
    color: var(--ink);
    font-weight: 500
}

/* IMAGE NOTE: replace .sb-art with a candid photo matching the age group */
.sb-art {
    position: relative;
    /* background: linear-gradient(155deg, var(--teal-600), var(--teal-900)); */
    display: grid;
    place-items: center;
    overflow: hidden;
    min-height: 340px
}

.sb-art::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px) */
}

.sb-art .big {
    font-size: 6rem;
    position: relative;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .35))
}

.sb-art .cap {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    text-align: center;
    letter-spacing: .04em
}

/* ===== what schools build (3x2) ===== */
.build {
    background: var(--paper)
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.scard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px;
    transition: .4s;
    position: relative;
    overflow: hidden
}

.scard::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--ac, var(--teal-500));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s
}

.scard img,
.wcard img {
    width: 44px;
    margin-bottom: 15px;
}

.scard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    background: #fff
}

.scard:hover::after {
    transform: scaleY(1)
}

.scard .si {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    background: var(--sb, var(--cyan-100))
}

.scard h4 {
    font-size: 1.16rem;
    color: var(--teal-900);
    margin-bottom: 10px
}

.scard p {
    color: var(--ink-soft);
    font-size: .94rem
}

/* ===== health ambassadors (ripple) ===== */
.amb {
    background: linear-gradient(155deg, var(--teal-700), var(--teal-900));
    color: #fff;
    overflow: hidden
}

.amb .cross {
    position: absolute;
    font-family: var(--display);
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    font-size: 15rem;
    left: -40px;
    bottom: -60px;
    line-height: 1
}

.amb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.amb .eyebrow {
    color: var(--teal-400)
}

.amb h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    margin: 16px 0 18px
}

.amb p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 22px;
    font-size: 1.02rem
}

.ripple {
    position: relative;
    height: 340px;
    display: grid;
    place-items: center
}

.ripple .wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(63, 194, 203, .4)
}

.ripple .w1 {
    width: 120px;
    height: 120px
}

.ripple .w2 {
    width: 210px;
    height: 210px;
    border-color: rgba(63, 194, 203, .26)
}

.ripple .w3 {
    width: 300px;
    height: 300px;
    border-color: rgba(63, 194, 203, .15)
}

.ripple .pulse {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--gold);
    width: 120px;
    height: 120px;
    animation: pulse 3s ease-out infinite
}

@keyframes pulse {
    0% {
        width: 120px;
        height: 120px;
        opacity: .9
    }

    100% {
        width: 320px;
        height: 320px;
        opacity: 0
    }
}

.ripple .badge-c {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e89a17);
    display: grid;
    place-items: center;
    text-align: center;
    color: #5b4200;
    font-family: var(--display);
    font-weight: 800;
    font-size: .82rem;
    line-height: 1.1;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .5);
    position: relative;
    z-index: 2;
    padding: 10px
}

.ripple .node {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal-900);
    box-shadow: var(--shadow-sm);
    z-index: 3;
    white-space: nowrap
}

.ripple .n1 {
    top: 10%;
    left: 70%;
    transform: translateX(-50%)
}

.ripple .n2 {
    bottom: 30%;
    left: 15%;
}

.ripple .n3 {
    bottom: 21%;
    right: 10%;
}

/* ambassador point cards (on dark section) */
.ambx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 46px;
    position: relative
}

.ambx-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-md);
    padding: 26px 24px;
    transition: .4s
}

.ambx-card:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateY(-5px)
}

.ambx-card .axi {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 14px
}

.ambx-card h4 {
    font-family: var(--display);
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.ambx-card p {
    color: rgba(255, 255, 255, .78);
    font-size: .92rem
}

/* ===== faq ===== */
.faq {
    background: linear-gradient(180deg, var(--cyan-50), var(--cream))
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s
}

.faq-item.open {
    box-shadow: var(--shadow-sm);
    border-color: var(--teal-400)
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none
}

.faq-q .qn {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--teal-900);
    flex: 1;
    line-height: 1.25
}

.faq-q .chev {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cyan-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex: none;
    transition: transform .4s, background .3s
}

.faq-item.open .faq-q .chev {
    transform: rotate(45deg);
    background: var(--teal-700);
    color: #fff
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1)
}

.faq-a p {
    padding: 0 26px 24px 26px;
    color: var(--ink-soft);
    font-size: .98rem
}

.faq-item.open .faq-a {
    max-height: 320px
}

/* ===== parent reassurance ===== */
.parent {
    background: var(--cream)
}

.parent-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center
}

/* IMAGE NOTE: warm photo of a child with a nurse officer / parent — reassuring, not dramatic */
.parent-art {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 380px;
    background: linear-gradient(160deg, #ffe9e6, var(--cyan-100));
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md)
}

.parent-art .big {
    font-size: 6rem
}

.parent-art .cap {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--ink-soft);
    font-size: .72rem;
    letter-spacing: .04em
}

.parent-copy h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: var(--teal-900);
    margin: 14px 0 18px
}

.parent-copy p {
    color: var(--ink-soft);
    font-size: 1.04rem;
    margin-bottom: 16px
}

.parent-copy .pcard {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--coral);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 18px 22px;
    font-family: var(--display);
    font-weight: 500;
    color: var(--teal-900);
    font-size: 1.05rem
}

/* ===== partner schools ===== */
.schools {
    background: var(--paper)
}

.school-tools {
    max-width: 560px;
    margin: 0 auto 30px;
    position: relative
}

.school-tools input {
    width: 100%;
    padding: 15px 20px 15px 48px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    font-family: var(--body);
    font-size: .96rem;
    color: var(--ink);
    background: var(--cream);
    transition: .3s
}

.school-tools input:focus {
    outline: none;
    border-color: var(--teal-400);
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.school-tools .si {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    opacity: .6
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.school {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px 18px;
    text-align: center;
    transition: .35s;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.school:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    background: #fff
}

.school .slogo {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 13px;
    /* background: linear-gradient(135deg, var(--teal-400), var(--teal-700)); */
    background-color: #fff;
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.1rem
}

.school b {
    font-size: .86rem;
    color: var(--teal-900);
    font-weight: 600;
    line-height: 1.25
}

.school.placeholder .slogo {
    background: linear-gradient(135deg, #9fb4b8, #6d8589)
}

.school.placeholder b {
    color: var(--ink-soft);
    font-style: italic
}

.school.hidden {
    display: none
}

.school-more {
    text-align: center;
    margin-top: 26px
}

.no-result {
    text-align: center;
    color: var(--ink-soft);
    padding: 30px;
    display: none
}

.dev-note {
    max-width: 760px;
    margin: 26px auto 0;
    background: var(--cyan-50);
    border: 1px dashed var(--teal-400);
    border-radius: var(--r-md);
    padding: 18px 22px;
    color: var(--teal-700);
    font-size: .86rem
}

.dev-note b {
    font-family: var(--display)
}

/* ===== closing cta ===== */
.cta {
    background: linear-gradient(180deg, var(--cyan-50), var(--cream))
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(150deg, var(--teal-700), var(--teal-900));
    border-radius: var(--r-lg);
    padding: 62px 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px) */
}

.cta-card h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    position: relative;
    margin-bottom: 16px;
    color: #fff
}

.cta-card p {
    position: relative;
    color: rgba(255, 255, 255, .82);
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: 1.04rem
}

.cta-actions {
    position: relative;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* footer */
footer {
    background: var(--teal-900);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden
}

.foot-cross {
    position: absolute;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    font-size: 14rem;
    right: -30px;
    top: -40px;
    line-height: 1;
    font-family: var(--display)
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative
}

.foot-grid .logo {
    color: #fff;
    margin-bottom: 16px
}

.foot-grid .logo b {
    color: var(--coral)
}

.foot-about {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    max-width: 280px
}

.foot-col h5 {
    font-family: var(--display);
    font-size: 1rem;
    margin-bottom: 16px
}

.foot-col a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    padding: 5px 0;
    transition: .25s
}

.foot-col a:hover {
    color: #fff;
    padding-left: 6px
}

.foot-bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, .5);
    font-size: .84rem;
    position: relative
}

/* reveal + motion */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal.d1 {
    transition-delay: .08s
}

.reveal.d2 {
    transition-delay: .16s
}

.reveal.d3 {
    transition-delay: .24s
}

.reveal.d4 {
    transition-delay: .32s
}

.reveal.d5 {
    transition-delay: .4s
}

.reveal.d6 {
    transition-delay: .48s
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hidden-school {
    display: none;
}

.view-more-btn {
    margin: 30px auto 0;
    display: block;
}

.gallery-section {
    margin: 60px 0;
}

.schoolGallery .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-popup.active {
    display: flex;
}

.popupGallery {
    width: 90%;
    max-width: 1200px;
}

.popupGallery img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}


/* ===== keep india healthy + contact + cta ===== */
.kih {
    background: linear-gradient(180deg, var(--cyan-50), var(--cream))
}

.kih-card {
    max-width: 1000px;
    margin: 0 auto;
    /* background: linear-gradient(150deg, var(--teal-700), var(--teal-900)); */
    background-image: url('/wp-content/uploads/2026/06/school-cta.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--r-lg);
    padding: 60px 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.kih-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px) */
}

.kih-card .tag {
    position: relative;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    text-align: left;
    line-height: 1.1;
}

.kih-card .tag span {
    color: var(--gold)
}

.kih-card p {
    position: relative;
    color: rgba(255, 255, 255, .84);
    max-width: 600px;
    margin-bottom: 70px;
    margin-right: auto;
    text-align: left;
    font-size: 1.04rem
}

.kih-contact {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.kih-contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    /* background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2); */
    border-radius: 100px;
    /* padding: 11px 20px; */
    padding-right: 15px;
    font-weight: 600;
    font-size: .92rem;
    transition: .3s
}

/* .kih-contact a:hover {
    background: rgba(255, 255, 255, .2) 
} */

.kih-actions {
    position: relative;
    display: flex;
    gap: 14px;
    justify-content: start;
    flex-wrap: wrap
}

/* ===== responsive : desktop tabs -> mobile accordion ===== */
@media(max-width:980px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 140px 26px 70px
    }

    .hero-art {
        height: 340px;
        order: -1
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .build-grid {
        grid-template-columns: 1fr 1fr
    }

    .amb-grid,
    .parent-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .ambx-grid {
        grid-template-columns: 1fr
    }

    .school-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

/* breakpoint where tabs convert to accordion */
@media(max-width:860px) {
    .journey-tabs {
        display: none
    }

    .stage-head {
        display: flex
    }

    .stage-body {
        grid-template-columns: 1fr;
        max-height: 0;
        overflow: hidden;
        transition: max-height .55s cubic-bezier(.4, 0, .2, 1)
    }

    .stage.open .stage-body {
        max-height: 1600px
    }

    .sb-copy {
        padding: 6px 26px 30px
    }

    .sb-art {
        min-height: 200px;
        order: -1
    }
}

@media(min-width:861px) {

    /* desktop: tabs drive visibility */
    .stage {
        display: none
    }

    .stage.active {
        display: block
    }

    .stage+.stage {
        margin-top: 0
    }
}

@media(max-width:620px) {
    .school-cta {
        min-height: 520px;
    }

    .school-cta__content {
        padding: 40px 30px;
    }

    .school-cta__content h2 {
        font-size: 2.4rem;
    }

    .school-cta__overlay {
        background:
            linear-gradient(180deg,
                rgba(5, 59, 65, .88) 0%,
                rgba(5, 59, 65, .65) 100%);
    }

    .why-grid,
    .build-grid,
    .school-grid,
    .foot-grid {
        grid-template-columns: 1fr
    }

    .school-grid {
        grid-template-columns: 1fr 1fr
    }

    .fcard-1,
    .fcard-2 {
        display: none
    }

    .cta-card {
        padding: 46px 26px
    }

    .wrap {
        padding: 0 18px
    }

    .hero h1 {
        font-size: 2.4rem
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .marquee {
        animation: none !important
    }
}
