/* ===== Base Widget Wrapper ===== */
.ct-clients-widget {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }
  
  .ct-clients-swiper {
    width: 100%;
  }
  
  .ct-clients-widget .swiper-wrapper {
    display: flex;
    align-items: center;
    width: max-content;
    transition-timing-function: linear !important;
  }
  
  /* ===== Moving Animation ===== */
  .ct-clients-widget .swiper-wrapper.moving {
    animation: ctClientsMove 25s linear infinite;
  }
  
  @keyframes ctClientsMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* ===== Client Card ===== */
  .ct-clients-widget .client-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    transition: transform 0.3s ease;
  }
  
  .ct-clients-widget .client-card:hover {
    transform: translateY(-5px);
  }
  
  /* ===== Client Image ===== */
  .ct-clients-widget .client-image {
    width: 160px;
    height: 100px;
    background-size: cover;

    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .ct-clients-widget .client-image:hover {
    filter: grayscale(0%);
  }
  
  /* ===== Centered Static Mode (<4 items) ===== */
  .ct-clients-widget .swiper-wrapper:not(.moving) {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* ===== Responsive Sizes ===== */
  @media (max-width: 1200px) {
    .ct-clients-widget .client-image {
      width: 140px;
      height: 90px;
    }
  }
  
  @media (max-width: 992px) {
    .ct-clients-widget .client-image {
      width: 120px;
      height: 80px;
    }
  }
  
  @media (max-width: 768px) {
    .ct-clients-widget .client-image {
      width: 100px;
      height: 70px;
    }
  }
  
  @media (max-width: 480px) {
    .ct-clients-widget .client-image {
      width: 80px;
      height: 60px;
    }
  }
  