:root {
            --primary-blue: #0a4a7a;
            --secondary-blue: #1c6ea4;
            --accent-gold: #d4af37;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --hover-blue: #0871b8;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 74, 122, 0.85), rgba(10, 74, 122, 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;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .stat-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        .stat-box:hover {
            transform: translateY(-10px);
        }
        .icon-circle {
            width: 70px;
            height: 70px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .icon-circle i {
            font-size: 1.8rem;
            color: white;
        }
        .department-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .department-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .department-img {
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--hover-blue);
            border-color: var(--hover-blue);
            transform: translateY(-2px);
        }
        .btn-outline-primary {
            color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .accent-line {
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            margin: 1.5rem auto;
        }
        .section-padding {
            padding: 6rem 0;
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
        }
        footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .friendlink-container {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            margin: 0.5rem;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .flink:hover {
            background: var(--accent-gold);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .news-card {
            border-left: 4px solid var(--accent-gold);
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateX(5px);
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 3rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 12px;
            height: 12px;
            background: var(--accent-gold);
            border-radius: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 12px;
            width: 2px;
            height: calc(100% + 1.5rem);
            background: var(--secondary-blue);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .contact-box {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            border-left: 4px solid var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .navbar-nav {
                text-align: center;
                background: var(--primary-blue);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }
