/* Stats Section Styles */
.stats-section {
  background-color: var(--primary-btn-color);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.stats-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}

.stats-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.stats-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* Media Queries for Stats Section */
@media (max-width: 991px) {
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-card {
    margin-bottom: 20px;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .stats-icon {
    font-size: 2rem;
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: 50px 0;
  }
  
  .stats-card {
    padding: 20px 15px;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-title {
    font-size: 1rem;
  }
  
  .stats-icon {
    font-size: 1.8rem;
    height: 45px;
    width: 45px;
    margin-bottom: 15px;
  }
  
  .stats-description {
    font-size: 0.85rem;
  }
}