/* About Us 3D Cards Styles */

.cards-3d-container {
  padding: 80px 0;
  background: #f8f9fa;
}

.stats-3d-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-card-3d {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  flex: 1;
  max-width: 300px;
}

.stat-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, #f4d03f, #f39c12);
}

.stat-card-3d:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-number-3d {
  font-size: 48px;
  font-weight: 700;
  color: #f4d03f;
  margin-bottom: 15px;
  display: block;
  background: linear-gradient(45deg, #f4d03f, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-3d {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-3d-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .stat-card-3d {
    max-width: 280px;
    min-width: 280px;
    width: 280px !important;
    height: 180px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .stat-number-3d {
    font-size: 36px;
  }
  
  .stat-label-3d {
    font-size: 14px;
  }
}
