/* About Page — Mission, Vision, Values unified styling */

.mv-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 12px;
}

.mv-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 22px 24px;
  color: #e9eef7;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 400px at 0% 0%, rgba(99, 102, 241, 0.18), transparent 60%),
              radial-gradient(1200px 400px at 100% 100%, rgba(16, 185, 129, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.18);
}

.mv-icon {
  font-size: 30px;
  margin-bottom: 8px;
}

.mv-card h3 {
  margin: 6px 0 10px;
  font-size: 22px;
}

.mv-card p {
  line-height: 1.7;
  color: #cdd6e5;
}

/* Values section unified styling to match cards */
.values {
  padding: 60px 0;
  background: rgba(20, 25, 40, 0.98);
}

.values .section-header h2 {
  color: #e9eef7;
}

.values .section-header p {
  color: #b6c2d3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  border-color: rgba(255, 255, 255, 0.18);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}