/* Ticker Animation */
.ticker-wrapper {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pulse Animation for WhatsApp */
.pulse-animation {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

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

/* Sticky Header Adjustment */
body {
    padding-top: 0;
}

/* General transitions */
a, button {
    transition: all 0.3s ease;
}

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