#conference_speakers{
max-width:1000px;
  margin:0 auto!important
}


.conference-speaker-card {
  margin:80px 0px;
  background-color: #ffffff;
  border-radius:20px;
padding:60px 0px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width:100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;'
  
}

.conference-speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.speaker-image img {
  border-radius: 50%;
  width: 128px;
  height: 128px;
  object-fit: cover;
}

.speaker-image h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.speaker-image p {
  font-size: 0.875rem;
  color: #6b7280; /* gray-500 */
}
.speaker-details h3 {
  font-size:30px;
  color:Black;
}
.speaker-details p {
  font-size: 1rem;
  color:#000;
}

.speaker-details a {
  display: inline-block;
  margin-top: 0.75rem;
  background-color: #1f2937; /* gray-800 */
  color: #22c55e; /* green-400 */
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.speaker-details a:hover {
  background-color: #111827; /* darker gray on hover */
}

@media (min-width: 768px) {
  .conference-speaker-card {
    flex-direction: row;
  }
  .speaker-image {
    text-align: left;
  }
}
