/* ===================================
   GLOBAL
=================================== */

:root{
    --primary:#0d6efd;
    --secondary:#20c997;
    --dark:#212529;
    --light:#f8f9fa;
    --white:#ffffff;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:var(--light);
    color:#333;
    overflow-x:hidden;
}

/* ===================================
   NAVBAR
=================================== */

.navbar{
    backdrop-filter:blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar-brand{
    font-size:1.4rem;
    font-weight:700;
}

/* ===================================
   HERO
=================================== */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:linear-gradient(
        135deg,
        #0d6efd,
        #20c997
    );
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.hero h1{
    line-height:1.2;
}

.hero img{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* ===================================
   BUTTON
=================================== */

.btn-success{
    border-radius:50px;
    padding:12px 30px;
    font-weight:600;
    transition:.3s;
}

.btn-success:hover{
    transform:translateY(-2px);
}

/* ===================================
   SECTION TITLE
=================================== */

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-weight:700;
}

.section-title p{
    color:#6c757d;
}

/* ===================================
   FEATURE BOX
=================================== */

.feature-box{
    background:#fff;
    padding:30px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:42px;
    color:var(--secondary);
    margin-bottom:15px;
}

.feature-box h5{
    margin-top:10px;
    font-weight:600;
}

/* ===================================
   SERVICE CARD
=================================== */

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-card .content{
    padding:20px;
}

/* ===================================
   TESTIMONIAL
=================================== */

.testimonial-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.testimonial-box .stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:10px;
}

/* ===================================
   FAQ
=================================== */

.accordion-item{
    border:none;
    margin-bottom:10px;
    border-radius:15px !important;
    overflow:hidden;
}

.accordion-button{
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#20c997;
    color:#fff;
}

/* ===================================
   CTA
=================================== */

.cta-section{
    background:linear-gradient(
        135deg,
        #20c997,
        #0d6efd
    );
    color:#fff;
    padding:80px 0;
}

/* ===================================
   FOOTER
=================================== */

footer{
    background:#212529;
}

footer a{
    color:#fff;
    text-decoration:none;
}

/* ===================================
   FLOATING WHATSAPP
=================================== */

.floating-wa{
    position:fixed;
    right:20px;
    bottom:20px;

    width:65px;
    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:30px;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(0,0,0,.3);

    z-index:9999;

    transition:.3s;
}

.floating-wa:hover{
    transform:scale(1.1);
    color:#fff;
}

/* ===================================
   IMAGE
=================================== */

img{
    max-width:100%;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .hero{
        text-align:center;
        padding:80px 0;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero img{
        margin-top:30px;
        max-width:280px;
    }

    .feature-box{
        padding:20px 15px;
    }

    .service-card img{
        height:220px;
    }

    .floating-wa{
        width:60px;
        height:60px;
    }

}
/* ==========================
   PREMIUM NAVBAR
========================== */

.navbar{

padding:15px 0;

background:rgba(0,0,0,.15);

backdrop-filter:blur(12px);

transition:.3s;

}

.navbar-brand{

font-size:1.4rem;

font-weight:700;

color:#fff !important;

}

.nav-link{

font-weight:500;

margin-left:10px;

color:#fff !important;

transition:.3s;

}

.nav-link:hover{

color:#20c997 !important;

}

.navbar-toggler{

border:none;

}

.navbar-toggler:focus{

box-shadow:none;

}
.hero{

padding-top:140px;

}