/* ===========================
   GOOGLE FONT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}

body{
overflow-x:hidden;
background:#fff;
color:#222;
}

/* ===========================
NAVBAR
=========================== */

.navbar{
padding:15px 0;
transition:.4s;
z-index:9999;
}

.navbar-brand{
font-size:28px;
font-weight:700;
}

.nav-link{
font-weight:600;
margin-left:20px;
color:#222!important;
}

.nav-link:hover{
color:#0d6efd!important;
}

/* ===========================
HERO
=========================== */

.hero{

padding:170px 0 120px;

background:

linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),

url("banner.jpg") center center/cover no-repeat;

color:#fff;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.2;

}

.hero p{

font-size:18px;

margin-top:20px;

margin-bottom:35px;

color:#ddd;

}

.hero img{

max-width:100%;

animation:float 3s infinite ease-in-out;

}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-10px);}

100%{transform:translateY(0);}

}

/* ===========================
BUTTONS
=========================== */

.btn-primary{

padding:13px 28px;

border-radius:50px;

font-weight:600;

}

.btn-outline-light{

padding:13px 28px;

border-radius:50px;

}

/* ===========================
ABOUT
=========================== */

#about img{

border-radius:20px;

}

#about h2{

font-weight:700;

margin-bottom:20px;

}

/* ===========================
SERVICES
=========================== */

.service-box{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.service-box:hover{

transform:translateY(-12px);

}

.service-box h4{

margin:20px 0;

font-weight:700;

}

/* ===========================
WHY CHOOSE
=========================== */

.choose-box{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.choose-box:hover{

transform:translateY(-8px);

}

/* ===========================
COUNTER
=========================== */

.counter-section{

background:#0d6efd;

color:#fff;

padding:80px 0;

}

.counter{

font-size:48px;

font-weight:700;

}

/* ===========================
TESTIMONIAL
=========================== */

.testimonial-box{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

height:100%;

text-align:center;

transition:.3s;

}

.testimonial-box:hover{

transform:translateY(-8px);

}

/* ===========================
CONTACT
=========================== */

#contact{

background:#f8f9fa;

}

iframe{

border-radius:15px;

}

/* ===========================
FOOTER
=========================== */

footer{

background:#111;

}

footer p{

margin-bottom:8px;

color:#ccc;

}

/* ===========================
FLOAT BUTTONS
=========================== */

.call-btn,

.whatsapp-btn{

position:fixed;

right:20px;

width:58px;

height:58px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:#fff;

z-index:9999;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.call-btn{

bottom:95px;

background:#0d6efd;

}

.whatsapp-btn{

bottom:25px;

background:#25D366;

}

/* ===========================
MOBILE BOTTOM MENU
=========================== */

.mobile-menu{

display:none;

}

@media(max-width:768px){

.mobile-menu{

position:fixed;

bottom:0;

left:0;

width:100%;

height:70px;

background:#fff;

display:flex;

justify-content:space-around;

align-items:center;

box-shadow:0 -5px 20px rgba(0,0,0,.15);

z-index:99999;

}

.mobile-menu a{

text-decoration:none;

color:#222;

display:flex;

flex-direction:column;

align-items:center;

font-size:12px;

font-weight:600;

}

.mobile-menu i{

font-size:20px;

margin-bottom:3px;

}

.center-call{

width:65px;

height:65px;

background:#0d6efd;

border-radius:50%;

display:flex!important;

justify-content:center;

align-items:center;

margin-top:-28px;

color:#fff!important;

box-shadow:0 10px 25px rgba(13,110,253,.35);

}

.center-call i{

margin:0;

font-size:28px;

}

body{

padding-bottom:80px;

}

.call-btn,

.whatsapp-btn{

display:none;

}

.hero{

padding:130px 0 80px;

text-align:center;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:16px;

}

.navbar-brand{

font-size:20px;

}

.nav-link{

margin-left:0;

}

.service-box,

.choose-box,

.testimonial-box{

margin-bottom:20px;

}

.counter{

font-size:34px;

}

}

/* ===========================
SECTION TITLE
=========================== */

section h2{

font-size:42px;

font-weight:700;

}

section h6{

font-weight:700;

letter-spacing:2px;

margin-bottom:10px;

}

@media(max-width:768px){

section h2{

font-size:30px;

}

}