/* Modern CSS Marquee Animation */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee-animation 40s linear infinite;
    font-size: 16px;
    color: inherit;
}

.marquee-content i {
    margin-right: 10px;
}

.marquee-content span, 
.marquee-content em {
    margin-right: 30px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 25s;
        font-size: 14px;
    }
}
