*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f8fbff;
    color:#1c1c1c;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

/* NAVBAR */

.navbar{
    background:rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand{
    font-weight:700;
    font-size:1.5rem;
    color:#1f3c88 !important;
}

.nav-link{
    color:#333 !important;
    margin-left:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-link:hover{
    color:#4a90e2 !important;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#dcecff;
    border-radius:50%;
    top:-250px;
    right:-150px;
    z-index:0;
}

.hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#edf4ff;
    border-radius:50%;
    bottom:-100px;
    left:-100px;
    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
    color:#1f3c88;
    line-height:1.2;
}

.hero p{
    font-size:1.1rem;
    color:#555;
    margin-top:20px;
    margin-bottom:30px;
}

.btn-main{
    background:#4a90e2;
    color:white;
    border:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(74,144,226,0.3);
}

.btn-main:hover{
    background:#1f78da;
    transform:translateY(-3px);
}

.hero-image img{
    width:100%;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-weight:700;
    color:#1f3c88;
    font-size:2.5rem;
}

.section-title p{
    color:#666;
}

/* SERVICES */

.services{
    padding:100px 0;
}

.service-card{
    background:white;
    border-radius:25px;
    padding:40px 30px;
    transition:0.4s;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    border:1px solid #eef2f7;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(74,144,226,0.15);
}

.service-icon{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:#edf4ff;
    margin-bottom:25px;
    font-size:2rem;
    color:#4a90e2;
}

.service-card h4{
    font-weight:600;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    font-size:0.95rem;
}

/* ABOUT */

.about{
    padding:100px 0;
    background:white;
}

.about img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.about-content h2{
    color:#1f3c88;
    font-weight:700;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.8;
}

/* STATS */

.stats{
    padding:80px 0;
    background:linear-gradient(135deg,#4a90e2,#5ca7ff);
    color:white;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:3rem;
    font-weight:700;
}

/* CONTACT */

.contact{
    padding:100px 0;
}

.contact-box{
    background:white;
    padding:50px;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.form-control{
    border-radius:12px;
    padding:14px;
    border:1px solid #dfe7f3;
}

.form-control:focus{
    box-shadow:none;
    border-color:#4a90e2;
}

/* FOOTER */

footer{
    background:#1f3c88;
    color:white;
    padding:30px 0;
    text-align:center;
}

footer p{
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .hero-image{
        margin-top:50px;
    }

}


