/* ================= PAGE HERO ================= */

.page-hero {
  padding: 100px 64px 70px;
  background-color: #9ca371;
  text-align: center;
}

.page-hero h1 {
  font-size: 52px;
  color: #222;
  margin-bottom: 12px;
}

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


/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 90px 64px;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}


/* ================= SERVICE CARD ================= */

.service-card {
  background-color: #fdfdfd;
  padding: 50px;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  border: 3px solid #3a3535;
  transition: transform 0.25s ease, box-shadow 0.25s ease , border-color 0.25s ease;
}

.service-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: #000000;
}

.service-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}


/* ================= CTA STRIP ================= */

.cta-strip {
  background-color: #7b8f3a;
  padding: 50px 64px;
  width: 100%;
  box-sizing: border-box;   /* 🔑 MOST IMPORTANT */
  overflow: hidden;         /* 🔑 kuch bhi bahar na nikle */
}

.cta-strip-inner {
  max-width: 1200px;        /* 🔑 content limit */
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  box-sizing: border-box;
}

.cta-text h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 18px;
  color: #eef3dd;
}

.cta-strip-btn {
  background-color: #ffffff;
  color: #74863d;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;

  white-space: nowrap;
  flex-shrink: 0;           /* 🔑 button kabhi compress nahi hoga */
}



/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .services-section {
    padding: 80px 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-card {
    padding: 40px;
  }

  .page-hero {
    padding: 90px 40px 60px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 24px 50px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .services-section {
    padding: 70px 24px;
  }

  .service-card {
    padding: 32px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 16px;
  }
  .cta-strip {
    padding: 40px 24px;
  }
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }


}


/* Small Phones */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .cta-text h3 {
    font-size: 22px;
  }

  .cta-text p {
    font-size: 16px;
  }
}
