:root {
  --color-white: #ffffff;
  --color-bg-body: #ffffff;
}


/* Main Section Styles */
.stats3 {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

/* Card Base Styles */
.stats3__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  border-radius: 30px;
  color: #fff;
  height: 100%;
  min-height: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Initial state for animation */
  transform: translateY(30px);
}

.stats3__card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Typography */
.stats3__number {
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
}

.stats3__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.95;
}

/* Gradients */
.stats3__card--orange {
  background: linear-gradient(135deg, #d86c00 0%, #f7981d 100%);
}

.stats3__card--blue {
  background: linear-gradient(135deg, #3fa1e4 0%, #59afea 100%);
}

.stats3__card--green {
  background: linear-gradient(135deg, #7dbb2e 0%, #99d54e 100%);
}

.stats3__card--purple {
  background: linear-gradient(135deg, #7451a4 0%, #965dbc 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stats3 {
    padding: 40px 0;
  }
  
  .stats3__card {
    padding: 30px;
    border-radius: 20px;
    min-height: auto;
  }

  .stats3__number {
    font-size: 60px;
    margin-bottom: 10px;
  }
  
  .stats3__text {
    font-size: 16px;
  }
}