        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        
        
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #213757 0%, #1a2a4a 30%, #b82b0f 100%);
        }
        
        .card-hover {
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .service-icon {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover .service-icon {
            transform: scale(1.1);
            color: #b82b0f;
        }
        
        .btn-primary {
            background: #b82b0f;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            background: #9c240d;
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(184, 43, 15, 0.3);
        }
        
        .btn-secondary {
            background: #fbbe0a;
            transition: all 0.3s ease;
            color: #213757;
        }
        
        .btn-secondary:hover {
            background: #e5ab08;
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(251, 190, 10, 0.3);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-link {
            position: relative;
        }
        
        .footer-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fbbe0a;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover:after {
            width: 100%;
        }
        
        input, select, textarea {
            transition: all 0.3s ease;
        }
        
        input:focus, select:focus, textarea:focus {
            border-color: #b82b0f;
            box-shadow: 0 0 0 3px rgba(184, 43, 15, 0.2);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #b82b0f;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .stat-card {
            transition: all 0.4s ease;
            transform: perspective(1000px) rotateX(0);
        }
        
        .stat-card:hover {
            transform: perspective(1000px) rotateX(10deg);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
        }
        
        
          .hero-pattern {
            background: radial-gradient(circle, rgba(184,43,15,0.1) 0%, rgba(251,190,10,0.1) 50%, rgba(33,55,87,0.1) 100%);
        }
        
        .card-hover {
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .map-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }
        
        .team-card {
            overflow: hidden;
            position: relative;
        }
        
        .team-img {
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img {
            transform: scale(1.05);
        }
        
        .team-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            background: rgba(33, 55, 87, 0.9);
            padding: 20px;
            transition: bottom 0.4s ease;
        }
        
        .team-card:hover .team-overlay {
            bottom: 0;
        }
        
        .contact-card {
            background: linear-gradient(135deg, rgba(33,55,87,0.95) 0%, rgba(184,43,15,0.95) 100%);
            color: white;
            border-radius: 15px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary);
        }
        
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 25px;
            width: 1px;
            height: calc(100% + 10px);
            background: var(--primary);
        }
        
        .timeline-item:last-child:after {
            display: none;
        }
        
      @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-bounce {
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}