﻿/* ===================================================
   RESET & TOKENS
=================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Nunito Sans',sans-serif;
    background: #FAF7F2;
    color: #2D2010;
    line-height: 1.7;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer;
    font-family: inherit
}

:root {
    --saffron: #E8630A;
    --green: #8fc74a;
    --saffron-d: #C04D00;
    --saffron-l: #FFF3EA;
    --gold: #f15dab;
    --gold-l: #FDF5E6;
    --maroon: #383336;
    --maroon-d: #0f61ab;
    --cream: #FAF7F2;
    --dark: #1A1208;
    --text: #2D2010;
    --muted: #7A6B52;
    --border: rgba(200,146,42,.2);
    --white: #fff;
    --sh: 0 4px 24px rgba(124,26,26,.1);
    --sh-lg: 0 12px 48px rgba(124,26,26,.18);
    --nav-h: 76px;
}

/* ===================================================
   TOP BAR
=================================================== */
.topbar {
    background: var(--maroon-d);
    color: rgba(255,255,255,.78);
    font-size: 11.5px;
    padding: 6px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.topbar-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.topbar a {
    color: rgba(255,255,255,1);
    text-decoration: none;
    transition: color .2s;
    font-size:13px;
}

    .topbar a:hover {
        color: #ffeb16
    }

.tb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 13px;
}

/* ===================================================
   HEADER
=================================================== */
header {
    background: var(--white);
    border-bottom: 0px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    height: var(--nav-h);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 16px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0
}

.logo-emblem {
    width: 54px;
    height: 54px;
    flex-shrink: 0
}

.logo-text h1 {
    font-family: fantasy;
    font-size: 20px;
    font-weight: normal;
    color: var(--maroon);
    line-height: 1.22;
    letter-spacing: .2px;
}

.logo-text p {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .04em;
    margin-top: 0px
}

/* ===================================================
   DESKTOP NAV + DROPDOWNS
=================================================== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0
}

.nav-item {
    position: relative;
    list-style: none
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 30px 12px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border: none;
    transition: background .18s,color .18s;
    line-height: 1;
}

    .nav-link:hover, .nav-item:hover > .nav-link {
        background: transparent;
        color: #6c9d31;
    }

.nav-chevron {
    font-size: 8px;
    opacity: .5;
    transition: transform .25s;
    display: inline-block;
    margin-top: 1px;
}

.nav-item:hover > .nav-link .nav-chevron {
    transform: rotate(180deg)
}

/* Dropdown panel */
.dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.13);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(.98);
    transform-origin: top left;
    transition: opacity .22s,transform .22s,visibility .22s;
    z-index: 600;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.dd-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: background .15s,color .15s;
}

    .dd-link:hover {
        background: #f5f5f5;
        color: #0f61ab
    }

.dd-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    background: var(--cream);
}

.dd-sep {
    height: 1px;
    background: var(--border);
    margin: 5px 0
}

.btn-donate {
    background: #ffeb16 !important;
    color: var(--dark) !important;
    border-radius: 8px;
    padding: 10px 20px !important;
    margin-left: 8px;
    font-weight: 700 !important;
    font-size: 13px;
    /*box-shadow: 0 3px 12px rgba(232,99,10,.35);*/
    transition: background .2s,transform .15s,box-shadow .2s;
}

    .btn-donate:hover {
        background: #8fc74a !important;
        transform: translateY(-1px);
        box-shadow: 0 5px 10px rgba(232,99,10,.45)
    }

/* ===================================================
   HAMBURGER
=================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    background: none;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: background .2s;
}

    .hamburger:hover {
        background: var(--saffron-l)
    }

    .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: all .3s;
        margin: 0 auto;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

/* ===================================================
   MOBILE DRAWER
=================================================== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 490;
    background: rgba(26,8,0,.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

    .mobile-overlay.open {
        display: block;
        opacity: 1;
        pointer-events: all
    }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 495;
    width: min(320px,88vw);
    background: var(--white);
    box-shadow: -8px 0 48px rgba(0,0,0,.18);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding-top: calc(var(--nav-h) + 8px);
}

    .mobile-drawer.open {
        transform: translateX(0)
    }

.mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.05);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    transition: background .15s;
}

    .mob-link:hover {
        background: var(--saffron-l);
        color: var(--saffron-d)
    }

.mob-chevron {
    font-size: 10px;
    opacity: .45;
    transition: transform .25s
}

.mob-item.is-open .mob-chevron {
    transform: rotate(180deg)
}

.mob-submenu {
    display: none;
    background: #F5F0E8
}

.mob-item.is-open .mob-submenu {
    display: block
}

.mob-sub-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px 11px 34px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.04);
    transition: background .15s,color .15s;
}

    .mob-sub-link:hover {
        color: var(--saffron);
        background: var(--saffron-l)
    }

.mob-donate {
    display: block;
    margin: 18px 22px;
    padding: 14px;
    text-align: center;
    background: var(--saffron);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
}

    .mob-donate:hover {
        background: var(--saffron-d)
    }

.mob-contact {
    display: block;
    margin: 0 22px 18px;
    padding: 12px;
    text-align: center;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
}

    .mob-contact:hover {
        background: var(--cream)
    }

/* ===================================================
   HERO SLIDER
=================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(400px,45vh,400px);
    overflow: hidden;
    background: var(--dark);
}

.hs-track {
    display: flex;
    height: 100%;
    transition: transform .9s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}

.hs-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

/* Gradient overlay – dark on left, transparent right */
.hs-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg,rgba(20,5,0,.88) 0%,rgba(20,5,0,.6) 45%,rgba(20,5,0,.18) 100%);
}
/* Subtle mandala pattern */
.hs-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='38' fill='none' stroke='%23E8630A' stroke-opacity='.05' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='18' fill='none' stroke='%23E8630A' stroke-opacity='.04' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

