/* ===================================================
   The Helping Heros – Premium About Us Page with Hero Background
   =================================================== */

/* ================= GLOBAL ================= */
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: #fff;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;

  /* Premium home page background */
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,215,0,0.12), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(180deg, #1e3cff 0%, #1428b8 100%);
}

/* Optional moving spark animation pseudo-elements */
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: sparkMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.about-section::after {
  animation-duration: 30s;
  transform: rotate(90deg);
}

/* Spark animation keyframes */
@keyframes sparkMove {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(20%,20%) rotate(360deg); }
}

/* Headings */
.about-section h1 {
  font-size: clamp(32px,5vw,52px);
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 0 14px rgba(255,215,0,0.6);
  position: relative;
  z-index: 2;
}

.about-section p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 30px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

/* ================= FEATURES ================= */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.feature-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 20px;
  padding: 35px 25px;
  max-width: 300px;
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.25), 
    0 0 20px rgba(255,215,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.35),
    0 0 28px rgba(255,215,0,0.35);
}

.feature-box h3 {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

.feature-box p {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.5;
}

/* ================= VMV SECTION ================= */
.vmv-section {
  padding: 80px 20px;
  background: #eaf4ff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vmv-section h2 {
  font-size: clamp(28px,4vw,46px);
  color: #FFD700;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

/* VMV Cards */
.vmv-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.vmv-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 18px;
  padding: 30px 25px;
  max-width: 280px;
  box-shadow: 
    0 10px 28px rgba(0,0,0,0.18),
    0 0 18px rgba(255,215,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.28),
    0 0 28px rgba(255,215,0,0.25);
}

.vmv-card h4 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(255,215,0,0.6);
}

.vmv-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .features, .vmv-cards {
    flex-direction: column;
    align-items: center;
  }
}
