:root {
  --color-green: #81C045;
  --color-orange: #E68D42;
  --color-blue: #2F88C6;
  --color-heading: #1A1A1A;
  --color-subheading: #707070;
}

/* stats.css */
.stats {
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.stats__title {
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--color-heading);
  margin-bottom: 25px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .stats__title {
    font-size: 2.5rem;
  }
}

.stats__subtitle {
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-subheading);
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.stats__grid {
  margin-top: 20px;
}

.stats__circle {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: scale(0.8);
}

.stats__circle:hover {
  transform: scale(1.03);
}

.stats__circle--green {
  background-color: var(--color-green);
}

.stats__circle--orange {
  background-color: var(--color-orange);
}

.stats__circle--blue {
  background-color: var(--color-blue);
}

.stats__content {
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.stats__number {
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 5px;
}

@media (max-width: 1200px) {
  .stats__number {
    font-size: 5rem;
  }
}

@media (max-width: 575px) {
  .stats__number {
    font-size: 4rem;
  }
}

.stats__label {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .stats__label {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .stats__label {
    font-size: 1.1rem;
  }
}