.reel-section {
    width: 100%;
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.reel-section .title-box {
    margin-bottom: 30px;
}

.reel-section .subtitle {
    color: #ffffff;
}

.reel-section .heading_title {
    color: #ffffff;
}

/* Full-width Reel Slider */
.reel-slider-container {
    width: 100%;
    padding: 20px 0;
}

.reel-section .custom-swiper-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.reel-section .custom-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 500px;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect - Scale Up */
.reel-section .custom-swiper-slide:hover {
    transform: scale(1.05);
}

.reel-section .custom-swiper-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.reel-section .custom-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Play Button */
.reel-section .play-button {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 30px;
    color: white;
    transition: background 0.3s ease-in-out;
}

.reel-section .custom-swiper-slide:hover .play-button {
    background: rgba(255, 87, 34, 0.8);
}

/* Swiper Navigation */
.reel-section .swiper-button-next, .swiper-button-prev {
    color: white;
}

.reel-section .swiper-pagination {
    bottom: 10px !important;
}

.reel-slider-container {
    width: 100%; /* Full width for the slider */
}


.videos-container {
    display: flex; /* Make it flex to allow side-by-side videos */
    justify-content: center;
    align-items: center; /* Center align items vertically */
    width: 100%; /* Full width for the video container */
}

.reel-container {
    position: relative;
    width: 33.33%; /* Adjust width to fit three videos in a row */
    max-width: 450px; /* Maximum width for each video */
    margin: 10px;
    height:600px; /* Space between videos */
}

video {
    width: 100%; /* Make video take the full width of its container */
    height: 600px; /* Maintain aspect ratio; change to specific height if desired */ /* Set a maximum height for videos */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
    border-radius: 10px; /* Rounded corners for videos */
}
