/* Whizible Testimonial Card CSS */
.testimonial-card {
  background: linear-gradient(135deg, rgba(97,67,245,0.85), rgba(163,101,241,0.85));
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(97, 67, 245, 0.25);
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(97, 67, 245, 0.4);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.testimonial-quote {
  font-size: 16px;
  margin: 16px 0;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-badges {
  display: flex;
  gap: 10px;
}

.badge {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.badge-green {
  background: #22c55e;
  color: #fff;
}

.badge-blue {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
