
/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

/* LEFT */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1f3a;
  line-height: 1.25;
  margin-right: 78px;
  margin-bottom: 30px;

}

.section-text {
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
}

.learn-more {
  color: #0aa35c;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-more span {
  transition: transform 0.3s ease;
}

.learn-more:hover span {
  transform: translateX(6px);
}

/* IMAGE */
.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* BADGE */
.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #0aa35c;
  color: #fff;
  padding: 30px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.experience-badge p {
  font-size: 13px;
  letter-spacing: 1px;
  margin: 6px 0 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .experience-badge {
    left: 20px;
    bottom: -20px;
  }
}
.stats-section {
  padding: 80px 0;
  background: #f9fbfc; /* very light background */
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0a8f5c; /* green like image */
  margin-bottom: 8px;
}

.stat-item h2 span {
  font-size: 28px;
  font-weight: 600;
}

.stat-item p {
  font-size: 13px;
  letter-spacing: 2px;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-item {
    margin-bottom: 40px;
  }
}



.why-us-section {
  padding: 90px 0;
  background: #f9fbfc;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0b1b2a;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #eafaf2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-box img {
  width: 32px;
}

.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b1b2a;
}

.why-card p {
  font-size: 14px;
  color: #5f6f81;
  line-height: 1.6;
}
.icon-box i {
  font-size: 30px;
  color: #0fa76f;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .about-section{
    margin-top: 5%;
  }
}
