:root {
            --primary-gold: #D4AF37;
            --secondary-blue: #1A237E;
            --dark-bg: #0A0A0F;
            --light-bg: #F8F9FA;
            --text-light: #E0E0E0;
            --text-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-gold) !important;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary-gold), #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
        }
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-gold), #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-section {
            background: linear-gradient(135deg, var(--secondary-blue), #283593);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-gold);
        }
        .team-card {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            object-fit: cover;
        }
        .contact-form input, .contact-form textarea {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: border-color 0.3s ease;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary-gold);
            outline: none;
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        .btn-gold {
            background: linear-gradient(135deg, var(--primary-gold), #FFD700);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
            color: white;
        }
        .footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding-top: 4rem;
        }
        .footer a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--primary-gold);
        }
        .copyright {
            background: rgba(0,0,0,0.3);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .friendlink {
            padding: 3rem 0;
            background: var(--light-bg);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: white;
            border-radius: 6px;
            color: var(--secondary-blue);
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary-gold);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-gold);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-gold);
        }
        .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(--primary-gold);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-gold);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
