.logo-carousel-container {
  position: relative;
  padding: 30px 60px; /* spacing for arrows */
}

.logo-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-carousel {
  display: flex;
  transition: transform 1s ease-in-out;
  gap: 40px;
}

.logo-item {
  flex: 0 0 auto;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.logo-carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.logo-carousel-arrows button {
  pointer-events: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
