/* PRODUCT CARD */
.product-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* product image safety: fixed height with cover to avoid breaking cards */
.product-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: .6rem;
  display: block;
}

/* Testimonials Section — Dark AI vibe */
#testimonials {
  padding: 3rem 1rem;
  background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.2), transparent 40%),
    radial-gradient(circle at bottom right, rgba(2, 230, 255, 0.15), transparent 50%);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Optional subtle animated gradient overlay */
#testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.15), rgba(2, 230, 255, 0.15), rgba(45, 212, 191, 0.15));
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Glass effect for all testimonial cards */
.testimonial-card {
  backdrop-filter: blur(15px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Neon-ish hover glow */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.5), 0 0 15px rgba(2, 230, 255, 0.3);
}

/* Different subtle dark shades for each card */
.testimonial-card:nth-child(1) {
  background: rgba(20, 20, 35, 0.5);
  /* deep purple glass */
}

.testimonial-card:nth-child(2) {
  background: rgba(15, 25, 40, 0.5);
  /* dark teal glass */
}

.testimonial-card:nth-child(3) {
  background: rgba(30, 20, 40, 0.5);
  /* dark magenta glass */
}

/* Optional: add tiny gradient text accent for names */
.testimonial-card span {
  background: linear-gradient(90deg, #7c5cff, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}