:root {
            --primary-dark: #0a2f5a;
            --primary-gold: #d4af37;
            --secondary-teal: #2a9d8f;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .navbar {
            background-color: rgba(10, 47, 90, 0.95) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-gold) !important;
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-gold);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 47, 90, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 160px 0 120px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-gold {
            background-color: var(--primary-gold);
            color: var(--primary-dark);
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s;
        }
        .btn-gold:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-teal));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: transform 0.5s;
        }
        .service-card, .project-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .service-card:hover, .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .service-card:hover .icon-box {
            transform: rotateY(180deg);
        }
        .project-card img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .project-card:hover img {
            transform: scale(1.05);
        }
        .stats-section {
            background: linear-gradient(to right, var(--primary-dark), #1a4b8c);
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-gold);
        }
        .news-card {
            border-left: 5px solid var(--primary-gold);
            transition: all 0.3s;
        }
        .news-card:hover {
            border-left-color: var(--secondary-teal);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .footer {
            background-color: var(--primary-dark);
            color: #ddd;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--primary-gold);
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #dee2e6;
        }
        .flink {
            display: inline-block;
            margin: 8px 15px;
            padding: 10px 20px;
            background: white;
            border-radius: 8px;
            border: 1px solid #ddd;
            color: var(--primary-dark);
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none !important;
        }
        .flink:hover {
            background-color: var(--primary-dark);
            color: white;
            border-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 40px;
            color: var(--primary-gold);
        }
        .map-container iframe {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            border: none;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
