/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f4f4f4;

}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 520px;
  background: url('../images/copper.jpeg') center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 120px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ---------- FLOATING CARD ---------- */
.about-card {
  max-width: 980px;
  margin: -140px auto 0; /* 🔧 GAP FIX */
  background: #fff;
  border-radius: 18px;
  padding: 48px 60px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-card h2 {
  font-size: 24px;
  color: #1f6f43;
  margin-bottom: 10px;
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 3px;
  background: #1f6f43;
  margin: 10px auto 20px;
  border-radius: 3px;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ---------- WASTE BASE SECTION ---------- */
.waste-vm-section {
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}

/* ---------- STRIP BASE ---------- */
.waste-vm-strip {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  
}

/* remove first-strip extra space */
.waste-vm-strip:first-child {
  padding-top: 20px;
}

.waste-vm-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ---------- ICON ---------- */
.waste-icon {
  flex: 0 0 90px;
}

.waste-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ---------- CONTENT ---------- */
.waste-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 600;
  color:white;
}

.waste-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 900px;
   color:white;
}

/* ---------- BACKGROUND COLORS ---------- */
.wf1 { background: #1F6F43; } 
.wf2 { background: #4CAF50; } 
.wf3 { background: #2F4F3E; } 
.wf4 { background: #2E2E2E; } 
.wf5 { background: #1F9D49; } 
.wf6 { background: #2A7FFF; } 
.wf7 { background: #1C1C1C; }
/* ==== FORCE REMOVE GAP BETWEEN ABOUT & WASTE ==== */
.about-card {
  margin-bottom: 100px !important;
}

.about-card + section,
.about-card + .waste-vm-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* If theme adds wrapper spacing */
section {
  margin-top: 0;
}

/* FINAL HARD FIX (last resort but safe) */
.waste-vm-section {
  margin-top: -40px;
}
/* ==== FIX GAP BETWEEN LAST WASTE STRIP & FOOTER ==== */

/* Remove bottom padding from last strip */
.waste-vm-strip:last-child {
  padding-bottom: 20px;
}

/* Remove extra space after waste section */
.waste-vm-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* If footer has default top margin */
footer {
  margin-top: 0 !important;
}



/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .about-card {
    margin: -70px 16px 0;
    padding: 30px 22px;
  }

  .waste-vm-inner {
    flex-direction: column;
    text-align: center;
  }

  .waste-vm-strip {
    padding: 24px 16px;
  }

  .waste-vm-strip:first-child {
    padding-top: 16px;
  }

  .waste-icon img {
    width: 70px;
    height: 70px;
  }

  .waste-content h3 {
    font-size: 22px;
  }

  .waste-content p {
    font-size: 15px;
  }
}
