﻿<style >
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #fdb801;
    --green: #2f584f;
    --green-light: #3a6e63;
    --green-pale: #eaf4f1;
    --gold-pale: #fff8e1;
    --white: #ffffff;
    --text: #1e1e1e;
    --text-light: #4a5568;
    --radius: 20px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
    color: var(--text);
    overflow-x: hidden;
}

/* ── HERO ── */
.hero {
    background: var(--green);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6vw 60px;
}

    /* Decorative circles */
    .hero::before {
        content: '';
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(253,184,1,.13);
        top: -140px;
        right: -120px;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(253,184,1,.08);
        bottom: -80px;
        left: -80px;
        pointer-events: none;
    }

.hero-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.school-logo-badge {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--green);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(253,184,1,.4);
}

.school-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: .5px;
}

    .school-name span {
        display: block;
        font-size: 12px;
        font-weight: 400;
        color: var(--gold);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253,184,1,.18);
    border: 1px solid rgba(253,184,1,.35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

    .hero-tag::before {
        content: '✦';
        font-size: 10px;
    }

.hero-title {
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 12px;
}

    .hero-title .accent {
        color: var(--gold);
    }

.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-levels {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.level-chip {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(8px);
    transition: all .25s;
}

    .level-chip.gold {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--green);
    }

/* Hero right – illustration card */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.visual-main {
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(12px);
    text-align: center;
}

.emoji-row {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.visual-main h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.visual-main p {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.stat-card {
    background: var(--gold);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
}

    .stat-card .num {
        font-size: 26px;
        font-weight: 800;
        color: var(--green);
        display: block;
    }

    .stat-card .lbl {
        font-size: 11px;
        font-weight: 600;
        color: var(--green-light);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-top: 2px;
    }

/* ── WAVE DIVIDER ── */
.wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--green);
}

    .wave svg {
        display: block;
    }

/* ── SECTIONS ── */
section {
    padding: 40px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1.5px solid #fdb80155;
    border-radius: 100px;
    padding: 5px 15px;
    font-size: 11.5px;
    font-weight: 700;
    color: #b08000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--green);
    line-height: 52px;
    margin-bottom: 14px;
}

    .section-title .gold {
        color: var(--gold);
        font-size: clamp(26px, 3.5vw, 42px);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 11px;
        padding: 0;
    }

.section-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 23px;
    max-width: 100%;
}
/* ── ABOUT ── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 0;
}

.about-image-stack {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(47,88,79,.2);
}
    .img-main img {
        width: 100%;
        object-fit: cover;
        display: block;
    }
.img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 12px 36px rgba(253,184,1,.4);
    text-align: center;
}

    .img-badge .big {
        font-size: 28px;
        font-weight: 800;
        color: var(--green);
        display: block;
    }

    .img-badge .sm {
        font-size: 12px;
        font-weight: 600;
        color: var(--green-light);
    }

.about-text .highlight-box {
    background: var(--green-pale);
    border-left: 4px solid var(--green);
    border-radius: 0 12px 12px 0;
    padding: 18px 22px;
    margin-top: 28px;
    font-size: 14px;
    font-style: italic;
    color: var(--green);
    font-weight: 500;
    line-height: 1.7;
}

/* ── DEVELOPMENT AREAS ── */
.development {
    background: var(--green-pale);
}

.dev-header {
    text-align: center;
    margin-bottom: 15px;
}

    .dev-header .section-desc {
        margin: 0 auto;
    }

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.dev-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: 0 4px 20px rgba(47,88,79,.07);
    transition: transform .3s, box-shadow .3s;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

    .dev-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s;
    }

    .dev-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(47,88,79,.14);
    }

        .dev-card:hover::before {
            transform: scaleX(1);
        }

.dev-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}
.dev-card h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--green);
    line-height: 1.4;
}
/* ── CLASSROOM ── */
.classroom {
    background: var(--white);
    position: relative;
}
.classroom::before {
    content: "";
    background-image: url('../images/myimages/schoolpng.png');
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    opacity: 0.09;
}
.classroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-top: 0;
    align-items: flex-start;
}
.contentbox h3 {
    color: #fff;
}

