/* index-light.css - overrides for index-specific components */

/* PRODUCT CARD */
.product-card {
  background: var(--card) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  transition: transform .3s ease, box-shadow .3s ease;
  color: #0b1222 !important;
}

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

/* override Bootstrap's .text-light where used inside product cards */
.product-card.text-light {
  color: #0b1222 !important;
}

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

/* TESTIMONIALS SECTION (light vibe) */
#testimonials {
  padding: 3rem 1rem;
  background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.06), transparent 40%),
    radial-gradient(circle at bottom right, rgba(2, 230, 255, 0.04), transparent 50%);
  backdrop-filter: saturate(110%) blur(6px);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

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

/* Glass effect for testimonial cards - light */
.testimonial-card {
  backdrop-filter: blur(8px) saturate(110%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  color: #0b1222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* different subtle light shades for each card (keeps the variety but subtle) */
.testimonial-card:nth-child(1) {
  background: rgba(255, 255, 255, 0.9);
}

.testimonial-card:nth-child(2) {
  background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:nth-child(3) {
  background: rgba(255, 255, 255, 0.94);
}

/* tiny gradient text accent for names - keep same gradients */
.testimonial-card span {
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WHY US cards - lighter */
.why-card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #0b1222;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  border-radius: 1rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--grad1), var(--grad2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.why-card:hover::before {
  opacity: 0.6;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

/* gradient accent for the <strong> title in each card */
.why-card strong {
  display: inline-block;
  font-weight: 600;
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* optional emphasis for italic tagline */
.why-card em {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  background: linear-gradient(90deg, #7c5cff, #2dd4bf, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

/* footer link fix on light */
.footer a {
  color: rgba(17, 24, 39, 0.75);
  text-decoration: none;
}

/* ensure any .text-para used across file renders dark on light theme */
.text-para {
  color: var(--muted) !important;
}