.navbar-custom {
    background: linear-gradient(90deg, #7f00ff, #e100ff);
  }

  .search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
  }

  .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .btn-shortcut {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    margin-left: 5px;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
  }

  .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
  }

  .navbar-toggler {
    border-color: white;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

  /* Sticky search bar on mobile */
  @media (max-width: 991px) {
    .sticky-search {
      position: sticky;
      top: 56px; /* adjust if needed */
      z-index: 1020;
      background-color: #7f00ff;
      padding: 10px 0;
    }
  }

  .pill-menu-wrapper {
    position: relative;
    overflow: hidden;
  }

  .pill-menu {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .pill-menu::-webkit-scrollbar {
    display: none;
  }

  .pill-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background-color: #f1f1f1;
    color: #000;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s;
  }

  .pill-link:hover {
    background-color: #ddd;
  }

  .pill-link.active {
    background-color: #000;
    color: #fff;
  }

  .scroll-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
  }

  .scroll-arrow i {
    font-size: 1.25rem;
    color: #000;
  }

  @media (max-width: 767px) {
    .scroll-arrow {
      display: none;
    }
  }

  .card-1{
background: #E2F6ED;
  }
  .card-2{
    background: #E4E1F5;
}
.card-3{
    background: #FDF5DD;
         }