.services-slider {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

.service-slider-wrapper {
  display: flex;
  flex-direction: row;
  gap: 28px;
  transition: transform 0.3s ease;
  /*    width: 100%; */
  width: fit-content;
}

.service-slide {
  flex: 0 0 auto;
  /*   width: 33.33%; */
  display: flex;
  flex-direction: column;
  gap: 19px;
  flex-shrink: 0;
	position: relative;
}

.service-slide a {
	position: ;
	position: absolute;
	width: ;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.service-slide img {
  height: 292px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.service-slide h3 {
  margin: 0;
  color: var(--White, #fff);
  font-family: Alexandria;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.slider-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.service-slider-nav {
  display: flex;
  gap: 12px;
}

.service-slider-nav a {
	border-radius: 64px;
	border: 1px solid var(--Secondary, #3DAE81);
	padding: 8px;
	display: inline-flex;
}

.service-slider-nav a svg {
/*   border-radius: 64px; */
/*   border: 1px solid var(--Secondary, #3dae81); */
/*   padding: 8px; */
}

.service-slider-pagination {
  display: flex;
  gap: 24px;
  align-items: center;
}

.pagination-container {
  /*     width: 100%; */
  /*     height: 4px; */
  /*     background-color: rgba(255, 255, 255, 0.2); */
  position: relative;
  /*     overflow: hidden; */
  width: 895px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 32px;
  background: #296c74;
}

.pagination-slider {
  width: 25%; /* Adjust this value based on progress/number of pages */
  /*     height: 100%; */
  /*     background-color: white; */
  position: absolute;
  left: 0;
  top: calc(50% - 5.5px);
  transition: left 0.3s ease;

  width: 59px;
  height: 11px;
  flex-shrink: 0;
  border-radius: 32px;
  background: var(--White, #fff);
}

.pagination-indicator {
  color: var(--White, #fff);
  font-family: Alexandria;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .services-slider {
/*     margin: 60px auto; */
  }
  .service-slider-wrapper {
    gap: 20px;
  }
  .service-slide {
    padding: 0 10px;
  }
  .pagination-container {
		width: 580px;
  }
}

@media (max-width: 767px) {
  .services-slider {
/*     margin: 40px auto; */
  }
  .service-slider-wrapper {
    gap: 16px;
  }
	.service-slide img {
		height: 220px;
	}
  .service-slide {
    padding: 0 8px;
  }
  .pagination-container {
    width: 160px; /* Adjust for mobile */
  }
	
	.pagination-slider {
	top: calc(50% - 3px);
	width: 25px;
	height: 6px;
	border-radius: 5px;
}
}
