/* ================================================================
   SECTION STATISTIK SEKOLAH
================================================================ */

#statistik {
  background: linear-gradient(135deg, #191a66, #171665);
  padding: 100px 0;
  margin-top: 80px;
  border-radius: 10000px;
}

/* Judul */
#statistik h2 {
  color: #ecfdf5;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
}

/* Garis bawah judul */
#statistik h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  background: linear-gradient(to right, #22c55e, #4ade80);
  margin: 18px auto 0;
  border-radius: 10px;
}

/* ================= CARD STATISTIK ================= */

#statistik .col-md-4 > div {
  background: #f0fdf4 !important;
  border-radius: 28px;
  padding: 40px 20px;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Hover efek */
#statistik .col-md-4 > div:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

/* Angka */
#statistik .col-md-4 h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #065f46 !important;
  margin-bottom: 10px;
}

/* Label */
#statistik .col-md-4 p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #064e3b;
  letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  #statistik {
    padding: 70px 0;
  }

  #statistik h2 {
    font-size: 1.9rem;
  }

  #statistik .col-md-4 h2 {
    font-size: 2.6rem;
  }
}
