
        /* =================== CSS VARIABLES =================== */
        :root {
            --primary: #1e40af;
            --primary-dark: #1e3a8a;
            --secondary: #0f766e;
            --accent: #dc2626;
            --success: #059669;
            --warning: #d97706;
            --light: #f8fafc;
            --light-gray: #f1f5f9;
            --gray: #64748b;
            --dark: #0f172a;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* =================== GLOBAL STYLES =================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            font-size: 16px;
        }

        .container {
            max-width: 1200px;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.3;
        }

        p {
            margin-bottom: 1rem;
        }

        /* Links */
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        /* Images */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Utilities */
        .text-wrap {
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .section {
            padding: 80px 0;
        }

        .section-sm {
            padding: 60px 0;
        }

        /* =================== HEADER STYLES =================== */
        .header-top {
            background: var(--primary);
            color: var(--white);
            padding: 12px 0;
            font-size: 0.875rem;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .header-info {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .header-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header-main {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 24px 0;
            box-shadow: var(--shadow);
            position: relative;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: var(--white);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: var(--shadow);
            flex-shrink: 0;
        }

        .school-name {
            flex: 1;
            min-width: 200px;
        }

        .school-name h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .school-name p {
            margin: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .contact-header {
            text-align: right;
            min-width: 200px;
        }

        .contact-header div {
            margin-bottom: 0.25rem;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.5rem;
        }

        /* =================== NAVIGATION =================== */
        .navbar {
            background: rgba(15, 23, 42, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 0;
            box-shadow: var(--shadow);
        }

        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.98) !important;
        }

        .navbar-nav .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            padding: 1rem 1.25rem !important;
            transition: var(--transition);
            position: relative;
            font-size: 0.9rem;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white) !important;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            width: 80%;
        }

        .dropdown-menu {
            background: var(--dark);
            border: none;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            margin-top: 0;
            min-width: 250px;
        }

        .dropdown-item {
            color: var(--white);
            padding: 0.75rem 1rem;
            transition: var(--transition);
            font-size: 0.875rem;
        }

        .dropdown-item:hover,
        .dropdown-item:focus {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .dropdown-item i {
            width: 20px;
            margin-right: 0.5rem;
        }

        /* =================== HERO SECTION =================== */
        .hero {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(15, 118, 110, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2306b6d4" width="1200" height="600"/><path fill="white" fill-opacity="0.1" d="M0,200 Q300,100 600,200 T1200,200 L1200,600 L0,600 Z"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            color: var(--white);
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding-bottom: 50px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent), #ef4444);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--white);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* Hero Stats */
        .hero-stats {
            position: absolute;
            bottom: 2rem;
            left: 0;
            right: 0;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* =================== CONTENT SECTIONS =================== */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* =================== NEWS & CONTENT =================== */
        .main-content {
            background: var(--light);
        }

        .content-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            height: 100%;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .card-header {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 1.25rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .card-header i {
            margin-right: 0.5rem;
        }

        .news-item {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
        }

        .news-item:hover {
            background: var(--light);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-date {
            color: var(--gray);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .news-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .news-excerpt {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Sidebar */
        .sidebar-widget {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
        }

        .widget-header {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 1rem 1.25rem;
            font-weight: 600;
            font-size: 1rem;
        }

        .quick-link {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .quick-link:hover {
            background: var(--light);
        }

        .quick-link:last-child {
            border-bottom: none;
        }

        .quick-link a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--dark);
            font-weight: 500;
            text-decoration: none;
        }

        .quick-link a:hover {
            color: var(--primary);
        }

        .quick-link i {
            width: 20px;
            color: var(--primary);
            font-size: 1.1rem;
        }

        /* Weather Widget */
        .weather-widget {
            background: linear-gradient(135deg, #06b6d4, #0284c7);
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        .weather-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .weather-temp {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .weather-location {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .weather-desc {
            opacity: 0.9;
        }

        /* =================== FEATURES SECTION =================== */
        .features {
            background: var(--white);
        }

        .feature-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid var(--border);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-desc {
            color: var(--gray);
            line-height: 1.6;
        }

        /* =================== FOOTER =================== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }

        .footer-section h5 {
            color: #60a5fa;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            background: var(--white);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #cbd5e0;
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 0.25rem;
        }

        .footer-links i {
            width: 16px;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-2px);
            padding-left: 0;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* =================== RESPONSIVE DESIGN =================== */
        
        /* Large Desktop */
        @media (min-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }
            
            .hero-subtitle {
                font-size: 1.35rem;
            }
        }

        /* Tablet */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .school-name h1 {
                font-size: 1.75rem;
            }
            
            .contact-header {
                text-align: left;
                margin-top: 1rem;
            }
            
            .hero-stats {
                position: relative;
                margin-top: 3rem;
                bottom: auto;
            }
        }

        /* Mobile Large */
        @media (max-width: 767.98px) {
            .header-top {
                display: none;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-sm {
                padding: 40px 0;
            }
            
            .hero {
                min-height: 70vh;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.3;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .school-name h1 {
                font-size: 1.5rem;
                line-height: 1.3;
            }
            
            .school-name p {
                font-size: 0.9rem;
            }
            
            .logo {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }
            
            .section-title h2 {
                font-size: 1.875rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .feature-card {
                margin-bottom: 1.5rem;
            }
            
            .navbar-collapse {
                background: var(--dark);
                border-radius: var(--radius);
                margin-top: 0.5rem;
                padding: 1rem 0;
            }
        }

        /* Mobile Small */
        @media (max-width: 575.98px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .hero-content {
                padding: 1rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 0.95rem;
            }
            
            .school-name h1 {
                font-size: 1.25rem;
            }
            
            .school-name p {
                font-size: 0.85rem;
            }
            
            .logo {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 1.625rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .stat-number {
                font-size: 1.75rem;
            }
            
            .stat-label {
                font-size: 0.875rem;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .news-item,
            .quick-link {
                padding: 1rem;
            }
            
            .footer-brand {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-logo {
                margin-bottom: 0.5rem;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 375px) {
            .hero-title {
                font-size: 1.75rem;
            }
            
            .school-name h1 {
                font-size: 1.125rem;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 0.875rem;
            }
        }

        /* Print Styles */
        @media print {
            .navbar,
            .hero,
            .footer,
            .btn {
                display: none !important;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.4;
                color: black;
            }
            
            .section {
                padding: 20px 0;
            }
            
            .content-card,
            .sidebar-widget,
            .feature-card {
                box-shadow: none;
                border: 1px solid #ddd;
                break-inside: avoid;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Focus States */
        .nav-link:focus,
        .btn:focus,
        a:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* High Contrast Mode */
        @media (prefers-contrast: high) {
            :root {
                --primary: #000000;
                --secondary: #000000;
                --gray: #333333;
            }
        }
