/* === CSS Variables === */
:root {
  --primary-green: #198754;
  --dark-green: #143e2f;
  --light-green: #eef5f1;
  --light-gray: #f8f9fa;
}

/* === Global Styles === */
body {
  font-family: "Inter", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === Hero Section === */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-us-banner.webp') center center / cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    margin: 10rem 0rem 1rem 0rem;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Section Headings === */
.section-subtitle {
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
}

/* === Our Story Section === */
.our-story {
  padding: 5rem 0;
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.story-img:hover {
  transform: scale(1.02);
}

/* === Mission & Vision === */
.mission-vision {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.mission-vision h3 {
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.mission-vision p {
  color: #555;
  font-size: 1.1rem;
}

.mission-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 400px;
  object-fit: cover;
  width: 100%;
}

/* === Core Values === */
.core-values {
  background-color: var(--light-green);
  padding: 5rem 0;
}

.value-card {
  border: none;
  border-radius: 12px;
  transition: all 0.4s ease;
  padding: 2rem 1.5rem;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card i {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.value-card p {
  color: #666;
  font-size: 0.95rem;
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-our.webp') center center / cover no-repeat;
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 5rem;
    color: #ffffff;
}

.cta-btn {
  background-color: white;
  color: var(--dark-green);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid #145C52;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-3px);
}

/* === Footer === */
/* .footer {
  background-color: var(--dark-green);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* === Responsive Fixes === *
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    background-attachment: scroll;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

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

  .story-img, .mission-img {
    height: 300px;
    margin-bottom: 2rem;
  }

  .value-card {
    margin-bottom: 1.5rem;
  }

  .footer {
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
  }

  .footer-bottom-links {
    margin-top: 1rem;
  }
} */

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

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

  .cta-section h2 {
    font-size: 2rem;
  }

  .our-story {
    padding-right: 15px;
    padding-left: 15px;
}

}
