.charterers-section {
  padding: 60px 0;
  background: #fff;
}

.charterers-bg {
  background-image: url('img1/ship-background.jpg'); /* your background */
  background-size: cover;
  background-position: center;
  padding: 10px 0;
}

.charterers-section h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.charterers-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  padding: 0 60px;
}

.charterers-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

/* INCREASED SLIDE HEIGHT */
.slide {
  flex: 0 0 calc(33.333% - 20px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  height: 215px; /* ← increased from 110px */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* INCREASED IMAGE SIZE */
.slide img {
  max-height: 170px; /* ← increased from 70px */
  max-width: 100%;
  object-fit: contain;
}


 
/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 80%;
  }

  .charterers-slider-wrapper {
    padding: 0 30px;
  }
}
