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

body{
  font-family:'Poppins',sans-serif;
  line-height:1.6;
  color:#222;
  background:#fff;
}

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

header{
  position:fixed;
  width:100%;
  top:0;
  background:white;
  z-index:1000;
  border-bottom:1px solid #eee;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo{
  display:flex;
  gap:15px;
  align-items:center;
}

.logo-icon{
  width:50px;
  height:50px;
  background:#146c43;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:700;
}

.logo h1{
  font-size:18px;
}

.logo p{
  font-size:13px;
  color:#666;
}

nav{
  display:flex;
  gap:20px;
}

nav a{
  text-decoration:none;
  color:#222;
  font-weight:600;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#052e16,#000,#7f1d1d);
  color:white;
  padding-top:100px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  background:rgba(255,255,255,0.1);
  border-radius:999px;
  margin-bottom:20px;
}

.hero h2{
  font-size:64px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero p{
  font-size:20px;
  color:#ddd;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.btn{
  display:inline-block;
  padding:15px 25px;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
}

.primary{
  background:#facc15;
  color:black;
}

.secondary{
  border:1px solid white;
  color:white;
}

.hero-card{
  display:flex;
  justify-content:center;
}

.hero-box{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:30px;
  padding:50px;
  text-align:center;
  backdrop-filter:blur(10px);
}

.emoji{
  font-size:70px;
  margin-bottom:20px;
}

.stats{
  padding:80px 0;
  background:#f5f5f5;
}

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

.stat-card{
  background:white;
  padding:40px;
  border-radius:25px;
  text-align:center;
}

.stat-card h3{
  font-size:42px;
  color:#146c43;
}

.section{
  padding:100px 0;
}

.alt{
  background:#f8faf8;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  background:#dcfce7;
  color:#166534;
  padding:10px 18px;
  border-radius:999px;
  display:inline-block;
  margin-bottom:20px;
  font-weight:600;
}

.section-title h2{
  font-size:48px;
}

.lead{
  text-align:center;
  max-width:900px;
  margin:auto;
  color:#555;
  font-size:20px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:50px;
}

.feature{
  background:#f3f4f6;
  padding:25px;
  border-radius:20px;
  text-align:center;
  font-weight:600;
}

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

.card{
  background:white;
  padding:35px;
  border-radius:25px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.card h3{
  margin-bottom:15px;
}

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

.unit{
  background:#f3f4f6;
  padding:30px;
  border-radius:20px;
  font-weight:700;
}

.cta{
  background:linear-gradient(135deg,#166534,#7f1d1d);
  color:white;
  text-align:center;
  padding:100px 0;
}

.cta h2{
  font-size:54px;
  margin-bottom:20px;
}

.cta p{
  max-width:700px;
  margin:auto;
  margin-bottom:30px;
  color:#eee;
}

.contact-box{
  background:#f3f4f6;
  padding:40px;
  border-radius:25px;
  max-width:700px;
  margin:auto;
}

footer{
  background:black;
  color:white;
  text-align:center;
  padding:60px 0;
}

.copyright{
  margin-top:20px;
  color:#888;
}

@media(max-width:900px){

  .hero-grid,
  .card-grid,
  .unit-grid,
  .feature-grid,
  .stat-grid{
    grid-template-columns:1fr;
  }

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

  nav{
    display:none;
  }

  .section-title h2{
    font-size:36px;
  }

  .cta h2{
    font-size:40px;
  }
}
