.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-hero .highlight::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.about-hero .hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero-background {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/background/sterra_bg_2.jpg") no-repeat center
    center/cover;
  z-index: -1;
  /* opacity: 0.5; */
  background-attachment: fixed;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--gray-900);
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primary-light-blue);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 1rem 3rem;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-year {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  top: 1rem;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -50px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -50px;
}

.timeline-content {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.timeline-content h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

/* Mission & Values Section */
.mission-values {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background-color: var(--primary-blue);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.mission-card .section-title {
  color: white;
  margin-bottom: 1.5rem;
}

.values-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.value-item i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Leadership Team - Redesigned */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.leader-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: white;
}

.bg-blue {
  background-color: #0056b3;
}
.bg-green {
  background-color: #28a745;
}
.bg-purple {
  background-color: #6f42c1;
}
.bg-orange {
  background-color: #fd7e14;
}

.leader-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: #212529;
}

.position {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bio {
  color: #495057;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Awards & Recognition - Redesigned */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.award-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}

.gold {
  background-color: #ffc107;
}
.blue {
  background-color: #17a2b8;
}
.red {
  background-color: #dc3545;
}
.purple {
  background-color: #6f42c1;
}

.award-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.award-source {
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.award-desc {
  color: #495057;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .leader-profile {
    flex-direction: column;
    text-align: center;
  }

  .leader-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .award-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .award-badge {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

/* Community Involvement */
.community {
  padding: 5rem 0;
  background-color: var(--white);
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.community-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--primary-light-blue);
  border-radius: var(--radius-md);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* Call to Action */
.about-cta {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-dark-blue) 100%
  );
  color: white;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .mission-values-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    width: 100%;
    padding-left: 5rem;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: 1rem;
    right: auto;
  }
}

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

  .community-content {
    grid-template-columns: 1fr;
  }

  .community-image {
    order: -1;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 6rem 0 4rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

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

  .impact-stats {
    grid-template-columns: 1fr;
  }
}
