/* =========================================================
   GREENERGY SCHOOL SANGLI
   INDEX PAGE CSS
   ========================================================= */


/* =========================
   RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #26352d;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   GREENERGY SCHOOL SANGLI
   HEADER — DESKTOP + TABLET + MOBILE
   ========================================================= */

/* =========================
   MAIN HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: linear-gradient(
        135deg,
        #075b3d 0%,
        #087a55 55%,
        #096b49 100%
    );

    color: #ffffff;

    min-height: 88px;

    padding: 10px 4.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.18);

    border-bottom: 3px solid #f3b72b;
}


/* =========================
   LEFT SIDE
   ========================= */

.header-left {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;

    flex-shrink: 0;
}


/* =========================
   LOGO
   ========================= */

.logo {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 50%;

    padding: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.22);

    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    border-radius: 50%;
}


/* =========================
   SCHOOL NAME
   ========================= */

.school-title {
    min-width: 0;
}

.school-title h1 {
    margin: 0;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: 0.2px;

    white-space: nowrap;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.18);
}

.school-title p {
    margin: 5px 0 0;

    color: #ffd45c;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0.5px;

    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-header nav {
    margin-left: auto;
}

.site-header .menu {
    display: flex;

    align-items: center;

    gap: 3px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.site-header .menu > li {
    position: relative;
}


/* =========================
   MAIN NAV LINKS
   ========================= */

.site-header .menu > li > a {
    display: block;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    padding: 11px 12px;

    border-radius: 7px;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}


/* Hover */

.site-header .menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);

    color: #ffd45c;

    transform: translateY(-1px);
}


/* Active Home */

.site-header .menu > li:first-child > a {
    background: rgba(255, 255, 255, 0.18);
}

