.slider-container {
  position: relative;
    width: 100%;
            height: 100vh;
            overflow: hidden;
}

.progress-slider {
  width: 100%;
  margin: 0;
}

/* .progress-slider .slick-slide {
      outline: none;
      position: relative;
      height: 857px;
      background-size: cover;
      background-position: center;
    } 
*/

.progress-slider .slick-slide {
  outline: none;
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

/* Fade effect */
.progress-slider .slick-slide {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.progress-slider .slick-slide.slick-active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(98deg, rgba(5, 20, 30, 0.7) 0%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  z-index: 2;
}

.slide-text {
  max-width: 680px;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.slide-text .pre-title {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255, 255, 240, 0.2);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  margin-bottom: 1rem;
  backdrop-filter: blur(2px);
}

.slide-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

.slide-text .btn-linkedin {
  background: #0A66C2;
  color: white;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.slide-text .btn-linkedin:hover {
  background: #0d4b8f;
  transform: translateY(-2px);
}

.video-slide {
  position: relative;
  overflow: hidden;
}

/* .video-slide video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 0;
    } */
.video-slide video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  /* min-height: 50vh; */
  object-fit: cover;
  height: 80vh;
}

.video-overlay {
  background: rgba(0, 20, 30, 0.6);
}

.video-play-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: white;
  font-size: 1.2rem;
  transition: 0.2s;
}

.video-play-btn:hover {
  background: #3b3b3b;
  transform: scale(1.08);
}

.slick-slide:not(.video-slide) .video-play-btn {
  display: none;
}

.progress-slider .slick-prev:before,
.progress-slider .slick-next:before {
  color: #fff;
  font-size: 32px;
  opacity: 0.8;
}

.progress-slider .slick-prev {
  left: 20px;
  z-index: 20;
}

.progress-slider .slick-next {
  right: 20px;
}

.progress-controls {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 30;
  padding: 0 8%;
}

.progressBarContainer {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  flex-direction: row-reverse;
}

.progress-item {
  cursor: pointer;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-item:hover {
  background: #0000005e;
}

.progress-item.active:hover {
  background: none;
}

.progress-item h3 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #F0F4FA;
  /* text-transform: uppercase; */
}



.progress-bar-bg {
  width: 100%;
  height: 4px;
  background-color: #91C2E4;
  border-radius: 4px;
  overflow: hidden;
}

.progress-item.active .progress-bar-bg {

  background-color: #006CB5;

}

.progress-fill {
  background-color: #FFD966;
  width: 0%;
  height: 100%;
  transition: width 0.05s linear;
}

.progress-item.active h3 {
  color: #FFE484;
  font-weight: 700;
}

.progress-item.active .progress-fill {
  background-color: #FFB347;
}

@media (max-width:780px) {
  .progress-slider .slick-slide {
    height: 520px;
  }

  .slide-text h2 {
    font-size: 2rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .progress-item h3 {
    font-size: 0.8rem;
  }

  .progressBarContainer {
    gap: 15px;
  }

  .video-play-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    top: 20px;
    right: 20px;
  }
}

.progress-item.active h2 {
  display: block
}

.progress-item.active h3 {
  display: none;
}

.progress-item h2 {
  display: none;
  margin-bottom: 15px;
}

.progress-item h2 a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  background: #006CB5;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
}


.slider-container {
  position: relative;
  z-index: 0;
}

.slider-container h3.head {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 200px;
  bottom: 40px;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.slider-container h3.head span.Arrows {
  position: absolute;
  right: 100px;
  bottom: 60px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 300px;
  display: flex;
  left: 50%;
}


.slick-dots {
  bottom: 30px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-next {
  right: 0;
  width: auto;
  height: auto;
}

.slick-prev {
  left: 0px;
  width: auto;
  height: auto;
}



.slick-arrow img {
  width: 40px;
  height: auto;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 11px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: 0.5;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: rgb(255, 255, 255);
}

.slick-prev,
.slick-next {
  font-size: 30px;
  color: #ffffff;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #ffffff;
  background: transparent;
}

.slick-dotted.slick-slider {
  margin-bottom: 00px;
}

.progress-slider .slick-slide:after {    content: '';
    background: linear-gradient(0deg, black, transparent);
    height: 300px;
    width: 100%;
    position: absolute;
    bottom: 0;
}









