/* Custom Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

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

/* Custom Selection Color */
::selection {
    background-color: #20E2B3;
    color: #0A2342;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    border-bottom-color: #20E2B3;
}
