.agenda-section {
  padding: 90px 0;
}
.header {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #2c46a7 0%, #3d5bb8 100%);
  color: #fefefe;
  padding: 4rem 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(44, 70, 167, 0.3);
  position: relative;
  overflow: hidden;
}

.header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.header p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #2c46a7, #3d5bb8);
  border-radius: 2px;
  z-index: 0;
}

.session-item {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.time-section {
  flex-shrink: 0;
  width: 180px;
  position: relative;
  z-index: 2;
}

.time-badge {
  background: linear-gradient(135deg, #2c46a7 0%, #3d5bb8 100%);
  color: #fefefe;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 70, 167, 0.3);
  position: relative;
}

.time-badge::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #2c46a7;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.session-card {
  flex: 1;
  background: #fefefe;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(44, 70, 167, 0.08);
  overflow: hidden;
  border: 1px solid rgba(44, 70, 167, 0.08);
  transition: all 0.3s ease;
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 70, 167, 0.15);
}

.session-content {
  padding: 2rem;
}

.session-type {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.session-type.panel {
  background: linear-gradient(135deg, #fff8e8 0%, #fff0d4 100%);
  color: #8b4513;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.session-type.networking {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4f0d4 100%);
  color: #2d5a2d;
  border: 1px solid rgba(45, 90, 45, 0.2);
}

.session-type.ceremony {
  background: linear-gradient(135deg, #f0e8ff 0%, #e8d4ff 100%);
  color: #6b46c1;
  border: 1px solid rgba(107, 70, 193, 0.2);
}

.session-type.awards {
  background: linear-gradient(135deg, #ffe8f0 0%, #ffd4e8 100%);
  color: #be185d;
  border: 1px solid rgba(190, 24, 93, 0.2);
}

.session-type.presentation {
  background: linear-gradient(135deg, #e8f4ff 0%, #d4e8ff 100%);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.session-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c46a7;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.session-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}

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

.speaker-card {
  background: linear-gradient(135deg, #f9faff 0%, #f0f4ff 100%);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(44, 70, 167, 0.1);
  transition: all 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 70, 167, 0.1);
}

.speaker-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.speaker-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #2c46a7 0%, #3d5bb8 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefefe;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(44, 70, 167, 0.3);
}
.speaker-avatar img {
  width: 60px;
  height: 60px;
  background-size: cover;
  border-radius: 50%;
}

.speaker-details {
  flex: 1;
}

.speaker-name {
  font-weight: 600;
  color: #2c46a7;
  /* font-size: 1rem; */
  font-size: 1.2rem;
  line-height: 1.2rem;
  /* margin-bottom: 0.5rem; */
}

.speaker-title {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
.speaker-title a {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.moderator-badge {
  background: linear-gradient(135deg, #2c46a7 0%, #3d5bb8 100%);
  color: #fefefe;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(44, 70, 167, 0.3);
}

.single-speaker {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f9faff 0%, #f0f4ff 100%);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(44, 70, 167, 0.1);
}

.company-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(44, 70, 167, 0.1);
}

.company-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c46a7;
}

.note-text {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
  padding: 0.8rem;
  background: rgba(44, 70, 167, 0.05);
  border-radius: 8px;
  border-left: 3px solid #2c46a7;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .agenda-container {
    padding: 1rem;
  }

  .header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .header h1 {
    font-size: 2.2rem;
  }

  .timeline::before {
    display: none;
  }

  .session-item {
    flex-direction: column;
    gap: 1rem;
  }

  .time-section {
    width: 100%;
  }

  .time-badge {
    display: inline-block;
    width: 100%;
    /* max-width: 200px; */
  }
  .session-card {
    width: 100%;
  }

  .time-badge::after {
    display: none;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }
}
