:root {
            --primary-blue: #1a3a8f;
            --secondary-gold: #d4af37;
            --accent-teal: #20c997;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--secondary-gold);
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0f256e 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            top: -100px;
            right: -100px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        .btn-primary-custom {
            background: var(--secondary-gold);
            border: none;
            color: var(--primary-blue);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: #c19b2e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-color);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 58, 143, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .stat-label {
            color: var(--text-light);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-blue);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-gold);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-blue);
        }
        .team-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s;
            background: white;
            border: 1px solid var(--border-color);
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--light-bg);
        }
        .contact-info-box {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            height: 100%;
            border-left: 5px solid var(--secondary-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(26, 58, 143, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .contact-icon i {
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            margin: 0.3rem;
            transition: all 0.3s;
            color: #cbd5e1;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            color: #94a3b8;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .scroll-top.active {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
        }
