/* Marquee Carousel Styles */
/* .marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 20px 0;
} */


.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 20px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0px 0px 0px 10px;
    background: #fff;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item .logo {
    /* width: 200px; */
    max-height: 80px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-item:hover .logo {
    opacity: 1;
    filter: grayscale(0%);
}