﻿/* ===============================
   CHANNEL PARTNERS SECTION
================================ */

.partners-section {
  background: #032d56;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.partners-header {
  text-align: center;
  margin-bottom: 30px;
}

.partners-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

/* ===============================
   SLIDER WRAPPER
================================ */

.partner-slider {
  width: 100%;
  position: relative;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* ===============================
   SLIDES
================================ */

.partner-slide {
  min-width: 300px;
  padding: 0 15px;
  flex-shrink: 0;
}

.partner-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-logo-box {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.partner-logo-box img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

.partner-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.partner-category {
  font-size: 0.85rem;
  color: #64748b;
}

/* ===============================
   DOTS
================================ */

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 30px;
  background: #d4af37;
  border-radius: 5px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .partner-slide {
    min-width: 260px;
  }

  .partners-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .partner-slide {
    min-width: 220px;
  }

  .partners-title {
    font-size: 1.6rem;
  }

  .partner-card {
    height: 160px;
  }
}
