
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

html, body{
    width:100%;
    overflow-x:hidden;
}

/* =========================
   PAGE SCOPE (NO CONFLICT)
========================= */
.vibhan-page *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

.vibhan-page{
    width:100%;
    overflow-x:hidden;
}

/* SAFE CONTAINER (ONLY THIS PAGE) */
.vibhan-page .container2{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* HEADINGS ONLY THIS PAGE */
.vibhan-page h2{
    text-align:center;
    font-size:32px;
    margin-bottom:30px;
    color:#0a3d62;
    font-weight:bold;
}

/* HERO */
.vibhan-page .hero{
    height:100vh;
    background:url('https://images.pexels.com/photos/46148/aircraft-jet-landing-cloud-46148.jpeg') no-repeat center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.vibhan-page .hero::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    top:0;
    left:0;
}

/* TITLES */
.vibhan-page .hero-title,
.vibhan-page .about-title,
.vibhan-page .cta-title{
    text-align:center;
    padding:20px 0;
    background:#fff;
    font-size:40px;
    font-weight:bold;
    color:#0a3d62;
}

/* HERO CONTENT */
.vibhan-page .hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
}

.vibhan-page .hero-content p{
    margin:15px 0;
    font-size:20px;
}

/* BUTTON */
.vibhan-page .btn{
    display:inline-block;
    background:#ffffff;
    padding:12px 28px;
    color:#0a3d62;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    border:2px solid #0a3d62;
}

.vibhan-page .btn:hover{
    background:#0a3d62;
    color:#fff;
}

/* ABOUT */
.vibhan-page .about{
    height:80vh;
    background:url('https://images.pexels.com/photos/3769138/pexels-photo-3769138.jpeg') no-repeat center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vibhan-page .about::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.vibhan-page .about-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
    max-width:800px;
}

/* COURSES */
.vibhan-page .courses{
    padding:60px 0;
    text-align:center;
}

.vibhan-page .course-box{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.vibhan-page .card{
    flex:1;
    min-width:250px;
    background:#f4f4f4;
    border-radius:10px;
    overflow:hidden;
}

.vibhan-page .card img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

/* GALLERY */
.vibhan-page .gallery{
    padding:60px 0;
    text-align:center;
}

.vibhan-page .gallery-box{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

.vibhan-page .gallery-box img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

/* WHY */
.vibhan-page .why{
    padding:60px 0;
    background:#0a3d62;
    color:#fff;
    text-align:center;
}

.vibhan-page .why-box{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.vibhan-page .why-box div{
    flex:1;
    min-width:200px;
    background:#fff;
    color:#000;
    padding:20px;
    border-radius:10px;
}

/* CTA */
.vibhan-page .cta{
    padding:70px 0;
    text-align:center;
    background:#f39c12;
}

.vibhan-page .cta .container2{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}
.job-badge {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0a3d62;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    
    padding: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .vibhan-page .hero-content p{
        font-size:18px;
    }

    .vibhan-page .course-box{
        flex-direction:column;
    }

    .vibhan-page .why-box{
        flex-direction:column;
    }

    .vibhan-page .gallery-box{
        display:block;
    }

    .vibhan-page .gallery-box img{
        width:100%;
        height:220px;
        object-fit:cover;
        margin-bottom:15px;
        border-radius:10px;
        display:block;
    }
}