/* Custom styles that extend Tailwind or handle complex animations */
body {
    background-color: #020617;
}

/* Geometric shapes */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.shape-1 { top: -10%; right: -5%; width: 400px; height: 400px; background: rgba(16, 185, 129, 0.15); animation-delay: 0s; }
.shape-2 { bottom: 10%; left: -10%; width: 300px; height: 300px; background: rgba(59, 130, 246, 0.1); animation-delay: 2s; }
.shape-3 { top: 40%; left: 20%; width: 150px; height: 150px; background: rgba(251, 191, 36, 0.1); animation-delay: 4s; }

/* Card hover effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.2);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
