.speakers-section {
  position: relative;
  background-color: #0a1635;
  color: #fff;
  padding: 5rem 0;
}
.pattern-speaker-left {
  position: absolute;
  top: 0;
  left: -45vw;
  width: 160vw;
  height: 100%;
  background-repeat: repeat;
  background-size: contain;
}

.speakers-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 2rem;
}

.view-speakers {
  background-color: #a000c8;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}
.row-speaker {
  display: flex;
  margin-left: 70px;
}

.view-speakers:hover {
  background-color: #c43fff;
  color: #fff;
  transform: translateY(-2px);
}
.sub-title {
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 97px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.speaker-card {
  position: relative;

  overflow: hidden;
}

.speaker-card img {
  width: 410px;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.card-overlay {
  backdrop-filter: blur(30px);
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 0px;
  padding: 1.5rem;
  background: #00000059;
  transition: all 0.4s ease;
  width: 440px;
}

.card-overlay a {
  color: #fff;
  transition: color 0.3s ease;
}

.card-overlay a:hover {
  color: #a000c8;
}

@media (max-width: 992px) {
  .speakers-section {
    text-align: center;
  }
  .speakers-text h2 {
    font-size: 1.8rem;
  }
  .btn-view {
    margin-top: 1rem;
  }
}
