nav{
     z-index: 100 !important;
}
.blob-left {
    position: absolute;
    top: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, #1164a1 0%, #1b3b72 100%);
    border-radius: 58% 42% 30% 70% / 48% 48% 52% 52%;
    opacity: 0.5;
    z-index: 0;
}
.blob-right {
    position: absolute;
    bottom: -120px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 70% 70%, #06cfee 0%, #024a57 100%);
    border-radius: 40% 60% 65% 35% / 40% 40% 60% 60%;
    opacity: 0.5;
    z-index: 0 !important;
}

.gradient-bg {
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
}

.service-card: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);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    color: white;
}

.testimonial-card:hover .text-gray-600 {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-marquee {
    animation: scrollMarquee 30s linear infinite;
}
