/* Custom Styles for Conversion Landing Page */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Slow Bounce Animation for Floating WhatsApp Button */
@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #20ba5a;
}
