.marquee-container {
    background-color: #E7530E;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 60s linear infinite; /* Adjusted duration for smoother loop */
    padding-right: 100%;
    will-change: transform;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.slider-item {
    display: inline-block;
    margin-right: 4rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Translate by -50% since content is duplicated */
}

.slider-text {
    color: white;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .slider-text {
        font-size: 1.5rem;
    }
    .slider-item {
        margin-right: 2rem;
    }
}