.page-banner{
    position:relative;
    height:350px;
    background:url('img/about-banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
     /* header height */
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,48,135,.90),
        rgba(28,37,38,.75)
    );
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    color:#fff;
    font-size:72px;
    font-family:'Oswald',sans-serif;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
}

.breadcrumb-box{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:18px;
}

.breadcrumb-box a{
    color:#FF6200;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb-box span{
    color:#fff;
}

@media(max-width:768px){

    .page-banner{
        height:250px;
       
    }

    .banner-content h1{
        font-size:42px;
    }

    .breadcrumb-box{
        font-size:15px;
    }

}




.mission-section{
    background:#ECF0F1;
}

.mv-tag{
    display:inline-block;
    padding:10px 24px;
    background:#fff;
    color:#FF6200;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.mv-heading{
    font-size:58px;
    font-family:'Oswald',sans-serif;
    color:#1C2526;
    margin-bottom:15px;
}

.mv-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.mv-card{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    height:100%;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s;
    border:1px solid #e9e9e9;
}

.mv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.mv-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#FF6200;
}

.mv-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;

    background:#003087;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
}

.mv-card h3{
    font-size:30px;
    margin-bottom:20px;
    color:#003087;
    font-weight:700;
    font-family:'Oswald',sans-serif;
}

.mv-card p{
    color:#555;
    line-height:1.9;
    margin:0;
}

/* Center Card Highlight */

.active-card{
    background:#003087;
}

.active-card h3,
.active-card p{
    color:#fff;
}

.active-card .mv-icon{
    background:#FF6200;
}

@media(max-width:991px){

    .mv-heading{
        font-size:40px;
    }

}

@media(max-width:576px){

    .mv-heading{
        font-size:30px;
    }

    .mv-card{
        padding:35px 25px;
    }

}




.clients-section{
    background:#ECF0F1;
}

.client-tag{
    display:inline-block;
    padding:10px 24px;
    background:#fff;
    color:#FF6200;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.client-heading{
    font-size:58px;
    font-family:'Oswald',sans-serif;
    color:#1C2526;
    margin-bottom:15px;
}

.client-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.client-card{
    background:#fff;
    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;
    border:1px solid #e5e5e5;

    transition:.4s;
}

.client-card:hover{
    transform:translateY(-10px);
    border-color:#FF6200;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.client-card img{
    max-width:170px;
    max-height:80px;
    object-fit:contain;

    filter:grayscale(100%);
    transition:.4s;
}

.client-card:hover img{
    filter:grayscale(0%);
    transform:scale(1.05);
}

@media(max-width:991px){

    .client-heading{
        font-size:40px;
    }

    .client-card{
        height:140px;
    }

}

@media(max-width:576px){

    .client-heading{
        font-size:30px;
    }

    .client-card{
        height:120px;
        padding:15px;
    }

    .client-card img{
        max-width:120px;
    }

}





.contact-section{
    background:#ECF0F1;
}

.contact-tag{
    display:inline-block;
    background:#fff;
    color:#FF6200;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-title{
    font-family:'Oswald',sans-serif;
    font-size:58px;
    color:#1C2526;
    line-height:1.1;
    margin-bottom:20px;
}

.contact-desc{
    color:#555;
    line-height:1.9;
    margin-bottom:35px;
}

/* Contact Info */

.info-box{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.info-box i{
    width:65px;
    height:65px;
    background:#003087;
    color:#fff;
    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    margin-right:20px;
}

.info-box h5{
    margin-bottom:5px;
    font-weight:700;
    color:#1C2526;
}

.info-box p{
    margin:0;
    color:#666;
}

/* Form */

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.custom-input{
    border:none;
    background:#f7f7f7;
    padding:16px 20px;
    border-radius:12px;
}

.custom-input:focus{
    box-shadow:none;
    border:2px solid #FF6200;
    background:#fff;
}

.contact-btn{
    background:#FF6200;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:12px;
    font-weight:600;
    transition:.4s;
}

.contact-btn:hover{
    background:#003087;
}

/* Mobile */

@media(max-width:991px){

.contact-title{
    font-size:40px;
}

.contact-form-box{
    padding:25px;
}

}

@media(max-width:576px){

.contact-title{
    font-size:32px;
}

.info-box{
    align-items:flex-start;
}

.info-box i{
    width:55px;
    height:55px;
    font-size:18px;
}
}


.office-location{
    background:#ECF0F1;
}

.section-tag{
    display:inline-block;
    background:#fff;
    color:#FF6200;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:58px;
    font-family:'Oswald',sans-serif;
    color:#1C2526;
}

.section-desc{
    color:#666;
    max-width:700px;
    margin:auto;
}

/* Card */

.location-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    height:100%;
    transition:.4s;
    border:1px solid #e5e5e5;
    position:relative;
}

.location-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.location-icon{
    width:80px;
    height:80px;
    background:#003087;
    color:#fff;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    margin-bottom:25px;
}

.location-card h4{
    font-size:30px;
    color:#1C2526;
    margin-bottom:10px;
    font-family:'Oswald',sans-serif;
}

.location-card h6{
    color:#FF6200;
    margin-bottom:15px;
    font-weight:700;
}

.location-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.location-card a{
    text-decoration:none;
    color:#003087;
    font-weight:700;
}

.location-card a i{
    margin-left:8px;
}

/* Highlight Center Card */

.active-location{
    background:#003087;
}

