/* ===== VIDEO HERO SECTION ===== */

.video-banner{
    position:relative;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    overflow:hidden;
    color:#fff;
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.video-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('https://www.shutterstock.com/image-photo/best-doctor-dedicated-banner-600nw-2462760609.jpg');
    background-size:cover;
    background-position:center;
    opacity:.15;
}

.video-banner .banner-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.video-banner h1{
    font-size:62px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    color:#fff;
}

.video-banner p{
    font-size:18px;
    color:#dbeafe;
    max-width:650px;
    margin:0 auto 25px;
}

.video-banner .banner-line{
    width:90px;
    height:4px;
    background:#ef4444;
    margin:0 auto 25px;
    border-radius:50px;
}

/* Mobile */

@media(max-width:768px){

    .video-banner{
        height:350px;
        padding:0 20px;
    }

    .video-banner h1{
        font-size:38px;
    }

    .video-banner p{
        font-size:16px;
    }

}

/* VIDEO */
.video-head-sec{
    padding:80px 0 40px;
    background:#f5f6f8;
}

.head{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.head h2{
    font-size:50px;
    color:#0f2f57;
    font-weight:700;
    margin-bottom:15px;
}

.head p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .head h2{
        font-size:34px;
    }

    .head p{
        font-size:16px;
    }

}
.video-section{
    background:#f5f6f8;
    padding:20px 0 100px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #e5e7eb;
}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.video-thumb{
    position:relative;
    overflow:hidden;
}

.video-thumb img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.4s;
}

.video-card:hover .video-thumb img{
    transform:scale(1.08);
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:#e63946;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
}

.video-content{
    padding:25px;
}

.video-content h3{
    font-size:24px;
    color:#0f2f57;
    line-height:1.4;
    margin-bottom:15px;
}

.video-content p{
    color:#666;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-content h3{
        font-size:20px;
    }

}

/* CTA */
.video-cta{
    background:#f5f6f8;
    padding:0 0 20px;
}

.video-cta-box{
    background:linear-gradient(135deg,#003b7a,#0057a8);
    border-radius:25px;
    padding:70px 40px;
    text-align:center;
}

.video-cta-box h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.video-cta-box p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:0 auto 35px;
}

.video-cta-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.primary-btn{
    background:#e63946;
    color:#fff;
}

.primary-btn:hover{
    background:#fff;
    color:#003b7a;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#003b7a;
}

@media(max-width:768px){

    .video-cta-box{
        padding:50px 25px;
    }

    .video-cta-box h2{
        font-size:32px;
    }

    .video-cta-box p{
        font-size:16px;
    }

    .cta-btn{
        width:100%;
        text-align:center;
    }

}