/* .navbar__logo a {
  color: #00d084;
}
.navbar__menu { 
  background-color: #00d084;
}

.navbar__links a {
  color: #ffffff;
} */

.about-intro {
  /* padding: 8rem 2rem 0rem; */
  text-align: center;
}

.page-about .container {
	padding-top: 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 100px auto;
  max-width: 600px;
}

.about-intro .section-eyebrow {
  color: #00d084;
  font-weight: 600;
  /* margin-bottom: 1rem; */
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.about-intro .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  animation: slideInLeft 0.8s ease-out forwards;
}

.about-intro .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  animation: slideInRight 0.8s ease-out forwards;
}

.about-mission-vision {
  /* padding: 6rem 3.3rem;
  background: #fff; */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 40px 0; */
}

.about-flex {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 2rem  60px;
}

.about-box {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-box img.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-heading.green {
  color: #00d084;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
  /* margin-bottom: 1rem; */
  margin-top: -16px;
}

.about-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

.about-mission-vision .section-eyebrow {
  color: #4d4d4d;
  font-weight: 600;
  margin: 5px 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.about-mission-vision .vision_eyebrow {
    margin: 2.5rem 0 0;
}

.about-mission-vision p{ 
  color: #666;
}

.about-column {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.about-column:nth-child(2) {
  animation-delay: 0.2s;
}

.about-intro .section-eyebrow {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.about-team {
  padding: 5rem 2rem;
  text-align: center;
  padding: 80px 0;
  background-color: #f9f9f9;
}

.about-team .section-label {
  color: #00d084;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.about-team .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-team .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  /* max-width: 1280px;
  margin: 0 auto; */
}

.team-card {
  width: 385px;
  background: #f9f9f9;
  border-radius: 8px;
  /* padding: 2rem 1rem;
  text-align: left; */
}

.team-photo {
  width: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.team-role {
  color: #00d084;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.9rem;
  color: #666;
}


/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}

@media (max-width: 991px) {
  .about {
    flex-direction: column;
    align-items: center;
  }
}

.mission,
.vision {
  width: 630px;
}

@media (max-width: 991px) {

  .mission,
  .vision {
    width: 100%;
  }
}

.about-testimonials {
  padding: 6rem 2rem;
  background: #ffffff;
  text-align: center;
}

.about-testimonials .section-label {
  color: #00d084;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-testimonials .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-testimonials .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.testimonial-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #00d084;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #666;
}