.swiper-comparison-section {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1300px;
    margin: 30px auto;
    flex-wrap: wrap;
    justify-content: center;
}

.swiper-carousel-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 15px;
    /*width: 1200px;*/
    width: 100%;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swiper-carousel-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.swiper-carousel-title i {
    color: #ff9a9e;
    font-size: 2rem;
}

.swiper-infinite-carousel {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}


.swiper-carousel-track {
    display: flex;
    height: 100%;
    position: absolute;
    left: 0;
    transition: transform 0.5s ease;
}

.swiper-infinite-track {
    animation: scroll 40s linear infinite;
}

.swiper-infinite-track:hover {
    animation-play-state: paused;
}


.swiper-card-img {
    height: 200px;
    overflow: hidden;
}

.swiper-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-carousel-card:hover {
    transform: scale(1.1);
}




.swiper-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-video {
    width: 250px;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
    background: #000;
    display: block;
}
   

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

.swiper-carousel-item {
    flex: 0 0 300px;
    padding: 5px;
}