/* About Page Styles */

/* 2. Page Hero / Intro Banner */
.about-hero {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  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(-8vh);
}

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

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

/* 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 rgba(226, 232, 240, 0.45);
  padding-left: 2.25rem;
  margin-top: 3rem;
  position: relative;
}

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

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.35rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00A86B;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(200, 255, 224, 0.4), 0 0 10px rgba(0, 210, 106, 0.4);
  z-index: 2;
}

.timeline-year {
  color: var(--cyan-vivid);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

/* 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 var(--border);
  border-radius: var(--radius);
  background: var(--cyan-soft);
  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(--border-bright);
  box-shadow: var(--shadow-glow);
}

.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(--cyan-accent);
  border: none;
}

.team-socials-overlay .icon-btn:hover {
  background: var(--cyan-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(--cyan-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: repeat(2, 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: 450px) {
  .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: 2.25rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.award-icon {
  color: var(--cyan-accent);
  margin-bottom: 1.25rem;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.award-card:hover .award-icon {
  transform: scale(1.08);
}

.award-title {
  font-weight: 600;
  color: var(--fg);
  font-size: 1.1rem;
}

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