/* ===============================
   TIMELINE SLIDER — FULL CSS
   =============================== */

.ts-timeline-wrap {
      position: relative;
    padding-top: 60px;
    margin-left: 10rem;
}
.container h3.ts-title {
       font-size: 30px !important;
    line-height: 120%;
    padding: 0 !important;
}
.ts-content p {
    line-height: 170%;
}
.timeline-slider .slick-list.draggable {
    transform: translateX(-20px);
    overflow: hidden !important;
}

/* Horizontal Line */
.ts-timeline-wrap::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e6eef8;
    z-index: 0;
}

/* Allow absolute positioned years to be visible above slick overflow */
.timeline-slider,
.timeline-slider .slick-list,
.timeline-slider .slick-track {
  overflow: visible !important;
}

/* Each slide */
.timeline-slider .ts-slide {
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

/* YEAR — positioned above the line */
.ts-slide .ts-year {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    font-weight: 700;
    font-size: 30px;
    color: #071022;
    white-space: nowrap;
}

/* Blue dot above year */
.ts-slide .ts-year::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00AEEF;
  z-index: 4;
}

/* Card */
.ts-box {
margin-top: 90px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: relative;
    z-index: 2;
    height: 300px;
    align-content: center;
    margin-bottom: 40px;
	background-image: url(/wp-content/uploads/2025/10/image-61.png);
    background-position: inherit;
    background-repeat: no-repeat;
}

/* Title inside card */
.ts-title {
  font-size: 24px;
  font-weight: 700;
  color: #071022;
  margin-bottom: 14px;
}

/* Card text */
.ts-desc {
  font-size: 16px;
  line-height: 26px;
  color: #555;
}

/* Slick Dots Styling */
.timeline-slider .slick-dots {
    position: initial;
    padding-right: 15rem;
}

.timeline-slider .slick-dots li button:before {
  font-size: 10px;
  opacity: 0.25;
}

.timeline-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #071022;
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
  .ts-timeline-wrap {
    padding-top: 60px;
  }
  .ts-slide .ts-year {
    font-size: 24px;
    top: 5px;
	left:50%;
  }
  .ts-box {
    margin-top: 70px;
  }
	.ts-timeline-wrap {
		margin-left: 0;
	}
	.timeline-slider .slick-dots {
    padding-right: 0;
}
	.ts-box {
		height:350px;
	}
	.timeline-slider .slick-list.draggable {
    transform: translateX(0);
    overflow: visible !important;
		margin-bottom: 0;
}
	.ts-timeline-wrap::before {
    top: 34px;
}
}

@media (min-width: 1280px) and (max-width: 1535px) {
	.ts-box {
		padding:30px;
	}
	.ts-slide .ts-year {
		left:15%
	}
	
}
