@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
        RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:90px 0;
}

.container{
    max-width:1200px;
}
.navbar{
    background: #f8fbff;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand{
    padding: 0;
    margin: 0;
}

.navbar-brand img{
    width: 95px;
    height: auto;
    display: block;
}

.navbar-nav{
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-nav .nav-item{
    margin-left: 0;
}

.nav-link{
    color: #0d2d62 !important;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active{
    color: #F47C20 !important;
}

.contact-btn{
    background: #F47C20;
    color: #f8fbff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover{
    background: #df6d11;
    color: #f8fbff!important;
}

/* Mobile */

@media (max-width: 991px){

    .navbar{
        padding: 8px 0;
    }

    .navbar-brand img{
        width: 75px;
    }

    .navbar-nav{
        gap: 10px;
        padding-top: 15px;
    }

    .contact-btn{
        display: inline-block;
        margin-top: 10px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI,sans-serif;
}

.footer{
    background:#152d72;
    color:#fff;
    padding-top:50px;
}

.footer-container{
    width:90%;
    max-width:1450px;
    margin:auto;

    display:grid;
    grid-template-columns:2.5fr 1fr 1fr 1fr;
    column-gap:90px;
    align-items:start;
}

.footer-left .logo{
    width:125px;
    margin-bottom:28px;
}

.footer-left h2{
    font-size:22px;
    font-weight:400;
    margin-bottom:22px;
}

.footer-left p{
    color:#aeb7d1;
    font-size:17px;
    line-height:1.45;
    width:430px;
}

.footer-column h3{
    font-size:20px;
    font-weight:500;
    margin-bottom:28px;
}

.footer-column a,
.footer-column span{
    display:block;
    text-decoration:none;
    color:#aeb7d1;
    margin-bottom:18px;
    font-size:17px;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:45px;
    border-top:1px solid rgba(255,255,255,.25);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 40px;
}

.footer-bottom p{
    color:#d5d8e6;
    font-size:16px;
}

.footer-bottom span{
    color:#d5d8e6;
    font-size:16px;
}

@media(max-width:992px){

.footer-container{
grid-template-columns:1fr;
row-gap:40px;
}

.footer-left p{
width:100%;
}

.footer-bottom{
flex-direction:column;
gap:10px;
text-align:center;
}

}
/*=========================================
HERO
=========================================*/

.hero{
    padding:180px 8% 120px;
    background:linear-gradient(135deg,#0d3d87,#1b5dbf);
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.hero h1 span{
    color:#f7941d;
}

.hero p{
    width:70%;
    margin:auto;
    font-size:18px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary{
    background:#f7941d;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-primary:hover{
    background:#fff;
    color:#f7941d;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-outline:hover{
    background:#fff;
    color:#0d3d87;
}

/*=========================================
SECTION TITLE
=========================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f7941d;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:40px;
    margin-top:10px;
    color:#0d3d87;
}



/*=========================================
SERVICES
=========================================*/

.services{
    background:#fff;
    padding:100px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#f7941d;
    margin-bottom:20px;
}

.service-card h3{
    color:#0d3d87;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#666;
}

/*=========================================
WHY CHOOSE US
=========================================*/

.why{
    padding:100px 0;
    background:#f3f7fb;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.why-card i{
    font-size:45px;
    color:#f7941d;
    margin-bottom:15px;
}

.why-card h4{
    color:#0d3d87;
    margin-bottom:10px;
}


/*=========================================
PROCESS
=========================================*/

.process{
    padding:100px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.step{
    text-align:center;
    background:#f8f8f8;
    padding:40px;
    border-radius:18px;
}

.step-number{
    width:70px;
    height:70px;
    background:#f7941d;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

/*=========================================
CTA
=========================================*/

.cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(135deg,#0d3d87,#1b5dbf);
    color:#fff;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.cta a{
    display:inline-block;
    background:#f7941d;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
}

/*=========================================
FOOTER
=========================================*/

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero h1{
    font-size:42px;
}

.hero p{
    width:100%;
}


.service-grid,
.why-grid,

.process-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    gap:20px;
}

.navbar ul{
    flex-direction:column;
    text-align:center;
}

.hero{
    padding-top:220px;
}

.hero h1{
    font-size:34px;
}

.hero-buttons{
    flex-direction:column;
}


.service-grid,
.why-grid,

.process-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:30px;
}

.about-content h3{
    font-size:28px;
}

.cta h2{
    font-size:32px;
}

.cta p{
    width:100%;
}

}
/* CONTACT */

.contact{
    padding:100px 0;
    background:#f8f9fc;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-box i{
    font-size:45px;
    color:#f7941d;
    margin-bottom:20px;
}

.contact-box h3{
    color:#0d3d87;
    margin-bottom:15px;
}

/* FOOTER */



.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#f7941d;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#0d3d87;
}

