.marquee-container {
    width: 100%;
    position: relative;
    padding: 10px 0;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow-x: clip !important;
    margin-inline: 0 35px !important;
}

.marquee-content {
    display: flex;
    position: relative;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

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

.img-wrapper {
    margin: 0 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 10px;
    padding: 10px;
}

.img-wrapper:hover {
    transform: scale(1.05);
}

/* Image styles */
.marquee-img {
    height: 80px;
    width: auto;
    border-radius: 5px;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.marquee-img:hover {
  opacity: 1.0;
}

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

/* Responsive styles */
@media (max-width: 768px) {
    .marquee-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .marquee-img {
        height: 50px;
    }
} 