   .custom-primary-bg-color{
    background-color: #002147;
   }

   .custom-primary-color{
    color: #002147;
   }
   .marquee-container {
      overflow: hidden;
      position: relative;
      background-color: #212529; /* Bootstrap bg-dark */
      color: white;
      border-bottom: 3px solid #ffc107; /* border-warning */
      padding: 0.5rem 0;
    }

    .marquee-track {
      display: flex;
      width: fit-content;
      animation: scroll-left 20s linear infinite;
    }

    .marquee-content {
      display: flex;
    }

    .marquee-content li {
      margin-right: 2rem;
      white-space: nowrap;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }