/*=========================
 Common Style Start
 =========================*/
/* Video Popup Style Start */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.video-modal.hidden {
    display: none;
}

.video-box {
    width: 85%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
}

.video-box iframe {
    width: 100%;
    height: 100%;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    color: red;
    border: none;
    font-size: 20px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 50%;
    cursor: pointer;
}
/* Video Popup Style End */
/*=========================
 Common Style End
 =========================*/
/*=========================
 Home Page Style Start
 =========================*/

/* Project Slider Style Start */
#project_section .slider {
    position: relative;
    width: 800px;
    height: 400px;
    overflow: hidden;
    margin: 30px auto;
    border-radius: 10px;
}

#project_section .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

#project_section .slide {
    width: 100%;
    flex-shrink: 0;
}

#project_section .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
#project_section .prev,
#project_section .next {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
}

/* Project Slider Style End */

/*=========================
 Home Page Style End
 =========================*/
