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

body{
    font-family:'Poppins',sans-serif;
    line-height:1.7;
    color:#333;
    background:#ffffff;
}

/* Links */

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

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

.navbar{
    background:#0056b3 !important;
    padding:12px 0;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.navbar-brand{
    font-weight:700;
    color:#fff !important;
}

.navbar-brand small{
    font-size:12px;
}

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

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

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

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(rgba(0,86,179,.75),rgba(0,86,179,.75)),
    url('../images/hero1.jpg') center center/cover no-repeat;
}

.hero h1{
    font-size:58px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    margin:20px auto;
    max-width:700px;
}

/* ======================
BUTTONS
====================== */

.btn-primary{

    background:#0056b3;
    border:none;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;

}

.btn-primary:hover{

    background:#003d82;

}

.btn-light{

    border-radius:40px;
    padding:12px 28px;

}

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

section{

    padding:80px 0;

}

.section-title{

    color:#0056b3;
    font-weight:700;
    margin-bottom:15px;

}

/* ======================
CARDS
====================== */

.card{

    border:none;
    border-radius:12px;
    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.card-body{

    padding:35px;

}

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

.service-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    background:#0056b3;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin:auto;

    margin-bottom:20px;

}

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

.about-image{

    border-radius:15px;

    overflow:hidden;

}

.about-image img{

    width:100%;

}

/* ======================
LISTS
====================== */

ul{

    list-style:none;

}

.check-list li{

    margin-bottom:10px;

}

.check-list i{

    color:#0056b3;

    margin-right:8px;

}

/* ======================
COUNTERS
====================== */

.counter{

    font-size:48px;

    font-weight:bold;

    color:#0056b3;

}

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

.contact-box{

    padding:30px;

    border-radius:12px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-box i{

    color:#0056b3;

    font-size:24px;

    margin-right:10px;

}

/* ======================
FORM
====================== */

.form-control{

    border-radius:10px;

    padding:12px;

}

.form-control:focus{

    border-color:#0056b3;

    box-shadow:0 0 0 .15rem rgba(0,86,179,.25);

}

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

footer{

    background:#003c7d;

    color:white;

}

footer h4{

    margin-bottom:20px;

}

footer a{

    color:white;

}

footer a:hover{

    color:#cfe3ff;

}

/* ======================
WHATSAPP
====================== */

.whatsapp{

    position:fixed;

    right:20px;

    bottom:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 5px 15px rgba(0,0,0,.25);

}

.whatsapp:hover{

    color:white;

    transform:scale(1.08);

}

/* ======================
BACK TO TOP
====================== */

#topBtn{

    position:fixed;

    bottom:95px;

    right:25px;

    display:none;

    z-index:999;

    border-radius:50%;

    width:50px;

    height:50px;

}

/* ======================
ANIMATION
====================== */

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}