/* Video Slider Section */
.video-slider-section {
  padding: 10px;
  background-color: white;
}

.video-slider {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  align-items: center;
  justify-content: center;
}

/* Responsive video container */
.video-slide {
  position: relative;
  margin: 0 10px;
  flex: 1 1 300px; /* Allow videos to scale and wrap */
  max-width: 100%; /* Full width on smaller screens */
  padding-top: 2%;
  overflow: hidden;
}

.video-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Adjust margins for mobile */
@media (max-width: 768px) {
  .video-slide {
    margin: 10px 0; /* Stack videos vertically with spacing */
    max-width: 100%; /* Full width on mobile */
  }
}

/* Slick Dots and Arrows Customization */
.slick-prev,
.slick-next {
  font-size: 30px;
  color: #333;
  z-index: 1;
}

.slick-dots li button:before {
  color: #333;
}

.slick-dots li.slick-active button:before {
  color: #e12454;
}
/* Align the content and video side-by-side */
.row.align-items-center {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.skill-list ul {
  padding-left: 0; /* Remove default padding */
}

.skill-list h5 {
  font-size: 1.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }

  .row.align-items-center .col-lg-6 {
    width: 100%; /* Full width on mobile */
  }
}

.video-label {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}


/* .section.doctor-skills .row + .row {
  margin-top: 1px;
} */
