@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
    --primary-color: #07173D;
    --secondary-color: #CBEFFF;
    --text-light: #FFFFFF;
    --color-white: #FFFFFF;
    --max-width-desktop: 1300px;
    --max-width-mobile: 85%;
    --margin-auto: 0 auto;
    --font-family: 'Raleway', sans-serif;
    --primary: #23466e;
    --primary-dark: #152d5e;
    --primary-light: #5b8fc4;
    --accent: #3ab5ae;
    --accent-light: #6dd5cf;
    --accent-soft: #d6f4f2;
    --teal: #0d6e6a;
    --text-dark: #0f2548;
    --text-mid: #2e5088;
    --text-light: #6688b8;
    --surface: #ffffff;
    --surface-alt: #f0f7f7;
    --surface-blue: #e6f0f9;
    --border: rgba(30, 61, 123, 0.09);
    --shadow-sm: 0 4px 15px rgba(30, 61, 123, 0.07);
    --shadow-md: 0 15px 40px rgba(30, 61, 123, 0.13);
    --shadow-lg: 0 30px 70px rgba(30, 61, 123, 0.20);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 50px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
}

main {
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    overflow: visible;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

.nav-brand {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 10px 0;
}

.school-logo {
    width: 100px;
    display: block;
    transition: transform 0.3s ease;
}

.school-logo:hover {
    transform: scale(1.05);
}

.meta-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.affiliation-status {
    font-size: 7.5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.school-meta {
    font-size: 11px;
    font-family: 'Oswald', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(7, 23, 61, 0.15);
    height: 30px;
}

.school-meta .label {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.school-meta .value {
    font-weight: 600;
}

.school-meta .separator {
    color: rgba(7, 23, 61, 0.2);
    font-size: 14px;
}

.navbar.scrolled .school-logo.color {
    display: block;
}

.navbar.scrolled .school-logo.white {
    display: none;
}

.school-logo.color {
    display: none;
}

.school-logo.white {
    display: block;
}

.school-meta .label {
    color: white;
}

.school-meta .value {
    color: white;
}

.navbar.scrolled .school-meta .label {
    color: #666;
}

.navbar.scrolled .school-meta .value {
    color: var(--primary);
}

.nav-item,
.nav-item i {
    color: white;
}

.navbar.scrolled .nav-item,
.navbar.scrolled .nav-item i {
    color: var(--primary);
}

.affiliation-status {
    color: white;
}

.navbar.scrolled .affiliation-status {
    color: var(--teal) !important;
}

/* ─────────────────────────────────
   NAVBAR WRAPPER (CINEMATIC GLASS)
───────────────────────────────── */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Tripartite Alignment */
    align-items: center;
    padding: 12px 40px;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(58, 181, 174, 0.15);
    padding: 8px 40px;
}

@media (max-width: 992px) {
    .navbar {
        grid-template-columns: auto 1fr auto; 
        padding: 10px 10px;
        gap: 5px;
        height: auto;
        min-height: 80px;
    }
    
    .nav-center {
        display: flex !important;
        justify-content: center;
        align-items: center;
        order: 2;
        padding: 0;
    }

    .nav-brand {
        order: 1;
    }

    .nav-actions {
        order: 3;
    }

    .school-logo {
        width: 80px !important;
    }

    .curr-navigation {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .btn-logo {
        height: 40px !important;
        width: auto !important;
        border-radius: 0;
        background: transparent;
        padding: 0;
    }

    .enquiry-cta.main-enq {
        padding: 6px 12px !important;
        font-size: 10px !important;
        border-radius: 100px !important;
        height: auto;
    }

    .board-switcher {
        display: flex !important;
        flex-direction: row !important;
        gap: 2px;
        padding: 3px;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 4px;
    }

    .switcher-btn {
        font-size: 9px !important;
        padding: 4px 10px !important;
        min-width: 0;
    }

    .explore-link {
        display: none !important;
    }
}

/* Extra tight for very small screens */
@media (max-width: 380px) {
    .school-logo {
        width: 55px !important;
    }
    .curr-navigation {
        gap: 2px !important;
    }
    .enquiry-cta.main-enq {
        padding: 2px 4px !important;
        font-size: 6.5px !important;
    }
    .btn-logo {
        height: 24px !important;
        width: 24px !important;
    }
}

.nav-brand {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* ─────────────────────────────────
   NAV LINKS DESKTOP
───────────────────────────────── */
.nav-menu-desktop {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 14px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}

.navbar.scrolled .nav-item {
    color: var(--primary);
}

/* Deluxe Sliding Underline */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-item:hover {
    color: var(--accent);
}

.nav-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Enquiry CTA Button Style */
.enquiry-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(58, 181, 174, 0.3);
    border: none;
    margin-left: 10px;
}

.enquiry-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 70, 110, 0.4);
}

.enquiry-cta i {
    font-size: 1.1rem;
}

.enquiry-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.enquiry-cta.main-enq {
    padding: 8px 18px;
    font-size: 11px;
    margin: 0;
}

.enquiry-cta.cbse-enq,
.enquiry-cta.ib-enq {
    background: #FFD700; /* Golden Yellow */
    color: #07173D !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.enquiry-cta.cbse-enq:hover,
.enquiry-cta.ib-enq:hover {
    background: #f1c40f;
    color: #07173D !important;
}

/* ─────────────────────────────────
   DROPDOWN MENU
───────────────────────────────── */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(7, 23, 61, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 1000;
    border: 1px solid rgba(7, 23, 61, 0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.dropdown-item:hover {
    background: rgba(7, 23, 61, 0.04);
    color: #0a9396;
    padding-left: 28px;
}

/* ─────────────────────────────────
   BOARD SWITCHER (IB & CBSE)
───────────────────────────────── */
.board-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.08);
    padding: 5px;
    border-radius: 100px;
    margin-right: 15px;
    border: 1px solid rgba(7, 23, 61, 0.15);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); /* Recessed feel */
}

.switcher-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 100px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(7, 23, 61, 0.7);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.8px;
    border: 1px solid transparent;
}

