/* ============================
🎤 Speakers Section Styling
============================= */
.speakers-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #121521, #1d356d, #6b0715, #dc957d);
  background-size: 400% 400%;
  animation: gradientShift 25s ease infinite;
  font-family: "Poppins", sans-serif;
  color: #6e89f5;
  text-align: center;
}

/* 🔆 Glowing Heading */
.speakers-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background-image: linear-gradient(90deg, #91e1f3, #6e89f5, #91e1f3);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: glowingTitle 3s ease-in-out infinite alternate;
}

.speakers-heading p {
  font-size: 1.2rem;
  color: #b3efff;
  margin-bottom: 50px;
  animation: fadeInText 2s ease-in-out;
}

/* 🧊 Speaker Card */
.speaker-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
  padding: 30px;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.speaker-image img {
  width: 250px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.speaker-content {
  flex: 1;
  text-align: left;
  color: #fff;
}

.speaker-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.speaker-content .title {
  font-size: 1rem;
  color: #91e1f3;
  font-weight: 500;
  margin-bottom: 10px;
}

.speaker-content .description {
  font-size: 1rem;
  color: #d3d3d3;
  margin-bottom: 20px;
}

/* 🔘 Watch Button */
.watch-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #1e90ff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.watch-btn:hover {
  background-color: #005bbb;
}

/* ============================
📱 Responsive - Speakers
============================= */
@media (max-width: 1024px) {
  .speaker-card {
    flex-direction: column;
    text-align: center;
  }

  .speaker-image img {
    width: 220px;
  }

  .speaker-content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .speakers-heading h2 {
    font-size: 2rem;
  }

  .speaker-content h3 {
    font-size: 1.5rem;
  }

  .speaker-content .description {
    font-size: 0.95rem;
  }

  .watch-btn {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}

/* 🔁 Reuse existing animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowingTitle {
  0% {
    text-shadow: 0 0 5px #6e89f5, 0 0 10px #91e1f3;
  }
  100% {
    text-shadow: 0 0 10px #91e1f3, 0 0 20px #6e89f5;
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #121521, #1d356d, #6b0715, #dc957d);
  background-size: 400% 400%;
  animation: gradientShift 25s ease infinite;
  color: #f0f0f0;
}