/* ── Banner animations (fire on page load) ─────────────────── */
@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-animate-title {
  animation: bannerFadeUp 0.75s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.banner-animate-text {
  animation: bannerFadeUp 0.75s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}

/* ── Scroll-triggered fade-in (driven by IntersectionObserver) ─ */
.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-image {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in-image.is-visible {
  opacity: 1;
}

/* ── Banner ─────────────────────────────────────────────────── */
.banner-what-we-do {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0b6b3a;
}

.banner-what-we-do .bg-overlay {
  position: absolute;
  inset: 0;
  background: url("../images/Landing-baner.jpeg") center / cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}

.banner-what-we-do .base-container {
  position: relative;
  z-index: 1;
}

/* ── Section label (eyebrow text) ──────────────────────────── */
.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 700;
  color: #0b6b3a;
  margin-bottom: 10px;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.65);
}

.facilitates-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.facilitates-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #e5ece5;
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}

.facilitates-list li:last-child {
  border-bottom: none;
}

.facilitates-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #0b6b3a
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4l3.5 3.5L11 1' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 12px no-repeat;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Approach cards grid ───────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}

@media (max-width: 767px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.approach-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #0b6b3a;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.approach-card:hover {
  box-shadow: 0 6px 28px rgba(11, 107, 58, 0.14);
  transform: translateY(-3px);
}

.approach-card-number {
  font-size: 36px;
  font-weight: 800;
  color: #d6ead6;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.approach-card h4 {
  color: #0b6b3a;
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 0;
}

.approach-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
}

.where-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  color: white;
}

@media (max-width: 767px) {
  .where-list {
    grid-template-columns: 1fr;
  }
}

.where-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color:white;
  line-height: 1.65;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.where-list li::before {
  content: "▸";
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.benefit-card:hover {
  box-shadow: 0 6px 24px rgba(11, 107, 58, 0.12);
  transform: translateY(-3px);
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card h5 {
  color: #0e3d22;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}

.benefit-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.sdg-table-wrapper {
  overflow-x: auto;
  margin-top: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.sdg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.sdg-table thead th {
  background: #0b6b3a;
  color: #fff;
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sdg-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.sdg-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.sdg-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid #eaf0ea;
  vertical-align: top;
  line-height: 1.65;
  color: #444;
}

.sdg-table tbody tr:last-child td {
  border-bottom: none;
}

.sdg-table tbody tr:nth-child(even) td {
  background: #f7faf7;
}

.sdg-table tbody tr:hover td {
  background: #edf6ef;
}

.sdg-badge {
  display: inline-block;
  background: #0b6b3a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.sdg-label {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 3px;
}

.cta-button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-button-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.primary-button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
