
        /* CSS Variables for Consistent Design */
        :root {
            --primary-blue: #0A2463;
            --secondary-blue: #1E40AF;
            --accent-gold: #D4AF37;
            --light-gold: #F4E4C1;
            --light-gray: #F8FAFC;
            --medium-gray: #E2E8F0;
            --dark-gray: #334155;
            --text-dark: #1E293B;
            --success: #10B981;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .section-title .title-decoration {
            height: 4px;
            width: 80px;
            background: linear-gradient(to right, var(--primary-blue), var(--accent-gold));
            margin: 0 auto;
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--dark-gray);
            max-width: 700px;
            margin: 15px auto 0;
            font-size: 1.1rem;
        }
        
        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-accent {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
        }
        
        .btn-accent:hover {
            background-color: #C19B2E;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Header & Top Bar */
        .top-bar {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .contact-info {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--white);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            color: var(--accent-gold);
        }
        
        /* Main Header - COMPLETELY FIXED */
        .main-header {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .main-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
            flex-wrap: wrap;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
            min-width: 300px;
        }
        
        .logo {
            height: 70px;
            width: auto;
            transition: var(--transition);
        }
        
        .school-name h1 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            line-height: 1.2;
        }
        
        .school-name .tagline {
            color: var(--accent-gold);
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            order: 3;
        }
        
        /* Navigation Menu - FIXED - NO MORE CUTTING OFF */
        .nav-container {
            flex-grow: 1;
            display: flex;
            justify-content: flex-end;
            margin-left: 20px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        
        .nav-menu > li {
            position: relative;
            flex-shrink: 0;
        }
        
        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            white-space: nowrap;
            font-size: 0.95rem;
        }
        
        .nav-menu a:hover {
            background-color: var(--light-gray);
            color: var(--primary-blue);
        }
        
        .nav-menu a.active {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .nav-menu a i:first-child {
            font-size: 0.9em;
        }
        
        .nav-menu a i.fa-chevron-down {
            font-size: 0.7em;
            margin-left: 4px;
        }
        
        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius-md);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            padding: 8px 0;
        }
        
        .dropdown li a {
            padding: 12px 20px;
            display: block;
            white-space: normal;
        }
        
        .dropdown li a:hover {
            background-color: var(--light-gray);
        }
        
        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            z-index: 1001;
            order: 2;
        }
        
        .mobile-toggle:hover {
            background-color: var(--light-gray);
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 85vh;
            min-height: 600px;
            max-height: 800px;
            overflow: hidden;
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.7));
            color: var(--white);
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.8) 0%, rgba(30, 64, 175, 0.6) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        
        .hero-text {
            max-width: 700px;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .hero-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .indicator.active {
            background-color: var(--accent-gold);
            transform: scale(1.2);
        }
        
        /* Welcome & Notice Section */
        .welcome-notice-section {
            background-color: var(--light-gray);
        }
        
        .welcome-notice-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .welcome-card, .notice-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
            height: 100%;
        }
        
        .welcome-card h2, .notice-card h2 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent-gold);
            display: inline-block;
        }
        
        .welcome-text p {
            margin-bottom: 20px;
        }
        
        .welcome-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .feature-icon {
            background-color: var(--light-gold);
            color: var(--primary-blue);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .notice-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .notice-item {
            padding: 20px;
            border-radius: var(--radius-md);
            background-color: var(--light-gray);
            border-left: 4px solid var(--accent-gold);
            transition: var(--transition);
        }
        
        .notice-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        
        .notice-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .notice-title {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }
        
        .notice-date {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .notice-description {
            color: var(--dark-gray);
        }
        
        /* Leadership Section */
        .leadership-section {
            background-color: var(--white);
        }
        
        .leadership-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .leader-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .leader-image {
            height: 280px;
            overflow: hidden;
        }
        
        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .leader-card:hover .leader-image img {
            transform: scale(1.05);
        }
        
        .leader-info {
            padding: 30px;
        }
        
        .leader-info h3 {
            color: var(--primary-blue);
            margin-bottom: 8px;
        }
        
        .leader-role {
            color: var(--accent-gold);
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
        }
        
        .leader-quote {
            font-style: italic;
            color: var(--dark-gray);
            position: relative;
            padding-left: 20px;
            border-left: 3px solid var(--medium-gray);
        }
        
        /* Campuses Section */
        .campuses-section {
            background-color: var(--light-gray);
        }
        
        .campuses-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .campus-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .campus-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .campus-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .campus-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .campus-card:hover .campus-image img {
            transform: scale(1.05);
        }
        
        .campus-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .campus-info {
            padding: 25px;
        }
        
        .campus-name {
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .campus-location {
            color: var(--secondary-blue);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .campus-features {
            list-style: none;
            margin-top: 15px;
        }
        
        .campus-features li {
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .campus-features i {
            color: var(--accent-gold);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .footer-main {
            padding: 60px 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            height: 70px;
            margin-bottom: 20px;
        }
        
        .footer-about p {
            margin-top: 15px;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .footer-column h3 {
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }
        
        .contact-list {
            list-style: none;
        }
        
        .contact-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .contact-list i {
            color: var(--accent-gold);
            margin-top: 3px;
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .copyright {
            opacity: 0.8;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .modal-content {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-header {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 25px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            color: var(--white);
        }
        
        .close-modal {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: var(--radius-md);
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        /* COMPREHENSIVE RESPONSIVE DESIGN - FIXED NAVIGATION */
        
        /* Large Desktop Screens (1200px and above) */
        @media (max-width: 1300px) {
            .nav-menu a {
                padding: 12px 12px;
                font-size: 0.9rem;
            }
            
            .logo-container {
                min-width: 280px;
            }
        }
        
        /* Medium Desktop Screens (1100px - 1299px) */
        @media (max-width: 1200px) {
            .nav-menu a {
                padding: 12px 10px;
                font-size: 0.88rem;
            }
            
            .logo-container {
                min-width: 260px;
            }
            
            .school-name h1 {
                font-size: 1.6rem;
            }
        }
        
        /* Small Desktop/Tablet Landscape (992px - 1099px) */
        @media (max-width: 1100px) {
            .nav-menu {
                gap: 1px;
            }
            
            .nav-menu a {
                padding: 12px 8px;
                font-size: 0.85rem;
            }
            
            .logo-container {
                min-width: 240px;
            }
            
            .school-name h1 {
                font-size: 1.5rem;
            }
            
            .header-actions {
                order: 2;
            }
            
            .mobile-toggle {
                order: 3;
            }
        }
        
        /* Tablet Devices (768px - 991px) - MOBILE MENU ACTIVATES HERE */
        @media (max-width: 992px) {
            .mobile-toggle {
                display: flex;
            }
            
            .nav-container {
                position: fixed;
                top: 140px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: var(--shadow-lg);
                border-radius: 0 0 var(--radius-lg) var(--radius-lg);
                z-index: 999;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                margin-left: 0;
                display: block;
            }
            
            .nav-container.active {
                max-height: 80vh;
                overflow-y: auto;
            }
            
            .nav-menu {
                flex-direction: column;
                width: 100%;
                padding: 20px;
                gap: 5px;
                flex-wrap: nowrap;
            }
            
            .nav-menu > li {
                width: 100%;
            }
            
            .nav-menu a {
                padding: 15px;
                width: 100%;
                justify-content: space-between;
                border-radius: var(--radius-md);
                font-size: 1rem;
            }
            
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: var(--light-gray);
                border-radius: var(--radius-md);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0;
                margin-left: 15px;
                width: calc(100% - 30px);
            }
            
            .dropdown.active {
                max-height: 400px;
                padding: 8px 0;
                margin-top: 10px;
                margin-bottom: 5px;
            }
            
            .dropdown li a {
                padding: 12px 15px;
                font-size: 0.95rem;
            }
            
            .header-content {
                justify-content: space-between;
            }
            
            .logo-container {
                min-width: auto;
                flex: 1;
            }
            
            .hero-section {
                height: 70vh;
                min-height: 500px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text p {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .welcome-notice-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Small Tablets (600px - 767px) */
        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .school-name h1 {
                font-size: 1.4rem;
            }
            
            .logo {
                height: 60px;
            }
            
            .hero-text h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-buttons .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .welcome-features {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .header-actions .btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .welcome-card, .notice-card {
                padding: 25px;
            }
            
            .leader-info, .campus-info {
                padding: 20px;
            }
            
            .campuses-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        /* Mobile Devices (480px - 599px) */
        @media (max-width: 576px) {
            .hero-section {
                height: 65vh;
                min-height: 450px;
            }
            
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 50px 0;
            }
            
            .logo-container {
                gap: 10px;
            }
            
            .logo {
                height: 55px;
            }
            
            .school-name h1 {
                font-size: 1.2rem;
            }
            
            .school-name .tagline {
                font-size: 0.8rem;
            }
            
            .header-actions .btn {
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            
            .mobile-toggle {
                width: 35px;
                height: 35px;
                font-size: 1.3rem;
            }
            
            .leadership-container {
                grid-template-columns: 1fr;
            }
            
            .nav-container {
                top: 130px;
            }
        }
        
        /* Small Mobile Devices (below 480px) */
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-text h1 {
                font-size: 1.6rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .welcome-card, .notice-card {
                padding: 20px;
            }
            
            .campuses-container {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .top-bar {
                font-size: 0.8rem;
                padding: 10px 0;
            }
            
            .contact-info {
                gap: 8px;
            }
            
            .nav-container {
                top: 120px;
            }
        }
        
        /* Extra Small Mobile Devices (below 360px) */
        @media (max-width: 360px) {
            .hero-text h1 {
                font-size: 1.4rem;
            }
            
            .hero-text p {
                font-size: 0.9rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .logo {
                height: 50px;
            }
            
            .school-name h1 {
                font-size: 1.1rem;
            }
            
            .header-actions .btn {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
        }
        
        /* Landscape Mode */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero-section {
                height: 100vh;
                min-height: 400px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .nav-container {
                max-height: 70vh;
            }
            
            .nav-container.active {
                max-height: 60vh;
            }
        }
        
        /* High Resolution Screens */
        @media (min-width: 1600px) {
            .container {
                max-width: 1400px;
            }
            
            .hero-text h1 {
                font-size: 4rem;
            }
            
            .section-title h2 {
                font-size: 3rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .main-header, .top-bar, .hero-section, .footer, .mobile-toggle, .btn-accent {
                display: none !important;
            }
            
            body {
                color: #000;
                background: #fff;
            }
            
            .container {
                max-width: 100%;
            }
            
            .section-padding {
                padding: 40px 0;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            animation: fadeIn 1s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .slide-up {
            animation: slideUp 0.8s ease;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
    