#logo-slider{
    max-width: unset;
}
#logo-slider.logo-slider {
    margin-left: unset !important;
    margin-right: unset !important;
    padding-top: 30px;
    margin: auto !important;
    max-width: unset;
    position: relative;
    overflow: hidden;
}

.logo-marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-marquee-track {
    display: flex;
    width: fit-content;
    gap: 30px;
    will-change: transform;
    transition: none;
    align-items: center;
}

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

.logo-item-inner {
    max-width: 200px;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 60%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-marquee-item:hover .logo-item-inner {
    opacity: 1;
}

#logo-slider .owl-nav {
    display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 800px) {
    .logo-marquee-item {
        height: 100px;
    }
    
    .logo-item-inner {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-item-inner img {
        height: 60px;
        max-width: 100%;
        max-height: 100%;
    }
    
    #logo-slider.logo-slider {
        padding: 20px 0px;
    }
    
    .logo-marquee-track {
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .logo-item-inner {
        max-width: 100px;
    }
    
    #logo-slider.logo-slider {
        padding: 40px 0px 0px;
    }
    
    .logo-marquee-track {
        gap: 15px;
    }
    
    .logo-marquee-item {
        width: 120px;
    }
}
