.hero-about {
  background: url('../images/about-hero.jpg') center/cover no-repeat;
  padding: 120px 25px;
  text-align: center;
  color: white;
  position: relative;
  border-radius: 20px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 1.2rem;
  user-select: none;
  /* subtle fade in */
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.mission-vision .mv-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.mv-item {
  flex: 1 1 320px;
  background: #f9fafc;
  padding: 28px 25px;
  border-left: 6px solid #007BFF;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.mv-item:hover,
.mv-item:focus-within {
  box-shadow: 0 14px 35px rgba(0, 123, 255, 0.2);
  transform: translateY(-6px);
  outline: none;
}

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.values-list li {
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #34495e;
  position: relative;
  padding-left: 24px;
  user-select: none;
}
.values-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
  color: #007BFF;
}

/* Approach Section */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 45px;
  justify-content: center;
}

.approach-card {
  flex: 1 1 300px;
  background: #f9fafc;
  padding: 30px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.approach-card:hover,
.approach-card:focus-within {
  box-shadow: 0 14px 38px rgba(0, 123, 255, 0.18);
  transform: translateY(-7px);
  outline: none;
}

/* Team Section */
.team-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 55px;
}

.team-member {
  text-align: center;
  max-width: 220px;
  user-select: none;
}
.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.team-member img:hover,
.team-member img:focus {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 123, 255, 0.25);
  outline: none;
}

/* Counters Section */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
  margin-top: 60px;
}

.counter h3 {
  font-size: 3.4rem;
  color: #007BFF;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  user-select: text;
}
.counter p {
  font-size: 1.15rem;
  color: #34495e;
  font-weight: 600;
  user-select: none;
}

/* Reuse fadeInUp animation from above */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .mission-vision .mv-grid,
  .approach-grid,
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .mv-item,
  .approach-card,
  .team-member {
    max-width: 100%;
  }
}