.btn-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.board-explorer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.explore-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-top: 2px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.navbar:not(.scrolled) .explore-link {
    color: #ffffff;
}

.board-explorer:hover .explore-link {
    opacity: 1;
    letter-spacing: 2px;
}

.curr-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.switcher-btn:hover .btn-logo {
    transform: scale(1.15);
}

.switcher-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.switcher-btn:active {
    transform: translateY(0) scale(0.95);
}

.switcher-btn.active {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Translucency for transparent header */
.navbar:not(.scrolled) .board-switcher {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.navbar:not(.scrolled) .switcher-btn {
    color: rgba(255, 255, 255, 0.9);
}

.navbar:not(.scrolled) .switcher-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.navbar:not(.scrolled) .switcher-btn.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

/* ─────────────────────────────────
   NAV ACTIONS & BUTTON
───────────────────────────────── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFDE00 0%, #F0B300 100%);
    color: #051336;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 26px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 14px rgba(240, 179, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.register-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.register-btn:hover {
    background: linear-gradient(135deg, #FFE533 0%, #FFC400 100%);
    color: #000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(240, 179, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.register-btn:hover::after {
    left: 150%;
}


.menu-toggle,
.close-btn {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--primary-color);
    z-index: 101;
}

.toggle-with-labels {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label {
    font-weight: 600;
    color: var(--primary-color);
}

.toggle-container {
    width: 70px;
    height: 34px;
}

.toggle {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.toggle-input {
    display: none;
}

.toggle-background {
    fill: #ccc;
    transition: fill 0.3s ease;
}

.toggle-icon.on {
    fill: var(--primary-color);
}

.toggle-icon.off {
    fill: var(--primary-color);
    opacity: 0;
}

.toggle-circle {
    transition: transform 0.3s ease;
}

.toggle-input:checked+.toggle .toggle-background {
    fill: var(--secondary-color);
}

.toggle-input:checked+.toggle .toggle-circle.left {
    transform: translateX(80px);
}

.toggle-input:checked+.toggle .toggle-circle.right {
    transform: translateX(-80px);
}

.toggle-input:checked+.toggle .toggle-icon.on {
    opacity: 0;
}

.toggle-input:checked+.toggle .toggle-icon.off {
    opacity: 1;
}


@media(max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu>.nav-item,
    .nav-menu>.register-btn,
    .nav-menu>.toggle-with-labels {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        clip-path: circle(0% at calc(100% - 50px) 50px);
        transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-menu.active {
        clip-path: circle(150% at calc(100% - 50px) 50px);
    }

    .nav-menu.active>.nav-item,
    .nav-menu.active>.register-btn,
    .nav-menu.active>.toggle-with-labels {
        display: flex;
    }

    .nav-menu .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 32px;
    }

    .nav-item {
        font-size: 40px;
        font-weight: 600;
        letter-spacing: -1.2px;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-item::after {
        display: none;
    }

    .register-btn {
        padding: 15px 30px;
        font-size: 18px;
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .toggle-with-labels {
        margin-top: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.active .nav-item,
    .nav-menu.active .register-btn,
    .nav-menu.active .toggle-with-labels {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(5) {
        transition-delay: 0.4s;
    }

    .nav-menu.active .register-btn {
        transition-delay: 0.5s;
    }

    .nav-menu.active .toggle-with-labels {
        transition-delay: 0.6s;
    }
}

.nav-menu-desktop {
    display: flex;
    align-items: center;
}

@media(max-width: 992px) {

    .nav-menu-desktop,
    .register-btn {
        display: none;
    }
}



.menu-toggle {
    display: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.navbar.scrolled .hamburger-icon span {
    background-color: var(--primary);
}

.sidebar-open .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.sidebar-open .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.sidebar-open .hamburger-icon span {
    background-color: #fff;
}


.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100%;
    background: linear-gradient(135deg, #07173d 0%, #102a5c 40%, #1a4a88 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.sidebar-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-open .mobile-nav-sidebar {
    transform: translateX(0);
}

.sidebar-open body,
.sidebar-open html {
    overflow: hidden;
}

.mobile-nav-header {
    padding: 1rem 1.5rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-nav-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-body ul a,
.mobile-nav-body ul button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-body ul a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.accordion-toggle i {
    transition: transform 0.4s ease;
}

.has-accordion.active>.accordion-toggle i {
    transform: rotate(180deg);
}

.sub-menu {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s ease-in-out;
}

.sub-menu a {
    font-size: 1rem;
    padding-left: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #FFDE00 0%, #F0B300 100%);
    color: #051336;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(240, 179, 0, 0.3);
}

.register-btn-mobile:hover {
    background: linear-gradient(135deg, #FFE533 0%, #FFC400 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 179, 0, 0.5);
}

@media (max-width: 992px) {
    .nav-menu-desktop,
    .navbar .register-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* ─────────────────────────────────
   GLOBAL FOOTER
───────────────────────────────── */
.site-footer {
    width: 100%;
    position: relative;
    padding: 80px 80px 40px;
    color: #fff;
    background: linear-gradient(135deg, #07173d 0%, #102a5c 40%, #1a4a88 100%);
    overflow: hidden;
}

/* Subtle glowing overlay */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(58, 181, 174, 0.15) 0%, transparent 60%);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

/* Left CTA side */
.footer-cta {
    max-width: 45%;
}

.footer-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.footer-subheading {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Right board side */
.footer-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex: 1;
}

.footer-board-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.footer-board-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.board-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-board-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.board-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.board-curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.board-curriculum-list li {
    margin-bottom: 12px;
}

.board-curriculum-list li a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.board-curriculum-list li a:hover {
    color: var(--teal);
    padding-left: 5px;
}

.board-explore-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.board-explore-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #001219;
}

.board-explore-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.board-explore-btn:hover i {
    transform: translateX(4px);
}

/* Bottom Bar */
.footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--teal);
    transform: translateY(-2px);

}

