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

body{
font-family:'Poppins',sans-serif;
background:#FFFDD0;
color:#3b3b3b;
line-height:1.8;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

.main-header{
position:fixed;
top:0;
width:100%;
background:rgba(255,253,208,0.95);
backdrop-filter:blur(10px);
padding:22px 0;
z-index:999;
border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-section h1{
font-size:30px;
color:#658C50;
font-weight:700;
}

.logo-section span{
font-size:13px;
color:#7b8f5d;
letter-spacing:1px;
}

.navbar ul{
display:flex;
gap:35px;
list-style:none;
}

.navbar a{
text-decoration:none;
color:#4a4a4a;
font-weight:500;
transition:0.3s;
}

.navbar a:hover{
color:#658C50;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(255,253,208,0.75),rgba(255,253,208,0.88)),
url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1800&auto=format&fit=crop') center/cover;
}

.hero-content{
width:65%;
padding-top:80px;
}

.hero-tag{
color:#658C50;
font-size:18px;
font-weight:600;
margin-bottom:20px;
letter-spacing:2px;
text-transform:uppercase;
}

.hero h2{
font-size:72px;
line-height:1.1;
margin-bottom:25px;
color:#4a4a4a;
}

.hero h2 span{
color:#658C50;
}

.hero p{
font-size:20px;
color:#5b5b5b;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn-primary{
padding:16px 34px;
background:#658C50;
color:#fff;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
background:#4f6f3d;
}

.btn-secondary{
padding:16px 34px;
border:2px solid #658C50;
color:#658C50;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.stats{
padding:100px 0;
background:#B2C590;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat-box{
background:#fff;
padding:40px;
border-radius:22px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
text-align:center;
}

.stat-box h3{
font-size:52px;
color:#658C50;
margin-bottom:10px;
}

.page-section{
padding:120px 0;
}

.section-title{
font-size:52px;
margin-bottom:20px;
color:#658C50;
}

.card-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.card{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 12px 40px rgba(0,0,0,0.06);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#658C50;
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:18px;
margin-bottom:20px;
}

.contact-box{
background:#658C50;
padding:60px;
border-radius:30px;
color:#fff;
margin-top:40px;
}

footer{
background:#658C50;
padding:50px 0;
text-align:center;
color:#fff;
}

.page-banner{
padding:200px 0 120px;
background:#B2C590;
text-align:center;
}

.page-banner h1{
font-size:62px;
color:#4a4a4a;
}

.page-banner p{
font-size:20px;
margin-top:15px;
}

@media(max-width:992px){

.hero-content{
width:100%;
}

.hero h2{
font-size:48px;
}

.card-grid,
.stats-grid{
grid-template-columns:1fr;
}

.navbar{
display:none;
}

}
