:root {
            --primary-blue: #0056a6;
            --secondary-teal: #20a39e;
            --accent-gold: #d4af37;
            --dark-navy: #003366;
            --light-gray: #f8f9fa;
            --text-dark: #333333;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 86, 166, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?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;
        }
        .section-title {
            color: var(--dark-navy);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
        }
        .department-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .department-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .stats-box {
            background: var(--primary-blue);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            background: var(--dark-navy);
            transform: scale(1.05);
        }
        .staff-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .staff-card:hover {
            transform: translateY(-10px);
        }
        .staff-img {
            height: 280px;
            object-fit: cover;
        }
        .news-card {
            border-left: 5px solid var(--secondary-teal);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: var(--light-gray);
            border-radius: 5px;
            color: var(--dark-navy);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark-navy);
            color: white;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 10px 25px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--dark-navy);
            border-color: var(--dark-navy);
            transform: translateY(-2px);
        }
        .campus-life-img {
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.5s ease;
        }
        .campus-life-img:hover {
            transform: scale(1.02);
        }
