/* ================= GLOBAL HELPERS ================= */

.about-page {
  overflow-x: hidden;
}

.about-page .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

/* ================= INTRO ================= */

.about-intro {
  padding: 110px 0 90px;
  background: linear-gradient(135deg, #f4f7ff, #fff7ed);
  text-align: center;
}

.about-intro h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 20px;
  color: #0f172a;
}

.intro-lead {
  font-size: 1.15rem;
  max-width: 780px;
  margin: auto auto 16px;
  color: #334155;
}

.about-intro p {
  max-width: 820px;
  margin: auto;
  color: #475569;
  line-height: 1.7;
}

/* ================= STORY ================= */

.about-story {
  padding: 100px 0;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
  color: #0f172a;
}

.story-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  transition: 0.5s ease;
}

.story-image img:hover {
  transform: scale(1.04);
}

/* ================= VISION & MISSION ================= */

.about-vision-mission {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef2ff, #fff);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vm-box {
  background: white;
  border-radius: 26px;
  padding: 40px 36px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.vm-box:hover {
  transform: translateY(-8px);
}

.vm-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #4f46e5;
}

.vm-box p {
  color: #475569;
  line-height: 1.6;
}

/* ================= VALUES ================= */

.about-values {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.about-values h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.value-card {
  background: linear-gradient(135deg, #f8faff, #fff7ec);
  padding: 30px 24px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card h4 {
  margin-bottom: 8px;
  color: #f59e0b;
}

.value-card p {
  color: #475569;
  font-size: 0.9rem;
}

/* ================= LEADERSHIP ================= */

.about-leadership {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.about-leadership h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 14px;
}

.about-leadership p {
  max-width: 760px;
  margin: auto auto 22px;
  color: #475569;
}

.primary-link {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.primary-link:hover {
  color: #4f46e5;
}

/* ================= CTA ================= */

.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff7ed, #f4f7ff);
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 12px;
}

.about-cta p {
  max-width: 760px;
  margin: auto auto 26px;
  color: #475569;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: white;
}

.btn-secondary {
  border: 2px solid #4f46e5;
  color: #4f46e5;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .story-grid,
  .vm-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 500px) {

  .about-intro {
    padding: 90px 0 70px;
  }

}