.active-location h4,
.active-location p,
.active-location a{
    color:#fff;
}

.active-location .location-icon{
    background:#FF6200;
}

.active-location h6{
    color:#ffd7b8;
}

@media(max-width:991px){

    .section-title{
        font-size:40px;
    }

}

@media(max-width:576px){

    .section-title{
        font-size:30px;
    }

}


.map-section{
    width:100%;
    overflow:hidden;
}

.map-section iframe{
    width:100%;
    height:550px;
    border:0;
    display:block;
}

@media(max-width:768px){

    .map-section iframe{
        height:350px;
    }

}




.projects-section{
    background:#ECF0F1;
}

.project-tag{
    display:inline-block;
    padding:10px 24px;
    background:#fff;
    color:#FF6200;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.project-heading{
    font-size:60px;
    font-family:'Oswald',sans-serif;
    color:#1C2526;
}

.project-row{
    margin-bottom:100px;
}

.project-slider{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.10);
}

.project-slider img{
    height:500px;
    width:100%;
    object-fit:cover;
}

.project-content{
    padding:40px;
}

.project-content span{
    color:#FF6200;
    font-weight:700;
    text-transform:uppercase;
}

.project-content h3{
    font-size:42px;
    color:#003087;
    margin:15px 0;
    font-family:'Oswald',sans-serif;
}

.project-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.project-content ul{
    padding-left:20px;
}

.project-content li{
    margin-bottom:12px;
    color:#2C3E50;
    font-weight:500;
}

.carousel-control-prev,
.carousel-control-next{
    width:50px;
    height:50px;
    background:#FF6200;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

@media(max-width:991px){

    .project-heading{
        font-size:40px;
    }

    .project-content{
        padding:25px 0;
    }

    .project-content h3{
        font-size:30px;
    }

    .project-slider img{
        height:350px;
    }

    .project-row{
        margin-bottom:60px;
    }

}




.faq-section{
    background:#ECF0F1;
}

.faq-tag{
    display:inline-block;
    padding:10px 24px;
    background:#fff;
    color:#FF6200;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.faq-title{
    font-size:58px;
    line-height:1.1;
    color:#1C2526;
    font-family:'Oswald',sans-serif;
    margin-bottom:20px;
}

.faq-text{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.faq-info-box{
    background:#003087;
    color:#fff;
    padding:35px;
    border-radius:25px;
}

.faq-info-box h3{
    font-size:55px;
    color:#FF6200;
    margin-bottom:10px;
    font-family:'Oswald',sans-serif;
}

.faq-info-box p{
    margin:0;
}

/* FAQ CARD */

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.faq-question{
    padding:25px;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:18px;
    font-weight:600;
    color:#1C2526;

    transition:.3s;
}

.faq-question i{
    color:#FF6200;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;

    color:#555;
    line-height:1.9;

    padding:0 25px;
}

.faq-item.active .faq-answer{
    max-height:250px;
    padding:0 25px 25px;
}

.faq-item.active .faq-question{
    background:#003087;
    color:#fff;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    color:#fff;
}

@media(max-width:991px){

    .faq-title{
        font-size:40px;
    }

}

@media(max-width:576px){

    .faq-title{
        font-size:30px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

}



.product-details-section{
    background:#fff;
}

.main-product-image{
    overflow:hidden;
    border-radius:25px;
}

.main-product-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
}

.thumb-img{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:.3s;
}

.thumb-img:hover{
    transform:scale(1.05);
}

.product-category{
    display:inline-block;
    background:#ECF0F1;
    color:#FF6200;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.product-title{
    font-size:60px;
    font-family:'Oswald',sans-serif;
    color:#003087;
    margin-bottom:20px;
}

.product-description{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.product-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.feature-item{
    font-weight:600;
    color:#2C3E50;
}

.feature-item i{
    color:#FF6200;
    margin-right:8px;
}

.btn-enquiry{
    background:#FF6200;
    color:#fff;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    margin-right:15px;
    display:inline-block;
}

.btn-download{
    border:2px solid #003087;
    color:#003087;
    padding:13px 35px;
    border-radius:12px;
    text-decoration:none;
    display:inline-block;
}

.btn-enquiry:hover{
    background:#003087;
    color:#fff;
}

.btn-download:hover{
    background:#003087;
    color:#fff;
}

@media(max-width:991px){

    .product-title{
        font-size:40px;
    }

    .main-product-image img{
        height:350px;
    }

}

@media(max-width:576px){

    .product-title{
        font-size:30px;
    }

    .product-features{
        grid-template-columns:1fr;
    }

    .btn-enquiry,
    .btn-download{
        width:100%;
        margin-bottom:10px;
        text-align:center;
    }

}


.spec-title{
    font-size:32px;
    font-family:'Oswald',sans-serif;
    color:#003087;
    margin-bottom:25px;
}

.spec-table{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.spec-table th{
    width:35%;
    background:#003087;
    color:#fff;
    padding:16px 20px;
    font-weight:600;
    border-color:#ffffff20;
}

.spec-table td{
    background:#fff;
    color:#555;
    padding:16px 20px;
    border-color:#eee;
}

.spec-table tr:nth-child(even) td{
    background:#f8f9fa;
}

@media(max-width:768px){

    .spec-title{
        font-size:26px;
    }

    .spec-table th,
    .spec-table td{
        padding:12px;
        font-size:14px;
    }

}