/* Container styles */
.testimonial-container {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    width: 100%;
    overflow: hidden;
}

/* Animation keyframes */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4 - 24px * 4)); } /* Width of 4 cards plus margins */
}

@keyframes scrollRight {
    0% { transform: translateX(calc(-350px * 4 - 24px * 4)); } /* Width of 4 cards plus margins */
    100% { transform: translateX(0); }
}

/* Animation classes */
.animate-scroll-left {
    animation: scrollLeft 40s linear infinite;
}

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

/* Pause on hover */
.testimonial-track:hover .testimonial-slider {
    animation-play-state: paused;
}

/* Scroll speed adjustment based on scroll position */
.testimonial-container.is-scrolling .testimonial-slider {
    animation-duration: 20s; /* Faster when scrolling */
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
