
    @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: #CA903A;
      /* 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;
    } */


    @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(-12deg);
      }

      50% {
        transform: translateY(-10px) rotate(-12deg);
      }
    }

    @keyframes float-delayed {

      0%,
      100% {
        transform: translateY(0) rotate(12deg);
      }

      50% {
        transform: translateY(-8px) rotate(12deg);
      }
    }

    .animate-float {
      animation: float 3s ease-in-out infinite;
    }

    .animate-float-delayed {
      animation: float-delayed 3s ease-in-out infinite 0.5s;
    }

    .animation-delay-300 {
      animation-delay: 300ms;
    }

    .animation-delay-600 {
      animation-delay: 600ms;
    }
