:root {
            --navy: #0D1B3E;
            --navy-mid: #1a2d5a;
            --navy-light: #253d72;
            --gold: #C9A84C;
            --gold-light: #e8c96a;
            --gold-pale: #f5e9c4;
            --cream: #F8F3E8;
            --cream-dark: #ede4cc;
            --white: #ffffff;
            --text-dark: #0D1B3E;
            --text-mid: #3a4a6b;
            --text-light: #6b7a99;
            --red-accent: #9b2335;
            --border-gold: rgba(201, 168, 76, 0.3);
            --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.12);
            --shadow-navy: 0 8px 40px rgba(13, 27, 62, 0.15);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-family: 'Roboto', sans-serif;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        

        /* TOP BAR */
        .top-bar {
            background: var(--navy);
            padding: 6px 0;
            border-bottom: 1px solid var(--navy-light);
        }

        .top-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gold-light);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        .top-bar-icon {
            font-size: 11px;
            color: var(--gold);
        }

        .top-bar-right {
            display: flex;
            gap: 20px;
        }

        /* MAIN HEADER */
        .main-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a7a 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .main-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 1;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .school-crest {
            width: 90px;
            height: 90px;
            flex-shrink: 0;
            object-fit: contain;
            display: block;
        }

        .header-text {
            flex: 1;
        }

        .school-name-en {
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .school-name-main {
            font-family: 'Roboto', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .school-name-sub {
            font-family: 'Roboto', sans-serif;
            font-size: 20px;
            font-weight: 400;
            font-style: italic;
            color: var(--gold-light);
            margin-top: 4px;
        }

        .school-affiliation {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
        }

        .badge-cbse {
            background: var(--gold);
            color: var(--navy);
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 2px;
        }

        .badge-est {
            color: var(--gold-pale);
            font-size: 12px;
            letter-spacing: 1px;
            font-weight: 300;
        }

        .header-right {
            text-align: right;
        }

        .header-motto {
            font-family: 'Roboto', sans-serif;
            font-size: 15px;
            font-style: italic;
            color: var(--gold-pale);
            line-height: 1.6;
        }

        .header-admit-btn {
            display: inline-block;
            margin-top: 12px;
            background: var(--gold);
            color: var(--navy);
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 9px 20px;
            border-radius: 2px;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            transition: background 0.2s;
        }

        .header-admit-btn:hover {
            background: var(--gold-light);
        }

        /* NAVIGATION */
        .nav-wrapper {
            background: var(--navy-mid);
            border-bottom: 2px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
            gap: 8px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            flex: 1;
            flex-wrap: wrap;
            gap: 0;
            min-width: 0;
        }

        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid var(--gold);
            border-radius: 2px;
            background: transparent;
            color: var(--gold);
            cursor: pointer;
            flex-shrink: 0;
            transition: background 0.2s, color 0.2s;
        }

        .nav-toggle:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .nav-toggle-icon,
        .nav-toggle-icon::before,
        .nav-toggle-icon::after {
            display: block;
            width: 20px;
            height: 2px;
            background: currentColor;
            border-radius: 1px;
            position: relative;
            transition: transform 0.2s, opacity 0.2s;
        }

        .nav-toggle-icon::before,
        .nav-toggle-icon::after {
            content: '';
            position: absolute;
            left: 0;
        }

        .nav-toggle-icon::before {
            top: -6px;
        }

        .nav-toggle-icon::after {
            top: 6px;
        }

        .nav-wrapper.nav-open .nav-toggle-icon {
            background: transparent;
        }

        .nav-wrapper.nav-open .nav-toggle-icon::before {
            top: 0;
            transform: rotate(45deg);
        }

        .nav-wrapper.nav-open .nav-toggle-icon::after {
            top: 0;
            transform: rotate(-45deg);
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 14px 14px;
            color: #c8d4f0;
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            background: none;
            transition: color 0.2s;
            white-space: nowrap;
            text-decoration: none;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold);
        }

        .nav-link .arrow {
            font-size: 9px;
            transition: transform 0.2s;
        }

        .nav-item:hover .nav-link .arrow {
            transform: rotate(180deg);
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--navy);
            border-top: 2px solid var(--gold);
            border-bottom: 1px solid var(--border-gold);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            z-index: 2000;
        }

        .nav-item:hover .dropdown {
            display: block;
        }

        .dropdown-link {
            display: block;
            padding: 11px 18px;
            color: #b0bdd4;
            font-size: 12.5px;
            font-weight: 400;
            letter-spacing: 0.3px;
            cursor: pointer;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.15s, color 0.15s;
        }

        .dropdown-link:hover {
            background: var(--navy-mid);
            color: var(--gold);
            padding-left: 24px;
        }

        .nav-cta {
            margin-left: auto;
            display: flex;
            gap: 8px;
        }

        .nav-cta-btn {
            padding: 8px 16px;
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 2px;
            border: none;
            transition: all 0.2s;
        }

        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .btn-solid {
            background: var(--gold);
            color: var(--navy);
        }

        .btn-solid:hover {
            background: var(--gold-light);
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 40%, #1c3468 100%);
            min-height: 580px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
        }

        .hero-bg-text {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Roboto', sans-serif;
            font-size: 180px;
            font-weight: 700;
            color: rgba(201, 168, 76, 0.04);
            letter-spacing: -5px;
            line-height: 1;
            user-select: none;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .hero-session {
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #f0e6b8;
            letter-spacing: 0.06em;
            margin-bottom: 14px;
        }

        .hero-title {
            font-family: 'Roboto', sans-serif;
            font-size: 52px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
        }

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

        .hero-desc {
            color: #8fa4d0;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 32px;
        }

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

        .btn-hero-primary {
            background: var(--gold);
            color: var(--navy);
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 14px 28px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .btn-hero-primary:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        .btn-hero-secondary {
            background: transparent;
            color: var(--white);
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 13px 28px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .btn-hero-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

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

        .hero-stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(201, 168, 76, 0.15);
            border-radius: 4px;
            padding: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .hero-stat-num {
            font-family: 'Roboto', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }

        .hero-stat-label {
            font-size: 12px;
            color: #8fa4d0;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* ANNOUNCEMENT BAR */
        .announcement-bar {
            background: var(--navy);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 12px 0;
            overflow: hidden;
        }

        .marquee-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .marquee-label {
            background: var(--gold);
            color: var(--navy);
            font-family: 'Roboto', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 4px 10px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .marquee-text {
            color: var(--gold-pale);
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .marquee-sep {
            color: var(--gold);
            margin: 0 16px;
        }

        /* SECTION STYLES */
        .section {
            padding: 80px 0;
        }

        .section-alt {
            background: var(--white);
        }

        .section-dark {
            background: var(--navy);
        }

        .section-cream {
            background: var(--cream);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 10px;
        }

        .section-title {
            font-family: 'Roboto', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--navy);
            text-align: center;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-title-light {
            color: var(--white);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 16px;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .section-subtitle-light {
            color: #8fa4d0;
        }

        .divider-gold {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 0 auto 16px;
        }

        /* MESSAGE CARDS */
        .message-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .message-card {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-top: 3px solid var(--gold);
            border-radius: 4px;
            padding: 32px;
            position: relative;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .message-card:hover {
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }

        .message-quote {
            font-family: 'Roboto', sans-serif;
            font-size: 72px;
            font-weight: 700;
            color: var(--gold-pale);
            line-height: 0.5;
            margin-bottom: 16px;
            display: block;
        }

        .message-text {
            font-family: 'Roboto', sans-serif;
            font-size: 17px;
            font-style: italic;
            color: var(--text-mid);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .message-person {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid var(--cream-dark);
            padding-top: 20px;
        }

        .person-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--gold);
            flex-shrink: 0;
        }

        .person-name {
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
        }

        .person-role {
            font-size: 12px;
            color: var(--gold);
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* FACILITY CARDS */
        .facility-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .facility-card {
            background: var(--navy);
            border: 1px solid rgba(201, 168, 76, 0.15);
            border-radius: 4px;
            padding: 36px 28px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .facility-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .facility-card:hover {
            background: var(--navy-mid);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

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

        .facility-icon {
            font-size: 40px;
            margin-bottom: 16px;
            display: block;
        }

        .facility-name {
            font-family: 'Roboto', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 10px;
        }

        .facility-desc {
            font-size: 13px;
            color: #7a8db5;
            line-height: 1.7;
        }

        /* NEWS / NOTICE CARDS */
        .notice-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .notice-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-left: 4px solid var(--gold);
            border-radius: 0 4px 4px 0;
            padding: 20px;
            transition: box-shadow 0.2s;
        }

        .notice-item:hover {
            box-shadow: var(--shadow-gold);
        }

        .notice-date-box {
            background: var(--navy);
            color: var(--gold);
            text-align: center;
            min-width: 54px;
            padding: 8px 6px;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .notice-date-day {
            font-family: 'Roboto', sans-serif;
            font-size: 22px;
            font-weight: 600;
            line-height: 1;
        }

        .notice-date-mon {
            font-size: 11px;
            letter-spacing: 1px;
            font-weight: 300;
        }

        .notice-body {
            flex: 1;
        }

        .notice-tag {
            display: inline-block;
            background: var(--gold-pale);
            color: var(--navy);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 2px 8px;
            border-radius: 2px;
            margin-bottom: 6px;
        }

        .notice-title-text {
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.35;
        }

        .notice-text {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* PAGE HERO (inner pages) */
        .page-hero {
            background: linear-gradient(135deg, var(--navy) 0%, #1e3a7a 100%);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
        }

        .page-hero-content::after {
            content: 'Academic Session 2026–27';
            display: block;
            margin-top: 14px;
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #f0e6b8;
            letter-spacing: 0.04em;
        }

        .page-hero-label {
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .page-hero-title {
            font-family: 'Roboto', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 13px;
            color: #8fa4d0;
        }

        .breadcrumb span {
            color: var(--gold);
        }

        .breadcrumb a {
            color: #8fa4d0;
            cursor: pointer;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        /* ABOUT CONTENT */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .about-text p {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .about-image-box {
            background: var(--navy);
            border-radius: 4px;
            padding: 40px;
            text-align: center;
            border: 1px solid rgba(201, 168, 76, 0.2);
        }

        /* VISION MISSION */
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .vm-card {
            padding: 40px;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .vm-card-vision {
            background: var(--navy);
            color: var(--white);
            text-align: left;
        }

        .vm-card-mission {
            background: var(--gold);
            color: var(--navy);
            text-align: left;
        }

        .vm-li-text {
            display: block;
        }

        .vm-heading {
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .vm-title {
            font-family: 'Roboto', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .vm-list {
            list-style: none;
        }

        .vm-list li {
            display: block;
            position: relative;
            padding-left: 1.15rem;
            margin-bottom: 12px;
            font-size: 14px;
            line-height: 1.7;
            text-align: left;
        }

        .vm-list li::before {
            content: '◆';
            position: absolute;
            left: 0;
            top: 0.45em;
            font-size: 8px;
            line-height: 1;
            color: inherit;
            opacity: 0.85;
        }

        /* ACADEMICS TABLE */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .info-table th {
            background: var(--navy);
            color: var(--gold);
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 14px 18px;
            text-align: left;
        }

        .info-table td {
            padding: 14px 18px;
            border-bottom: 1px solid var(--cream-dark);
            color: var(--text-mid);
            background: var(--white);
        }

        .info-table tr:hover td {
            background: var(--cream);
        }

        .info-table td:first-child {
            font-weight: 700;
            color: var(--navy);
        }

        /* FEE TABLE */
        .fee-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .fee-table th {
            background: var(--navy);
            color: var(--gold);
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 14px 18px;
            text-align: left;
        }

        .fee-table td {
            padding: 13px 18px;
            border-bottom: 1px solid var(--cream-dark);
            background: var(--white);
        }

        .fee-table tr:hover td {
            background: var(--cream);
        }

        .fee-table .fee-total td {
            background: var(--navy);
            color: var(--gold);
            font-weight: 700;
        }

        /* GALLERY */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .gallery-item {
            background: var(--navy-mid);
            border-radius: 4px;
            overflow: hidden;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            border: 1px solid rgba(201, 168, 76, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .gallery-placeholder {
            text-align: center;
            color: var(--gold);
            padding: 20px;
        }

        .gallery-placeholder .gi-icon {
            font-size: 32px;
            margin-bottom: 8px;
            display: block;
        }

        .gallery-placeholder p {
            font-size: 12px;
            color: #7a8db5;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(13, 27, 62, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: var(--gold);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* CONTACT SECTION */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon-box {
            width: 42px;
            height: 42px;
            background: var(--navy);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .contact-text p {
            font-size: 15px;
            color: var(--navy);
            line-height: 1.6;
        }

        .contact-form {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-radius: 4px;
            padding: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 6px;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--cream-dark);
            border-radius: 2px;
            font-size: 14px;
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            background: var(--cream);
            transition: border-color 0.2s;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--gold);
            background: var(--white);
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        textarea.form-input {
            height: 100px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            background: var(--navy);
            color: var(--gold);
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 14px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            text-transform: uppercase;
            transition: background 0.2s;
        }

        .form-submit:hover {
            background: var(--navy-mid);
        }

        /* MAP */
        .map-embed {
            width: 100%;
            height: 350px;
            border-radius: 4px;
            background: var(--navy-mid);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            overflow: hidden;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
            color: var(--gold);
        }

        .map-placeholder h4 {
            font-family: 'Roboto', sans-serif;
            font-size: 22px;
            margin: 14px 0 8px;
        }

        .map-placeholder p {
            font-size: 13px;
            color: #7a8db5;
        }

        /* MANDATORY DISCLOSURE TABLE */
        .disclosure-section {
            margin-bottom: 40px;
        }

        .disclosure-section h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--navy);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        /* PAY FEES */
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .payment-card {
            background: var(--white);
            border: 2px solid var(--cream-dark);
            border-radius: 6px;
            padding: 28px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .payment-card:hover,
        .payment-card.selected {
            border-color: var(--gold);
            background: var(--cream);
        }

        .payment-icon {
            font-size: 36px;
            margin-bottom: 12px;
            display: block;
        }

        .payment-name {
            font-weight: 700;
            color: var(--navy);
            font-size: 15px;
            margin-bottom: 4px;
        }

        .payment-sub {
            font-size: 12px;
            color: var(--text-light);
        }

        .payment-form {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-radius: 4px;
            padding: 40px;
            max-width: 560px;
            margin: 0 auto;
        }

        .payment-form h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 24px;
            text-align: center;
        }

        /* ACHIEVEMENTS */
        .achievement-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .achievement-card {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-top: 3px solid var(--gold);
            border-radius: 4px;
            padding: 24px;
            text-align: center;
        }

        .achievement-num {
            font-family: 'Roboto', sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 6px;
        }

        .achievement-label {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* FOOTER */
        .footer {
            background: #060d1f;
            padding: 60px 0 0;
            border-top: 2px solid var(--gold);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 13px;
            color: #6b7a99;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #c5d0e8;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            align-items: flex-start;
        }

        .footer-contact-icon {
            color: var(--gold);
            font-size: 13px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-contact-text {
            font-size: 14px;
            color: #dce4f4;
            line-height: 1.55;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            padding: 20px 24px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #d8e2f4;
            font-weight: 500;
        }

        .footer-bottom span {
            color: var(--gold);
        }

        /* CARD HOVER LIFT */
        .card-lift {
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card-lift:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-navy);
        }

        /* HEADING DIVIDER */
        .h-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            justify-content: center;
        }

        .h-divider-line {
            flex: 1;
            max-width: 60px;
            height: 1px;
            background: var(--gold);
        }

        .h-divider-diamond {
            width: 6px;
            height: 6px;
            background: var(--gold);
            transform: rotate(45deg);
        }

        /* TABS */
        .tab-bar {
            display: flex;
            gap: 0;
            border-bottom: 2px solid var(--cream-dark);
            margin-bottom: 32px;
        }

        .tab-btn {
            padding: 12px 24px;
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .tab-btn:hover {
            color: var(--navy);
        }

        .tab-btn.active {
            color: var(--navy);
            border-bottom-color: var(--gold);
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
        }

        /* SCHOOL TIMING */
        .timing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .timing-card {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-left: 4px solid var(--gold);
            border-radius: 0 4px 4px 0;
            padding: 24px;
        }

        .timing-day {
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .timing-time {
            font-family: 'Roboto', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--navy);
        }

        .timing-note {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 4px;
        }

        /* INLINE UTILITIES */
        .gold-text {
            color: var(--gold);
        }

        .navy-text {
            color: var(--navy);
        }

        .text-center {
            text-align: center;
        }

        .mb-0 {
            margin-bottom: 0;
        }

        .mt-32 {
            margin-top: 32px;
        }

        .tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 2px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .tag-gold {
            background: var(--gold-pale);
            color: var(--navy);
        }

        .tag-navy {
            background: var(--navy);
            color: var(--gold);
        }

        .tag-red {
            background: #fde8e8;
            color: var(--red-accent);
        }

        /* CBSE DISCLOSURE */
        .cbse-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
        }

        .cbse-nav {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-radius: 4px;
            padding: 8px 0;
            position: sticky;
            top: 80px;
            height: fit-content;
        }

        .cbse-nav-item {
            display: block;
            padding: 12px 20px;
            font-size: 13px;
            color: var(--text-mid);
            cursor: pointer;
            border-left: 3px solid transparent;
            transition: all 0.2s;
            font-weight: 400;
        }

        .cbse-nav-item:hover,
        .cbse-nav-item.active {
            background: var(--cream);
            color: var(--navy);
            border-left-color: var(--gold);
            font-weight: 700;
        }

        .cbse-content {
            flex: 1;
        }

        /* PRINT/INFO BOX */
        .info-box {
            background: var(--cream);
            border: 1px solid var(--cream-dark);
            border-left: 4px solid var(--gold);
            border-radius: 0 4px 4px 0;
            padding: 20px 24px;
            margin-bottom: 24px;
        }

        .info-box h4 {
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
            font-size: 15px;
        }

        .info-box p {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        /* RESPONSIVE — tablet */
        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 1024px) {

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

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

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

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .section {
                padding: 56px 0;
            }

            .page-hero-title {
                font-size: 38px;
            }

            .hero-title {
                font-size: 44px;
            }

            .hero-bg-text {
                font-size: 120px;
                right: -40px;
            }
        }

        /* RESPONSIVE — mobile nav + layout */
        @media (max-width: 992px) {
            .nav-toggle {
                display: flex;
                margin-left: auto;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: stretch;
                flex: 1 1 100%;
                width: 100%;
                order: 4;
                max-height: min(70vh, 520px);
                overflow-y: auto;
                overflow-x: hidden;
                padding: 8px 0 16px;
                margin: 0 -16px;
                padding-left: 16px;
                padding-right: 16px;
                border-top: 1px solid rgba(201, 168, 76, 0.25);
                background: var(--navy-mid);
                -webkit-overflow-scrolling: touch;
            }

            .nav-wrapper.nav-open .nav-menu {
                display: flex;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .nav-link {
                width: 100%;
                justify-content: space-between;
                padding: 14px 12px;
                white-space: normal;
            }

            .nav-cta {
                margin-left: 0;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 0;
                gap: 10px;
            }

            .nav-cta-btn {
                width: 100%;
                text-align: center;
            }

            .dropdown {
                position: static;
                display: none;
                min-width: 100%;
                box-shadow: none;
                border: none;
                border-radius: 0;
                background: rgba(0, 0, 0, 0.2);
            }

            .nav-item:hover .dropdown {
                display: none;
            }

            .nav-item.open .dropdown {
                display: block;
            }

            .dropdown-link {
                padding-left: 24px;
            }

            .dropdown-link:hover {
                padding-left: 28px;
            }

            .cbse-nav {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 20px;
            }

            .hero {
                min-height: auto;
            }

            .message-grid,
            .facility-grid,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

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

            .payment-methods {
                grid-template-columns: 1fr;
            }

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

            .vm-grid,
            .about-content,
            .timing-grid {
                grid-template-columns: 1fr;
            }

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

            .school-name-main {
                font-size: 26px;
            }

            .school-name-sub {
                font-size: 17px;
            }

            .hero-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 30px;
            }

            .header-inner {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                gap: 16px;
            }

            .header-text {
                flex: 1 1 100%;
                order: 1;
            }

            .school-crest {
                order: 0;
                width: 72px;
                height: 72px;
            }

            .header-right {
                flex: 1 1 100%;
                order: 2;
                text-align: center;
            }

            .top-bar-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .top-bar-right {
                width: 100%;
            }

            .marquee-wrapper {
                flex-wrap: wrap;
                align-items: flex-start;
            }

            .marquee-text {
                white-space: normal;
                font-size: 12px;
            }

            .contact-form {
                padding: 24px;
            }

            .map-embed {
                height: 280px;
            }

            .payment-form {
                padding: 28px 20px;
            }

            .tab-bar {
                flex-wrap: wrap;
            }

            .tab-btn {
                padding: 10px 16px;
                font-size: 10px;
            }

            .page-hero {
                padding: 44px 0 36px;
            }

            .page-hero-title {
                font-size: 32px;
            }

            .about-text h3 {
                font-size: 26px;
            }

            .vm-title {
                font-size: 26px;
            }

            .vm-card {
                padding: 28px 22px;
            }
        }

        @media (max-width: 768px) {

            .container,
            .top-bar-inner,
            .header-inner,
            .footer-grid,
            .footer-bottom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section {
                padding: 44px 0;
            }

            .hero-inner {
                padding: 32px 16px;
            }

            .hero-stat-num {
                font-size: 32px;
            }

            .message-quote {
                font-size: 56px;
            }

            .message-text {
                font-size: 15px;
            }

            .breadcrumb {
                flex-wrap: wrap;
            }

            .container:has(table.info-table),
            .container:has(table.fee-table),
            .disclosure-section:has(table.info-table) {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            table.info-table,
            table.fee-table {
                min-width: 520px;
                font-size: 12px;
            }

            table.info-table th,
            table.info-table td,
            table.fee-table th,
            table.fee-table td {
                padding: 10px 12px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }

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

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

            .hero-title {
                font-size: 26px;
            }

            .hero-bg-text {
                font-size: 64px;
                right: -60px;
                opacity: 0.5;
            }

            .school-name-en {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .school-name-main {
                font-size: 22px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 14px;
                margin-bottom: 32px;
            }

            .notice-item {
                flex-direction: column;
                gap: 12px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                text-align: center;
            }

            .message-card {
                padding: 22px;
            }

            .facility-card {
                padding: 28px 20px;
            }
        }

        /* Inline layout grids (admissions, about, etc.) */
        @media (max-width: 900px) {

            [style*="grid-template-columns:1fr 1fr"],
            [style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }

            [style*="grid-template-columns:repeat(3,1fr)"],
            [style*="grid-template-columns: repeat(3, 1fr)"] {
                grid-template-columns: 1fr !important;
            }

            [style*="grid-template-columns:repeat(4,1fr)"],
            [style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            [style*="grid-template-columns:1fr 3fr"],
            [style*="grid-template-columns: 1fr 3fr"] {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 480px) {

            [style*="grid-template-columns:repeat(2,1fr)"],
            [style*="grid-template-columns: repeat(2, 1fr)"] {
                grid-template-columns: 1fr !important;
            }

            [style*="grid-template-columns:repeat(4,1fr)"],
            [style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: 1fr !important;
            }
        }

        body.nav-open {
            overflow: hidden;
        }

        @media (max-width: 640px) {
            .message-card div[style*="display:flex"][style*="align-items:center"][style*="gap:24px"] {
                flex-direction: column;
                align-items: flex-start !important;
                gap: 16px !important;
            }

            .message-card[style*="padding:48px"] {
                padding: 24px 18px !important;
            }
        }

/* Theme + Xavier branding integration */
.xaviers-top-bar.navbar-top.header-5 {
    background: var(--navy) !important;
}
.xaviers-header .navbar-dark .nav-link {
    color: var(--navy) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}
.xaviers-header .navbar-dark .nav-link.active,
.xaviers-header .navbar-dark .nav-item.active > .nav-link {
    color: var(--gold) !important;
}
.xaviers-header .dropdown-item.active {
    background: var(--cream);
    color: var(--navy);
}
body.xaviers-site {
    font-family: 'Roboto', sans-serif;
}
body.xaviers-site #main-content .page-hero,
body.xaviers-site #main-content .section {
    /* Inner pages use Xavier content blocks */
}
.page-home-5 .banner-5 .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}
.page-home-5 .banner-5 .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}
