.swiper-container {
    width: 800px; /* Fixed width for the carousel */
	padding-bottom: 45px;
    margin: auto;
    overflow: hidden; /* Hide slides outside the visible area */
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    width: auto; /* Allow slides to adjust to natural size */
    text-align: center;
    transform: scale(0.7); /* Smaller size for side slides */
    opacity: 0; /* Reduce opacity for side slides */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1); /* Full size for the active slide */
    opacity: 1; /* Fully visible */
}

.swiper-slide-next,
.swiper-slide-prev {
    transform: scale(0.9); /* Slightly smaller size for side slides */
    opacity: 1; /* Fully visible */
}

.swiper-slide.swiper-slide {
    background-color: #f1f1f1;
    border-radius: 16px;
	box-shadow: 0px 15px 30px rgb(0 0 0 / 16%);
}

.swiper-slide iframe {
    width: 100%;
    aspect-ratio: 9 / 16; /* Enforce 9:16 aspect ratio */
    border-radius: 16px;
}

.swiper-slide video {
    max-width: 100%;
    border-radius: 16px;
    background: #000; /* Black background for videos */
}

.swiper-button-prev,
.swiper-button-next {
    color: black;
    font-size: 20px;
	background-color:#fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Ensure arrows are above slides */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 45px;
}

.swiper-button-next {
    right: 45px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

@media (max-width: 768px) {
    .swiper-container {
        width: 100%; /* Full width on smaller screens */
    }

    .swiper-slide {
        transform: scale(0.9); /* Slightly larger side slides for smaller screens */
    }
}

@media (max-width: 480px) {
	
    .swiper-container {
        width: 100%; /* Full width on mobile */
    }

    .swiper-slide {
        transform: scale(1); /* Full size for a single-slide view */
       /* opacity: 1;  Make all slides visible when only 1 is displayed */
    }
	
	 .swiper-button-prev,
    .swiper-button-next {
        display: none; /* Hide arrows on mobile */
    }
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5) url('https://cdn-icons-png.flaticon.com/512/727/727245.png') no-repeat center center;
    background-size: 50%;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}
