* {
  font-family: 'Poppins', sans-serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;   /* left-right space increase */
}
/* HERO */
.hero-section {
  position: relative;
  height: 480px;
  background: url('/assets/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
}
.hero-btn {
  margin-top: 18px;
  display: inline-block;
  background: #2f8f44;
  padding: 12px 22px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
}

/* SERVICES */
.section-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .3s;
}
.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.service-card h3 {
  padding: 12px 15px 5px;
}
.service-card p {
  padding: 0 15px 15px;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* WHY CHOOSE US */
.why-section {
  background: #0f1720;
  padding: 50px 0;
  color: white;
}
.white { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 25px;
}
.why-box {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.why-icon {
  font-size: 38px;
}

/* CTA */
.cta-section {
  padding: 50px 0;
  background: #e8ffe8;
}
.cta-box {
  text-align: center;
}
.cta-btn {
  display: inline-block;
  margin-top: 14px;
  background: #2f8f44;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
}

/* ABOUT SECTION */
.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 50px 0;
}
.about-left {
  flex: 1;
}
.about-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.10);
}
@media(max-width:900px){
  .about-flex { flex-direction: column; text-align: center; }
}

/* TESTIMONIAL */
.testimonial {
  padding: 50px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}
.test-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform .3s;
}
.test-card:hover {
  transform: translateY(-6px);
}

/* CONTACT SECTION */
.contact-block {
  padding: 50px 0;
}
.contact-flex {
  display: flex;
  gap: 40px;
}
.contact-info {
  flex: 1;
  background: #f6fff6;
  padding: 25px;
  border-radius: 12px;
}
.contact-form {
  flex: 1;
}
@media(max-width:850px){
  .contact-flex { flex-direction: column; }
}

/* SIMPLE ANIMATIONS */
.fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
  width: 41%;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* FORM DESIGN */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f1720;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #cfd7df;
  background: #f7faff;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f8f44;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47,143,68,0.15);
  outline: none;
}

.form-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #2f8f44;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .3s ease;
}

.form-btn:hover {
  background: #256e36;
}