.hs-content {
    position: relative;
    z-index: 3;
    padding: 0 2%;
    width: 100%;
    text-align: center;
}
/* Animate content in */
.hs-slide .hs-content {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .65s .15s,transform .65s .15s
}

.hs-slide.active .hs-content {
    opacity: 1;
    transform: none
}

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    padding: 5px 14px;
    border-radius: 100px;
}

    .hs-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--saffron);
        flex-shrink: 0
    }

.hs-content h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(30px,2.5vw,62px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

    .hs-content h2 em {
        font-style: italic;
        color: #F7BA6A
    }

.hs-content p {
    font-size: clamp(13px,1.6vw,16px);
    color: rgba(255,255,255,.65);
    margin-bottom: 30px;
    line-height: 1.65;
    width: 100%;
    text-align:center;
}

.hs-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hs-btn-p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffeb16;
    color: var(--dark);
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all .22s;
    box-shadow: 0 4px 20px rgba(232,99,10,.45);
    white-space: nowrap;
}

    .hs-btn-p:hover {
        background: var(--green);
        transform: translateY(-2px)
    }

.hs-btn-s {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255,255,255,.28);
    transition: all .2s;
    white-space: nowrap;
}

    .hs-btn-s:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.5)
    }

/* Arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.22);
    background: rgba(0,0,0,.28);
    color: rgba(255,255,255,.88);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .22s;
    backdrop-filter: blur(6px);
}

    .hs-arrow:hover {
        background: var(--white);
        border-color: var(--white);
        color: #000
    }

    .hs-arrow.prev {
        left: 22px
    }

    .hs-arrow.next {
        right: 22px
    }

/* Controls bar */
.hs-controls {
    position: absolute;
    bottom: 26px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    justify-content: center;
}

.hs-dots {
    display: flex;
    gap: 7px
}

.hs-dot {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.28);
    border: none;
    cursor: pointer;
    transition: all .3s;
}

    .hs-dot.active {
        background: var(--white);
        width: 44px
    }

.hs-counter {
    font-size: 12px;
    color: rgba(255,255,255,.42);
    font-weight: 700;
    letter-spacing: .07em;
    display:none;
}

/* Progress bar */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--green);
    z-index: 11;
    width: 0;
    transition: none
}

/* Slide number badge top-right */
.hs-slide-num {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 10;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    display:none;
}
.hs-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.15);
    transition: transform 6s ease;
}

/* Zoom-out effect (new) */
.hs-slide.active .hs-bg {
    transform: scale(1);
}
/* =========================
   MOBILE & TABLET FIXES
   ========================= */

/* Tablets */
@media (max-width: 992px) {

    .hs-content {
        max-width: 90%;
        padding: 0 5%;
    }

        .hs-content h2 {
            font-size: clamp(26px, 5vw, 40px);
        }

        .hs-content p {
            font-size: 14px;
        }
}

/* Mobile */
@media (max-width: 768px) {

    .hero-slider {
        height: 50vh;
    }

    .hs-slide {
        align-items: flex-end; /* move content toward bottom */
        padding-bottom: 60px;
    }

    .hs-content {
        max-width: 100%;
        padding: 0 20px;
        display:none
    }

        .hs-content h2 {
            font-size: 24px;
            line-height: 1.2;
        }

        .hs-content p {
            font-size: 13px;
            line-height: 1.5;
        }

    .hs-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    /* Buttons stack nicely */
    .hs-btns {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hs-btn-p,
    .hs-btn-s {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    /* Arrows smaller */
    .hs-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

        .hs-arrow.prev {
            left: 10px;
        }

        .hs-arrow.next {
            right: 10px;
        }

    /* Dots smaller */
    .hs-dot {
        width: 20px;
        height: 3px;
    }

        .hs-dot.active {
            width: 32px;
        }
}

/* Small phones */
@media (max-width: 480px) {

    .hero-slider {
        height: 35vh !important;
    }

    .hs-content {
        display:none;
    }
    .sliders-inner {
        margin-top:0px !important;
    }
    .hs-content h2 {
        font-size: 20px;
    }

    .hs-content p {
        font-size: 12px;
    }

    .hs-controls {
        bottom: 12px;
    }
}
/* ===================================================
   STATS BAR
=================================================== */
.stats-bar {
    background: linear-gradient(135deg,#180800 0%,#3E1200 45%,#541212 100%);
    padding: 0 5%
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-left: 1px solid rgba(255,255,255,.06);
}

.stat-item {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .2s;
}

    .stat-item:hover {
        background: rgba(255,255,255,.04)
    }

.st-ico {
    font-size: 26px;
    flex-shrink: 0
}

.st-num {
    font-family: 'Cormorant Garamond',serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1
}

.st-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.42);
    margin-top: 3px;
    letter-spacing: .02em
}

/* ===================================================
   SECTION HELPERS
=================================================== */
.sec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--saffron);
    background: var(--saffron-l);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 13px;
}

