/* ================================
   Achievements / Stats Section
================================ */
.achievements-section {
  background: #ffffff;
  padding: 1px 20px;
  text-align: center;
}

.achievements-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.achievement-box {
  background: #bf00ff;
  padding: 3px 0px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1px;
}

.achievement-title {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

/* ================================
   Responsive Layout
================================ */
@media (max-width: 992px) {
  .achievements-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .achievement-number {
    font-size: 2rem;
  }
  .achievement-title {
    font-size: 0.9rem;
  }
  .achievements-section {
    padding: 60px 15px;
  }
}
.achievements-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.achievements-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007b5e;
  margin: 12px auto 0;
  border-radius: 3px;
}
