.dashboard-card-pro {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  perspective: 1000px;
  height: 220px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Background overlay for shine effect */
.dashboard-card-pro .card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 1;
  transition: all 0.7s ease;
}

/* Content */
.dashboard-card-pro .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

/* Icon */
.dashboard-card-pro .card-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  font-size: 2rem;
  transition: transform 0.6s ease, background 0.6s ease;
}

/* Typography */
.dashboard-card-pro h4 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 5px;
}

.dashboard-card-pro p {
  font-size: 1rem;
  margin: 0 0 5px;
}

.dashboard-card-pro small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Hover Animation */
.dashboard-card-pro:hover {
  transform: rotateX(8deg) rotateY(8deg) scale(1.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.dashboard-card-pro:hover .card-icon {
  transform: rotate(360deg) scale(1.3);
  background: rgba(255, 255, 255, 0.4);
}

.dashboard-card-pro:hover .card-overlay {
  animation: gradientShift 3s infinite alternate;
  filter: brightness(1.3);
}

/* Gradient shift animation */
@keyframes gradientShift {
  0% {
    background: linear-gradient(135deg, #6b5dd3, #8c6bf0);
  }
  25% {
    background: linear-gradient(135deg, #02bd0a, #05e62c);
  }
  50% {
    background: linear-gradient(135deg, #fd7e14, #ff9c4a);
  }
  75% {
    background: linear-gradient(135deg, #e71d36, #ff4b5c);
  }
  100% {
    background: linear-gradient(135deg, #119da4, #4fc3f7);
  }
}
/* Unique card gradients */
.card-1 .card-overlay {
  background: linear-gradient(135deg, #6b5dd3, #8c6bf0);
}

.card-2 .card-overlay {
  background: linear-gradient(135deg, #02bd0a, #05e62c);
}

.card-3 .card-overlay {
  background: linear-gradient(135deg, #fd7e14, #ff9c4a);
}

.card-4 .card-overlay {
  background: linear-gradient(135deg, #e71d36, #ff4b5c);
}

.card-5 .card-overlay {
  background: linear-gradient(135deg, #119da4, #4fc3f7);
}

.card-6 .card-overlay {
  background: linear-gradient(135deg, #fcbf49, #ffdd76);
}

.card-7 .card-overlay {
  background: linear-gradient(135deg, #f72585, #b5179e);
}

.card-8 .card-overlay {
  background: linear-gradient(135deg, #7209b7, #3a0ca3);
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-card-pro {
    height: 200px;
  }
  .dashboard-card-pro .card-icon {
    width: 55px;
    height: 55px;
    font-size: 1.7rem;
  }
  .dashboard-card-pro h4 {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=statsDesign3.css.map */