/* Advanced Partners & Sponsors Showcase Section */
.partners-showcase {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(145deg, #f8f9fb 0%, #eaeef5 100%);
  overflow: hidden;
}

/* Background Elements */
.partners-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.blob-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.04;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  border-radius: 30% 70% 50% 50% / 40% 50% 50% 60%;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  bottom: -15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: var(--secondary);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  animation: float 18s ease-in-out infinite reverse;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, 10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Section Header */
.section-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 10px;
}

.badge-text {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 10px;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(var(--primary-rgb), 0.2);
  z-index: -1;
  border-radius: 4px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Partners Grid Layout */
.partners-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.partners-group {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.partners-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sponsors-group {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.media-group {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(245, 247, 250, 0.8) 100%);
}

.group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
}

.sponsors-group .label-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.media-group .label-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  box-shadow: 0 5px 15px rgba(var(--secondary-rgb), 0.2);
}

.group-label h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--secondary-dark);
}

/* Card Carousel */
.card-carousel {
  display: flex;
  gap: 20px;
  padding: 25px;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.card-carousel::-webkit-scrollbar {
  height: 6px;
}

.card-carousel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.card-carousel::-webkit-scrollbar-track {
  background: transparent;
}

/* Partner Cards */
.partner-card {
  flex: 0 0 auto;
  width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.media-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fb 100%);
}

.card-content {
  padding: 20px;
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

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

.partner-card:hover .partner-logo img {
  transform: scale(1.05);
}

.partner-details {
  text-align: center;
}

.partner-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--secondary-dark);
}

.partner-details p {
  font-size: 0.85rem;
  color: var(--secondary-light);
  margin: 0;
}

/* Removed card actions section */

/* CTA Section */
.partners-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 30px 40px;
  color: white;
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
  overflow: hidden;
}

.partners-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 5px;
}

.cta-content p {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-button:hover {
  background: transparent;
  color: white;
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 720px) {
	.card-carousel {
		display: block;
		gap: 20px;
		padding: 25px;
		overflow-x: auto;
		justify-content: center;
		scrollbar-width: thin;
		scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
	}
	.partner-card {
		flex: 0 0 auto;
		width: 100%;
		background: white;
		border-radius: 12px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
		overflow: hidden;
		transition: all 0.3s ease;
		border: 1px solid rgba(0, 0, 0, 0.05);
		margin-bottom: 5px;
	}	
}