
.brand-wrapper{
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
  .swiper {
    position: relative;
    width: 1400px;
    max-width: 92vw;
    padding: 0 50px; /* buttons ke liye space */
  }

  .swiper-track {
    overflow: hidden;
    border-radius: 16px;
  }

  .container-swiper {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .img-box-s {
    flex-shrink: 0;
    padding: 0 8px; /* gap between cards */
  }

  .img-box-s img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
 
  }

  /* Side Buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(206, 204, 204, 0.9);
    color: #111;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .nav-btn:hover { background: #fff; }

  .prev-btn { left: 0px; }
  .next-btn { right: 0px; }