.school-hero {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: #e8f7ef;
  color: #009245;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  margin-bottom: 25px;
}

.hero-title span {
  display: block;
  color: #009245;
}

.hero-description {
  color: #6b7280;
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-features {
  margin-bottom: 40px;
}

.feature-item {
  margin-bottom: 12px;
  color: #111827;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #009245;
  color: white;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.4s;
}

.btn-primary-custom:hover {
  background: #007c3c;
  color: white;
}

.btn-secondary-custom {
  border: 2px solid #009245;
  color: #009245;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.4s;
}

.btn-secondary-custom:hover {
  background: #009245;
  color: white;
}

/* IMAGE SIDE */

.hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  position: relative;
}

.main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-image {
  position: relative;
}

.small-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.main-image:hover img,
.small-image:hover img {
  transform: translateY(-5px);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.small-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .school-hero {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-gallery {
    margin-top: 50px;
  }

  .main-image img {
    height: 350px;
  }

  .small-image img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    text-align: center;
  }

  .bottom-images {
    grid-template-columns: 1fr;
  }

  .main-image img {
    height: 280px;
  }

  .small-image img {
    height: 220px;
  }
}

.school-need-section {
  padding: 120px 0;
  background: #ffffff;
}

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

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

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

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

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

.challenge-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid #edf2f7;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

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

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

@media (max-width: 991px) {
  .school-need-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
  }
}
.transformation-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-header {
  max-width: 850px;
  margin: auto;
  margin-bottom: 80px;
}

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

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

.section-header p {
  color: #6b7280;
  line-height: 1.8;
}

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

.gallery-heading span {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.before-heading span {
  background: #fee2e2;
  color: #dc2626;
}

.after-heading span {
  background: #dcfce7;
  color: #16a34a;
}

.gallery-heading h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

.gallery-img:hover {
  transform: translateY(-8px);
}

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

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

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

.impact-highlight p {
  max-width: 750px;
  margin: auto;
  opacity: 0.85;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .transformation-section {
    padding: 80px 0;
  }

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

  .gallery-heading h3 {
    font-size: 2rem;
  }

  .impact-highlight h2 {
    font-size: 2.3rem;
  }

  .gallery-img {
    height: 250px;
  }
}
.appreciation-section {
  padding: 120px 0;
  background: #ffffff;
}

.letter-wrapper {
  background: white;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.letter-wrapper img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

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

.appreciation-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 25px;
}

.appreciation-section p {
  color: #6b7280;
  line-height: 1.9;
}

.quote-box {
  margin: 30px 0;
  padding: 25px;
  background: #f8fafc;
  border-left: 5px solid #009245;
  border-radius: 15px;
  font-style: italic;
  color: #374151;
}

.view-letter-btn {
  display: inline-block;
  background: #009245;
  color: white;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
}

.view-letter-btn:hover {
  color: white;
  background: #007d3b;
}

@media (max-width: 991px) {
  .appreciation-section {
    padding: 80px 0;
  }

  .appreciation-section h2 {
    font-size: 2.2rem;
  }
}
