.partner-section {
  padding: 80px 20px;
  background: #f7faf9;
  font-family: "Montserrat", sans-serif;
}

.partner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Left Side */
.partner-left {
  flex: 1;
}

.partner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #083b32;
}

.partner-left p {
  font-size: 16px;
  color: #555;
}

/* Right Side: Slider */
.partner-right {
  flex: 2;
  overflow: hidden;
  position: relative;
}

.partner-slider {
  display: flex;
  gap: 30px;
  cursor: grab;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar */
.partner-slider::-webkit-scrollbar {
  display: none;
}

.partner-slider:active {
  cursor: grabbing;
}

.partner-item {
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-item img:hover {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .partner-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-right {
    width: 100%;
  }

  .partner-slider {
    gap: 20px;
  }

  .partner-item {
    width: calc((100% - 40px) / 2); /* Show 2 items on mobile */
  }

  .partner-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .partner-item {
    width: calc(100% - 20px); /* Show 1 item on very small screens */
  }
}