.site-header .menu > li:first-child > a:hover {
    background: rgba(255, 255, 255, 0.24);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.site-header .dropdown {
    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    min-width: 225px;

    padding: 8px 0;

    margin: 0;

    background: #ffffff;

    list-style: none;

    border-radius: 9px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}


/* Show dropdown */

.site-header .menu > li:hover > .dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* Dropdown links */

.site-header .dropdown li a {
    display: block;

    padding: 10px 17px;

    color: #284337;

    background: #ffffff;

    text-decoration: none;

    font-size: 13.5px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


/* Dropdown hover */

.site-header .dropdown li a:hover {
    background: #edf8f2;

    color: #087a55;

    padding-left: 22px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 8px;

    font-size: 20px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

.menu-toggle:hover {
    background: #f3b72b;

    color: #075b3d;

    transform: scale(1.04);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {

    .site-header {
        padding-left: 25px;
        padding-right: 25px;
    }

    .school-title h1 {
        font-size: 21px;
    }

    .school-title p {
        font-size: 11px;
    }

    .site-header .menu {
        gap: 1px;
    }

    .site-header .menu > li > a {
        font-size: 13px;

        padding-left: 9px;
        padding-right: 9px;
    }
}


/* =========================================================
   MOBILE / TABLET NAVIGATION
   ========================================================= */

@media (max-width: 950px) {

    .site-header {
        min-height: 76px;

        padding: 9px 20px;
    }


    /* Logo */

    .logo {
        width: 55px;
        height: 55px;
    }


    /* School name */

    .school-title h1 {
        font-size: 20px;
    }

    .school-title p {
        font-size: 10px;
    }


    /* Hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Navigation panel */

    .site-header nav {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        width: 100%;

        display: none;

        margin: 0;

        background: #075b3d;

        border-top: 1px solid rgba(255,255,255,0.15);

        box-shadow:
            0 10px 25px rgba(0,0,0,0.18);

        padding: 8px 20px 18px;
    }


    /* JS adds .active */

    .site-header nav.active {
        display: block;
    }


    /* Mobile menu */

    .site-header .menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        width: 100%;
    }


    .site-header .menu > li {
        width: 100%;

        border-bottom:
            1px solid rgba(255,255,255,0.10);
    }


    .site-header .menu > li:last-child {
        border-bottom: none;
    }


    /* Mobile links */

    .site-header .menu > li > a {
        width: 100%;

        padding: 13px 10px;

        color: #ffffff;

        font-size: 15px;

        border-radius: 6px;
    }


    .site-header .menu > li > a:hover {
        background: rgba(255,255,255,0.12);

        color: #ffd45c;

        transform: none;
    }


    /* Mobile dropdown */

    .site-header .dropdown {
        position: static;

        width: 100%;

        min-width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        background: rgba(255,255,255,0.08);

        box-shadow: none;

        border-radius: 6px;

        padding: 3px 0;
    }


    /*
       On mobile, hovering a parent
       reveals its submenu.
    */

    .site-header .menu > li:hover > .dropdown {
        display: block;
    }


    .site-header .dropdown li a {
        color: #ffffff;

        background: transparent;

        padding: 10px 25px;

        font-size: 13.5px;
    }


    .site-header .dropdown li a:hover {
        color: #ffd45c;

        background: rgba(255,255,255,0.08);

        padding-left: 30px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

    .site-header {
        min-height: 68px;

        padding: 8px 13px;
    }


    .header-left {
        gap: 9px;

        max-width: calc(100% - 55px);
    }


    .logo {
        width: 47px;
        height: 47px;

        padding: 3px;
    }


    .school-title {
        overflow: hidden;
    }


    .school-title h1 {
        font-size: 16px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    .school-title p {
        font-size: 9px;

        letter-spacing: 0.2px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }


    .site-header nav {
        padding-left: 13px;
        padding-right: 13px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .logo {
        width: 43px;
        height: 43px;
    }

    .school-title h1 {
        font-size: 14px;
    }

    .school-title p {
        font-size: 8px;
    }

    .menu-toggle {
        width: 37px;
        height: 37px;

        font-size: 17px;
    }
}


/* Header left */

.header-left {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 0;
}


/* Logo */

.logo {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* School title */

.school-title {
    min-width: 0;
}

.school-title h1 {
    color: #126b3a;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 700;
}

.school-title p {
    color: #b4862c;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-header nav {
    margin-left: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: block;

    padding: 10px 10px;

    color: #26352d;

    font-size: 13px;

    font-weight: 600;

    border-radius: 6px;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.menu > li > a:hover {
    color: #126b3a;
    background: #eef7f1;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    width: 220px;

    padding: 8px 0;

    background: #ffffff;

    border-radius: 9px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.menu > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown li a {
    display: block;

    padding: 10px 16px;

    font-size: 13px;

    color: #344139;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.dropdown li a:hover {
    background: #eef7f1;

    color: #126b3a;

    padding-left: 21px;
}


/* Hamburger */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    background: #126b3a;

    color: #ffffff;

    border-radius: 8px;

    font-size: 20px;

    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.home-hero {
    position: relative;

    width: 100%;

    height: min(720px, 78vh);

    min-height: 520px;

    overflow: hidden;

    background: #163c29;
}


/* Slides container */

.hero-slides {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


/* Individual slides */

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    transition: opacity 1s ease;

    overflow: hidden;
}


/* First slide visible initially */

.hero-slide.active {
    opacity: 1;

    z-index: 2;
}


/* Hero images */

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    transform: scale(1.01);
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            90deg,
            rgba(4, 43, 24, 0.78) 0%,
            rgba(4, 43, 24, 0.53) 45%,
            rgba(4, 43, 24, 0.25) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: absolute;

    z-index: 5;

    left: 7%;

    top: 50%;

    transform: translateY(-50%);

    width: min(680px, 85%);

    color: #ffffff;
}

.hero-small-title {
    display: block;

    margin-bottom: 8px;

    color: #f0c75e;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.hero-content h2 {
    font-size: clamp(38px, 5vw, 68px);

    line-height: 1.08;

    font-weight: 750;

    margin-bottom: 14px;

    letter-spacing: -1px;
}

.hero-content > p {
    font-size: clamp(20px, 2.5vw, 30px);

    line-height: 1.3;

    font-weight: 600;

    margin-bottom: 10px;
}

.hero-content .hero-description {
    max-width: 600px;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 28px;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 11px 23px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.primary-btn {
    background: #d5a52c;

    color: #ffffff;
}

.primary-btn:hover {
    background: #bd8d1d;

    transform: translateY(-3px);

    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.18);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(4px);
}

.secondary-btn:hover {
    background: #ffffff;

    color: #126b3a;

    transform: translateY(-3px);
}


/* =========================================================
   SLIDER DOTS
   ========================================================= */

.slider-dots {
    position: absolute;

    z-index: 10;

    bottom: 27px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 9px;
}

.slider-dot {
    width: 10px;
    height: 10px;

    display: block;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.slider-dot.active {
    width: 30px;

    border-radius: 10px;

    background: #ffffff;
}


/* =========================================================
   GENERAL HOME SECTION
   ========================================================= */

.home-section {
    width: 100%;

    padding: 85px 6%;
}

.home-section:nth-of-type(even) {
    background: #f6faf7;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 850px;

    margin: 0 auto 48px;

    text-align: center;
}

.section-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #b4862c;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    color: #126b3a;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    margin-bottom: 12px;
}

.section-heading h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin: 14px auto 0;

    background: #d5a52c;

    border-radius: 5px;
}

.section-heading p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #66736b;

    font-size: 15px;
}


/* =========================================================
   SCHOOL INTRO
   ========================================================= */

.school-intro {
    background: #ffffff;
}

.intro-content {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 65px;

    align-items: center;
}

.intro-text p {
    margin-bottom: 18px;

    color: #59675f;

    font-size: 16px;

    line-height: 1.8;
}

.text-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

    color: #126b3a;

    font-weight: 700;

    transition: gap 0.25s ease;
}

.text-btn:hover {
    gap: 14px;
}


/* Highlight cards */

.intro-highlight {
    display: grid;

    grid-template-columns: 1fr;

    gap: 15px;
}

.intro-highlight > div {
    padding: 21px;

    display: grid;

    grid-template-columns: 50px 1fr;

    column-gap: 14px;

    align-items: center;

    background: #f5faf7;

    border-left: 4px solid #126b3a;

    border-radius: 10px;
}

.intro-highlight i {
    grid-row: span 2;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3f1e8;

    color: #126b3a;

    font-size: 19px;
}

.intro-highlight h3 {
    color: #126b3a;

    font-size: 17px;
}

.intro-highlight p {
    color: #6b756f;

    font-size: 13px;
}


/* =========================================================
   LEADERSHIP
   ========================================================= */

.leadership-section {
    background: #f5f9f6;
}

.leadership-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
}

.leader-card {
    display: grid;

    grid-template-columns: 175px 1fr;

    gap: 30px;

    align-items: center;

    padding: 30px;

    background: #ffffff;

    border-radius: 16px;

    border: 1px solid #e5eee8;

    box-shadow: 0 7px 25px rgba(17, 74, 43, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 35px rgba(17, 74, 43, 0.11);
}


/* Leader photo */

.leader-photo {
    width: 165px;
    height: 165px;

    overflow: hidden;

    border-radius: 50%;

    border: 6px solid #e7f2eb;

    background: #edf5ef;
}

.leader-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* Leader information */

.leader-info h3 {
    color: #126b3a;

    font-size: 23px;

    margin-bottom: 3px;
}

.leader-info > span {
    display: block;

    color: #b4862c;

    font-size: 14px;

    font-weight: 750;

    margin-bottom: 12px;
}

.leader-info p {
    color: #606d65;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 10px;
}


/* =========================================================
   ACHIEVEMENT
   ========================================================= */

.achievement-section {
    width: 100%;

    padding: 85px 6%;

    background:
        linear-gradient(
            135deg,
            #0e5d32,
            #126b3a
        );

    color: #ffffff;
}

.achievement-container {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 55px;

    align-items: center;
}

.achievement-photo {
    width: 320px;
    height: 370px;

    overflow: hidden;

    border-radius: 18px;

    border: 5px solid rgba(255, 255, 255, 0.2);

    background: #ffffff;
}

.achievement-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.achievement-label {
    color: #f0c75e;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}

.achievement-content h2 {
    margin: 8px 0 4px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;
}

.achievement-content h3 {
    color: #f0c75e;

    font-size: 21px;

    margin-bottom: 20px;
}

.achievement-content p {
    color: rgba(255, 255, 255, 0.9);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 14px;
}

.achievement-message {
    display: inline-block;

    margin-top: 8px;

    padding: 10px 18px;

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 15px;
}


/* =========================================================
   SCHOOL GALLERY
   ========================================================= */

.school-gallery {
    background: #ffffff;
}

.gallery-preview {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    height: 235px;

    border-radius: 13px;

    background: #e8eee9;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-button {
    text-align: center;

    margin-top: 35px;
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.quick-section {
    padding: 85px 6%;

    background: #f5f9f6;
}

.quick-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.quick-card {
    padding: 30px 20px;

    text-align: center;

    background: #ffffff;

    border-radius: 13px;

    border: 1px solid #e5eee8;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 14px 30px rgba(17, 74, 43, 0.1);
}

.quick-card i {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #e5f2e9;

    color: #126b3a;

    font-size: 24px;
}

.quick-card h3 {
    color: #126b3a;

    font-size: 18px;

    margin-bottom: 7px;
}

.quick-card p {
    color: #68746d;

    font-size: 13px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 60px 6% 20px;

    background: #103b27;

    color: #ffffff;
}

.footer-container {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.3fr 1fr 1.3fr 0.8fr;

    gap: 40px;
}

.footer-section h3 {
    color: #ffffff;

    font-size: 18px;

    margin-bottom: 16px;
}

.footer-section p {
    color: #cfddd5;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 9px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    color: #cfddd5;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-section ul a:hover {
    color: #ffffff;
}

.footer-section i {
    margin-right: 5px;
}


/* Social icons */

.social-icons {
    display: flex;

    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.1);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);

    background: #126b3a;
}

footer hr {
    max-width: 1150px;

    margin: 38px auto 18px;

    border: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright {
    text-align: center;

    color: #aebfb5;

    font-size: 12px;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

#topBtn {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #126b3a;

    color: #ffffff;

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 900;

    cursor: pointer;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        padding: 9px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        margin: 0;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .site-header nav.active {
        display: block;
    }

    .menu {
        display: block;

        padding: 8px 20px;
    }

    .menu > li {
        border-bottom: 1px solid #edf1ee;
    }

    .menu > li > a {
        padding: 13px 5px;

        font-size: 15px;
    }

    .dropdown {
        position: static;

        display: none;

        width: 100%;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;

        background: #f5faf7;
    }

    .menu > li:hover > .dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 10px 20px;
    }

    .home-hero {
        height: 650px;

        min-height: 560px;
    }

    .hero-content {
        left: 6%;

        width: 88%;
    }

    .intro-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 700px) {

    .school-title h1 {
        font-size: 19px;
    }

    .school-title p {
        font-size: 10px;
    }

    .logo {
        width: 54px;
        height: 54px;
    }

    .home-hero {
        height: 600px;

        min-height: 520px;
    }

    .hero-content {
        left: 5%;

        width: 90%;
    }

    .hero-content h2 {
        font-size: 39px;
    }

    .hero-content > p {
        font-size: 20px;
    }

    .hero-content .hero-description {
        font-size: 15px;
    }

    .leader-card {
        grid-template-columns: 125px 1fr;

        gap: 20px;

        padding: 22px;
    }

    .leader-photo {
        width: 120px;
        height: 120px;
    }

    .achievement-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .achievement-photo {
        width: min(300px, 100%);

        height: 330px;

        margin: auto;
    }

    .achievement-content {
        text-align: center;
    }

    .achievement-label {
        display: block;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE PHONE
   ========================================================= */

@media (max-width: 520px) {

    .site-header {
        min-height: 68px;

        padding: 8px 13px;
    }

    .header-left {
        gap: 9px;
    }

    .logo {
        width: 47px;
        height: 47px;
    }

    .school-title h1 {
        font-size: 16px;
    }

    .school-title p {
        font-size: 9px;

        letter-spacing: 0.2px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;

        font-size: 18px;
    }


    /* Hero */

    .home-hero {
        height: 560px;

        min-height: 500px;
    }

    .hero-slide img {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 43, 24, 0.35),
                rgba(4, 43, 24, 0.82)
            );
    }

    .hero-content {
        left: 5%;

        top: 54%;

        width: 90%;

        text-align: center;
    }

    .hero-small-title {
        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .hero-content h2 {
        font-size: 34px;

        letter-spacing: -0.5px;
    }

    .hero-content > p {
        font-size: 19px;
    }

    .hero-content .hero-description {
        font-size: 14px;

        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;

        gap: 10px;
    }

    .primary-btn,
    .secondary-btn {
        min-height: 43px;

        padding: 10px 17px;

        font-size: 12px;
    }


    /* Sections */

    .home-section,
    .quick-section,
    .achievement-section {
        padding: 60px 5%;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading > span {
        font-size: 11px;
    }


    /* Intro */

    .intro-text p {
        font-size: 14px;
    }

    .intro-highlight > div {
        padding: 17px;
    }


    /* Leaders */

    .leader-card {
        display: block;

        padding: 25px 19px;

        text-align: center;
    }

    .leader-photo {
        width: 145px;
        height: 145px;

        margin: 0 auto 18px;
    }

    .leader-info h3 {
        font-size: 20px;
    }

    .leader-info p {
        font-size: 13px;
    }


    /* Achievement */

    .achievement-photo {
        width: 100%;

        max-width: 280px;

        height: 320px;
    }

    .achievement-content h2 {
        font-size: 31px;
    }

    .achievement-content h3 {
        font-size: 18px;
    }

    .achievement-content p {
        font-size: 14px;
    }


    /* Gallery */

    .gallery-preview {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .gallery-item {
        height: 250px;
    }


    /* Quick links */

    .quick-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 28px;

        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    #topBtn {
        width: 42px;
        height: 42px;

        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .school-title h1 {
        font-size: 14px;
    }

    .school-title p {
        display: none;
    }

    .hero-content h2 {
        font-size: 29px;
    }

    .hero-content > p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}
/* =====================================================
   GLOBAL SITE HEADER
   Use the same header on every page
===================================================== */

.site-header {
    width: 100%;
    min-height: 92px;
    background: linear-gradient(135deg, #006b4f, #008f68);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    position: relative;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

/* LEFT SIDE — LOGO + SCHOOL NAME */

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* LOGO */

.site-header .logo {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.site-header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* SCHOOL NAME */

.school-title h1 {
    margin: 0;
    padding: 0;

    color: #ffffff ;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.2px;
}

.school-title p {
    margin: 5px 0 0;

    color: #f4c542 ;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =====================================================
   NAVIGATION
===================================================== */

.site-header nav {
    display: flex;
    align-items: center;
}

.site-header .menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.site-header .menu > li {
    position: relative;
}

.site-header .menu > li > a {
    display: block;

    color: #ffffff ;
    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 600;

    padding: 13px 14px;
    border-radius: 7px;

    transition: all 0.25s ease;
}

/* HOVER */

.site-header .menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff ;
}



/* =====================================================
   DROPDOWN
===================================================== */

.site-header .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    min-width: 210px;

    list-style: none;
    padding: 8px;
    margin: 0;

    background: #ffffff;

    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: all 0.25s ease;
}

.site-header .menu > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .dropdown li {
    width: 100%;
}

.site-header .dropdown li a {
    display: block;

    color: #164b3b ;
    text-decoration: none;

    padding: 10px 13px;
    border-radius: 6px;

    font-size: 0.88rem;
    font-weight: 600;

    transition: all 0.2s ease;
}

.site-header .dropdown li a:hover {
    background: #e9f6f1;
    color: #007a59;
}

/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;

    color: #ffffff;
    font-size: 1.25rem;

    cursor: pointer;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .site-header {
        padding: 10px 3%;
    }

    .school-title h1 {
        font-size: 1.3rem;
    }

    .school-title p {
        font-size: 0.75rem;
    }

    .site-header .menu > li > a {
        font-size: 0.82rem;
        padding: 11px 9px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .site-header {
        min-height: 72px;
        padding: 8px 18px;
    }

    .header-left {
        gap: 10px;
    }

    .site-header .logo {
        width: 52px;
        height: 52px;
    }

    .school-title h1 {
        font-size: 1.05rem;
        color: #ffffff ;
    }

    .school-title p {
        font-size: 0.68rem;
        color: #f4c542 ;
    }

    /* SHOW HAMBURGER */

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    /* MOBILE NAV */

    .site-header nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #006b4f;

        padding: 10px 18px 18px;

        display: none;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .site-header nav.active {
        display: block;
    }

    .site-header .menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .site-header .menu > li {
        width: 100%;
    }

    .site-header .menu > li > a {
        width: 100%;
        color: #ffffff ;
        padding: 12px 14px;
        border-radius: 6px;
    }

    /* MOBILE DROPDOWN */

    .site-header .dropdown {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        opacity: 1;
        visibility: visible;
        transform: none;

        margin-top: 2px;

        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;

        border-radius: 6px;
    }

    .site-header .menu > li:hover > .dropdown {
        display: block;
    }

    .site-header .dropdown li a {
        color: #ffffff ;
        padding: 9px 18px;
    }

    .site-header .dropdown li a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff ;
    }
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .site-header {
        padding: 8px 12px;
    }

    .site-header .logo {
        width: 46px;
        height: 46px;
    }

    .school-title h1 {
        font-size: 0.92rem;
    }

    .school-title p {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}
/* =====================================================
   MANDATORY DISCLOSURE - VIEW DOCUMENT BUTTON
   ===================================================== */

.disclosure-card button,
.disclosure-card .view-document {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 18px;
    padding: 11px 22px;

    background: #0b6b4f;
    color: #ffffff;

    border: none;
    border-radius: 8px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* PDF icon inside button */
.disclosure-card button i,
.disclosure-card .view-document i {
    font-size: 14px;
}

/* Hover */
.disclosure-card button:hover,
.disclosure-card .view-document:hover {
    background: #d9a51e;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Click */
.disclosure-card button:active,
.disclosure-card .view-document:active {
    transform: translateY(-1px);
}
/* =====================================================
   DISCLOSURE CARDS
   ===================================================== */

.disclosure-grid {
    width: min(1200px, 92%);
    margin: 45px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.disclosure-card {
    background: #ffffff;

    padding: 30px 26px;

    border-radius: 14px;

    border: 1px solid #e5e9e7;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    position: relative;
    overflow: hidden;
}

/* Green top line */
.disclosure-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #0b6b4f;
}

/* Card hover */
.disclosure-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);

    border-color: #d9a51e;
}

/* Main icon */
.disclosure-card > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #eef7f3;
    color: #0b6b4f;

    font-size: 25px;

    transition: 0.3s ease;
}

.disclosure-card:hover > i {
    background: #0b6b4f;
    color: #ffffff;

    transform: scale(1.08);
}

.disclosure-card h3 {
    margin: 0 0 10px;

    color: #123c32;

    font-size: 20px;
    line-height: 1.3;
}

.disclosure-card p {
    margin: 0;

    color: #66736f;

    font-size: 15px;
    line-height: 1.7;
}
@media (max-width: 900px) {

    .disclosure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 600px) {

    .disclosure-grid {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .disclosure-card {
        padding: 25px 22px;
    }

    .disclosure-card h3 {
        font-size: 18px;
    }

    .disclosure-card p {
        font-size: 14px;
    }

    .disclosure-card button,
    .disclosure-card .view-document {
        width: 100%;
        padding: 12px 18px;
    }

}
/* =====================================================
   MANDATORY DISCLOSURE - VIEW DOCUMENT BUTTON
   ===================================================== */

.disclosure-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 18px;
    padding: 11px 22px;

    background: #0b6b4f;
    color: #ffffff;

    border: none;
    border-radius: 8px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;

    transition: all 0.25s ease;
}

.disclosure-card button:hover {
    background: #d9a51e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 700px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   GALLERY PAGE HEADER
   ===================================================== */

.page-header {
    width: 100%;
    padding: 70px 6% 55px;
    text-align: center;
    background: #ffffff;
}

.page-header h1 {
    margin: 0 0 10px;

    color: #26352d;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.2;

    font-weight: 750;
}

.page-header p {
    max-width: 850px;

    margin: 0 auto;

    color: #59675f;

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================================
   GALLERY PAGE HEADER — MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .page-header {
        padding: 50px 5% 40px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-header p {
        font-size: 14px;
    }

}
/* =====================================================
   GALLERY PAGE — SAME HEADER AS HOME PAGE
   ===================================================== */

.site-header {
    width: 100%;
    min-height: 88px;

    background: linear-gradient(
        135deg,
        #075b3d 0%,
        #087a55 55%,
        #096b49 100%
    );

    color: #ffffff;

    padding: 10px 4.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 9999;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.18);

    border-bottom: 3px solid #f3b72b;
}


/* =====================================================
   HEADER LEFT
   ===================================================== */

.header-left {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;
    flex-shrink: 0;
}


/* =====================================================
   LOGO
   ===================================================== */

.site-header .logo {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 50%;

    padding: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.22);

    overflow: hidden;
}

.site-header .logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    border-radius: 50%;
}


/* =====================================================
   SCHOOL NAME
   ===================================================== */

.site-header .school-title {
    min-width: 0;
}

.site-header .school-title h1 {
    margin: 0;

    color: #ffffff ;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: 0.2px;

    white-space: nowrap;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.18);
}

.site-header .school-title p {
    margin: 5px 0 0;

    color: #ffd45c ;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0.5px;

    white-space: nowrap;
}


/* =====================================================
   NAVIGATION
   ===================================================== */

.site-header nav {
    margin-left: auto;
}

.site-header .menu {
    display: flex;

    align-items: center;

    gap: 3px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.site-header .menu > li {
    position: relative;
}

.site-header .menu > li > a {
    display: block;

    color: #ffffff ;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    padding: 11px 12px;

    border-radius: 7px;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}

.site-header .menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);

    color: #ffd45c;

    transform: translateY(-1px);
}


/* =====================================================
   DROPDOWN
   ===================================================== */

.site-header .dropdown {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    min-width: 225px;

    padding: 8px 0;

    margin: 0;

    background: #ffffff;

    list-style: none;

    border-radius: 9px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}

.site-header .menu > li:hover > .dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.site-header .dropdown li a {
    display: block;

    padding: 10px 17px;

    color: #284337 ;

    background: #ffffff;

    text-decoration: none;

    font-size: 13.5px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.site-header .dropdown li a:hover {
    background: #edf8f2;

    color: #087a55 ;

    padding-left: 22px;
}


/* =====================================================
   HAMBURGER
   ===================================================== */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 8px;

    font-size: 20px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

.menu-toggle:hover {
    background: #f3b72b;

    color: #075b3d;

    transform: scale(1.04);
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1150px) {

    .site-header {
        padding-left: 25px;
        padding-right: 25px;
    }

    .site-header .school-title h1 {
        font-size: 21px;
    }

    .site-header .school-title p {
        font-size: 11px;
    }

    .site-header .menu {
        gap: 1px;
    }

    .site-header .menu > li > a {
        font-size: 13px;

        padding-left: 9px;
        padding-right: 9px;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 950px) {

    .site-header {
        min-height: 76px;

        padding: 9px 20px;
    }

    .site-header .logo {
        width: 55px;
        height: 55px;
    }

    .site-header .school-title h1 {
        font-size: 20px;
    }

    .site-header .school-title p {
        font-size: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header nav {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        width: 100%;

        display: none;

        margin: 0;

        background: #075b3d;

        border-top:
            1px solid rgba(255,255,255,0.15);

        box-shadow:
            0 10px 25px rgba(0,0,0,0.18);

        padding: 8px 20px 18px;
    }

    .site-header nav.active {
        display: block;
    }

    .site-header .menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        width: 100%;
    }

    .site-header .menu > li {
        width: 100%;

        border-bottom:
            1px solid rgba(255,255,255,0.10);
    }

    .site-header .menu > li:last-child {
        border-bottom: none;
    }

    .site-header .menu > li > a {
        width: 100%;

        padding: 13px 10px;

        color: #ffffff ;

        font-size: 15px;

        border-radius: 6px;
    }

    .site-header .menu > li > a:hover {
        background: rgba(255,255,255,0.12);

        color: #ffd45c;

        transform: none;
    }

    .site-header .dropdown {
        position: static;

        width: 100%;

        min-width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        background: rgba(255,255,255,0.08);

        box-shadow: none;

        border-radius: 6px;

        padding: 3px 0;
    }

    .site-header .menu > li:hover > .dropdown {
        display: block;
    }

    .site-header .dropdown li a {
        color: #ffffff ;

        background: transparent;

        padding: 10px 25px;

        font-size: 13.5px;
    }

    .site-header .dropdown li a:hover {
        color: #ffd45c ;

        background: rgba(255,255,255,0.08);

        padding-left: 30px;
    }
}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media (max-width: 600px) {

    .site-header {
        min-height: 68px;

        padding: 8px 13px;
    }

    .header-left {
        gap: 9px;

        max-width: calc(100% - 55px);
    }

    .site-header .logo {
        width: 47px;
        height: 47px;

        padding: 3px;
    }

    .site-header .school-title {
        overflow: hidden;
    }

    .site-header .school-title h1 {
        font-size: 16px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

    .site-header .school-title p {
        font-size: 9px;

        letter-spacing: 0.2px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .site-header nav {
        padding-left: 13px;
        padding-right: 13px;
    }
}


/* =====================================================
   VERY SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {

    .site-header .logo {
        width: 43px;
        height: 43px;
    }

    .site-header .school-title h1 {
        font-size: 14px;
    }

    .site-header .school-title p {
        font-size: 8px;
    }

    .menu-toggle {
        width: 37px;
        height: 37px;

        font-size: 17px;
    }
}
/* =====================================================
   GREENERGY SCHOOL SANGLI
   GLOBAL SITE HEADER
   ===================================================== */

.site-header {
    width: 100%;
    min-height: 92px;

    background: linear-gradient(
        135deg,
        #075b3d 0%,
        #087a55 55%,
        #096b49 100%
    );

    color: #ffffff;

    padding: 10px 4.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 9999;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);

    border-bottom: 3px solid #f3b72b;

    box-sizing: border-box;
}


/* =====================================================
   LEFT SIDE — LOGO + SCHOOL NAME
   ===================================================== */

.site-header .header-left {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;
    flex-shrink: 0;
}


/* =====================================================
   LOGO
   ===================================================== */

.site-header .logo {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 50%;

    padding: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.site-header .logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    border-radius: 50%;
}


/* =====================================================
   SCHOOL NAME
   ===================================================== */

.site-header .school-title {
    min-width: 0;
}

.site-header .school-title h1 {
    margin: 0;
    padding: 0;

    color: #ffffff;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: 0.2px;

    white-space: nowrap;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.site-header .school-title p {
    margin: 5px 0 0;

    color: #ffd45c;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0.5px;

    white-space: nowrap;
}


/* =====================================================
   NAVIGATION
   ===================================================== */

.site-header nav {
    margin-left: auto;

    display: flex;
    align-items: center;
}

.site-header .menu {
    display: flex;

    align-items: center;

    gap: 3px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.site-header .menu > li {
    position: relative;
}

.site-header .menu > li > a {
    display: block;

    color: #ffffff;

    text-decoration: none;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 14px;

    font-weight: 600;

    padding: 11px 12px;

    border-radius: 7px;

    white-space: nowrap;

    transition: all 0.25s ease;
}

.site-header .menu > li > a:hover {
    background: rgba(255, 255, 255, 0.15);

    color: #ffd45c;

    transform: translateY(-1px);
}


/* =====================================================
   ACTIVE HOME
   ===================================================== */

.site-header .menu > li:first-child > a {
    background: rgba(255, 255, 255, 0.18);
}


/* =====================================================
   DROPDOWN
   ===================================================== */

.site-header .dropdown {
    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    min-width: 225px;

    padding: 8px 0;

    margin: 0;

    background: #ffffff;

    list-style: none;

    border-radius: 9px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}

.site-header .menu > li:hover > .dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.site-header .dropdown li a {
    display: block;

    padding: 10px 17px;

    color: #284337;

    background: #ffffff;

    text-decoration: none;

    font-size: 13.5px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.site-header .dropdown li a:hover {
    background: #edf8f2;

    color: #087a55;

    padding-left: 22px;
}


/* =====================================================
   HAMBURGER
   ===================================================== */

.site-header .menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 8px;

    font-size: 20px;

    cursor: pointer;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1100px) {

    .site-header {
        padding-left: 25px;
        padding-right: 25px;
    }

    .site-header .school-title h1 {
        font-size: 21px;
    }

    .site-header .school-title p {
        font-size: 11px;
    }

    .site-header .menu {
        gap: 1px;
    }

    .site-header .menu > li > a {
        font-size: 13px;

        padding-left: 9px;
        padding-right: 9px;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 850px) {

    .site-header {
        min-height: 72px;

        padding: 8px 18px;
    }

    .site-header .header-left {
        gap: 10px;
    }

    .site-header .logo {
        width: 52px;
        height: 52px;
    }

    .site-header .school-title h1 {
        font-size: 18px;
    }

    .site-header .school-title p {
        font-size: 10px;
    }

    /* Hamburger */

    .site-header .menu-toggle {
        display: flex;

        flex-shrink: 0;
    }

    /* Mobile Navigation */

    .site-header nav {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        width: 100%;

        display: none;

        margin: 0;

        padding: 8px 18px 18px;

        background: #075b3d;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    }

    .site-header nav.active {
        display: block;
    }

    .site-header .menu {
        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        width: 100%;
    }

    .site-header .menu > li {
        width: 100%;
    }

    .site-header .menu > li > a {
        width: 100%;

        padding: 13px 10px;

        font-size: 15px;
    }

    /* Mobile Dropdown */

    .site-header .dropdown {
        position: static;

        width: 100%;

        min-width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        background: rgba(255, 255, 255, 0.08);

        box-shadow: none;

        padding: 3px 0;
    }

    .site-header .menu > li:hover > .dropdown {
        display: block;
    }

    .site-header .dropdown li a {
        color: #ffffff;

        background: transparent;

        padding: 10px 25px;
    }

    .site-header .dropdown li a:hover {
        background: rgba(255, 255, 255, 0.08);

        color: #ffd45c;

        padding-left: 30px;
    }
}


/* =====================================================
   SMALL PHONE
   ===================================================== */

@media (max-width: 600px) {

    .site-header {
        min-height: 68px;

        padding: 8px 13px;
    }

    .site-header .header-left {
        gap: 9px;

        max-width: calc(100% - 55px);
    }

    .site-header .logo {
        width: 47px;
        height: 47px;

        padding: 3px;
    }

    .site-header .school-title {
        overflow: hidden;
    }

    .site-header .school-title h1 {
        font-size: 16px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

    .site-header .school-title p {
        font-size: 9px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

    .site-header .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }
}
.developed-by {
    text-align: center;
    margin: 0 0 8px;
    color: #cfddd5;
    font-size: 13px;
}

.developed-by strong {
    color: #f4c542;
    font-weight: 700;
}