*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#faf9f6;
color:#333;
line-height:1.6;
}

nav{
position:fixed;
top:0;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.1);
z-index:1000;
}

.nav-container{
max-width:1200px;
margin:auto;
padding:15px 25px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
height:90px;
width:auto;
}

.logo-text{
font-size:22px;
font-weight:600;
color:#556b5d;
}

.logo-text span{
font-size:14px;
font-weight:400;
}

.menu a{
margin-left:25px;
text-decoration:none;
color:#444;
font-weight:500;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
url('images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.hero-content h1{
font-size:60px;
}

.hero-content h2{
font-weight:300;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
}

.btn{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#6f8a72;
color:white;
text-decoration:none;
border-radius:30px;
}

.section{
padding:100px 20px;
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#556b5d;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-container img{
width:100%;
border-radius:15px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:15px;
}

.gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:10px;
}

.timings-box,
.contact-box{
background:white;
padding:30px;
max-width:600px;
margin:auto;
text-align:center;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
}

footer{
background:#44594b;
color:white;
text-align:center;
padding:25px;
}

@media(max-width:768px){

.nav-container{
flex-direction:column;
}

.menu{
margin-top:15px;
}

.hero-content h1{
font-size:40px;
}

.about-container{
grid-template-columns:1fr;
}

.logo img{
height:70px;
}
}