.video-section {
    width: 90%;  
    margin: 0 auto; 
}

.video-container {
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(235, 78, 235, 0.6); 
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    z-index: 10; 
    cursor: pointer;
}

.modal-body iframe {
    width: 100%;
    height: 400px;
}

.video-section h2 {
    text-align: center; 
    margin-bottom: 20px;
    font-size: 30px;
}

.video-section .play-button {
    font-size: 9rem;  
    color: #fff;  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}


@media screen and (max-width: 768px) {
    .video-container {
        height: 50vh; 
    }

    .play-button {
        font-size: 5rem; 
    }

    .modal-body iframe {
        height: 300px; 
    }
}

@media screen and (max-width: 576px) {
    .video-container {
        height: 40vh; 
    }

    .play-button {
        font-size: 4rem; 
    }

    .modal-body iframe {
        height: 250px; 
    }
}

@media screen and (max-width: 300px) {
    .video-container {
        height: 30vh; 
    }

    .play-button {
        font-size: 3rem; 
    }

    .modal-body iframe {
        height: 200px; 
    }
}
