.transformation-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-tag {
  color: #009245;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-heading h3 {
  font-size: 3rem;
  font-weight: 800;
}

.before-heading h3 {
  color: #dc3545;
}

.after-heading h3 {
  color: #198754;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  transition: 0.5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.gallery-img:hover {
  transform: translateY(-10px) scale(1.03);
}

.impact-block {
  text-align: center;
  padding: 80px 50px;
  margin: 80px 0;
  background: #111827;
  color: white;
  border-radius: 30px;
}

.impact-block span {
  color: #f5b400;
  letter-spacing: 3px;
  font-weight: 700;
}

.impact-block h2 {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0;
}

.impact-block p {
  max-width: 700px;
  margin: auto;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .gallery-heading h3 {
    font-size: 2rem;
  }

  .impact-block h2 {
    font-size: 2.5rem;
  }

  .gallery-img {
    height: 240px;
  }
}

.project-video-section {
  padding: 120px 0;
  background: #111827;
}

.video-content {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
  color: white;
}

.video-content span {
  color: #f5b400;
  font-weight: 700;
  letter-spacing: 3px;
}

.video-content h2 {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0;
}

.video-content p {
  opacity: 0.8;
  font-size: 1.1rem;
}

.video-wrapper video {
  width: 100%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .video-content h2 {
    font-size: 2.3rem;
  }

  .project-video-section {
    padding: 80px 0;
  }
}
.importance-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-subtitle {
  color: #009245;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.importance-section h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.section-description {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 40px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

.impact-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

.impact-card:hover {
  transform: translateY(-8px);
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.impact-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.impact-card p {
  color: #6b7280;
  margin: 0;
}

@media (max-width: 991px) {
  .importance-section h2 {
    font-size: 2.4rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }
}
.video-gallery-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-header {
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
}

.section-tag {
  color: #009245;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 20px 0;
}

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

.featured-video {
  grid-column: span 2;
}

.video-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.video-card video {
  width: 100%;
  display: block;
}

.featured-video video {
  height: 700px;
  object-fit: cover;
}

.video-card:not(.featured-video) video {
  height: 320px;
  object-fit: cover;
}

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

  .featured-video {
    grid-column: span 1;
  }

  .featured-video video {
    height: 350px;
  }

  .video-card video {
    height: 250px !important;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }
}
