/* SECTION */
.product-section{
    background:#f8fafc;
}

/* TITLE */
.section-subtitle{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    color:#ff6b00;
    margin-bottom:10px;
}

.section-title{
    font-size:34px;
    color:#071c39;
    margin-bottom:15px;
}

.section-desc{
    max-width:850px;
    font-size:15px;
    line-height:1.7;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:.3s;

    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */
.product-img{
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5px;
    border-radius: 15px;
}

.product-img img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

/* CONTENT */
.product-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h4{
    font-size:18px;
    color:#071c39;
    margin-bottom:10px;
    font-weight:700;
}

.product-content p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:15px;
}

/* ✅ BUTTON FIX (IMPORTANT) */
.product-btn{
    margin-top:auto;
    white-space:nowrap;
    display:inline-block;
}

/* MOBILE FIX */
@media(max-width:576px){

    .section-title{
        font-size:26px;
    }

    .product-img{
        height:250px;
    }

    .product-content{
        padding:15px;
    }

    .product-content p{
        font-size:13px;
    }

    .product-btn{
        width:100%;
        text-align:center;
    }
}

      
      
    .about-section{
    background:#ffffff;
}

.about-tag{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #071c39;
}

.about-title span{
    color:#ff6b00;
}

.about-text{
    color:#666;
    font-size:16px;
    line-height:1.9;
    text-align: justify;
}

.feature-box{
    background:#f8f9fb;
    border-radius:15px;
    padding:25px 15px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid #eee;
}

.feature-box:hover{
    background:#071c39;
    transform:translateY(-5px);
}

.feature-box i{
    font-size:35px;
    color:#ff6b00;
    margin-bottom:15px;
}

.feature-box h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#071c39;
}

.feature-box:hover h5{
    color:#fff;
}

