:root {
            --primary-blue: #0a4a7a;
            --secondary-teal: #2a9d8f;
            --accent-gold: #e9c46a;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 74, 122, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 5rem;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--primary-blue);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-gold);
        }
        .title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(10, 74, 122, 0.15) !important;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        .stats-box {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            color: white;
        }
        .stats-box:hover h3, .stats-box:hover .stats-icon {
            color: white;
        }
        .stats-icon {
            font-size: 2.8rem;
            color: var(--secondary-teal);
            margin-bottom: 1rem;
        }
        .department-card {
            border-left: 5px solid var(--secondary-teal);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .btn-aniims {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
            color: white;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-aniims:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 74, 122, 0.3);
            color: white;
        }
        .footer {
            background: var(--primary-blue);
            color: rgba(255,255,255,0.85);
            padding-top: 4rem;
        }
        .footer a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--accent-gold);
        }
        .friendlink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.6rem 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .friendlink:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .flink {
            color: white;
            font-weight: 500;
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 300px;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 74, 122, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--secondary-teal);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 9px;
            top: 20px;
            bottom: -2.5rem;
            width: 2px;
            background: #ddd;
        }
        .timeline-item:last-child:after {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 3rem;
                min-height: 70vh;
                text-align: center;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-box {
                margin-bottom: 1.5rem;
            }
        }