.sec-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(26px,4vw,42px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 12px;
}

.sec-sub {
    font-size: 15px;
    color: #ccc;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
    margin-top:10px;
}

.sec-divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg,var(--saffron),var(--gold));
    border-radius: 2px;
    margin: 13px auto 0
}

.sec-header {
    text-align: center;
    margin-bottom: 48px
}

/* ===================================================
   ABOUT SECTION
=================================================== */

.about-wrap {
    background: #0f61ab;
    border-top: 0px solid var(--border);
    border-bottom: 0px solid var(--border);
    padding: 72px 5%
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.about-visual {
    position: relative
}

.about-img {
    width: 100%;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg,var(--maroon),var(--saffron));
    position: relative;
}

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s
    }

    .about-img:hover img {
        transform: scale(1.04)
    }

    .about-img .om-bg {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 130px;
        color: rgba(255,255,255,.1);
        font-family: 'Cormorant Garamond',serif;
        pointer-events: none;
    }

.about-badge {
    position: absolute;
    bottom: -18px;
    right: -14px;
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 13px 18px;
    border-radius: 14px;
    line-height: 1.4;
    box-shadow: var(--sh);
}

.about-text .sec-label {
    display: inline-block;
    text-align: left
}

.about-text h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(24px,3vw,36px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.22;
    margin-bottom: 14px
}

.about-text p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.7;
    text-align: justify;
    padding: 10px;
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px
}

.pillar {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.pillar-ico {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px
}

.pillar h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px
}

.pillar p {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.4
}

/* ===================================================
   CARD SLIDER (Schools / Notices / Parents)
=================================================== */
.sliders-wrap {
    background: var(--cream);
    padding: 40px 0
}

.sliders-inner {
    max-width: 1275px;
    margin: 0 auto;
    padding: 2% 3%;
    position: relative;
    margin-top: -100px;
    background: #fff;
    border-radius: 20px;
}

.slider-block {
    margin-bottom: 62px
}

    .slider-block:last-child {
        margin-bottom: 0
    }

.slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 10px;
    flex-wrap: wrap
}

.slider-ttl {
    font-family: 'Cormorant Garamond',serif;
    font-size: 26px;
    font-weight: bold;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 9px
}

.sdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0
}

.slider-nav {
    display: flex;
    gap: 7px
}

.sl-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--muted);
    transition: all .2s;
}

    .sl-btn:hover {
        border-color: #0f61ab;
        color: #fff;
        background: #0f61ab
    }

.slider-overflow {
    overflow: hidden
}

.slider-track {
    display: flex;
    gap: 18px;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    will-change: transform
}

/* School card */
.school-card {
    min-width: 285px;
    max-width: 285px;
    background: #fffeea;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    /*box-shadow: var(--sh);*/
    transition: transform .3s,box-shadow .3s;
    flex-shrink: 0;
}
.school-card a {
    text-decoration:none;
}
.school-card a:hover {
    text-decoration:none;
}
    .school-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-sm);
    }

.sc-img {
    height: 158px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#7C1A1A,#E8630A)
}

    .sc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
        transition: transform .4s
    }

.school-card:hover .sc-img img {
    transform: scale(1.07)
}

.sc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,transparent 40%,rgba(0,0,0,.35))
}

.sc-emoji {
    position: absolute;
    bottom: 10px;
    left: 12px;
    z-index: 1;
    font-size: 22px
}

.sc-body {
    padding: 15px 17px
}

    .sc-body h3 {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 5px;
        line-height: 1.3
    }

.sc-loc {
    font-size: 11.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 9px
}

.sc-tag {
    display: inline-block;
    background: #f271b5;
    color: var(--white);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px
}

/* Notice card */
.notice-card {
    min-width: 294px;
    max-width: 294px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--saffron);
    border-radius: 0 14px 14px 0;
    padding: 18px 20px;
    box-shadow: var(--sh);
    flex-shrink: 0;
    transition: transform .25s,box-shadow .25s;
}

    .notice-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-lg)
    }

.nc-date {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.notice-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
    line-height: 1.3
}

.notice-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5
}

.nc-tag {
    display: inline-block;
    margin-top: 10px;
    background: var(--gold-l);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .06em
}

/* Parent card */
.parent-card {
    min-width: 294px;
    max-width: 294px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--sh);
    flex-shrink: 0;
    transition: transform .3s,box-shadow .3s;
    display: flex;
    flex-direction: column;
}

    .parent-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-lg)
    }

.pc-logo {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 13px
}

.parent-card h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
    line-height: 1.3
}

.parent-card p {
    font-size: 12.5px;
    color: var(--muted);
    flex: 1;
    line-height: 1.55
}

.pc-link {
    margin-top: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--saffron);
    text-decoration: none;
    transition: gap .2s
}

    .pc-link:hover {
        gap: 9px
    }

/* ===================================================
   ACTIVITIES SECTION
=================================================== */
.act-wrap {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 5%
}

.act-inner {
    max-width: 1200px;
    margin: 0 auto
}

.act-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.act-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform .3s,box-shadow .3s;
    box-shadow: var(--sh);
    min-height: 200px;
}

    .act-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-lg)
    }

    .act-card.act-featured {
        grid-column: 1/2;
        grid-row: 1/3;
        min-height: 430px
    }

.act-bg-1 {
    background: linear-gradient(160deg,#2A0A0A,#7C1A1A 55%,#E8630A)
}

.act-bg-2 {
    background: linear-gradient(160deg,#0A1A3A,#1A3A7C 55%,#4A80D0)
}

.act-bg-3 {
    background: linear-gradient(160deg,#0A2A0A,#1A5A1A 55%,#3AAA3A)
}

.act-bg-4 {
    background: linear-gradient(160deg,#2A1800,#7A4200 55%,#C8922A)
}

.act-bg-5 {
    background: linear-gradient(160deg,#1A0A2A,#4A1A7A 55%,#8A4AD0)
}

.act-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .32;
    transition: opacity .3s
}

.act-card:hover .act-card-img {
    opacity: .42
}

.act-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.82) 0%,rgba(0,0,0,.2) 55%,transparent 100%)
}

.act-deco {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 52px;
    opacity: .13;
    line-height: 1;
    pointer-events: none;
    user-select: none
}

.act-card.act-featured .act-deco {
    font-size: 100px
}

.act-body {
    position: relative;
    z-index: 2;
    padding: 18px 20px
}

.act-card.act-featured .act-body {
    padding: 26px 28px
}

.act-etag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 7px
}

.act-body h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 6px
}

.act-card.act-featured .act-body h3 {
    font-size: 26px;
    margin-bottom: 10px
}

.act-body p {
    font-size: 12.5px;
    color: rgba(255,255,255,.6);
    line-height: 1.5
}

.act-card.act-featured .act-body p {
    font-size: 14px;
    max-width: 340px
}

.act-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #F5B96A;
    text-decoration: none;
    transition: gap .2s
}

    .act-more:hover {
        gap: 9px
    }

/* Programme list */
.prog-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 30px
}

.prog-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .24s;
    cursor: pointer
}

    .prog-item:hover {
        background: var(--white);
        box-shadow: var(--sh);
        transform: translateY(-2px)
    }

.prog-ico {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
}

.prog-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px
}

.prog-item p {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.35
}

/* Activity stats row */
.act-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 34px
}

.ast {
    background: var(--white);
    padding: 20px 16px;
    text-align: center
}

    .ast:not(:last-child) {
        border-right: 1px solid var(--border)
    }

    .ast .num {
        font-family: 'Cormorant Garamond',serif;
        font-size: 34px;
        font-weight: 600;
        color: var(--maroon);
        line-height: 1
    }

    .ast .lbl {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 4px
    }

/* ===================================================
   MISSION STRIP
=================================================== */
.mission-strip {
    background: linear-gradient(135deg,var(--maroon-d) 0%,#4A1800 100%);
    padding: 70px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .mission-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23E8630A' stroke-opacity='.06' stroke-width='1'/%3E%3C/svg%3E");
        background-size: 60px 60px;
    }

.mission-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative
}

.mission-strip blockquote {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(18px,2.8vw,28px);
    font-weight: 500;
    font-style: italic;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    margin-bottom: 18px
}

    .mission-strip blockquote::before {
        content: '\201C';
        font-size: 72px;
        color: var(--saffron);
        line-height: 0;
        vertical-align: -.38em;
        margin-right: 4px
    }

.mission-strip cite {
    color: rgba(255,255,255,.4);
    font-size: 13px;
    font-style: normal
}

/* ===================================================
   VALUES SECTION
=================================================== */
.values-wrap {
    padding: 72px 5%
}

.values-inner {
    max-width: 1200px;
    margin: 0 auto
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.val-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .val-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--saffron),var(--gold));
        transform: scaleX(0);
        transition: transform .3s;
        transform-origin: left
    }

    .val-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh)
    }

        .val-card:hover::before {
            transform: scaleX(1)
        }

.val-ico {
    font-size: 34px;
    margin-bottom: 12px
}

.val-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px
}

.val-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-wrap {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 72px 5%
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: start
}

.contact-info h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(24px,3vw,36px);
    color: var(--dark);
    margin-bottom: 13px;
    line-height: 1.28
}

.contact-info > p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 26px;
    line-height: 1.65
}

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border)
}

    .cinfo-item:last-child {
        border-bottom: none
    }