.about-btn{
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#071c39;
    color:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.experience-box{
    position:absolute;
    left:25px;
    bottom:25px;
    background:#071c39;
    padding:20px 30px;
    border-radius:15px;
    color:#fff;
    text-align:center;
}

.experience-box h3{
    margin:0;
    font-size:36px;
    font-weight:700;
    color:#ff6b00;
}

.experience-box p{
    margin:0;
    font-size:14px;
}

@media(max-width:991px){

    .about-title{
        font-size:36px;
    }

    .about-image{
        margin-bottom:15px;
    }
}

@media(max-width:767px){

    .about-title{
        font-size:30px;
    }

    .experience-box{
        left:15px;
        bottom:15px;
        padding:15px 20px;
    }

    .experience-box h3{
        font-size:28px;
    }

    .feature-box{
        padding:20px 10px;
    }
}

      
      
   .industries{
    background:#fff;
}

.industry-top{
    color:#ff7900;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.industry-heading{
    font-size:42px;
    font-weight:700;
    color:#08244d;
    margin:15px 0;
}

.industry-heading span{
    color:#ff7900;
}

.industry-para{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.industry-box{
    position:relative;
    text-align:center;
    padding:35px 25px;
    border-radius:18px;
    transition:.4s;
}

.industry-box::after{
    content:"";
    position:absolute;
    top:55px;
    right:-50%;
    width:100%;
    height:2px;
    background:#e5e5e5;
}

.col-lg:last-child .industry-box::after{
    display:none;
}

.industry-number{
    position:absolute;
    top:10px;
    right:15px;
    font-size:45px;
    font-weight:700;
    color:#f2f2f2;
}

.industry-circle{
    width:85px;
    height:85px;
    background:#08244d;
    color:#fff;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.4s;
}

.industry-box h5{
    margin:25px 0 15px;
    color:#08244d;
    font-weight:700;
}

.industry-box p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.industry-box:hover .industry-circle{
    background:#ff7900;
    transform:translateY(-10px) rotateY(180deg);
}

.industry-box:hover{
    transform:translateY(-10px);
}

@media(max-width:991px){

.industry-box::after{
display:none;
}

.industry-heading{
font-size:34px;
}

}

@media(max-width:767px){

.industry-heading{
font-size:28px;
}

.industry-circle{
width:70px;
height:70px;
font-size:24px;
}

}




    .core-values{
    background:#f8fafc;
}

.value-subtitle{
    display:inline-block;
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
    padding-left:45px;
}

.value-subtitle::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:35px;
    height:3px;
    background:#ff7a00;
}

.value-title{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
    line-height:1.3;
}

.value-title span{
    color:#ff7a00;
}

.value-text{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin:25px 0 35px;
}

.value-btn{
    display:inline-block;
    background:#0b1f4d;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.value-btn:hover{
    background:#ff7a00;
    color:#fff;
}

.value-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    height:100%;
    transition:.4s;
    border:1px solid #edf1f7;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.value-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#ff7a00;
    transition:.4s;
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.value-card:hover::before{
    width:100%;
    z-index:0;
}

.value-card>*{
    position:relative;
    z-index:2;
}

.icon-box{
    width:75px;
    height:75px;
    border-radius:18px;
    background:#0b1f4d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.4s;
}

.value-card h4{
    color:#0b1f4d;
    font-weight:700;
    margin-bottom:15px;
    transition:.4s;
}

.value-card p{
    color:#666;
    line-height:1.8;
    margin:0;
    transition:.4s;
}

.value-card:hover .icon-box{
    background:#fff;
    color:#ff7a00;
    transform:rotateY(180deg);
}

.value-card:hover h4,
.value-card:hover p{
    color:#fff;
}

@media(max-width:991px){

.value-title{
    font-size:34px;
}

}

@media(max-width:767px){

.value-title{
    font-size:28px;
}

.value-text{
    font-size:16px;
}

.value-btn{
    width:100%;
    text-align:center;
    margin-bottom:15px;
}

.value-card{
    padding:30px 22px;
}

.icon-box{
    width:65px;
    height:65px;
    font-size:26px;
}

}



    .partner-section{
    background:#fff;
}

.partner-box{
    background:linear-gradient(135deg,#08244d,#123b7a);
    border-radius:25px;
    padding:60px;
    position:relative;
    overflow:hidden;
}

.partner-box::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.partner-box::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,122,0,.12);
    border-radius:50%;
    bottom:-70px;
    left:-60px;
}

