
    /* SECTION */
.cta-section{
    background:linear-gradient(135deg,#08244d,#0b4ea2);
    padding:80px 20px;
    position:relative;
    overflow:hidden;
}

/* decorative glow */
.cta-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#ff6b00;
    filter:blur(120px);
    opacity:0.3;
    top:-80px;
    right:-80px;
}

/* BOX */
.cta-box{
    text-align:center;
    max-width:850px;
    margin:auto;
    color:#fff;
}

/* HEADING */
.cta-box h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

/* TEXT */
.cta-box p{
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,0.85);
    margin-bottom:30px;
}

/* BUTTONS */
.cta-btns{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */
.cta-primary{
    background:#ff6b00;
    color:#fff;
    padding:13px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.cta-primary:hover{
    background:#fff;
    color:#08244d;
}

/* OUTLINE BUTTON */
.cta-outline{
    border:2px solid #fff;
    color:#fff;
    padding:13px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.cta-outline:hover{
    background:#fff;
    color:#08244d;
}

/* RESPONSIVE */
@media(max-width:768px){
    .cta-box h2{
        font-size:28px;
    }

    .cta-box p{
        font-size:15px;
    }
}






    /* SECTION */
.process-alt{
    background:linear-gradient(135deg,#f8fafc,#eef3f9);
}

/* HEADING */
.process-alt-heading span{
    color:#ff6b00;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.process-alt-heading h2{
    font-size:42px;
    font-weight:800;
    color:#08244d;
    margin-top:10px;
}

/* CARD */
.neo-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:30px 25px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.3);
}

/* diagonal accent */
.neo-card::before{
    content:"";
    position:absolute;
    top:-40px;
    right:-40px;
    width:120px;
    height:120px;
    background:#ff6b00;
    transform:rotate(45deg);
    opacity:0.15;
}

/* NUMBER BADGE */
.neo-num{
    width:55px;
    height:55px;
    background:#ff6b00;
    color:#fff;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    margin-bottom:18px;
    font-size:18px;
    box-shadow:0 8px 20px rgba(255,107,0,0.3);
}

/* TEXT */
.neo-card h4{
    color:#08244d;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.neo-card p{
    color:#666;
    line-height:1.7;
}

/* HOVER */
.neo-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width:991px){
    .process-alt-heading h2{
        font-size:34px;
    }
}

@media(max-width:767px){
    .process-alt-heading h2{
        font-size:28px;
    }

    .neo-card{
        padding:25px;
    }
}




    /* SECTION */
.qc-section{
    background:#f8fafc;
}

/* LEFT CONTENT */
.qc-content span{
    color:#ff6b00;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.qc-content h2{
    font-size:42px;
    font-weight:700;
    color:#08244d;
    margin:15px 0;
}

.qc-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.qc-content a{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.qc-content a:hover{
    background:#08244d;
}

/* RIGHT GRID */
.qc-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* CARD STYLE */
.qc-card{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border-left:4px solid #ff6b00;
    transition:0.3s;
}

.qc-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.qc-card h4{
    color:#08244d;
    font-size:18px;
    font-weight:700;
    margin:0;
    text-align: left;
}

/* FULL WIDTH CARD */
.qc-card.full{
    grid-column:span 2;
    text-align:center;
}

/* RESPONSIVE */
@media(max-width:991px){
    .qc-content h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .qc-grid{
        grid-template-columns:1fr;
    }

    .qc-card.full{
        grid-column:span 1;
    }

    .qc-content h2{
        font-size:28px;
    }

}






    /* SECTION */
.infra-section{
    background:#f8fafc;
}

/* HEADING */
.infra-heading span{
    color:#ff6b00;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.infra-heading h2{
    color:#08244d;
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.infra-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* CARD */
.infra-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.4s ease;
    border-left:4px solid #ff6b00;
}

.infra-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.infra-card h4{
    color:#08244d;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.4;
}

.infra-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* RESPONSIVE */
@media(max-width:991px){
    .infra-heading h2{
        font-size:34px;
    }
}

@media(max-width:767px){
    .infra-heading h2{
        font-size:28px;
    }

    .infra-card{
        padding:20px;
    }
}





    /* SECTION */
/*.facility-section{*/
/*    background:#f8fafc;*/
/*}*/

/* IMAGE */
/*.facility-image{*/
/*    border-radius:18px;*/
/*    overflow:hidden;*/
/*    box-shadow:0 15px 40px rgba(0,0,0,0.12);*/
/*}*/

/*.facility-image img{*/
/*    width:100%;*/
/*    height:100%;*/
/*    display:block;*/
/*    object-fit:cover;*/
/*    transition:0.5s ease;*/
/*}*/

/*.facility-image:hover img{*/
/*    transform:scale(1.05);*/
/*}*/

/* CONTENT */
.facility-content span{
    color:#ff6b00;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.facility-content h2{
    color:#08244d;
    font-size:37px;
    font-weight:700;
    margin:15px 0;
    line-height:1.3;
}

.facility-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
}

/* BUTTON */
.facility-btn{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:13px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    margin-top:10px;
    transition:0.3s;
}

.facility-btn:hover{
    background:#08244d;
}

/* RESPONSIVE */
@media(max-width:991px){
    .facility-content h2{
        font-size:34px;
    }
}

@media(max-width:767px){
    .facility-content h2{
        font-size:28px;
    }

    .facility-image{
        margin-bottom:20px;
    }
}




.custom-banner-slider{
    width:100%;
    overflow:hidden;
}

.banner-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.banner-track{
    display:flex;
    width:100%;
    transition:transform .5s ease;
}

.banner-slide{
    min-width:100%;
    flex:0 0 100%;
}

.banner-slide img{
    width:100%;
    display:block;
}

/* ===== Navigation ===== */

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:24px;
    cursor:pointer;

    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

/* ===== Dots ===== */

.dots{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;

    z-index:2;

    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.dot.active{
    background:#fff;
}

/* Show controls after JS loads */

.banner-slider.loaded .nav-btn,
.banner-slider.loaded .dots{
    opacity:1;
    visibility:visible;
}

/* Mobile */

.mobile-banner{
    display:none;
}

@media(max-width:767px){

    .desktop-banner{
        display:none;
    }

    .mobile-banner{
        display:block;
    }

    .nav-btn{
        width:36px;
        height:36px;
        font-size:18px;
    }

    .dot{
        width:10px;
        height:10px;
    }
}

