/* Reset */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-lks {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 14px;
    color: #7a7a7a;
}

    .nav-lks li {
        cursor: pointer;
    }

.btn-active {
    color: #1f2f5c;
    font-weight: 700;
}  

body {
    background-color: #ffffff;
    color: #0b2a5b;
}

/* 
=======================================================================
WHO WE ARE SECTION 
=======================================================================
*/

.solutions {
    
    text-align: center;
    padding: 50px 20px;
}

.stats-section {
    background-image: url("../images/Image111.png"); /* replace with your image path */
    background-size: cover;
    background-position: center;
    padding-top: clamp(16px, 2.5vw, 80px);
}

.stats-overlay {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(27, 52, 118, 0.9);
    border-radius: 28px;
    padding: 20px 40px;
    color: #ffffff;
}
.con-us {
    text-align: center;
    padding-top: clamp(60px, 2.5vw, 50px);
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 600;
}

.con-workwithus {
    text-align: left;
    padding-top: 0px;
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 600;
}

.who-we-are {
    text-align: left;
    padding: 0px 20px;
}

h4 {
    font-size: clamp(16px, 2.5vw, 26px);
}

.section-banner {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    position: relative;
}

.section-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

    /*.section-title::after {
        content: "";
        width: 450px;
        height: 4px;
        background-color: #0b2a5b;
        display: block;
        margin: 10px auto 0;
    }*/
  
.text-yel {
    color: #fac31a;
}
.p-con {
    font-size: clamp(14px, 2.5vw, 18px);

}
/* 
===========================================================================================
FOOTER 
===========================================================================================
*/

.services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service {
    padding: 25px;
    font-weight: bold;
    border-radius: 10px;
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.blue-bg {
    background-color: #0d3b80;
    color: white;
}

.gold-bg {
    background-color: #f2b705;
    color: #0d3b80;
}

.download-section {
    margin-top: 50px;
    font-size: 18px;
    color: #1b3f72;
}
 
.download-btn {
    background-color: #b0b8c1;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    margin-right: 10px;
}

    .download-btn:hover {
        opacity: 0.9;
    }

.image-wrapper {
    margin-top: 50px;
}

    .image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }



/* 
===========================================================================================
FOOTER 
===========================================================================================
*/
.site-footer {
    background: #0b2c6f;
    color: #ffffff;
    margin-top: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-center p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-right a {
    display: inline-block;
    margin-right: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 14px;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bt-container {
        grid-template-columns: 1fr;
    }

    .bt-right {
        grid-template-columns: 1fr;
    }

    .bt-cta {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}