/* ======================
   Global
====================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#ffffff;
color:#333;
line-height:1.7;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:2.5rem;
color:#0d6efd;
position:relative;
display:inline-block;
}

.section-title h2::after{
content:"";
width:80px;
height:4px;
background:#2ea44f;
position:absolute;
bottom:-12px;
left:50%;
transform:translateX(-50%);
border-radius:20px;
}

/* ======================
 Hero
====================== */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),
rgba(0,0,0,.55)),
url("Home2.jpg");
background-size:cover;
background-position:center;
position:relative;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.logo-box{
position:absolute;
top:25px;
left:50%;
transform:translateX(-50%);
}

.logo-box img{
width:180px;
background:white;
padding:10px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.hero-content{
max-width:900px;
padding:20px;
color:white;
}

.hero-content h1{
font-size:3.5rem;
font-weight:800;
margin-bottom:20px;
animation:fadeUp 1s ease;
}

.hero-content p{
font-size:1.2rem;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.btn{
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.4s;
}

.primary{
background:#2ea44f;
color:white;
}

.secondary{
background:white;
color:#0d6efd;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* ======================
 Glass Card
====================== */

.glass-card{
background:rgba(255,255,255,.75);
backdrop-filter:blur(10px);
padding:40px;
border-radius:25px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* ======================
 Services
====================== */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:40px;
text-align:center;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:3rem;
color:#0d6efd;
margin-bottom:20px;
}

/* ======================
 Features
====================== */

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature-card{
background:white;
padding:35px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
}

.feature-card:hover{
transform:translateY(-10px);
}

.feature-card i{
font-size:3rem;
color:#2ea44f;
margin-bottom:20px;
}

/* ======================
 Gallery
====================== */

.gallery{
background:#f7fafc;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.gallery-grid img{
height:280px;
width:100%;
object-fit:cover;
border-radius:20px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* ======================
 Contact
====================== */

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.contact-card{
padding:40px;
background:white;
border-radius:25px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-card i{
font-size:3rem;
color:#0d6efd;
margin-bottom:20px;
}

/* ======================
 Map
====================== */

.map-wrapper{
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.map-wrapper iframe{
width:100%;
height:500px;
border:none;
}

/* ======================
 WhatsApp
====================== */

.whatsapp-btn{
position:fixed;
left:20px;
bottom:25px;
width:70px;
height:70px;
background:#25d366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:35px;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
animation:
pulse 2s infinite,
bounce 3s infinite;
}

.whatsapp-btn:hover{
transform:scale(1.1);
}

/* ======================
 Footer
====================== */

footer{
background:#0e1a2b;
color:white;
text-align:center;
padding:60px 20px;
}

footer h3{
margin-bottom:20px;
}

footer p{
margin:10px 0;
opacity:.9;
}

.copyright{
margin-top:25px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.15);
}

/* ======================
 Animations
====================== */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 20px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@keyframes bounce{

0%,20%,50%,80%,100%{
transform:translateY(0);
}

40%{
transform:translateY(-10px);
}

60%{
transform:translateY(-5px);
}

}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ======================
 Responsive
====================== */

@media(max-width:768px){

.hero-content h1{
font-size:2.2rem;
}

.section{
padding:70px 0;
}

.logo-box img{
width:140px;
}

.map-wrapper iframe{
height:350px;
}

.whatsapp-btn{
width:60px;
height:60px;
font-size:30px;
}

}