.partner-tag{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.partner-title{
    color:#fff;
    font-size:44px;
    font-weight:700;
    line-height:1.3;
}

.partner-title span{
    color:#ff7a00;
}

.partner-text{
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.9;
    margin-top:20px;
}

.partner-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.partner-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#ff7a00;
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.partner-card h4{
    color:#08244d;
    font-weight:700;
    margin-bottom:15px;
}

.partner-card p{
    color:#666;
    margin-bottom:25px;
    line-height:1.8;
}

.partner-btn,
.quote-btn{
    display:block;
    padding:14px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.partner-btn{
    background:#ff7a00;
    color:#fff;
}

.partner-btn:hover{
    background:#08244d;
    color:#fff;
}

.quote-btn{
    border:2px solid #08244d;
    color:#08244d;
}

.quote-btn:hover{
    background:#08244d;
    color:#fff;
}

@media(max-width:991px){

.partner-box{
    padding:40px 30px;
}

.partner-title{
    font-size:34px;
}

.partner-card{
    margin-top:35px;
}

}

@media(max-width:767px){

.partner-title{
    font-size:28px;
}

.partner-text{
    font-size:16px;
}

.partner-box{
    padding:30px 20px;
}

.partner-card{
    padding:25px 20px;
}

.partner-card i{
    width:65px;
    height:65px;
    line-height:65px;
    font-size:26px;
}

}




    .vision-mission{
    background:#fff;
}

.section-tag{
    color:#ff7300;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
}

.section-heading span{
    color:#ff7300;
}

.section-desc{
    color:#666;
    font-size:17px;
    line-height:1.8;
    max-width:760px;
    margin:auto;
}

.vm-card{
    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    height:100%;
    border-top:5px solid #ff7300;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.vm-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    background:#0b1f4d;
    transition:.5s;
    z-index:0;
}

.vm-card>*{
    position:relative;
    z-index:2;
}

.vm-card:hover::before{
    width:100%;
}

.vm-icon{
    width:75px;
    height:75px;
    background:#ff7300;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.4s;
}

.vm-card h3{
    color:#0b1f4d;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    transition:.4s;
}

.vm-card p{
    color:#666;
    line-height:1.9;
    margin:0;
    transition:.4s;
}

.vm-card:hover{
    transform:translateY(-10px);
}

.vm-card:hover .vm-icon{
    background:#fff;
    color:#ff7300;
}

.vm-card:hover h3,
.vm-card:hover p{
    color:#fff;
}

@media(max-width:991px){

.section-heading{
    font-size:34px;
}

}

@media(max-width:767px){

.section-heading{
    font-size:28px;
}

.section-desc{
    font-size:16px;
}

.vm-card{
    padding:30px 25px;
}

.vm-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.vm-card h3{
    font-size:24px;
}

}


    .why-choose{
    background:#f8f9fc;
}

.section-subtitle{
    color:#ff7300;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
}

.section-title span{
    color:#ff7300;
}

.section-text{
    color:#666;
    font-size:17px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

.choose-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    height:100%;
    transition:.4s;
    border:1px solid #edf1f7;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.choose-card:hover{
    transform:translateY(-10px);
    border-color:#ff7300;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.icon{
    width:75px;
    height:75px;
    background:#0b1f4d;
    color:#fff;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.4s;
}

.choose-card:hover .icon{
    background:#ff7300;
    transform:rotateY(180deg);
}

.choose-card h5{
    color:#0b1f4d;
    font-weight:700;
    margin-bottom:12px;
}

.choose-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

.section-title{
    font-size:34px;
}

}

@media(max-width:767px){

.section-title{
    font-size:28px;
}

.section-text{
    font-size:16px;
}

.choose-card{
    padding:30px 20px;
}

.icon{
    width:65px;
    height:65px;
    font-size:24px;
}

}


    .about-section{
    overflow:hidden;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.experience-card{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#ff7a00;
    color:#fff;
    padding:18px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(255,122,0,.35);
}

.experience-card h2{
    margin:0;
    font-size:36px;
    font-weight:700;
}

.experience-card p{
    margin:0;
    font-size:15px;
}

.section-tag{
    display:inline-block;
    color:#ff7a00;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    position:relative;
    padding-left:45px;
}

.section-tag::before{
    content:"";
    width:35px;
    height:3px;
    background:#ff7a00;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
    line-height:1.3;
}

.section-title span{
    color:#ff7a00;
}

.section-text{
    color:#666;
    font-size:17px;
    line-height:1.9;
}

.list-item{
    font-size:16px;
    font-weight:600;
    color:#0b1f4d;
}

.list-item i{
    width:32px;
    height:32px;
    line-height:32px;
    text-align:center;
    border-radius:50%;
    background:#ff7a00;
    color:#fff;
    margin-right:10px;
}

.about-btn{
    display:inline-block;
    background:#0b1f4d;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#ff7a00;
    color:#fff;
}

@media(max-width:991px){

.section-title{
    font-size:34px;
}

.experience-card{
    left:15px;
    bottom:15px;
}

}

@media(max-width:767px){

.section-title{
    font-size:28px;
}

.section-text{
    font-size:16px;
}

.about-btn{
    width:100%;
    text-align:center;
}

.experience-card{
    padding:15px 18px;
}

.experience-card h2{
    font-size:28px;
}

}


 

.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;
    }
}
