


    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

    body {
      font-family: "Poppins", sans-serif;
    }

    /* Smooth transitions for header */
    header {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Logo transition */
    .logo-img {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Header container transition */
    .header-container {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Normal state */
    .header-normal .header-container {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    /* Shrunk state */
    .header-shrink .header-container {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    /* Logo normal size */
    .logo-normal {
      width: 4rem;
    }

    @media (min-width: 1024px) {
      .logo-normal {
        width: 4rem;
      }
    }

    /* Logo shrunk size */
    .logo-shrink {
      width: 3rem;
    }

    @media (min-width: 1024px) {
      .logo-shrink {
        width: 3rem;
      }
    }

    /* Sidebar animations */
    #mobileSidebar.open {
      transform: translateX(0);
    }

    /* Cart sidebar animations */
    #cartSidebar.open {
      transform: translateX(0);
    }

    /* Overlay animations */
    #sidebarOverlay.show,
    #cartOverlay.show {
      opacity: 1;
    }

    #sidebarOverlay,
    #cartOverlay {
      opacity: 0;
    }

    /* Prevent body scroll when sidebar is open */
    body.sidebar-open,
    body.cart-open {
      overflow: hidden;
    }

    /* Custom Arrow Styling */
    .slick-prev,
    .slick-next {
      width: 50px;
      height: 50px;
      z-index: 10;
      background: #0096d691;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .slick-prev:hover,
    .slick-next:hover {
      background: #0097D6;
    }

    .slick-prev {
      left: -27px;
    }

    .slick-next {
      right: -27px;
    }

    .slick-prev:before,
    .slick-next:before {
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 20px;
      color: white;
      opacity: 1;
    }

    .slick-prev:before {
      content: "\f053";
      /* Left arrow icon */
    }

    .slick-next:before {
      content: "\f054";
      /* Right arrow icon */
    }

    /* Dots Styling */
    .slick-dots {
      bottom: 25px;
    }

    .slick-dots li button:before {
      font-size: 12px;
      color: #0A1754;
      opacity: 0.5;
    }

    .slick-dots li.slick-active button:before {
      opacity: 1;
      color: #d83239;
      /* yellow-500 */
    }

    /* Mobile responsive arrows */
    @media (max-width: 768px) {

      .slick-prev,
      .slick-next {
        width: 40px;
        height: 40px;
      }

      .slick-prev {
        left: 10px;
      }

      .slick-next {
        right: 10px;
      }

      .slick-prev:before,
      .slick-next:before {
        font-size: 16px;
      }
    }

    /* Marquee animation */
    @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .animate-scroll {
            animation: scroll 30s linear infinite;
        }
        .animate-scroll:hover {
            animation-play-state: paused;
        }

    

    /* Footer Parallax Effect */
    .footer-parallax {
      position: relative;
      min-height: 600px;
      overflow: hidden;
    }

    .footer-bg-parallax {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('./assets/footer-bg.jpg');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 0;
    }

    /* Mobile devices এ parallax disable (performance এর জন্য) */
    @media (max-width: 768px) {
      .footer-bg-parallax {
        background-attachment: scroll;
      }
    }

    /* Fallback if image doesn't load */
    /* .footer-bg-parallax::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0A1754 0%, #0097D6 100%);
      z-index: -1;
    } */

    /* ================= Customer Review Slider Custom Styles ================= */


.customerReviewSlider .slick-list{
  padding: 32px 0;
}
/* Container padding */
.customerReviewSlider {
  margin: 0 -12px; /* Negative margin to offset card padding */
 
}

/* Dots positioning - Move them further down */
.customerReviewSlider .slick-dots {
  bottom: 0px !important; /* Move dots down from bottom */
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
}




/* Responsive adjustments */
@media (max-width: 768px) {

  
  .customerReviewSlider .slick-dots {
    bottom: 30px !important;
  }
  

  
  .customerReviewSlider {
    margin: 0 -8px;
  }
}

@media (max-width: 480px) {
 
  
  .customerReviewSlider .slick-dots {
    bottom: -35px !important;
    gap: 6px;
  }
  
  .customerReviewSlider .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  
  .customerReviewSlider .slick-dots li.slick-active button {
    width: 20px;
  }
}

/* ================= Feature Section Centering Styles ================= */

/* Center all content inside feature cards */
.feature .slick-slide > div {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Ensure the card itself is centered */
.feature .group {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Center icon container */
.feature .group > div:first-child {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Center title */
.feature .group h3 {
  text-align: center !important;
  width: 100%;
}

/* Center description paragraph */
.feature .group p {
  text-align: center !important;
  width: 100%;
}

