/* Modal Video Section Styling */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    width: 100%;
    max-width: 1500px;
    height: auto;
    position: relative;
}

#videoPlayer {
    width: 100%;
    max-height: 80vh;
    height: auto;
    border-radius: 10px;
}
.close-modal {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
}

.close-modal:hover, .close-modal:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}
