body{
margin:0;
}

/* Google font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

/* BODY */

body{
background:linear-gradient(135deg,#f8fffb,#e8fff4);
color:#1a1a1a;
}

/* NAVBAR */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 100px;
background:#dff5ec;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

nav a{
margin-left:20px;
padding:10px 20px;
text-decoration:none;
color:white;
background:#00b36b;
font-weight:500;
border-radius:30px;
transition:all 0.3s ease;
}

nav a:hover{
background:#00d67f;
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,179,107,0.35);
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:15px;
font-weight:600;
font-size:22px;
color:#00b36b;
}

.logo img{
height:70px;
width:auto;
object-fit:contain;
}

/* HERO SECTION WITH VIDEO */

.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
filter:brightness(0.5);
}

.hero-content{
position:relative;
z-index:1;
color:white;
max-width:800px;
}

.hero h1{
font-size:64px;
margin-bottom:20px;
font-weight:600;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

/* BUTTON */

button{
padding:15px 35px;
font-size:16px;
font-weight:500;
border:none;
border-radius:40px;
background:linear-gradient(90deg,#00b36b,#00e68a);
color:white;
cursor:pointer;
transition:all 0.3s ease;
box-shadow:0 5px 15px rgba(0,179,107,0.4);
}

button:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,179,107,0.6);
}

/* STATS */

.stats{
display:flex;
justify-content:center;
gap:40px;
padding:80px 60px;
background:#f6fffb;
flex-wrap:wrap;
}

.stat-card{
background:white;
padding:40px 60px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

.stat-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.stat-card h2{
font-size:42px;
color:#00b36b;
margin-bottom:10px;
}

.stat-card p{
font-size:18px;
color:#555;
}

/* SERVICES */

#services{
padding:100px 60px;
text-align:center;
background: #dff5ec;
}

.section-title{
font-size:42px;
margin-bottom:60px;
color:#222;
}

.services-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
max-width:1100px;
margin:auto;
}

.service-card{
background:white;
padding:40px;
width:300px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.service-card h3{
margin-bottom:10px;
color:#00b36b;
}

.service-card p{
color:#555;
}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* GALLERY */

#gallery{
padding:80px;
text-align:center;
background:#f6fffb;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.gallery img{
width:100%;
height:200px;
object-fit:cover;
border-radius:15px;
cursor:pointer;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* IMAGE MODAL */

.modal{
display:none;
position:fixed;
z-index:9999;
padding-top:60px;
left:0;
top:0;
width:100%;
height:100%;
background-color:rgba(0,0,0,0.9);
}

.modal-content{
margin:auto;
display:block;
max-width:80%;
max-height:80%;
border-radius:10px;
}

.close{
position:absolute;
top:20px;
right:40px;
color:white;
font-size:40px;
font-weight:bold;
cursor:pointer;
}

/* REVIEWS */

#reviews{
padding:80px;
background:#dff5ec;
text-align:center;
}

.reviews-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
max-width:1100px;
margin:auto;
}

.review-card{
background:white;
width:300px;
padding:30px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:left;
transition:0.3s;
}

.review-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.google-badge{
font-size:14px;
font-weight:600;
color:#4285F4;
margin-bottom:10px;
}

.review-card p{
color:#555;
margin-bottom:10px;
}

.stars{
color:#fbbc05;
margin-bottom:10px;
}

/* LOCATION + CONTACT */

#location{
padding:80px;
background:white;
}

.location-container{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
max-width:1000px;
margin:auto;
}

.map-card{
background:#f6fffb;
padding:30px;
border-radius:16px;
width:350px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.map-card h3{
color:#00b36b;
margin-bottom:10px;
}

.map-card p{
color:#555;
line-height:1.6;
margin-bottom:20px;
}

.map-button{
display:inline-block;
background:#00b36b;
color:white;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
}

.map-button:hover{
background:#00995a;
}

.contact-card{
background:#f8fffb;
padding:30px;
border-radius:16px;
width:350px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3{
margin-bottom:15px;
color:#00b36b;
}

.contact-card p{
margin-bottom:10px;
color:#555;
}

/* CONTACT FORM */

#contact{
padding:80px;
text-align:center;
background:white;
}

form{
margin-top:30px;
}

form input{
display:block;
margin:15px auto;
padding:14px;
width:280px;
border-radius:10px;
border:1px solid #ddd;
background:white;
color:#333;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:16px 22px;
border-radius:40px;
font-weight:500;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:0.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/* SMOOTH SCROLL */

html{
scroll-behavior:smooth;
}

h2{
font-weight:600;
letter-spacing:0.5px;
}