*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f9f9f9;
  color:#333;
}

/* ================= HEADER ================= */
.header{
  background:#1e7a2e;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:10px 20px;
}

.logo{
  font-size:28px;
  font-weight:600;
  color:#fff;
}

.logo span{ color:#e30c0c; }

.header nav{
  margin-top:3px;
}

.header nav a{
  margin:0 12px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
}

/* ================= HERO ================= */
.hero{
  min-height:auto;
  padding-top:25px;
  padding-bottom:10px;   /* 👈 pehle ka ~15% gap */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  background:#fff;
}

.hero h1{
  font-size:34px;
  margin-bottom:6px;
}

.hero p{
  font-size:16px;
  max-width:520px;
  margin-bottom:14px;
}

/* ================= BUTTONS ================= */
.btn-group{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:65px;     /* 👈 15% spacing retained */
}

.btn{
  padding:20px 60px;
  font-size:28px;
  border-radius:50px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.red{
  background:linear-gradient(135deg,#1aecff,#844dff);
  box-shadow:0 8px 18px rgba(255,0,0,0.35);
}

.btn:hover{
  transform:translateY(-2px);
}

/* ================= ABOUT ================= */
.about{
  padding-top:14px;     /* 👈 pehle ka ~15% gap */
  padding-bottom:40px;
  text-align:center;
  background:#f2f2f2;
}

.about h2{
  font-size:26px;
  margin-bottom:8px;
}

.about p{
  margin-top:0;
}

/* ================= FOOTER ================= */
footer{
  background:#111;
  color:#ccc;
  text-align:center;
  padding:20px;
}

footer .social{
  margin-bottom:6px;
}

footer .social a{
  margin:0 8px;
  color:#4cc9a6;
  text-decoration:none;
}

/* ================= RESPONSIVE ================= */
@media(max-width:600px){
  .hero h1{
    font-size:26px;
  }

  .btn{
    padding:18px 40px;
    font-size:28px;
  }
}
.footer {
  background: #1e7a2e;
  color: #ccc;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 260px;
}

.footer-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.icon {
  background: #1f2225;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.footer-left a {
  color: #4da3ff;
  text-decoration: none;
}

.footer-right h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-right p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #1f2225;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
}

.social-icons a:hover {
  background: #4da3ff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

/* HEADER */
.site-header{
  background:#1e7a2e;
  width:100%;
}

/* TOP BAR */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  max-width:1200px;
  margin:auto;
}

/* LOGO */
.logo{
  color:#fff;
  font-size:26px;
  font-weight:700;
}

/* ICON BUTTONS */
.icon-btn{
  width:42px;
  height:42px;
  background:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  cursor:pointer;
}

/* MOBILE MENU */
.mobile-menu{
  display:none;
  flex-direction:column;
  background:#1e7a2e;
}

.mobile-menu a{
  color:#fff;
  text-decoration:none;
  padding:14px 20px;
  border-top:1px solid rgba(255,255,255,0.3);
}

/* SHOW MENU */
.mobile-menu.show{
  display:flex;
}

/* DESKTOP VIEW */
@media(min-width:768px){

  .icon-btn{
    display:none;
  }

  .header-inner{
    justify-content:center;
  }

  .mobile-menu{
    display:flex;
    flex-direction:row;
    justify-content:center;
    background:#1e7a2e;
  }

  .mobile-menu a{
    color:#fff;
    border:none;
    padding:14px 18px;
    font-weight:500;
  }

  .mobile-menu a:hover{
    background:rgba(255,255,255,0.2);
    border-radius:6px;
  }
}
