.bg_marquee {
    background-color: #2212FF;
    padding: 5px 0;
    color: #fff;
}

.subparaText {
    font-family: "Poppins" !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #292929;
}

/* Section */
.product-header-section {
  padding: 80px 20px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout */
.product-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Title */
.product-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* Description */
.product-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  max-width: 520px;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* LG */
@media (max-width: 1024px) {
  .product-title {
    font-size: 40px;
  }
}

/* MD */
@media (max-width: 768px) {
  .product-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-title {
    font-size: 36px;
  }

  .product-description {
    max-width: 100%;
  }
}

/* SM */
@media (max-width: 576px) {
  .product-header-section {
    padding: 60px 16px;
  }

  .product-title {
    font-size: 30px;
  }

  .product-description {
    font-size: 15px;
  }
}

/* XS */
@media (max-width: 375px) {
  .product-title {
    font-size: 26px;
  }
}

/* --- Styles Scoped with 'datum-' --- */
    .datum-slider-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(../Images/productSliderBg.png);
        /* Add your background image here */
        background-color: #050505; 
        background-size: cover;
        background-position: center;
        color: #fff;
        overflow: hidden;
    }

    .datum-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .datum-slider-wrapper {
        display: grid;
        grid-template-columns: 150px 1fr 150px;
        align-items: center;
        gap: 20px;
        min-height: 450px;
    }

    .datum-nav-control {
        cursor: pointer;
        z-index: 30;
        text-align: center;
        transition: opacity 0.3s;
    }

    .datum-nav-text {
        font-family: 'serif';
        font-size: 1.8rem;
        font-weight: bold;
    }

    .datum-stack {
        position: relative;
        width: 100%;
        max-width: 650px;
        aspect-ratio: 16 / 10;
        margin: 0 auto;
    }

    .datum-card {
        position: absolute;
        inset: 0;
        border-radius: 4px;
        background-size: cover;
        background-position: center;
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }

    /* Stack Visibility States */
    .datum-card.datum-active {
        opacity: 1;
        z-index: 10;
        transform: scale(1) translateY(0) rotate(0deg);
    }

    .datum-card.datum-next-1 {
        opacity: 1;
        z-index: 9;
        transform: scale(0.95) rotate(-8deg);
        filter: brightness(0.5);
    }

    .datum-card.datum-next-2 {
        opacity: 0.8;
        z-index: 8;
        transform: scale(0.9) rotate(-15deg);
        filter: brightness(0.3);
    }

    .datum-card.datum-exit {
        opacity: 0;
        transform: translateX(-120%) rotate(-15deg);
    }

    /* Footer Layout */
    .datum-footer {
        margin-top: 50px;
        display: flex;
        justify-content: space-evenly;
        align-items: flex-end;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 30px;
    }

    .datum-footer-logo {
        font-size: 2.5rem;
        font-weight: 800;
        transition: opacity 0.3s;
    }

    .datum-footer-desc {
        max-width: 450px;
        font-size: 1rem;
        line-height: 1.6;
        color: #ccc;
        text-align: right;
        transition: opacity 0.3s, transform 0.3s;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .datum-slider-wrapper {
            grid-template-columns: 1fr;
            justify-items: center;
        }
        .datum-nav-control { position: absolute; top: 40%; }
        #datumPrevBtn { left: 10px; }
        #datumNextBtn { right: 10px; }
        .datum-footer { flex-direction: column; align-items: center; text-align: center; }
        .datum-footer-desc { text-align: center; margin-top: 15px; }
    }