/*==================================
    GOOGLE FONT
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================
    GLOBAL CSS
==================================*/

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

body{
    font-family:'Poppins',sans-serif;
    font-size:15px;
    color:#444;
    background:#f8f9fa;
    line-height:1.7;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
    height:auto;
}

section{
    padding:80px 0;
}

.btn{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
}

.btn-success{
    background:#198754;
    border-color:#198754;
}

.btn-success:hover{
    background:#146c43;
    border-color:#146c43;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-weight:700;
    color:#222;
}

.section-title p{
    color:#777;
}


/*==================================
    TOP HEADER
==================================*/

.top-header{
    background:#198754;
    padding:10px 0;
    font-size:14px;
}

.top-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left a,
.top-right a{
    color:#fff;
    margin-right:20px;
}

.top-right a:last-child{
    margin-right:0;
}

.top-left a:hover,
.top-right a:hover{
    opacity:.8;
}


/*==================================
    NAVBAR
==================================*/

.navbar{
    padding:15px 0;
}

.navbar-brand h5{
    color:#198754;
}

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

.nav-link:hover{
    color:#198754 !important;
}

.dropdown-menu{
    border-radius:12px;
}

.dropdown-item{
    padding:10px 18px;
}

.dropdown-item:hover{
    background:#198754;
    color:#fff;
}


/*==================================
    HERO SECTION
==================================*/

.hero-section{
    background:#fff;
}

.hero-section h1{
    font-weight:700;
    color:#222;
    line-height:1.3;
}

.hero-section p{
    color:#666;
}

.hero-section .badge{
    font-size:14px;
    padding:10px 18px;
}

.hero-section img{
    max-height:500px;
}




/*==================================
    ABOUT SECTION
==================================*/

.about-section{
    background:#f8f9fa;
}

.about-section img{
    border-radius:15px;
}

.about-section h2{
    font-weight:700;
    color:#222;
}

.about-section p{
    color:#666;
}

.about-section .fa-circle-check{
    font-size:22px;
}


/*==================================
    WHY CHOOSE US
==================================*/

.why-us{
    background:#ffffff;
}

.why-us .card{
    border:none;
    border-radius:15px;
    transition:.3s;
}

.why-us .card:hover{
    transform:translateY(-8px);
}

.why-us i{
    color:#198754;
}


/*==================================
    SERVICES
==================================*/

.services-section{
    background:#f8f9fa;
}

.services-section .card{
    border:none;
    border-radius:15px;
    transition:.3s;
}

.services-section .card:hover{

    transform:translateY(-10px);

    box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;

}

.services-section .card-body{

    padding:35px 25px;

}

.services-section i{

    color:#198754;

}

.services-section h5{

    margin-top:15px;

    margin-bottom:15px;

    font-weight:600;

}


/*==================================
    COUNTER
==================================*/

.counter-section{

    background:#198754;

}

.counter-box{

    padding:20px;

}

.counter-box h2{

    font-size:40px;

    font-weight:700;

    color:#fff;

}

.counter-box p{

    color:#fff;

    margin-bottom:0;

}

.counter-box i{

    color:#fff;

}

/*==================================
    ZFUNDS SECTION
==================================*/

.zfunds-section{
    background:#ffffff;
}

.zfunds-section h2{
    font-weight:700;
    color:#222;
}

.zfunds-section p{
    color:#666;
}

.zfunds-section img{
    max-width:320px;
}


/*==================================
    TESTIMONIAL SECTION
==================================*/

.testimonial-section{
    background:#f8f9fa;
}

.testimonial-section .card{
    border:none;
    border-radius:15px;
    transition:.3s;
}

.testimonial-section .card:hover{
    transform:translateY(-8px);
}

.testimonial-section .text-warning{
    font-size:18px;
}


/*==================================
    CTA SECTION
==================================*/

.cta-section{
    background:#198754;
}

.cta-section h2{
    font-weight:700;
}

.cta-section .btn{
    margin-top:10px;
}


/*==================================
    CONTACT SECTION
==================================*/

.contact-section{
    background:#ffffff;
}

.contact-section .card{
    border:none;
    border-radius:15px;
}

.contact-section .form-control,
.contact-section .form-select{
    height:50px;
    border-radius:10px;
}

.contact-section textarea.form-control{
    height:auto;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus{
    border-color:#198754;
    box-shadow:none;
}


/*==================================
    FOOTER
==================================*/

.footer{
    background:#212529;
}

.footer h4,
.footer h5{
    color:#fff;
}

.footer a{
    color:rgba(255,255,255,.75);
    transition:.3s;
}

.footer a:hover{
    color:#198754;
}

.footer p{
    color:rgba(255,255,255,.75);
}

.footer hr{
    opacity:.15;
}


/*==================================
    RESPONSIVE
==================================*/

@media (max-width:991px){

    section{
        padding:60px 0;
    }

    .top-wrapper{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .hero-section{
        text-align:center;
    }

    .hero-section img{
        margin-top:40px;
    }

    .cta-section{
        text-align:center;
    }

}

@media (max-width:576px){

    .hero-section h1{
        font-size:32px;
    }

    .counter-box h2{
        font-size:30px;
    }

    .btn{
        width:100%;
        margin-bottom:10px;
    }

    .navbar-brand img{
        height:50px;
    }

}








