.swiper-container-wrapper--timeline .swiper-slide {
  background: transparent;
  min-height: 300px;
 
}
.swiper-container-wrapper--timeline .swiper-slide .container {
  padding: 0;
  width: 100%;
}
.swiper-container-wrapper--timeline .swiper-slide .title {
  font-size: 18px;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-container-wrapper--timeline .swiper-slide-active .title {
  opacity: 1;
}
.swiper-container-wrapper--timeline .swiper-pagination-progressbar {
  position: relative;
  margin-bottom: 70px;
  background-color: transparent;
  height: 4px;
  border-bottom: 1px solid #888;
  width: 75%;
}
.swiper-container-wrapper--timeline .swiper-pagination-progressbar-fill {
  background-color: #00e7ff;
  height: 3px;
  top: 2px;
}
.swiper-container-wrapper--timeline .swiper-pagination-progressbar:before {
  position: absolute;
  top: 2px;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: #00e7ff;
  content: "";
}

.swiper-container-wrapper--timeline .swiper-pagination-custom {
  position: relative;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  line-height: 1.66;
  bottom: 0;
  z-index: 11;
  width: 75%;
  display: flex;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch {
  position: relative;
  width: 100%;
  height: 30px;
  line-height: 30px;
  display: block;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title {
  position: absolute;
  font-weight: 400;
  right: 0;
  transform: translateX(50%);
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  z-index: 1;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title:after {
  position: absolute;
  top: calc(100% + 15px);
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 12px;
  height: 12px;
  background: #00e7ff;
  border-radius: 2rem;
  content: "";
  transition: 0.2s all ease-in-out;
  transition-delay: 0s;
  z-index: 1;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title {
  font-weight: 400;
  transition-delay: 0.4s;
  color:#00e7ff
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title:after {
  background: #00e7ff;
  width: 25px;
  height: 25px;
  transition-delay: 0.4s;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title {
  color: #888;
  font-weight: 16px;
}
.swiper-container-wrapper--timeline .swiper-pagination-custom .swiper-pagination-switch.active ~ .swiper-pagination-switch .switch-title:after {
  background: #00e7ff;
}

.swiper-wrapper{
  height: 100%!important;
}





/* Positioning the slider on the right side of the screen */
.slider-container {
  position: fixed;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-container-photog{
  transform: translateY(-50%);
}
.rotated-text {
  position: absolute; /* Allows precise placement */
  bottom: 10%;         /* Vertically center on the page */
  left: 0;            /* Position at the left edge */
  transform: rotate(-90deg) translateY(50%);
  transform-origin: left center; /* Ensure proper rotation point */
 
}

/* Slider appearance */
#vertical-slider {
  -webkit-appearance: none;
  width: 10px;  /* Width of the slider track */
  height: 300px;  /* Height of the slider */
  background: transparent;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  position: relative;
  writing-mode: vertical-lr; /* Set slider to vertical orientation */
  direction: rtl; /* Fills the track from top to bottom */
  margin-bottom: 10px;
}

/* Slider Track */
#vertical-slider::-webkit-slider-runnable-track {
  background: #ddd; /* Light gray background */
  border-radius: 10px;
  height: 100%;
}

#vertical-slider::-moz-range-track {
  background: #ddd; /* Light gray background */
  border-radius: 10px;
  height: 100%;
}

#vertical-slider::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 8px 0;
  color: transparent;
  height: 100%;
  border-radius: 10px;
}

/* Slider Thumb */
#vertical-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #00e7ff; /* Blue thumb color */
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 8px #00e7ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#vertical-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #00e7ff;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 8px #00e7ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#vertical-slider::-ms-thumb {
  width: 24px;
  height: 24px;
  background: #00e7ff;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 8px #00e7ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Thumb hover effect */
#vertical-slider:hover::-webkit-slider-thumb,
#vertical-slider:hover::-moz-range-thumb,
#vertical-slider:hover::-ms-thumb {
  transform: scale(1.2);
  box-shadow: 0 0 12px #00e7ff;
}

/* Value display (above the slider) */
.slider-value {
  position: absolute;
  bottom: 320px; /* Position above the slider */
  font-size: 20px;
  font-weight: bold;
  color: #00e7ff;
  transition: bottom 0.3s ease;
}