/* =========================
   Busilens+ Industries We Serve - Cool Background
   ========================= */
.busilens-industries-card {
  background: rgba(20, 40, 55, 0.6);
  /* teal-blue glass */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.2rem;
  color: #f8f9fa;
  backdrop-filter: blur(14px) saturate(160%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover neon glow */
.busilens-industries-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 200, 255, 0.35),
    0 0 15px rgba(45, 212, 191, 0.25);
}

/* Subtle moving glow accent */
.busilens-industries-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.15), rgba(45, 212, 191, 0.12));
  z-index: 0;
  pointer-events: none;
}

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

/* Headings */
.busilens-industries-card h6 {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
}

/* =========================
   Key Features & Benefits Cards
   ========================= */
.features-card {
  background: rgba(18, 20, 35, 0.9);
  /* was 0.9, now more see-through */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #f5f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(150%);
  /* extra glassy feel */
}

/* Gradient glow border */
.features-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;
}

.features-card:hover::before {
  opacity: 1;
}

.features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

/* Headings */
.features-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

/* List styling */
.features-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.features-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: rgba(240, 240, 240, 0.95);
  line-height: 1.4;
}

/* Accent bullet (glassy dot) */
.features-card li::before {
  content: "✔";
  /* or use •, →, or a small icon */
  position: absolute;
  left: 0;
  color: #2dd4bf;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* INDUSTRIES SECTION ON BUSILENS PAGE */
.industries-slider {
  overflow: hidden;
  position: relative;
}

.industries-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.industries-track .card-glass {
  min-width: 220px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}