/* ABOUT PAGE STYLES */
:root {
  /* Brand Colors */
  --primary: #2a9d8f;
  --secondary: #e76f51;
  --yellow: #e9c46a;
  --purple: #423e85;

  /* Neutral Tones */
  --cream: #f4f1de;
  --muted: #6b6b6b;
  --head: #264653;
  --card: #ffffff;

  /* Layout */
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

/* Base */
body {
  font-family: "Inter", sans-serif;
  color: #444;
  line-height: 1.7;
}

/* Paragraphs */
p {
  margin-bottom: 18px;
  font-size: 1.1rem;
}

/* Hero Section */
.about-hero {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 60px;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.about-hero p {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  color: var(--muted);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 25px;
  border-left: 4px solid var(--primary);
}
.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}
.timeline-img img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.timeline-content h4 {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 1.1rem;
}

/* Gap Section */
.gap-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
.gap-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--head);
}
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gap-infographic img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}
.gap-stats li {
  background: var(--card);
  padding: 18px 22px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gap-stats li i {
  font-size: 1.5rem;
 color: var(--secondary);
}
.gap-stats li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
  margin-top: 70px;
}
.mv-grid i {
  font-size: 2.6rem;
  color: var(--secondary);
  margin-bottom: 14px;
}
.mv-grid h3 {
  color: var(--head);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.mv-grid p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* Core Values */
.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
.values-list div {
  max-width: 320px;
  background: var(--card);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  text-align: center;
}
.values-list i {
  font-size: 1.8rem;
  color: var(--secondary);
}
.values-list p {
  text-align: justify;
  color: var(--muted);
}

/* Team */
.team {
  text-align: center;
  margin-top: 80px;
}
.team h2 {
  font-size: 2rem;
  color: var(--head);
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 40px auto;
}
.team-card {
  max-width: 320px;
  background: var(--card);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}
.team-card h4 {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.2rem;
}
.team-card p {
  font-size: 1.05rem;
  color: var(--muted);
}
.team-cta{
  margin-bottom: 100px;
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: #24887d;
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  margin-left: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .gap-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  .timeline-img img {
    margin-bottom: 15px;
  }
  .about-hero {
    padding-top: 90px;
  }
  .about-hero h1 {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 1rem;
  }
  .timeline-img img {
    width: 120px;
    height: 120px;
  }
  .gap-infographic img {
    height: 300px;
  }
  .values-list div {
    max-width: 100%;
  }
  .btn-primary,
  .btn-ghost {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}
