.stats-section {
  direction: rtl;
  padding: 40px 5%;
  background: #f6f7f9;
  text-align: center;
}

.stats-title {
 font-size: clamp(1.375rem, 1.1731rem + 0.9231vw, 1.75rem);
  color: #1f2d3d;
  margin-bottom: 14px;
}

.stats-subtitle {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.stat-card {
  background: #ffffff;
  padding: 40px 26px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;

  border: 2px solid #2563eb;
  color: #2563eb;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.stat-card h4 {
  font-size: 16px;
  color: #1f2d3d;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 14px;
  color: #6b7280;
}
