:root {
            --modern-blue: #1a365d;
            --modern-gold: #d4af37;
            --modern-light: #f8f9fa;
            --modern-dark: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--modern-blue) !important;
        }
        .navbar-brand span {
            color: var(--modern-gold);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            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(--modern-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--modern-gold);
        }
        .section-title.left-align:after {
            left: 0;
            transform: none;
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: #f1f8ff;
            border-radius: 4px;
            color: var(--modern-blue);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #d1e7ff;
        }
        .flink:hover {
            background: var(--modern-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--modern-dark);
            color: #ddd;
            padding-top: 3rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .bg-modern-blue {
            background-color: var(--modern-blue) !important;
        }
        .btn-gold {
            background-color: var(--modern-gold);
            color: var(--modern-blue);
            font-weight: 600;
            border: none;
            padding: 12px 28px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-gold:hover {
            background-color: #b8941f;
            color: white;
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--modern-gold);
            display: block;
            line-height: 1;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--modern-gold);
        }
        .campus-img {
            border-radius: 8px;
            overflow: hidden;
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }
        .campus-img:hover {
            transform: scale(1.03);
        }
        .timeline-item {
            border-left: 3px solid var(--modern-gold);
            padding-left: 25px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--modern-gold);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 54, 93, 0.05);
            color: var(--modern-blue);
            font-weight: 600;
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .required-field:after {
            content: " *";
            color: #dc3545;
        }
