/* ================================================= */
/* ABOUT PAGE ONLY */
/* ================================================= */

/* ================================================= */
/* ABOUT HERO – FULL WIDTH FIX */
/* ================================================= */

.about-hero {
  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  /* ✅ FULL-WIDTH GRADIENT */
  background: linear-gradient(
    120deg,
    #2563eb,
    #3b82f6,
    #7c3aed
  );

  background-size: 200% 200%;
  animation: gradientMove 10s ease infinite;
}

/* Keep content centered but NOT limiting background */
.about-hero .section-inner {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Gradient animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* VISION */
.about-vision {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}

.about-vision h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e3a8a;
}

.about-vision p {
  max-width: 750px;
  margin: 20px auto 40px;
  color: #475569;
}

.vision-points {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.vision-card {
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* WHY EVENSIA */
.about-why {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.why-card {
  background: #f3f4f6;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.why-card:hover {
  background: #e0ecff;
  transform: translateY(-6px);
}

.why-card h3 {
  margin-bottom: 10px;
  color: #1e3a8a;
}

/* TEAM */
.team-avatar {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;

  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.about-team {
  padding: 100px 0;
  background: #0f172a;
  color: white;
  text-align: center;
}

.about-team h2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.team-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.team-card span {
  display: block;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 10px;
}

/* Hover effect (subtle, premium) */
.team-card:hover .team-avatar {
  transform: scale(1.05);
  transition: 0.3s ease;
}

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

  .team-avatar {
    width: 90px;
    height: 90px;
  }
}
