.video-section .container-box {
    padding-bottom: 0px;
}

.video-section .container-box .heading {
    max-width: 958px;
    margin: 150px auto 50px;
    padding: 15px 0;
    text-align: center;
}

.video-section .container-box .heading .heading-2 {
    margin-bottom: 16px;
}

.video-section .container-box .video-bg {
    height: 524px;
    width: 922px;
    margin: 50px auto 0px;
    padding: 14px 20px;
    backdrop-filter: blur(15.27px);
    box-shadow: 0px 28.66px 63.31px 0px #00467D30;
    border-radius: 44.73px;
    border: 2px solid #FFFFFF66;
}

.video-section .container-box .video-player {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/video-bg.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 30.5px;
}

.video-section .container-box .video-player .video-button {
    width: 109px;
    height: 109px;
    outline: 2px solid #FFFFFF;
    padding: 10px;
    background: #ffffffa1;
    border-radius: 50%;
    transition: all .4s;
    position: relative;
    animation: videoBtnBounce 2s ease-in-out infinite;
}

.video-section .container-box .video-player .video-button::before,
.video-section .container-box .video-player .video-button::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    animation: videoPulseRing 2s ease-out infinite;
    pointer-events: none;
}

.video-section .container-box .video-player .video-button::after {
    inset: -24px;
    border-color: rgba(255, 255, 255, 0.4);
    animation-delay: 0.6s;
}

.video-section .container-box .video-player .video-button:hover {
    transform: scale(0.9);
    animation-play-state: paused;
}

.video-section .container-box .video-player .video-button:hover::before,
.video-section .container-box .video-player .video-button:hover::after {
    animation-play-state: paused;
}

.video-section .container-box .video-player button {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: none;
    cursor: pointer;
    box-shadow: -8.65px 8.65px 21.63px 0px #b6b5b526;
}

.video-section .container-box .video-player button img {
    width: 43px;
    height: 43px;
}

@keyframes videoPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes videoBtnBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* =============================================
   Responsive Breakpoints
   ============================================= */

/* 1200px — constrained desktops / large tablets */
@media (max-width: 1200px) {
    .video-section .container-box .heading {
        margin: 100px auto 40px;
    }

    .video-section .container-box .video-bg {
        width: 100%;
        height: 460px;
    }
}

/* 992px — tablets landscape */
@media (max-width: 992px) {
    .video-section .container-box .heading {
        margin: 80px auto 32px;
    }

    .video-section .container-box .video-bg {
        height: 380px;
        padding: 10px 14px;
        border-radius: 32px;
    }
}

/* 768px — tablets portrait / large phones */
@media (max-width: 768px) {
    .video-section .container-box .heading {
        margin: 60px auto 24px;
    }

    .video-section .container-box .video-bg {
        height: 320px;
        border-radius: 24px;
        padding: 10px 12px;
    }

    .video-section .container-box .video-player {
        border-radius: 18px;
    }

    .video-section .container-box .video-player .video-button {
        width: 80px;
        height: 80px;
    }

    .video-section .container-box .video-player button img {
        width: 32px;
        height: 32px;
    }
}

/* 580px — small phones */
@media (max-width: 580px) {
    .video-section .container-box .heading {
        margin: 40px auto 16px;
    }

    .video-section .container-box .video-bg {
        height: 240px;
        border-radius: 18px;
        padding: 8px 10px;
        margin: 20px auto 0px;
    }

    .video-section .container-box .video-player {
        border-radius: 12px;
    }

    .video-section .container-box .video-player .video-button {
        width: 64px;
        height: 64px;
    }

    .video-section .container-box .video-player .video-button::before {
        inset: -8px;
    }

    .video-section .container-box .video-player .video-button::after {
        inset: -16px;
    }

    .video-section .container-box .video-player button img {
        width: 26px;
        height: 26px;
    }
}
