/* ============================================
   PARTNERS PAGE - BANNER
   ============================================ */

.ptn-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.ptn-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ptn-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(26, 140, 62, 0.8) 100%);
  z-index: 1;
}

/* ============================================
   PARTNERS STATS
   ============================================ */

.ptn-stats-section {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

.ptn-stat-item {
  padding: 2rem 1rem;
}

.ptn-stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ptn-stat-icon i {
  font-size: 1.8rem;
}

/* ============================================
   SECTION NUMBERS & TITLES
   ============================================ */

.ptn-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8c3e, #0d6efd);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(26, 140, 62, 0.3);
}

.ptn-section-title {
  color: #0a2540;
  font-size: 1.6rem;
  position: relative;
}

.ptn-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a8c3e, #0d6efd);
  margin: 12px auto 0;
  border-radius: 2px;
}

.ptn-alt-section {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

/* ============================================
   PARTNER CARDS
   ============================================ */

.ptn-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.ptn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(26, 140, 62, 0.2);
}

.ptn-logo-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
  padding: 15px;
  transition: background 0.3s ease;
  overflow: hidden;
}

.ptn-card:hover .ptn-logo-wrapper {
  background: rgba(26, 140, 62, 0.05);
}

.ptn-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ptn-card:hover .ptn-logo {
  transform: scale(1.1);
}

/* ============================================
   WHY CHOOSE US CARDS
   ============================================ */

.ptn-why-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent !important;
}

.ptn-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.col-lg-3:nth-child(1) .ptn-why-card:hover {
  border-bottom-color: #0d6efd !important;
}

.col-lg-3:nth-child(2) .ptn-why-card:hover {
  border-bottom-color: #1a8c3e !important;
}

.col-lg-3:nth-child(3) .ptn-why-card:hover {
  border-bottom-color: #ffc107 !important;
}

.col-lg-3:nth-child(4) .ptn-why-card:hover {
  border-bottom-color: #dc3545 !important;
}

.ptn-why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ptn-why-card:hover .ptn-why-icon {
  transform: scale(1.1);
}

.ptn-why-icon i {
  font-size: 2rem;
}

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

@media (max-width: 991.98px) {
  .ptn-logo-wrapper {
    width: 100px;
    height: 100px;
    padding: 12px;
  }
}

@media (max-width: 767.98px) {
  .ptn-banner {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .ptn-logo-wrapper {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
}

@media (max-width: 767.98px) {
  .ptn-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .ptn-card h6 {
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .ptn-section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .ptn-logo-wrapper {
    width: 70px;
    height: 70px;
    padding: 8px;
  }
}

