/* Custom CSS - Refined for Clean Design System */
html {
    scroll-behavior: smooth;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50%));
    }

    100% {
        transform: translateX(0);
    }
}

.animate-scroll-left {
    animation: scrollLeft 30s linear infinite;
}

.animate-scroll-right {
    animation: scrollRight 30s linear infinite;
}

/* Refined Navbar Scroll State */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}