:root {
            --primary-blue: #0a2463;
            --accent-gold: #c99700;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --medium-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            background-color: var(--light-bg);
            border-radius: 4px;
            margin: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark-text);
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding-top: 3rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .footer-bottom {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--medium-gray);
            font-weight: 500;
        }
        .btn-gold {
            background-color: var(--accent-gold);
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 4px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #b38700;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 151, 0, 0.3);
        }
        .campus-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .campus-img:hover {
            transform: scale(1.03);
        }
        .research-card {
            border-left: 5px solid var(--accent-gold);
            padding-left: 20px;
            margin-bottom: 2rem;
        }
        .news-date {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(10, 36, 99, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            font-size: 1.5rem;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--accent-gold);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 1px;
            height: calc(100% + 10px);
            background-color: #ddd;
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .accent-line {
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
        }
        .program-card {
            border-top: 4px solid var(--primary-blue);
            height: 100%;
        }
        .program-card:hover {
            border-top-color: var(--accent-gold);
        }
