/* Partnerships Hero */
.partnerships-hero {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8rem 0 5rem;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.partnerships-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.partnerships-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.partnerships-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Partnership Visual */
.partnership-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.partnership-circle.central {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  font-weight: 600;
}

.partnership-circle.central span {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.satellite-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.satellite-2 {
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

.satellite-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.satellite-4 {
  top: 20%;
  left: 20%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Partnership Categories */
.partnership-categories {
  padding: 5rem 0;
}

.category-card {
  background: var(--secondary-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.category-header {
  background: var(--bg-light);
  padding: 2rem;
  text-align: center;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.category-header h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.category-header p {
  color: var(--text-light);
  margin: 0;
}

.partners-list {
  padding: 2rem;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.partner-item:last-child {
  border-bottom: none;
}

.partner-logo {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.partner-info h5 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
}

.partner-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

/* Government Partners Specific */
.government-partners .category-icon {
  background: #3b82f6;
}

.government-partners .partner-logo {
  background: #3b82f6;
}

/* International Partners */
.international-partners {
  padding: 5rem 0;
}

.international-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.international-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.international-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.international-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.partner-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.international-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partnership-impact {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.impact-badge {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Network Memberships */
.network-memberships {
  padding: 5rem 0;
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.network-card {
  background: var(--secondary-color);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.network-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.network-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.network-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.network-card p {
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Partnership Benefits */
.partnership-benefits {
  padding: 5rem 0;
}

.benefit-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.benefit-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Partnership Opportunities */
.partnership-opportunities {
  padding: 5rem 0;
}

.opportunity-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.opportunity-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.opportunity-header i {
  color: var(--primary-color);
  font-size: 2rem;
}

.opportunity-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
}

.opportunity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opportunity-list li {
  padding: 0.75rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.opportunity-list li:last-child {
  border-bottom: none;
}

.opportunity-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .partnerships-hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .partnership-visual {
    height: 300px;
  }

  .partnership-circle {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }

  .partnership-circle.central {
    width: 100px;
    height: 100px;
  }

  .category-card {
    margin-bottom: 2rem;
  }

  .partner-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .international-card {
    margin-bottom: 2rem;
  }

  .networks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    margin-bottom: 2rem;
  }

  .opportunity-card {
    margin-bottom: 2rem;
  }
}

