/* Override Webflow marquee animations for custom scroll effects */

/* Force our transforms to take precedence */
.marquee-scroll-section .text-slide-left,
.marquee-scroll-section .text-slide-right {
    transition: none !important;
    animation: none !important;
}

/* Override any Webflow transform animations */
.marquee-scroll-section .text-slide-left[style*="transform"],
.marquee-scroll-section .text-slide-right[style*="transform"] {
    transition: none !important;
}

/* Ensure our custom transforms are applied */
.marquee-scroll-section .text-slide-left.custom-scroll-transform,
.marquee-scroll-section .text-slide-right.custom-scroll-transform {
    will-change: transform !important;
    transform-style: preserve-3d !important;
}

/* Disable Webflow's automatic animations */
.marquee-scroll-section[data-w-id] {
    animation: none !important;
}

.marquee-scroll-section .text-slide-left,
.marquee-scroll-section .text-slide-right {
    animation: none !important;
    transition: none !important;
}

/* Force hardware acceleration */
.marquee-scroll-section .text-slide-left,
.marquee-scroll-section .text-slide-right {
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
} 