/* Organizers Section Styles */
.organizers-section {
  width: 100%;
  background-color: rgb(10, 10, 12);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.organizers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(10, 10, 12, 0.7) 0%,
    rgb(10, 10, 12) 100%
  );
  z-index: 1;
}

.organizers-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.organizers-title {
  font-family: "Signord", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.3rem;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.organizers-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 2px;
}

.organizers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}

.organizer-logo {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 280px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.organizer-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.organizer-logo:hover::before {
  opacity: 1;
}

.organizer-logo:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

.organizer-logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
  object-fit: contain;
}

.organizer-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Animation for entrance */
.organizer-logo {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.organizer-logo:nth-child(1) {
  animation-delay: 0.1s;
}

.organizer-logo:nth-child(2) {
  animation-delay: 0.2s;
}

.organizer-logo:nth-child(3) {
  animation-delay: 0.3s;
}

.organizer-logo:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating background elements */
.organizers-section::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: float 20s linear infinite;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: rotate(120deg) translate(30px, -30px) scale(1.1);
    opacity: 0.2;
  }
  66% {
    transform: rotate(240deg) translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg) translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .organizers-section {
    padding: 3rem 0;
  }

  .organizers-container {
    padding: 0 1rem;
  }

  .organizers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }

  .organizer-logo {
    padding: 1.5rem;
    width: 240px;
    height: 140px;
  }

  .organizer-logo img {
    max-height: 60px;
  }

  .organizers-title {
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 480px) {
  .organizers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .organizer-logo {
    padding: 1rem;
    width: 160px;
    height: 100px;
  }

  /* Special layout for the third organizer */
  .organizer-logo:nth-child(3) {
    grid-column: 1 / span 2;
    justify-self: center;
  }

  .organizer-logo img {
    max-height: 50px;
  }

  .organizers-title::after {
    width: 80px;
    height: 2px;
  }
}
.ieee-logo {
  padding: 0px;
}