@media (max-width: 900px) {
    .site-footer {
        padding: 40px;
        height: auto;
        min-height: 100vh;
    }

    .footer-main {
        flex-direction: column;
        gap: 60px;
    }

    .footer-cta {
        max-width: 100%;
    }

    .footer-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .footer-heading {
        font-size: 2.5rem;
    }

    .footer-board-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }

}

    /* ================================================================
   COMPREHENSIVE LAYOUT RESPONSIVE SYSTEM
   1280 | 992 | 768 | 480 | 360
   ================================================================ */

    /* --- 1280px: large tablet / small laptop --- */
    @media (max-width: 1280px) {
        .navbar {
            padding: 8px 24px;
        }

        .nav-item {
            padding: 10px 11px;
            font-size: 0.9rem;
        }

        .school-logo {
            width: 110px;
        }

        .site-footer {
            padding: 60px 40px 30px;
        }

        .footer-heading {
            font-size: 3.8rem;
        }

        .footer-links {
            gap: 40px;
        }
    }

    /* --- 992px: tablet landscape / nav collapse --- */
    @media (max-width: 992px) {
        .navbar {
            padding: 8px 20px;
        }

        .school-logo {
            width: 110px;
        }

        .nav-brand {
            padding: 8px 0;
        }

        .affiliation-status {
            font-size: 6px;
            margin-top: 2px;
        }

        .school-meta {
            font-size: 9.5px;
            height: 24px;
            padding-left: 10px;
            margin-left: 10px;
        }

        .nav-menu-desktop,
        .navbar .register-btn,
        .nav-center,
        .enquiry-cta {
            display: none;
        }

        .menu-toggle {
            display: block;
        }

        .site-footer {
            padding: 50px 30px 30px;
            margin-top: 40px;
        }

        .footer-heading {
            font-size: 3.2rem;
        }

        .footer-main {
            flex-direction: column;
            gap: 40px;
        }

        .footer-cta {
            max-width: 100%;
        }

        .footer-board-grid {
            width: 100%;
            grid-template-columns: 1fr 1fr;
        }
    }

    /* --- 768px: tablet portrait / large phone --- */
    @media (max-width: 768px) {
        .navbar {
            padding: 8px 16px;
        }

        .school-logo {
            width: 110px;
        }

        .affiliation-status {
            display: none;
        }

        .school-meta {
            font-size: 8.5px;
            gap: 4px;
            border-left: none;
            padding-left: 0;
            margin-left: 0;
        }

        .mobile-nav-sidebar {
            width: 280px;
        }

        .mobile-nav-body ul a,
        .mobile-nav-body ul button {
            font-size: 1rem;
            padding: 0.9rem 1.25rem;
        }

        .site-footer {
            padding: 40px 24px 24px;
        }

        .footer-heading {
            font-size: 2.6rem;
            margin-bottom: 16px;
        }

        .footer-subheading {
            font-size: 1rem;
        }

        .footer-links {
            gap: 30px;
            flex-direction: column;
        }

        .link-column h4 {
            font-size: 1.1rem;
            margin-bottom: 14px;
        }

        .link-column ul li a {
            font-size: 0.9rem;
        }

        .footer-bottom {
            padding-top: 24px;
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .social-links a {
            font-size: 1.3rem;
            margin: 0 8px;
        }
    }

    /* --- 480px: standard phone --- */
    @media (max-width: 480px) {
        .navbar {
            padding: 10px 8px;
        }

        .school-logo {
            width: 70px !important;
        }

        .school-meta {
            display: none;
        }

        .nav-brand {
            padding: 4px 0;
            gap: 4px;
        }

        .menu-toggle {
            width: 24px;
            height: 24px;
        }

        .mobile-nav-sidebar {
            width: 260px;
        }

        .mobile-nav-header {
            padding: 0.9rem 1.2rem;
        }

        .mobile-nav-body ul a,
        .mobile-nav-body ul button {
            font-size: 0.95rem;
            padding: 0.8rem 1.1rem;
        }

        .site-footer {
            padding: 36px 20px 20px;
        }

        .footer-heading {
            font-size: 2.2rem;
        }

        .footer-subheading {
            font-size: 0.95rem;
        }

        .link-column h4 {
            font-size: 1.05rem;
        }

        .copyright {
            font-size: 0.8rem;
        }
    }

    /* --- 360px: small phone --- */
    @media (max-width: 360px) {
        .school-logo {
            width: 60px !important;
        }

        .navbar {
            padding: 8px 6px;
        }

        .curr-navigation {
            gap: 4px !important;
        }

        .btn-logo {
            height: 30px !important;
        }

        .enquiry-cta.main-enq {
            padding: 4px 8px !important;
            font-size: 9px !important;
        }

        .switcher-btn {
            padding: 3px 6px !important;
            font-size: 8px !important;
        }

        .mobile-nav-sidebar {
            width: 240px;
            max-width: 88vw;
        }

        .mobile-nav-body ul a,
        .mobile-nav-body ul button {
            font-size: 0.9rem;
        }

        .site-footer {
            padding: 30px 16px 16px;
        }

        .footer-heading {
            font-size: 1.8rem;
        }

        .footer-subheading {
            font-size: 0.85rem;
        }

        .link-column h4 {
            font-size: 0.95rem;
        }

        .link-column ul li a {
            font-size: 0.85rem;
        }

        .copyright {
            font-size: 0.75rem;
        }
    }