/* ===============================
   ACHIEVEMENTS SECTION
   =============================== */

.achievements-section {
  padding: 80px 20px;
  background: white;
  color: #fff;
  text-align: center;
}

.achievements-section h2{
    color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.team-title {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-item {
  background: #111827;
  padding: 35px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.stat-item h4 {
  font-size: 42px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  color: #cbd5f5;
}

/* ===============================
   SCROLL ANIMATION
   =============================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