.cinfo-ico {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: #ffeb16;
    color: #0f61ab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}

.cinfo-lbl {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase
}

.cinfo-val {
    font-size: 13.5px;
    color: var(--dark);
    font-weight: 600;
    margin-top: 2px
}

.form-group {
    margin-bottom: 15px
}

    .form-group label {
        font-size: 11px;
        font-weight: 700;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .07em;
        display: block;
        margin-bottom: 6px
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        padding: 11px 15px;
        font-family: 'Nunito Sans',sans-serif;
        font-size: 14px;
        color: var(--text);
        background: var(--cream);
        outline: none;
        transition: border-color .2s,background .2s;
        -webkit-appearance: none;
        appearance: none;
    }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--saffron);
            background: var(--white)
        }

    .form-group textarea {
        resize: vertical;
        min-height: 106px
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.btn-submit {
    background: var(--maroon);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-family: 'Nunito Sans',sans-serif;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    margin-top: 4px;
    transition: all .2s;
}

    .btn-submit:hover {
        background: var(--saffron-d);
        transform: translateY(-1px)
    }

/* ===================================================
   FOOTER
=================================================== */
footer {
    background: #073156;
    color: rgba(255,255,255,.6);
    padding: 56px 5% 26px
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 24px
}

.ft-brand h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 19px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3
}

.ft-brand img {
    width:120px;
    margin-bottom:10px;
}

.ft-brand p {
    font-size: 13px;
    line-height: 1.7
}

.ft-brand .tagline {
    font-style: italic;
    color: var(--gold);
    font-size: 12px;
    margin-top: 10px
}

footer h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px
}

footer ul {
    list-style: circle;
    margin-left: 20px;
}

    footer ul li {
        margin-bottom: 9px
    }

    footer ul a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        font-size: 13px;
        transition: color .2s
    }

        footer ul a:hover {
            color: #ffeb16
        }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11.5px;
    color: rgba(255,255,255,.28)
}

/* ===================================================
   FADE-UP REVEAL
=================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease,transform .65s ease
}

    .fade-up.visible {
        opacity: 1;
        transform: none
    }

/* ===================================================
   RESPONSIVE
=================================================== */
@media(max-width:1100px) {
    .values-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .act-bento {
        grid-template-columns: 1fr 1fr
    }

    .act-card.act-featured {
        grid-column: 1/3;
        grid-row: auto;
        min-height: 280px
    }

    .prog-list {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:1024px) {
    .logo-text h1 {
        font-size: 13.5px;
        max-width: 240px
    }

    .nav-link {
        padding: 8px 9px;
        font-size: 12.5px
    }

    .btn-donate {
        padding: 9px 14px !important;
        font-size: 12px
    }

    .main-nav {
        gap: 0
    }
}

@media(max-width:900px) {
    .main-nav {
        display: none !important
    }

    .hamburger {
        display: flex
    }

    .mobile-overlay {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-visual {
        order: 1
    }

    .about-text {
        order: 2
    }

    .about-badge {
        bottom: -12px;
        right: 0
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .act-stats {
        grid-template-columns: repeat(2,1fr)
    }

    .logo-text h1 {
        font-size: 13px;
        max-width: 220px
    }

    .logo-emblem {
        width: 46px;
        height: 46px
    }

    .logo-text p {
        display: none
    }
}

@media(max-width:640px) {
    :root {
        --nav-h: 64px
    }

    .topbar {
        font-size: 10.5px;
        justify-content: center
    }

    .topbar-right {
        display: none
    }

    .hs-arrow {
        display: none
    }

    .hero-slider {
        height: clamp(380px,68vh,560px)
    }

    .hs-content {
        padding: 0 5%
    }

        .hs-content h2 {
            font-size: clamp(26px,7vw,38px)
        }

    .hs-controls {
        left: 5%;
        bottom: 20px
    }

    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .act-bento {
        grid-template-columns: 1fr
    }

    .act-card.act-featured {
        grid-column: auto;
        min-height: 260px
    }

    .prog-list {
        grid-template-columns: 1fr
    }

    .act-stats {
        grid-template-columns: repeat(2,1fr)
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .pillars {
        grid-template-columns: 1fr
    }

    .sliders-inner {
        padding: 2% 3%
    }

    .about-wrap, .contact-wrap, .act-wrap, .values-wrap, .sliders-wrap, .mission-strip {
        padding-left: 4%;
        padding-right: 4%
    }

    .scroll-top {
        bottom: 18px;
        right: 18px;
        width: 46px;
        height: 46px
    }

        .scroll-top::before {
            display: none
        }
}

@media(max-width:420px) {
    .stats-inner {
        grid-template-columns: 1fr
    }

    .act-stats {
        grid-template-columns: 1fr
    }
}

/* ===================================================
   FLOATING ACTION BUTTONS (WhatsApp + Scroll-to-top)
=================================================== */

/* ── Shared stack wrapper ── */
.fab-stack {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 900;
}

/* ── WhatsApp button ── */
.fab-wa {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    position: relative;
    transition: transform .2s,box-shadow .2s;
}

    .fab-wa:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 32px rgba(37,211,102,.55);
    }
    /* Zoom-pulse ring */
    .fab-wa::before, .fab-wa::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: rgba(37,211,102,.35);
        animation: waPulse 2.2s ease-out infinite;
    }

    .fab-wa::after {
        animation-delay: .9s
    }

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: .7
    }

    70% {
        transform: scale(1.7);
        opacity: 0
    }

    100% {
        transform: scale(1.7);
        opacity: 0
    }
}

