/* About Page Styles (Clean Modern Light Theme) */

@media (max-width: 375px) {
  .about-hero .chip span.muted {
    display: inline !important;
  }
}

/* 2. Page Hero / Intro Banner */
.about-hero {
  padding: 7rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 84.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-bg);
  z-index: -1;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(-5vh);
  position: relative;
  z-index: 2;
}

.about-hero .btn-outline {
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #1E293B;
  backdrop-filter: blur(6px);
}

.about-hero .btn-outline:hover {
  background: #F8FAFC;
  border-color: var(--purple-vivid);
  color: var(--purple-accent);
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 85vh;
    padding: 7.5rem 1rem 3rem;
  }

  .about-hero-inner {
    transform: translateY(-2.5vh);
  }
}

/* 3. Our Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.story-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  border-left: 2px solid #CBD5E1;
  padding-left: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-accent);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.4);
}

.timeline-year {
  color: var(--purple-accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0F172A;
}

/* 4. Mission / Vision / Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-vivid);
  box-shadow: 0 16px 36px -4px rgba(46, 125, 50, 0.12);
}

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

/* 6. Team / Leadership */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.team-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px rgba(46, 125, 50, 0.15);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-socials-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-socials-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-socials-overlay .icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple-accent);
  border: none;
}

.team-socials-overlay .icon-btn:hover {
  background: var(--purple-vivid);
  color: #FFFFFF;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background: #FFFFFF;
  position: relative;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.35rem;
}

.team-role {
  color: var(--purple-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-img-wrap {
    aspect-ratio: 3/2;
  }

  .team-info {
    padding: 0.85rem 1rem;
  }

  .team-name {
    font-size: 0.95rem;
  }

  .team-role {
    font-size: 0.68rem;
  }
}

@media (max-width: 400px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .team-img-wrap {
    aspect-ratio: 1/1;
  }
}

/* 9. Certifications / Awards / Partnerships */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.award-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.award-card:hover {
  border-color: var(--purple-vivid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -4px rgba(46, 125, 50, 0.12);
}

.award-icon {
  color: var(--purple-accent);
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
}

.award-title {
  font-weight: 600;
  color: #0F172A;
  font-size: 1.1rem;
}

.award-org {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}