html {
  scroll-behavior: smooth !important;
}

.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 8%;
  padding-bottom: 0.1rem;
  gap: 4rem;
  background-color: #f9f9f9;
  /* background-color: #f4f1e8; */
  min-height: 10vh; 
}



.about-hero-content {
  flex: 1.3;
  max-width: 700px;
}

.about-hero-content h2 {
  font-size: 4rem;   /* big bold heading */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.about-hero-content h2 span {
  color: #0b5e4f;
}

.about-hero-content p {
  font-size: 1.8rem;   /* larger body text */
  line-height: 2.2rem;
  margin-bottom: 2.5rem;
  color: #444;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1.3rem;
  background-color: #0b5e4f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #0b5e4f;
}

.about-hero-image {
  flex: 1;
  text-align: center;
}

.about-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); */
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 2.2rem;
  color: #0b5e4f;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0b5e4f, #f4a261);
  border-radius: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #0b5e4f;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
  font-size: 1.4rem;
  color: #0b5e4f;
  margin-bottom: 12px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.highlight {
  color: #0b5e4f;
  font-weight: 600;
}

/* ===============================================
   STATISTICS SECTION
   =============================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #f4f1e8 0%, #faf8f3 100%);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0b5e4f;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* ===============================================
   CORE VALUES SECTION
   =============================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
}

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

.value-item h4 {
  color: #0b5e4f;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===============================================
   CALL-TO-ACTION SECTION
   =============================================== */

.cta-section {
  background: linear-gradient(135deg, #0b5e4f 0%, #094c3e 100%);
  color: white;
  padding: 60px 24px;
  text-align: center;
  margin-top: 60px;
  border-radius: 12px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 30px;
}

.cta-section h2::after {
  background: linear-gradient(90deg, white, #f4a261);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 30px;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-btn:hover {
  background: white;
  color: #0b5e4f;
}

.cta-btn.primary {
  background: white;
  color: #0b5e4f;
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
  /* .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  } */

  .about-section h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .cta-btn {
    width: 100%;
  }
}