.fab-wa svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    flex-shrink: 0
}
/* Tooltip */
.fab-tip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26,18,8,.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Nunito Sans',sans-serif;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    letter-spacing: .03em;
}

.fab-wa:hover .fab-tip {
    opacity: 1
}

/* ── Scroll-to-top button ── */
.fab-stt {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffeb16;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(124,26,26,.4);
    cursor: pointer;
    padding: 0;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.8);
    transition: opacity .3s,visibility .3s,transform .3s,background .2s,box-shadow .2s;
}

    .fab-stt.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .fab-stt:hover {
        background: #ffeb16;
        box-shadow: 0 8px 28px rgba(232,99,10,.5);
        transform: translateY(-3px) scale(1.08);
    }

    .fab-stt:active {
        transform: scale(.94)
    }
    /* Tooltip */
    .fab-stt .fab-tip {
        position: absolute;
        right: calc(100% + 10px);
        top: 50%;
        transform: translateY(-50%);
        background: rgba(26,18,8,.9);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        font-family: 'Nunito Sans',sans-serif;
        white-space: nowrap;
        padding: 6px 12px;
        border-radius: 8px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s;
        letter-spacing: .03em;
    }

    .fab-stt:hover .fab-stt .fab-tip {
        opacity: 1
    }
/* Progress ring */
.stt-ring {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50%;
    transform: rotate(-90deg);
    pointer-events: none;
}

    .stt-ring circle {
        fill: none;
        stroke: #f7a833;
        stroke-width: 2.5;
        stroke-linecap: round;
    }

.stt-icon {
    font-size: 22px;
    line-height: 1;
    position: relative;
    z-index: 1;
    display: block
}

/* Mobile tweaks */
@media(max-width:640px) {
    .fab-stack {
        bottom: 18px;
        right: 16px;
        gap: 10px
    }

    .fab-wa {
        width: 50px;
        height: 50px
    }

        .fab-wa svg {
            width: 24px;
            height: 24px
        }

    .fab-stt {
        width: 44px;
        height: 44px
    }

        .fab-wa-tip, .fab-stt .fab-tip {
            display: none
        }
}

/* ===================================================
   GALLERY SECTION
=================================================== */
.gallery-wrap {
    background: #0f61ab;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 5%;
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto
}

/* Filter tabs */
.gallery-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}

.gf-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    transition: all .22s;
    font-family: 'Nunito Sans',sans-serif;
}

    .gf-btn:hover {
        border-color: var(--saffron);
        color: var(--saffron);
        background: var(--saffron-l)
    }

    .gf-btn.active {
        background: var(--saffron);
        color: #fff;
        border-color: var(--saffron);
        box-shadow: 0 3px 14px rgba(232,99,10,.35)
    }

/* Masonry-style responsive grid */
.gallery-grid {
    columns: 4;
    column-gap: 14px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    background: var(--dark);
    height:200px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit:cover;
        display: block;
        transition: transform .45s cubic-bezier(.25,.46,.45,.94),opacity .3s;
        vertical-align: middle;
    }

    .gallery-item:hover img {
        transform: scale(1.07);
        opacity: .88
    }

/* Hover overlay */
.gi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(26,8,0,.8) 0%,transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.gallery-item:hover .gi-overlay {
    opacity: 1
}

.gi-title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Cormorant Garamond',serif;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.gi-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

.gi-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .25s,transform .25s;
}

.gallery-item:hover .gi-zoom {
    opacity: 1;
    transform: scale(1)
}

/* Hidden filter state */
.gallery-item.hidden {
    display: none;
}

/* ── LIGHTBOX ── */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10,5,0,.94);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,visibility .3s;
}

    .lb-overlay.open {
        opacity: 1;
        visibility: visible
    }

.lb-box {
    position: relative;
    max-width: min(92vw,1000px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lb-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.7);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
}

    .lb-img-wrap img {
        max-width: min(88vw,960px);
        max-height: 76vh;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
        border-radius: 16px;
        transition: opacity .3s;
    }

    .lb-img-wrap.loading img {
        opacity: 0
    }

/* Caption */
.lb-caption {
    margin-top: 14px;
    text-align: center;
}

    .lb-caption h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 4px;
    }

    .lb-caption p {
        font-size: 12px;
        color: rgba(255,255,255,.45);
        letter-spacing: .08em;
        text-transform: uppercase
    }

/* Nav arrows */
.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,.85);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    z-index: 2010;
}

    .lb-arrow:hover {
        background: var(--saffron);
        border-color: var(--saffron);
        color: #fff
    }

.lb-prev {
    left: 20px
}

.lb-next {
    right: 20px
}

/* Close button */
.lb-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,.85);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    z-index: 2010;
}

    .lb-close:hover {
        background: rgba(255,255,255,.2);
        color: #fff
    }

/* Counter */
.lb-counter {
    position: fixed;
    display:none;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    z-index: 2010;
    font-family: 'Nunito Sans',sans-serif;
}

