:root {
            --primary-blue: #0d3b66;
            --secondary-teal: #20b2aa;
            --accent-gold: #f4b400;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(13, 59, 102, 0.9) 0%, rgba(32, 178, 170, 0.8) 100%), url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            position: relative;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
        }
        .section-title {
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-teal);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .icon-container {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        .flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 60px 0 20px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 12px;
            color: var(--secondary-teal);
            width: 20px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-teal);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 25px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-blue);
            border: 3px solid var(--secondary-teal);
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 59, 102, 0.2);
            color: white;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid var(--light-bg);
            transition: all 0.3s ease;
        }
        .team-member:hover .team-img {
            border-color: var(--secondary-teal);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
