

.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
}

button.hero-toggle-btn {
    z-index: 99999;
    position: absolute !important;
}

.hero-slider-stats .icon img {width:30px; height:30px}

/* Card wrapper */
.feedback-card {
  max-width: 480px;
  margin: 80px auto;
  padding: 50px 40px;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  animation: fadeUp 0.5s ease;
}

/* Icon (minimal style) */
.feedback-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #eaf7ee;
  color: #28a745;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Heading */
.feedback-card h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 600;
}

/* Text */
.feedback-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Button */
.feedback-card .btn {
  background: #007bff; /* blue */
  color: #fff !important /* text white */
}
.feedback-card .btn a{
  
  color: #fff !important; /* text white */
}

/* Button hover */
.feedback-card .btn:hover {
  background: #0056b3;
  color: #fff; /* ensure white hi rahe */
}

/* Subtle animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

