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

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

color:#222;

overflow-x:hidden;

}

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

.navbar{

padding:18px 0;

transition:.4s;

}

.logo{

height:75px;

}

.nav-link{

font-weight:500;

margin-left:20px;

position:relative;

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

height:2px;

width:0;

background:#0d6efd;

transition:.4s;

}

.nav-link:hover::after{

width:100%;

}

.btn-primary{

border-radius:50px;

padding:12px 30px;

}

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

.hero{

position:relative;

background:url("../images/hero-bg.jpg");

background-size:cover;

background-position:center right;

min-height:95vh;

display:flex;

align-items:center;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

90deg,

rgba(18,32,60,.60) 0%,

rgba(18,32,60,.35) 45%,

rgba(255,255,255,.05) 100%

);

}

.hero .container{

position:relative;

z-index:2;

}

.hero-tag{

display:inline-block;

background:#0d6efd;

padding:10px 18px;

border-radius:40px;

color:white;

margin-bottom:25px;

font-size:15px;

}

.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.05;
    color:white;
    margin-bottom:25px;
}

.hero h1 span{

display:block;

color:#ffd24d;

}

.hero p{
    font-size:22px;
    color:#fff;
    max-width:580px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:35px;

}

.hero-buttons .btn{
    padding:16px 40px;
    font-size:18px;
    font-weight:600;
}

.hero-points{

display:flex;

gap:30px;

flex-wrap:wrap;

color:white;

font-weight:500;

}

.hero-points i{

color:#00d084;

margin-right:8px;

}

.btn-light{

border-radius:50px;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.hero{

text-align:center;

padding:100px 0;

}

.hero h1{

font-size:45px;

}

.hero-buttons{

justify-content:center;

}

.hero-points{

justify-content:center;

}

}

/*==================================
FEATURES
==================================*/

.features{

margin-top:-70px;

position:relative;

z-index:5;

}

.feature-card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.feature-card i{

font-size:48px;

color:#0d6efd;

margin-bottom:20px;

}

.feature-card h4{

font-weight:700;

margin-bottom:15px;

}

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

.services{

padding:120px 0;

background:#f8fbff;

}

.section-subtitle{

display:inline-block;

color:#0d6efd;

font-weight:700;

letter-spacing:2px;

margin-bottom:15px;

}

.section-title{

font-size:48px;

font-weight:700;

margin-bottom:15px;

}

.services p{

color:#666;

}

.service-card{

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card img{

width:100%;

height:230px;

object-fit:cover;

}

.service-content{

padding:25px;

}

.service-content h4{

font-weight:700;

margin-bottom:12px;

}

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

.why-us{

padding:120px 0;

background:white;

}

.why-list{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-top:30px;

}

.why-list div{

font-weight:500;

}

.why-list i{

color:#0d6efd;

margin-right:10px;

}

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

.counter-section{

background:#0d6efd;

padding:70px 0;

color:white;

}

.counter-section h2{

font-size:55px;

font-weight:700;

}

.counter-section p{

font-size:18px;

margin-top:10px;

}

/*=========================
WORKS
=========================*/

.works{

padding:120px 0;

background:#f8fbff;

}

.work-card{

background:white;

padding:40px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.work-card:hover{

transform:translateY(-10px);

}

.work-icon{

height:90px;

width:90px;

margin:auto;

border-radius:50%;

background:#0d6efd;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.work-icon i{

font-size:35px;

color:white;

}

/*=========================
GALLERY
=========================*/

.gallery{

padding:120px 0;

background:white;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.gallery-item img{

width:100%;

height:320px;

object-fit:cover;

transition:.5s;

}

.gallery-overlay{

position:absolute;

inset:0;

background:rgba(13,110,253,.75);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.4s;

}

.gallery-overlay h4{

color:white;

font-size:30px;

font-weight:700;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}
/*=========================
TESTIMONIALS
=========================*/

.testimonials{

padding:120px 0;

background:#f8fbff;

}

.testimonial-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

height:100%;

}

.stars{

color:#ffc107;

font-size:22px;

margin-bottom:20px;

}

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

.contact-section{

padding:120px 0;

}

.contact-box{

margin-top:30px;

}

.contact-box p{

font-size:18px;

margin-bottom:20px;

}

.contact-box i{

color:#0d6efd;

margin-right:12px;

}

.form-control{

padding:15px;

border-radius:12px;

}

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

.footer{

background:#0d47a1;

color:white;

padding:70px 0;

}

.footer p{

margin-bottom:10px;

}

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

.whatsapp{

position:fixed;

right:30px;

bottom:30px;

height:70px;

width:70px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:36px;

color:white;

text-decoration:none;

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

z-index:9999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.12);

color:white;

}