
.carousel-container {
    max-width: 800px;
    margin: auto;
    padding: 30px 20px;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.swiper-slide img {
    max-width: 80px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.swiper-slide img:hover {
    opacity: 1;
}

/* Swiper navigation buttons */
.swiper-button-next, .swiper-button-prev {
    color: #333;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
}

/* Swiper pagination dots */
.swiper-pagination {
    margin-top: 10px;
}
