/* Custom geometric animations and effects */
.geo-circle {
    position: absolute;
    animation: float 20s ease-in-out infinite;
}

.geo-circle:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 25s;
}

.geo-circle:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0B1120;
}

::-webkit-scrollbar-thumb {
    background: #34D399;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6EE7B7;
}

/* Mobile menu animation */
#mobileMenu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service card hover effects */
.group:hover .group-hover\:bg-mint\/20 {
    background-color: rgba(52, 211, 153, 0.2);
}

/* Button pulse animation */
@keyframes pulse-mint {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
}

.bg-mint:hover {
    animation: pulse-mint 1.5s infinite;
}
