:root {
            --vv-blue: #0a2463;
            --vv-gold: #c5a572;
            --vv-light: #f8f9fa;
            --vv-dark: #212529;
            --vv-green: #2a5934;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        h1, h2, h3, h4, .display-1, .display-2 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 600;
            color: var(--vv-blue);
        }
        .navbar-brand {
            font-family: 'Source Serif Pro', serif;
            font-weight: 600;
            font-size: 1.8rem;
            color: var(--vv-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--vv-gold) !important;
        }
        .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=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }
        .btn-primary {
            background-color: var(--vv-gold);
            border-color: var(--vv-gold);
            color: var(--vv-dark);
            font-weight: 600;
            padding: 0.75rem 2rem;
        }
        .btn-primary:hover {
            background-color: #b8945a;
            border-color: #b8945a;
            color: white;
        }
        .btn-outline-light:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background-color: rgba(197, 165, 114, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--vv-gold);
            font-size: 2rem;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .faculty-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .campus-life-img {
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            background-color: #f1f5f9;
            border-radius: 6px;
            color: var(--vv-blue);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
            font-size: 0.9rem;
        }
        .flink:hover {
            background-color: var(--vv-gold);
            color: white;
            border-color: var(--vv-gold);
            transform: scale(1.05);
        }
        footer {
            background-color: var(--vv-blue);
            color: #ccc;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--vv-gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--vv-gold);
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--vv-blue);
            font-weight: 600;
        }
        .testimonial-card {
            background-color: #f8f9fa;
            border-left: 4px solid var(--vv-gold);
            padding: 2rem;
        }
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-top: 4px solid var(--vv-gold);
        }
        .form-control:focus {
            border-color: var(--vv-gold);
            box-shadow: 0 0 0 0.25rem rgba(197, 165, 114, 0.25);
        }
        .academic-calendar {
            border-left: 4px solid var(--vv-blue);
            padding-left: 1.5rem;
        }
        .event-date {
            background-color: var(--vv-blue);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .event-date .month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        .event-date .day {
            font-size: 1.5rem;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