.feature-list {
    list-style: none;
    margin-top: 10px;
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 10px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}
.feature-list li .icon {
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}
.classroom-visual {
    background: var(--green);
    border-radius: 24px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}
.classroom-visual p {
    color: #fff;
}
.classroom-visual h3 {
    margin: 0 0 8px 0 !important;
}
    .classroom-visual p b {
        color: #fdb801;
    }
    .classroom-visual h3 span {
        color: #fdb801;
    }
.cls-item {
    background: rgba(255,255,255,.09);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    backdrop-filter: blur(8px);
}

    .cls-item .ei {
        font-size: 34px;
        display: block;
        margin-bottom: 8px;
    }

    .cls-item p {
        font-size: 12.5px;
        font-weight: 600;
        color: rgba(255,255,255,.85);
        line-height: 1.4;
    }

/* ── ACTIVITIES ── */
.activities {
    background: var(--green-pale);
}

.act-header {
    text-align: center;
    margin-bottom: 52px;
}

.act-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.act-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 18px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(47,88,79,.06);
    transition: transform .3s;
}

    .act-card:hover {
        transform: translateY(-5px);
    }

    .act-card .ei {
        font-size: 38px;
        display: block;
        margin-bottom: 12px;
    }

    .act-card p {
        font-size: 13px;
        font-weight: 600;
        color: var(--green);
        line-height: 1.4;
    }

/* Events strip */
.events-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-align: center;
}

.events-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.event-pill {
    background: var(--green);
    color: var(--white);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: background .25s;
}

    .event-pill:hover {
        background: var(--green-light);
    }

    .event-pill.gold-pill {
        background: var(--gold);
        color: var(--green);
        font-weight: 700;
    }

/* ── EDUCATORS ── */
.educators {
    background: var(--white);
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.edu-image {
    background: var(--gold);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .edu-image::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(47,88,79,.12);
        top: -60px;
        right: -60px;
    }

    .edu-image .big-emoji {
        font-size: 100px;
        display: block;
        margin-bottom: 12px;
    }

    .edu-image h3 {
        font-size: 18px;
        font-weight: 800;
        color: var(--green);
    }

    .edu-image p {
        font-size: 13px;
        color: var(--green-light);
        margin-top: 6px;
        line-height: 1.6;
    }

.value-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.value-chip {
    background: var(--green-pale);
    border: 1.5px solid #2f584f33;
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

/* ── QUOTE SECTION ── */
.quote-section {
    background: var(--green);
    text-align: center;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}
    .quote-section::before {
        content: '"';
        position: absolute;
        font-size: 400px;
        font-weight: 900;
        color: rgba(253,184,1,.06);
        top: -100px;
        left: 40px;
        font-family: Georgia, serif;
        line-height: 1;
        pointer-events: none;
    }
.quote-text {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.55;
    max-width: 1110px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
    .quote-text .gold {
        color: var(--gold);
    }

.quote-source {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    letter-spacing: .5px;
}

/* ── FOOTER ── */
footer {
    padding: 36px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--green);
}

.footer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

    .footer-name span {
        display: block;
        font-size: 11px;
        font-weight: 400;
        color: rgba(255,255,255,.5);
    }

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: unset;
        padding: 40px 15px 40px;
    }
    .img-main.responsiveview {
        max-width: 450px;
        margin: 0 auto 20px;
    }
}

    /* ── RESPONSIVE ── */
 @media (max-width: 768px) {
        .hero-grid, .about-grid, .classroom-grid, .edu-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .stats-row {
            grid-template-columns: 1fr 1fr 1fr;
        }

        .img-badge {
            right: 0;
            bottom: -20px;
        }

        .hero-visual {
            order: -1;
        }

        footer {
            flex-direction: column;
        }

        .classroom-visual {
            grid-template-columns: 1fr 1fr;
        }
    }
@media (max-width: 767px) {
    section {
        padding: 28px 15px;
    }
   .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .feature-list {
        grid-template-columns: repeat(1,1fr);
    }
    .classroom-visual {
        grid-template-columns: 1fr;
    }
    .classroom-visual {
        padding: 20px 15px;
        gap: 24px;
    }
    .quote-section {
        padding: 30px 0 150px;
    }
    footer.newfooterdesignwrap {
        margin: -200px 0 0 0;
    }
}
@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }

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