/* ===========================
   SERVICES PAGE
=========================== */

.service-banner{

background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url("../images/service-banner.jpg");

background-size:cover;
background-position:center;
padding:130px 0;
text-align:center;

}

.service-banner h1{

color:#fff;
font-size:60px;
font-weight:700;
margin-bottom:20px;

}

.service-banner p{

color:#ddd;
font-size:22px;

}

/* Card */

.service-card{

border:none;
border-radius:15px;
overflow:hidden;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.service-card:hover{

transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.service-card img{

height:240px;
object-fit:cover;
transition:.5s;

}

.service-card:hover img{

transform:scale(1.08);

}

.service-card .card-body{

padding:25px;

}

.service-card h4{

font-weight:700;
margin-bottom:15px;

}

.service-card p{

color:#666;
line-height:28px;

}

/* Icon */

.service-icon{

height:240px;

display:flex;

justify-content:center;

align-items:center;

background:#d4af37;

}

.service-icon i{

font-size:80px;

color:#fff;

}

/* Buttons */

.btn-warning{

background:#d4af37;
border:none;

}

.btn-warning:hover{

background:#b8860b;

}

/* Breadcrumb */

.breadcrumb{

font-size:16px;

}

.breadcrumb a{

text-decoration:none;

}

/* Search */

input.form-control{

height:55px;

}

/* Floating Buttons */

.whatsapp{

position:fixed;

bottom:20px;

right:20px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:28px;

z-index:999;

text-decoration:none;

box-shadow:0 10px 20px rgba(0,0,0,.3);

}

.call{

position:fixed;

bottom:90px;

right:20px;

width:60px;

height:60px;

background:#000;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:26px;

z-index:999;

text-decoration:none;

}

/* CTA */

.cta{

background:#111;

padding:80px 0;

color:#fff;

text-align:center;

}

.cta h2{

font-size:42px;

margin-bottom:20px;

}

.cta p{

font-size:20px;

margin-bottom:30px;

}

/* Why Choose */

.why{

padding:80px 0;

}

.why-box{

text-align:center;

padding:30px;

border-radius:15px;

background:#fff;

transition:.4s;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.why-box:hover{

background:#d4af37;

color:#fff;

transform:translateY(-8px);

}

.why-box i{

font-size:50px;

margin-bottom:20px;

}

/* Mobile */

@media(max-width:768px){

.service-banner{

padding:90px 0;

}

.service-banner h1{

font-size:38px;

}

.service-banner p{

font-size:18px;

}

}