.logo-carousel {
    position: relative;
    padding: 20px 0;
    width: 100%;
    overflow: visible;
}

.logo-carousel .swiper-wrapper {
    display: flex;
    align-items: center;
}

.logo-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    width: auto !important;
}

.logo-carousel-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.logo-carousel-item.zoom:hover img {
    transform: scale(1.1);
}

.logo-carousel-item.grayscale img {
    filter: grayscale(100%);
}

.logo-carousel-item.grayscale:hover img {
    filter: grayscale(0);
}

.logo-carousel-item.opacity img {
    opacity: 0.7;
}

.logo-carousel-item.opacity:hover img {
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-pagination {
    position: relative;
    bottom: -10px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #333;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    opacity 1;
}

/* Ensure slides are visible */
.swiper-slide {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}