/* =====================
   Speaker Cards
   ===================== */
.speaker-card {
  background: rgba(13, 17, 23, 0.55);
  border: 1px solid rgba(170, 80, 232, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 80, 232, 0.55);
}

.speaker-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-img {
  transform: scale(1.04);
}

.speaker-info {
  padding: 1rem 1.25rem 1.25rem;
}

.speaker-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.speaker-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.speaker-socials {
  display: flex;
  gap: 0.5rem;
}

.speaker-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(170, 80, 232, 0.12);
  border: 1px solid rgba(170, 80, 232, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.speaker-socials a:hover {
  background: rgba(170, 80, 232, 0.35);
  color: #fff;
}

/* =====================
   Copilot Float Animation
   ===================== */
@keyframes copilotFloat {
  0%, 100% {
    transform: translateY(0px);
    filter: drop-shadow(0 0 16px rgba(170, 80, 232, 0.3));
  }
  50% {
    transform: translateY(-16px);
    filter: drop-shadow(0 0 48px rgba(170, 80, 232, 0.9));
  }
}

.copilot-float {
  animation: copilotFloat 3.5s ease-in-out infinite;
}

/* FAQ Custom Accordion */
#accordionExample .card {
  background: rgba(13, 17, 23, 0.6) !important;
  border: 1px solid rgba(170, 80, 232, 0.2) !important;
  border-radius: 12px !important;
  overflow: hidden;
}

#accordionExample .accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#accordionExample .accordion-button::after {
  display: none;
}

#accordionExample .accordion-button .faq-indicator {
  margin-left: auto;
  flex-shrink: 0;
  color: #aa50e8;
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

#accordionExample .accordion-button.collapsed .faq-indicator {
  transform: rotate(0deg);
}

#accordionExample .accordion-button > i.bi {
  color: #aa50e8;
  font-size: 1rem;
  flex-shrink: 0;
}

#accordionExample .accordion-button .h6 {
  color: #fff !important;
}

#accordionExample .card-body {
  color: rgba(255, 255, 255, 0.6);
  padding: 0 1.5rem 1.25rem 3.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
