/* Blog Page CSS Start */

.video-library-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.video-library-section .video-library {
    display: flex;
    justify-content: space-between;
    border: none;
    border-radius: 0px;
    margin-bottom: 30px;
}

.video-library-section .video-library .video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.video-library-section .video-library .video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.video-library-section .video-library .video-thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.video-library-section .video-library .video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    background: #aad04e;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.video-library-section .video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.video-library-section .video-popup .popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.video-library-section .video-popup .popup-content {
    position: relative;
    background: #000;
    padding: 1rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transform: scale(0.8);
    opacity: 0;
}

.video-library-section .video-popup .popup-content .video-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    z-index: 1;
}

.video-library-section .video-popup .popup-content .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-library-section .video-popup .popup-content .close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 2;
}
