/* Infinite Logo Marquee Styles - Premium Continuous Version */
.marquee-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    z-index: 2;
    /* Premium mask effect for smooth fade on edges */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
}

/* FORCE hide ALL navigation artifacts */
.marquee-container *[class*="slick"],
.marquee-container *[class*="arrow"],
.marquee-container *[class*="prev"],
.marquee-container *[class*="next"],
.marquee-container button,
.marquee-container i {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

.marquee-content {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee-scroll-left 50s linear infinite;
}

/* Scroll Directions */
.marquee-container.scroll-right .marquee-content {
    animation: marquee-scroll-right 50s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.marquee-item img {
    height: 130px !important;
    /* BIGGER logos as requested */
    max-height: 130px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    object-fit: contain;
}

.marquee-item img:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(68, 214, 44, 0.7));
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

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

/* Mobile & Tablet Optimizations */
@media (max-width: 1200px) {
    .marquee-container {
        max-width: 90%;
    }

    .marquee-item {
        padding: 0 60px;
        height: 160px;
    }

    .marquee-item img {
        height: 100px !important;
        max-height: 100px !important;
    }
}

@media (max-width: 768px) {
    .marquee-item {
        padding: 0 40px;
        height: 120px;
    }

    .marquee-item img {
        height: 70px !important;
        max-height: 70px !important;
    }

    .marquee-container {
        padding: 20px 0;
    }
}