.leaders-section {
  padding: 60px 20px;
  background: #0a1a2f;
  text-align: center;
}

.leaders-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
}

.glide {
    max-width: 1200px;
    margin: 0 auto;
}
/* Glide Slides */
.glide__slides {
  display: flex;
  /* gap: 20px; */
}

.glide__slide {
  list-style: none;
}

.leader-card {
  background: #0b1220;
  padding: 20px;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 100, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 100, 255, 0.5);
}

.leader-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.leader-info .leader-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.leader-info .leader-designation {
  font-size: 0.9rem;
  color: #bbb;
}
