.video-thumbnail {
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
}
.video-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 24px !important;
}
.play-button {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: unset !important;
    cursor: pointer;
    border: unset !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF !important;
    font-family: 'Gilroy' !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: normal !important;
}

/* Popup Background */
#video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show popup when open */
#video-popup.open {
    opacity: 1;
    visibility: visible;
}
.video_shown {
    width: 80%;
    border-radius: 12px;
    position: relative;
    aspect-ratio: 16 / 9;
}
#video-popup iframe {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}
video {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
}


.video-popup-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s ease;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-popup-close svg {
    width: 100%;
    height: 100%;
}

.video-popup-close:hover {
    background: rgba(255, 255, 255, 0.5);
}




.feedback_otr {
    overflow: hidden !important;
}
.fedback_slider_box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: #F3F3FF;
    height: 100%;
}
.feedback_otr {
    overflow: hidden !important;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.95) 87.1%, rgba(255, 255, 255, 0.00) 100%);
}

.fedback_slider_box p {
    color: #080A0E !important;
    font-family: 'Gilroy';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
}
.fedback_slider_box h3 {
    color: #080A0E !important;
    font-family: 'Gilroy';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.fedback_slider_box .person_name_desig p {
    color: #080A0E !important;
    font-family: 'Gilroy';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.8;
}
.person_otr {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}
.person_image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.person_otr .person_image img {
    border-radius: 100%;
}
.person_name_desig {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.client_pagination {
    position: unset !important;
    margin-top: 50px;
    display: flex;
    width: 100% !important;
    max-width: max-content !important;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    align-items: center !important;
}
.client_pagination  span.swiper-pagination-bullet {
    position: relative !important;
    margin: 0 !important;
    border-radius: 88px;
    opacity: 0.2;
    background: #4E51CA;
    width: 12px;
    height: 12px;
}
.client_pagination span.swiper-pagination-bullet-active:after {
    width: 20px;
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    left: -4px;
    top: -4px;
    right: 0;
    bottom: 0;
    border: 1px solid #4E51CA;
    border-radius: 100%;
}
.client_pagination span.swiper-pagination-bullet-active {
    border-radius: 88px;
    background: #4E51CA;
    opacity: 1 !important;
}
.client_slide {
    height: auto !important;
}






@media screen and (max-width: 1200px) {

.fedback_slider_box h3 {
    font-size: 20px;
}
.fedback_slider_box p {
    font-size: 20px;
    line-height: 1.4;
}
}