/* Marquee Container */
.marquee-section {
    width: 100%;
    /*background-color: #000;*/
    /* padding: 40px 0; */
    overflow: hidden;
    position: relative;
}

/* Marquee wrapper */
.marquee {
    display: flex;
    width: 200%;
    animation: scroll 30s linear infinite;
}

/* Each marquee group (duplicated for seamless loop) */
.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    min-width: 100%;
    gap: 20px;
    padding: 0 10px;
}

/* Individual logo container */
.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

/* Logo images */
.logo-item img {
    
}

.logo-item img:hover {
    opacity: 1;
}

/* Keyframe animation for infinite scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover (optional) */
.marquee-section:hover .marquee {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-group {
        gap: 50px;
    }
    
    .logo-item {
        height: 40px;
    }
    
    .logo-item img {
        max-height: 40px;
        max-width: 120px;
    }
    
    .marquee {
        animation-duration: 20s;
    }
}