/* nav top section */

.nav-top_section {
  background-color: var(--bs-dark);
  color: #fff;
}

.nav-top_section .contact-title h6 {
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
}

.nav-top_section .contact-section .contact-group {
  position: relative;
}

.nav-top_section .contact-section .contact-group::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%; /* start point of the border */
  height: 50%; /* control height */
  width: 3px; /* thickness of border */
  background: #fff;
  border-radius: 45px;

  transform: translate(-50%, -50%); /* center the border */
}

.nav-top_section .contact-section .contact-group a {
  color: #fff !important;
  padding: 5px 10px;
  font-size: 14px;
}

.nav-top_section .contact-section .contact-group .contact-icon {
  color: #fff;
  font-size: 12px;
  margin-right: 3px;
  font-weight: 700;
}

.nav-top_section .contact-section .contact-group a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.top-title {
  font-size: 11px;
  letter-spacing: 1px;
  color: #fff;
}

/* ----------nav top section endu */

@media (min-width: 576px) {
  /* nav top section */

  .top-title {
    font-size: 13px;
  }
  .nav-top_section .contact-section .contact-group .contact-icon {
    color: #fff;
    font-size: 14px;
    margin-right: 3px;
    font-weight: 700;
  }

  .nav-top_section .contact-title h6 {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
  }
}

/* video section */

.video-section {
  /* overflow: hidden; */
  height: 50vh;
  width: 100%;
}

.slider-wrapper {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  max-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.blop-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob {
  width: 100%;
  transform: scale(1.5);
  transform-origin: center;
}

.video-card {
  height: 300px;
}

.video-card .btn {
  width: 40px;
  height: 40px;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pulse-btn {
  animation: pulse 2s infinite; /* 2 seconds duration, infinite loop */
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(214, 30, 6, 0.7); /* Example shadow for primary color */
  }
  70% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 0 10px rgba(134, 10, 10, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(43, 255, 0, 0);
  }
}
@media (min-width: 768px) {
  .top-title {
    font-size: 14px;
  }

  .nav-top_section .contact-section .contact-group .contact-icon {
    color: #fff;
    font-size: 14px;
    margin-right: 3px;
    font-weight: 700;
  }

  .nav-top_section .contact-title h6 {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
  }

  /* video section */
  .video-section {
    /* overflow: hidden; */
    height: 80vh;
    width: 100%;
  }
}

#batch_info,
#batch_details,
#batch_content,
#batch_instractor {
  scroll-margin-top: 165px; /* height of your navbar */
}

/* Fix same height for all screen sizes */
header.header-static {
  max-height: 80px !important; /* adjust to match PC view */
  display: flex;
  align-items: center;
}

/* Make navbar items vertically centered */
header.header-static .navbar {
  max-height: 80px !important;
  display: flex;
  align-items: center;
}
