:root {
            --primary-blue: #1a365d;
            --secondary-gold: #d4af37;
            --accent-green: #2e8b57;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(26, 54, 93, 0.95) !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--secondary-gold) !important;
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-gold) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0 6rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--secondary-gold);
            border: none;
            color: var(--primary-blue);
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e6c158;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: var(--secondary-gold);
            bottom: -10px;
            left: 20%;
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
        }
        .project-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .project-card:hover .project-img {
            transform: scale(1.05);
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid var(--light-gray);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .footer {
            background-color: var(--primary-blue);
            color: #fff;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .footer-title {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--secondary-gold);
            color: var(--primary-blue);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 15px;
            margin: 5px 10px 5px 0;
            border-radius: 4px;
            transition: all 0.3s ease;
            color: #ddd;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary-gold);
            color: #fff;
        }
        .contact-info i {
            color: var(--secondary-gold);
            width: 30px;
        }
        .map-container {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-gold);
            line-height: 1;
        }
        .stats-label {
            color: var(--primary-blue);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-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-blue);
            border: 3px solid var(--secondary-gold);
        }
        .blog-post {
            border-left: 4px solid var(--secondary-gold);
            padding-left: 1.5rem;
        }
        .form-control-custom {
            border: 1px solid #ced4da;
            border-radius: 4px;
            padding: 0.8rem;
            transition: all 0.3s ease;
        }
        .form-control-custom:focus {
            border-color: var(--secondary-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
