*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#0A2342;
    line-height:1.7;
    overflow-x:hidden;
}

.custom-navbar{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);
    padding:20px 0;
    transition:0.3s;
    border-bottom:1px solid rgba(0,0,0,0.04);
}

.navbar-brand img{
    height:100px;
}

.nav-link{
    margin-left:28px;
    font-weight:600;
    font-size:15px;
    color:#0A2342 !important;
    transition:0.3s;
}

.nav-link:hover{
    color:#0057B8 !important;
}

.hero-section{
    background:linear-gradient(to right,#f5f9ff,#ffffff);
    padding:110px 0 70px;
    overflow:hidden;
}

.hero-section h1{
    font-size:48px;
    font-weight:900;
    line-height:1.20;
    margin-bottom:28px;
    letter-spacing:-2px;
}



.hero-section p{
    font-size:18px;
    color:#5f6b7a;
    margin-bottom:40px;
    max-width:580px;
}

.hero-buttons .btn{
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    margin-right:15px;
}

.btn-primary-custom{
    background:#0057B8;
    color:#fff;
}

.btn-primary-custom:hover{
    background:#003f86;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #0057B8;
    color:#0057B8;
}

.btn-outline-custom:hover{
    background:#0057B8;
    color:#fff;
}

.hero-circle{
    width:520px;
    height:520px;
    background:radial-gradient(circle,#0057B8,#0A2342);
    border-radius:50%;
    margin:auto;
    opacity:0.10;
    filter:blur(20px);
}

.services-section{
    padding:120px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
}

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:24px;
    border:1px solid rgba(0,0,0,0.04);
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
    transition:0.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,87,184,0.08);
}

.service-card h4{
    font-size:22px;
    font-weight:600;
}

footer{
    background:#0A2342;
    color:#fff;
    text-align:center;
    padding:30px 0;
}

@media(max-width:991px){

    .hero-section{
        padding-top:120px;
        text-align:center;
    }

    .hero-section h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-circle{
        width:300px;
        height:300px;
        margin:50px auto 0;
    }

}

/* ABOUT */

.about-section{
    padding:120px 0;
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    background:rgba(0,87,184,0.08);
    color:#0057B8;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.about-section h2{
    font-size:48px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:25px;
}

.about-section p{
    font-size:18px;
    color:#5f6b7a;
    margin-bottom:40px;
    max-width:580px;
}

.about-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    min-width:220px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.stat-box h3{
    font-size:36px;
    font-weight:700;
    color:#0057B8;
    margin-bottom:10px;
}

.stat-box span{
    color:#6c757d;
}

.about-image{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding-right:0;
}

.about-logo-bg{
    width:580px;
    height:580px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-bg-logo{
    width:85%;
    height:auto;
    opacity:0.16;
    mix-blend-mode:multiply;
    filter:blur(1px);
    user-select:none;
    pointer-events:none;
}

@media(max-width:991px){

    .about-section{
        text-align:center;
    }

    .about-section h2{
        font-size:36px;
    }

    .about-stats{
        justify-content:center;
    }

    .about-logo-bg{
        width:300px;
        height:300px;
        margin-top:40px;
    }

    .about-bg-logo{
        opacity:0.10;
    }

}



.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:500px;
}



.hero-section h1 br{
    display:block;
}

.hero-row{
    min-height:20vh;
    padding-top:120px;
}

.hero-content{
    max-width:950px;
    margin-left:40px;
}

