/* Custom Animations & Utilities */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-slow {
    animation: float 3s ease-in-out infinite;
}

/* Smooth Scroll Behavior for Anchor Links */
html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

/* Utility for shadow with color */
.shadow-mint {
    box-shadow: 0 10px 40px -10px rgba(52, 211, 153, 0.3);
}
