    /* new banner starts */

    .vjf-energy-banner{
    position:relative;
    min-height:720px;
    overflow:hidden;
    background:url('/images/virtual-job-fair-banner.png')
    center center/cover no-repeat;
}


.vjf-about-content .why-buttons{
    display:flex;
    align-items:center;
    justify-content:flex-start !important;
    gap:15px;
    margin-top:25px;
}

.vjf-about-content .why-buttons .btn-primary{
    margin:0 !important;
    width:auto !important;
    min-width:auto !important;
    flex:none !important;
}

@media(max-width: 576px){
    .vjf-about-content .why-buttons{
        gap:10px;
    }

    .vjf-about-content .why-buttons a{
        min-width:0 !important;
        flex:1 1 0 !important;
        width:auto !important;
        min-height:35px;
        padding:8px 14px !important;
        font-size:14px !important;
        white-space:nowrap;
    }
}
.vjf-process-heading.left-heading h2{
    text-align:left;
}
.vjf-process-heading.left-heading{
    margin-bottom:10px;
}
.energy-benefits-section{
    padding:50px 0;
    background:#fff;
}

.energy-benefits-header{
    margin-bottom:50px;
}

.energy-benefits-tag{
    display:inline-block;
    background:#4338ca;
    color:#fff;
    padding:10px 18px;
    border-radius:0px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.energy-benefits-header h2{
    font-size:52px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
    max-width:950px;
}

.energy-benefits-header h2 span{
    color:#4f46e5;
}

.energy-benefits-header p{
    font-size:18px;
    color:#64748b;
    max-width:650px;
}

.energy-benefits-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:30px;
    align-items:stretch;
}

.energy-benefits-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

.energy-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.energy-benefit-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:16px;
    padding:28px;
    transition:.3s ease;
    height:100%;
}


.energy-benefit-card:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.energy-icon-box{
    width:60px;
    height:60px;
    background:#f3f0ff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.energy-icon-box img{
    width:30px;
}

.energy-benefit-card h4{
    font-size:18px;
    font-weight:600;
    color:#0f172a;
    margin:18px 0 12px;
}

.energy-benefit-card p{
    font-size:15px;
    line-height:21px;
    color:#64748b;
    margin:0;
}

@media(max-width:991px){

    .energy-benefits-wrapper{
        grid-template-columns:1fr;
    }

    .energy-benefits-grid{
        grid-template-columns:repeat(2,1fr);

    }
    .energy-benefit-card{
            padding: 15px!important;
    }

    .energy-benefits-header h2{
        font-size:36px;
    }
}

@media(max-width:1199px){
.energy-benefit-card{
            padding: 15px!important;
    }
}
.career-banner{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f7f5ff 45%,
    #efeaff 100%
    );
    padding:100px 0;
    height:100vh;
}

.career-banner::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    url('../../assets/energy/images/career-banner.png')
    center center/cover no-repeat;
    opacity:1;
}

.career-banner-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.career-left{
    flex:0 0 55%;
}

.banner-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    color:#393186;
    margin-bottom:20px;
    text-transform:uppercase;
}

.career-left h1{
    font-size:52px;
    line-height:60px;
    font-weight:700;
    color:var(--brand-dark-500);
    margin-bottom:20px;
}

.career-left h1 span{
    color:var(--primary-color);
}

.career-left p{
    font-size:18px;
    line-height:24px;
    color:#555;
    max-width:650px;
    margin-bottom:25px;
}

.banner-stats{
    display:flex;
    gap:30px;
    margin-bottom:40px;
}

.stat-item{
    padding-right:30px;
    border-right:1px solid #ddd;
}

.stat-item:last-child{
    border-right:none;
}

.stat-item strong{
    display:block;
    font-size:34px;
    color:var(--brand-dark-500);
    font-weight:800;
}

.stat-item span{
    font-size:14px;
    color:#666;
}

.banner-btns{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:20px;
}

.banner-btns a{
    flex:none;
    width:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* .btn-primary must stay exactly what public/assets/energy/css/style.css
   defines (the same button used site-wide, including the homepage) - no
   page-local width/padding/color rules for it here. */
.career-right{
    flex:0 0 40%;
    text-align:right;
}

.career-right img{
    max-width:100%;
    height:auto;
}

@media(max-width:991px){

    .career-banner-content{
        flex-direction:column;
        text-align:center;
    }

    .career-left,
    .career-right{
        flex:100%;
    }

    .career-left h1{
        font-size:42px;
    }

    .banner-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .banner-btns{
        justify-content:left;
    }
}
.vjf-partners-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}



.career-banner-mobile{
    display:none;
}

@media (max-width:991px){

    .career-banner{
        display:none;
    }

    .career-banner-mobile{
        display:block;
        background:#fff;
        overflow:hidden;
    }

    .career-mobile-content{

        padding:40px 22px 28px;
        background:
        linear-gradient(140deg,#ffffff 0%,#f8f9fc 60%,#ffffff 100%);
    }

    .mobile-tag{
        font-size:14px;
        font-weight:500;
        letter-spacing:2px;
        color:#000;
        margin-bottom:18px;
    }

    .career-mobile-content h1{

        font-size:28px!important;
        line-height:1.05;
        font-weight:800;
        color:#000!important;
        margin-bottom:12px;
    }

    .career-mobile-content h1 span{
        display:inline-block;
        color:var(--brand-500);
    }

    .career-mobile-content p{

        font-size:17px;
        line-height:1.7;
        color:#555;
        margin-bottom:28px;
    }


     .career-banner-mobile{
        display:flex;
        padding:0px!important;
        background:#f3f4f6;
        flex-direction: column-reverse;
    }

    .career-mobile-content{
        background:linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f5ff 45%,
            #efeaff 100%
        );
        border-radius:0px!important;
        padding:32px 24px 28px;
        box-shadow:0 12px 35px rgba(0,0,0,.08);
    }

    .career-mobile-image{
        margin:0;
        border-radius:0px !important;
        overflow:hidden;
        box-shadow:0 12px 35px rgba(0,0,0,.08);
    }

    .career-mobile-image::before{
        display:none;
    }

    .career-mobile-image img{
        display:block;
        width:100%;
        height:auto;
        border-radius:0px !important;
    }

    .mobile-tag{
        color:#393186;
        font-size:12px;
        font-weight:700;
        letter-spacing:2px;
        margin-bottom:18px;
    }

    .career-mobile-content h1{
        font-size:24px!important;
        line-height:34px!important;
        letter-spacing:normal;
        color:#001645;
        margin-bottom:14px;
    }

    .career-mobile-content h1 span{
        color:#58BDE2;
    }

    .career-mobile-content p{
        font-size:15px;
        line-height:1.7;
        color:#5b6472;
        margin-bottom:24px;
    }

    .mobile-stats{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:18px;
    margin:18px 0;
    width:auto;
}

.mobile-stat{
    flex:none;
    min-width:78px;
    text-align:center;
    position:relative;
    padding:0 10px;
}

.mobile-stat:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-10px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:28px;
    background:#d9d9d9;
}

.mobile-stat strong{
    display:block;
    font-size:24px;
    font-weight:700;
    color:#001645;
    line-height:1;
    margin-bottom:4px;
}

.mobile-stat span{
    font-size:11px;
    color:#666;
    line-height:14px;
}

    .vjf-partner-card {
    width: 150px;
    height: 95px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: .3s ease;
    text-decoration: none;
}

}
