/* =========================
   industries Page — Light Mode
   ========================= */
body.light .industries-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #0b1222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

/* Subtle gradient border glow — visible only on hover */
body.light .industries-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, #7c5cff, #2dd4bf, #ff69b4);
  -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;
  transition: opacity 0.4s ease, filter 0.4s ease;
  filter: brightness(1.15);
}

body.light .industries-card:hover::before {
  opacity: 1;
}

/* Hover lift + soft shadow */
body.light .industries-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

/* Headings inside cards */
body.light .industries-card h5 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b1222;
  margin-bottom: 0.25rem;
}

/* Paragraph text */
body.light .industries-card p {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.4;
  margin: 0;
}

/* Soft radial accent (top-right corner) */
body.light .industries-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

body.light .industries-card>* {
  position: relative;
  z-index: 1;
}