/* Thumbnail strip */
.lb-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    max-width: min(88vw,800px);
    padding-bottom: 4px;
    scrollbar-width: none;
}

    .lb-thumbs::-webkit-scrollbar {
        display: none
    }

.lb-thumb {
    width: 54px;
    height: 40px;
    border-radius: 7px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s,opacity .2s;
    opacity: .5;
}

    .lb-thumb.active {
        border-color: var(--saffron);
        opacity: 1
    }

    .lb-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

/* Responsive */
@media(max-width:1100px) {
    .gallery-grid {
        columns: 3
    }
}

@media(max-width:700px) {
    .gallery-grid {
        columns: 2
    }

    .lb-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px
    }

    .lb-prev {
        left: 8px
    }

    .lb-next {
        right: 8px
    }

    .lb-thumbs {
        display: none
    }
}

@media(max-width:420px) {
    .gallery-grid {
        columns: 2
    }
}
/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    background: url('../images/bread-bg.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: #fff;
}

    /* Overlay for better text visibility */
    .breadcrumb-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .1);
    }

/* Content wrapper */
.breadcrumb-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.breadcrumb-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color:#000;
}

/* Breadcrumb list */
.breadcrumb {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* Breadcrumb items */
    .breadcrumb li {
        font-size: 16px;
        color:#333;
    }
    .breadcrumb ul li a {
        text-decoration:none;
    }
    /* Links */
    .breadcrumb a {
        color: #f159aa;
        text-decoration: none;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            text-decoration: none;
        }

    /* Separator */
    .breadcrumb li::after {
        content: "/";
        margin-left: 8px;
        color: #444;
    }

    .breadcrumb li:last-child::after {
        content: "";
    }

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 26px;
    }

    .breadcrumb li {
        font-size: 14px;
    }

    .breadcrumb-section {
        padding: 60px 15px;
    }
}
.form-field {
    padding:0px 5px;
    height:40px;
    width:250px;
    border:1px solid #ddd;
    border-radius:5px;
    margin-bottom:15px;
}
/* ── HISTORY TIMELINE ── */
.timeline-section {
    background: var(--cream);
    padding: 72px 5%
}

.timeline-inner {
    max-width: 900px;
    margin: 0 auto
}

.timeline {
    position: relative;
    margin-top: 48px
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 28px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom,#f05dab,#f05dab);
        border-radius: 2px
    }

.tl-item {
    display: flex;
    gap: 32px;
    margin-bottom: 44px;
    position: relative
}

    .tl-item:last-child {
        margin-bottom: 0
    }

.tl-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 58px
}

.tl-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #8fc74a;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px #8fc74a;
    flex-shrink: 0;
    margin-top: 4px
}

.tl-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: .06em;
    margin-top: 7px;
    text-align: center;
    white-space: nowrap
}

.tl-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--sh);
    flex: 1
}

    .tl-content h3 {
        font-family: 'Nunito Sans';
        font-size: 20px;
        font-weight: bold;
        color: #073156;
        margin-bottom: 7px;
    }

    .tl-content p {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.6
    }

.tl-item:nth-child(even) .tl-dot {
    background: #0f61ab;
    box-shadow: 0 0 0 3px #0f61ab;
}
.mvv-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 5%
}

.mvv-inner {
    max-width: 1200px;
    margin: 0 auto
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 4px
}

.mvv-card {
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden
}

    .mvv-card.mission {
        background: linear-gradient(145deg,#071A18,#0D5C63);
        color: #fff
    }

    .mvv-card.vision {
        background: linear-gradient(145deg,#1A0E00,#7A4800);
        color: #fff
    }

    .mvv-card.values {
        background: linear-gradient(145deg,#0A1A0A,#166B4A);
        color: #fff
    }

    .mvv-card::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none
    }

    .mvv-card .mvv-ico {
        font-size: 38px;
        margin-bottom: 18px
    }

    .mvv-card h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 26px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 14px
    }

    .mvv-card p {
        font-size: 14px;
        color: rgba(255,255,255,.72);
        line-height: 1.7
    }

    .mvv-card ul {
        list-style: none;
        padding: 0;
        margin-top: 10px
    }

        .mvv-card ul li {
            font-size: 13.5px;
            color: rgba(255,255,255,.72);
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,.1);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5
        }

            .mvv-card ul li::before {
                content: '✦';
                color: var(--saffron);
                font-size: 10px;
                flex-shrink: 0;
                margin-top: 5px
            }
.gov-section {
    background: var(--cream);
    padding: 72px 5%
}

.gov-inner {
    max-width: 1200px;
    margin: 0 auto
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-top: 4px
}

.gov-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--sh);
    text-align: center;
    transition: all .3s
}

    .gov-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-lg)
    }

.gov-avatar {
    height: 180px;
    background: linear-gradient(135deg,var(--teal-d),var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,.3);
    position: relative;
    overflow: hidden
}

    .gov-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0
    }

    .gov-avatar .ini {
        position: relative;
        z-index: 1;
        font-family: 'Cormorant Garamond',serif;
        font-size: 52px;
        color: rgba(255,255,255,.85);
        font-weight: 600
    }

