:root {
            --primary-blue: #0a4275;
            --secondary-blue: #1c6ea4;
            --accent-gold: #d4af37;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
            --success-green: #28a745;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 66, 117, 0.85), rgba(10, 66, 117, 0.9)), url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-blue);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .flink {
            display: inline-block;
            background: var(--light-gray);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 50px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: scale(1.05);
        }
        .btn-gold {
            background-color: var(--accent-gold);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #b8941f;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        .btn-blue {
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-blue:hover {
            background-color: #08325c;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 66, 117, 0.3);
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding-top: 60px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-gold);
        }
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        .research-area-icon {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }
        .news-card {
            border-left: 5px solid var(--secondary-blue);
            padding-left: 20px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-blue);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--accent-gold);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-gold);
        }
        .contact-info-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary-blue);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
                min-height: 70vh;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
