.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0077ff, #6a11cb);
  color: #fff;
  text-align: center;
  margin-top: 80px;
}

.stats-section .section-title {
  padding-bottom: 40px;
}

.stats-section .section-title  h2{
  color: #fff;
  font-weight: 700;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 200px;
}

.stat .number {
  font-size: 60px;
  font-weight: 800;
}

.stat p {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 991px) {
  .stat .number {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .stat .number {
    font-size: 30px;
  }
}