.gov-body {
    padding: 18px 16px 20px
}

    .gov-body h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 4px;
        line-height: 1.3
    }

    .gov-body .role {
        font-size: 11.5px;
        font-weight: 700;
        color: var(--teal);
        letter-spacing: .05em;
        text-transform: uppercase;
        margin-bottom: 7px
    }

    .gov-body p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.5
    }
.school-detail {
    padding: 72px 5%;
    border-top: 1px solid var(--border)
}

    .school-detail:nth-child(even) {
        background: var(--white)
    }

    .school-detail:nth-child(odd) {
        background: var(--cream)
    }

.sd-inner {
    max-width: 1200px;
    margin: 0 auto
}
/* Hero banner */
.sd-banner {
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    position: relative;
    margin-bottom: 48px;
    box-shadow: var(--sh-lg)
}

    .sd-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.sd-banner-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end
}

.sd-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(7,26,24,.88) 0%,rgba(7,26,24,.3) 55%,transparent 100%)
}

.sd-banner-content {
    position: relative;
    z-index: 1;
    padding: 32px 36px;
    width: 100%
}

    .sd-banner-content .tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        padding: 4px 12px;
        border-radius: 100px;
        margin-bottom: 10px
    }

    .sd-banner-content h2 {
        font-family: 'Cormorant Garamond',serif;
        font-size: clamp(26px,4vw,42px);
        color: #fff;
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 8px
    }

    .sd-banner-content p {
        font-size: 14px;
        color: rgba(255,255,255,.65);
        display: flex;
        align-items: center;
        gap: 6px
    }

/* Content grid */
.sd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start
}

.sd-main {
}

.sd-sidebar {
}

/* Info cards */
.sd-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: var(--sh)
}

    .sd-info-card h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 9px
    }

        .sd-info-card h3 .ico {
            font-size: 20px
        }

    .sd-info-card p {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.72;
        margin-bottom: 12px
    }

        .sd-info-card p:last-child {
            margin-bottom: 0
        }

        .sd-info-card p strong {
            color: var(--text)
        }

/* Facts table */
.facts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px
}

    .facts-table tr {
        border-bottom: 1px solid var(--border)
    }

        .facts-table tr:last-child {
            border-bottom: none
        }

    .facts-table td {
        padding: 10px 12px;
        vertical-align: top
    }

        .facts-table td:first-child {
            font-weight: 700;
            color: var(--text);
            width: 46%;
            white-space: nowrap
        }

        .facts-table td:last-child {
            color: var(--muted)
        }

/* Facilities grid */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 4px
}

.fac-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s
}

    .fac-item:hover {
        background: var(--teal-l);
        border-color: var(--teal)
    }

.fac-ico {
    font-size: 20px;
    flex-shrink: 0
}

.fac-text {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3
}

/* Sidebar stats */
.ss-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: var(--sh)
}

    .ss-card h4 {
        font-size: 13px;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 16px
    }

.ss-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border)
}

    .ss-stat:last-child {
        border-bottom: none
    }

    .ss-stat .label {
        font-size: 13px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 7px
    }

    .ss-stat .value {
        font-size: 14px;
        font-weight: 700;
        color: var(--text)
    }

.ss-val-teal {
    color: var(--teal) !important
}

.ss-val-saffron {
    color: var(--saffron) !important
}

/* Admission box */
.admit-box {
    background: linear-gradient(145deg,#073156,#073156);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    margin-bottom: 18px
}

    .admit-box h4 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 12px
    }

    .admit-box p {
        font-size: 13px;
        color: rgba(255,255,255,.72);
        line-height: 1.6;
        margin-bottom: 16px
    }

    .admit-box a {
        display: block;
        text-align: center;
        background: #fff;
        color: #000;
        font-weight: 700;
        font-size: 14px;
        padding: 12px;
        border-radius: 10px;
        text-decoration: none;
        transition: all .2s
    }

        .admit-box a:hover {
            background: var(--saffron-l);
            color: var(--saffron-d)
        }

/* Contact box */
.contact-box {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px
}

    .contact-box h4 {
        font-size: 13px;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 14px
    }

.cb-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border)
}

    .cb-item:last-child {
        border-bottom: none
    }

.cb-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--teal-l);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0
}

.cb-lbl {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .07em;
    text-transform: uppercase
}

.cb-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-top: 1px
}

/* Subject tags */
.subject-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.sub-tag {
    background: var(--teal-l);
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px
}

    .sub-tag.saffron {
        background: var(--saffron-l);
        color: var(--saffron-d)
    }

    .sub-tag.gold {
        background: var(--gold-l);
        color: #6B5200
    }

/* Result chart */
.result-bar {
    margin-top: 6px
}

.rb-item {
    margin-bottom: 12px
}

.rb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px
}

.rb-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text)
}

.rb-pct {
    font-size: 13px;
    font-weight: 800;
    color: var(--teal)
}

.rb-track {
    height: 8px;
    background: var(--cream);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.rb-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg,var(--teal),#1A9AA4);
    transition: width 1.2s ease
}