*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    color:#222;
}

.section{
    padding:100px 0;
}

.navbar-custom{
    padding:20px 0;
    transition:0.3s;
}

.navbar-scroll{
    background:#0037b3;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
}

.navbar-brand span{
    color:#7ec8ff;
}

.nav-link{
    margin-left:20px;
    color:#fff !important;
    font-weight:500;
}

.btn-whatsapp-menu{
    background:#25d366;
    color:#fff;
    border-radius:50px;
    padding:10px 22px;
    text-decoration:none;
    font-weight:600;
}

.hero{
    background:linear-gradient(135deg,#0052ff,#0037b3);
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-200px;
    right:-200px;
}

.hero-text h1{
    font-size:60px;
    font-weight:700;
    margin:25px 0;
    line-height:1.2;
}

.hero-text p{
    font-size:18px;
    opacity:0.95;
    margin-bottom:30px;
}

.badge-custom{
    background:rgba(255,255,255,0.15);
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-whatsapp-main{
    background:#25d366;
    color:#fff;
    border-radius:50px;
    padding:14px 28px;
    font-weight:600;
}

.btn-whatsapp-main:hover{
    background:#1ebe5d;
    color:#fff;
}

.btn-main{
    border-radius:50px;
    padding:14px 28px;
}

.hero-img{
    max-width:90%;
}

.section-mini-title{
    color:#0052ff;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin:15px 0 25px;
}

.info-box{
    background:#f4f7fb;
    padding:18px;
    border-radius:16px;
    font-weight:500;
}

.info-box i{
    color:#0052ff;
    margin-right:10px;
}

.service-card{
    background:#fff;
    padding:40px 25px;
    border-radius:24px;
    text-align:center;
    transition:0.3s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.icon-circle{
    width:80px;
    height:80px;
    background:linear-gradient(135deg,#0052ff,#4da3ff);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.icon-circle i{
    color:#fff;
    font-size:32px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.cta{
    padding:100px 0;
    background:linear-gradient(135deg,#0052ff,#0037b3);
}

.cta h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    margin-bottom:30px;
}

footer{
    background:#00153d;
    color:#fff;
    padding:50px 0;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

@media(max-width:991px){

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero-text h1{
        font-size:42px;
    }

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

    .hero-buttons{
        justify-content:center;
    }

}