/* ===========================================================
   PRODUCT-LIGHT.CSS
   Applies to all product pages (Busilens, IFRS Suite, Analytics Chatbot)
   Lighter glassmorphic adaptation of product.css (dark version)
   =========================================================== */
/* =========================================================
   HERO PRODUCT — Final Optimized Light Theme
   ========================================================= */
.hero-product {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #f8faff 0%, #ffffff 40%, #f3f8ff 100%);
}

/* Subtle gradient accents in brand tones */
.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(124, 92, 255, 0.08), transparent),
    radial-gradient(700px 500px at 90% 80%, rgba(45, 212, 191, 0.08), transparent);
  z-index: 1;
}

/* Light texture overlay — gives depth, removes “flat white” look */
.hero-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cg fill='none' stroke='%239ca3af' stroke-opacity='0.07'%3E%3Cpath d='M0 200c100-100 300-100 400 0M0 100c100-100 300-100 400 0M0 300c100-100 300-100 400 0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* keep content above textures */
.hero-product .container {
  position: relative;
  z-index: 2;
}

/* Text column */
.hero-text {
  max-width: 540px;
}

/* Refine image side */
.hero-image-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem;
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(124, 92, 255, 0.15),
              0 0 25px rgba(45, 212, 191, 0.1);
}

/* Image responsiveness and polish */
.hero-image-card img {
  border-radius: 1rem;
  display: block;
  width: 100%;
  height: auto;
}

/* ✅ Responsive refinements */
@media (max-width: 992px) {
  .hero-product {
    min-height: auto;
    text-align: center;
  }

  .hero-image-card {
    margin-top: 2rem;
  }
}

/* =========================
   Shared Glass Card Base
   ========================= */
.busilens-industries-card,
.features-card,
.product-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
  color: #0b1222;
  backdrop-filter: blur(12px) saturate(130%);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient glow on hover — soft cyan/teal for consistency */
.busilens-industries-card:hover,
.features-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 212, 191, 0.15),
    0 0 10px rgba(124, 92, 255, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

/* Subtle animated overlay accent */
.busilens-industries-card::before,
.features-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(124, 92, 255, 0.06),
      rgba(45, 212, 191, 0.05));
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.busilens-industries-card:hover::before,
.features-card:hover::before,
.product-card:hover::before {
  opacity: 1;
}

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

/* =========================
   Headings and Text
   ========================= */
.busilens-industries-card h6,
.features-card h5,
.product-card h5 {
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.75rem 0;
}

.features-card p,
.features-card li,
.busilens-industries-card p,
.product-card p {
  color: rgba(17, 24, 39, 0.8);
}

/* =========================
   Busilens Industries We Serve
   ========================= */
.busilens-industries-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.busilens-industries-card:hover {
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.15),
    0 0 12px rgba(124, 92, 255, 0.08);
}

/* Scroll animation consistency */
.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%);
  }
}

/* =========================
   Key Features & Benefits
   ========================= */
.features-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
}

/* Gradient border reimagined for light theme */
.features-card::before {
  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;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

/* List items */
.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.93rem;
  line-height: 1.4;
  color: rgba(17, 24, 39, 0.85);
}

.features-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-size: 0.9rem;
}

/* =========================
   Deployment Models / Analytics Chatbot Sections
   ========================= */
.product-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.12),
    0 0 10px rgba(124, 92, 255, 0.06);
}

/* =========================
   Accent Elements
   ========================= */
.text-accent,
span.highlight {
  color: #06b6d4;
}

.badge-soft {
  background: rgba(15, 23, 42, 0.04);
  color: #0b1222;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* =========================
   Buttons
   ========================= */
.btn-gradient {
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.2);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  box-shadow: 0 6px 18px rgba(45, 212, 191, 0.25);
  transform: translateY(-2px);
}

/* =========================
   Smooth Theme Transitions
   ========================= */
body.light,
.busilens-industries-card,
.features-card,
.product-card {
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}





/* =========================================================
   🌤 Light Theme — Department Solutions & Deployment Models
   ========================================================= */

body.light .why-card,
body.light .card-glass {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  border-radius: 1rem !important;
  backdrop-filter: blur(10px) saturate(130%) !important;
  color: #0b1222 !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle luminous gradient edge overlay */
body.light .why-card::before,
body.light .card-glass::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg,
      rgba(0, 200, 255, 0.1),
      rgba(45, 212, 191, 0.08)) !important;
  border-radius: 1rem !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* =========================================================
   🌤 Refined Color Glow — Light Mode Cards
   ========================================================= */

body.light .why-card:hover,
body.light .card-glass:hover {
  transform: translateY(-6px) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(124, 92, 255, 0.18) !important;
  /* ✨ Clean multi-tone glow with soft diffusion */
  box-shadow:
    0 0 18px rgba(124, 92, 255, 0.15),
    /* violet base */
    0 0 28px rgba(45, 212, 191, 0.15),
    /* teal */
    0 0 36px rgba(255, 182, 193, 0.12),
    /* soft pink (lighter than before) */
    0 8px 18px rgba(15, 23, 42, 0.05) !important;
  /* subtle depth shadow */
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

/* Gradient edge overlay – refined and balanced */
body.light .why-card::before,
body.light .card-glass::before {
  background: linear-gradient(135deg,
      rgba(124, 92, 255, 0.10),
      rgba(45, 212, 191, 0.08),
      rgba(255, 182, 193, 0.06)) !important;
}