.text-success{
  color: var(--primary-color) !important;
}
.about-section {
  background: #ffffff;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  cursor: pointer;
}

.stat-card .icon {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.stat-card h3 {
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card small {
  color: #6b7280;
}

/* 🔥 Hover Effect */
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(34,197,94,0.25);
}

.stat-card:hover .icon {
  background: var(--primary-hover-color);
}

