body {
    transition: background-color 0.3s, color 0.3s;
  }

  #mobileMenu::-webkit-scrollbar {
    display: none;
  }

  #mobileMenu {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

   /* Button Animation */
   .carousel-btn {
    animation: move 2s infinite alternate ease-in-out;
  }

  @keyframes move {
    from {
      transform: translateY(-5px);
    }
    to {
      transform: translateY(5px);
    }
  }

  /* Custom Transition for Slides */
  .carousel-slides {
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  }