/* Stats Section */
.stats-section {
  position: relative;
  background: url("../images/stats-bg1.jpg") center/cover no-repeat;
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95); /* Slate overlay */
  z-index: 1;
}

.stats-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.stat-line {
  width: 60px;
  height: 4px;
  background: var(--color-green);
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-content {
    flex-direction: column;
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}


