    #custom-slider {
      position: relative;
      overflow: hidden;
      height: 100vh;
      touch-action: pan-y;
    }
    .slides-container {
      position: relative;
      width: 100%;
      height: 100%;
    }
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  display: flex;
  align-items: flex-end; /* Alt hizalama */
  padding: 30px;
  box-sizing: border-box;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
}

.slide-content {
  z-index: 2;
  color: white;
  max-width: 100%;
  margin-left: 80px;
  margin-bottom: 150px;
}


/* Mobile devices (typically screens less than 768px wide) */
@media (max-width: 767px) {
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* Yatayda ortalar */
  align-items: center; /* Dikeyde ortalar */
  flex-direction: column; /* İçerikleri alt alta sıralar (isteğe bağlı) */
  text-align: center;
  width: 100%;
  height: 100%;
}
.hslider-link-effect {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.4s ease;
  position: relative;
}
  .hslider-link-effect .line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: width 0.4s ease;
}

.hslider-link-effect:hover {
  transform: translateX(10px); /* Tüm yapı birlikte sağa kayar */
  color: #ffcc00;
}

.hslider-link-effect:hover .line {
  width: 40px; /* Çizgi daha da büyür */
}
}


.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
  pointer-events: none;
  z-index: 1;
}

    .slide.prev {
      transform: translateX(-100%);
    }
    .slide.next {
      transform: translateX(100%);
    }
    .progress-container {
      position: absolute;
      bottom: 80px;
      left: 100px;
      width: 50%;
      display: flex;
      gap: 10px;
      padding: 0 20px;
      box-sizing: border-box;
      z-index: 3;
    }
    /* Using UIkit button styles */
    .nav-buttons {
	  position: absolute;
	  color:#fff;
	  top: 50%;
	  left: 0;
	  right: 0;
	  z-index: 5; /* Bu değeri arttırarak butonların üstte görünmesini sağlıyoruz */
	  display: flex;
	  justify-content: space-between;
	  transform: translateY(-50%);
	}

	.nav-button {
	  z-index: 6; /* Düğmelerin üstte olmasını sağlar */
	}
	
	
.hslider-link-effect {
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.4s ease;
  position: relative;
}

.hslider-link-effect .line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: width 0.4s ease;
}

.hslider-link-effect:hover {
  transform: translateX(10px); /* Tüm yapı birlikte sağa kayar */
  color: #ffcc00;
}

.hslider-link-effect:hover .line {
  width: 40px; /* Çizgi daha da büyür */
}

.slide-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.slide.active .slide-content .h1-anim {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active .slide-content .img-anim {
  transition-delay: 0.9s;
  opacity: 1;
  transform: translateY(0);
}

.slide.active .slide-content .link-anim {
  transition-delay: 1.5s;
  opacity: 1;
  transform: translateY(0);
}

.progress-bar-track {
  background-color: rgba(255, 255, 255, 0.2); /* Siyah ama %30 opak */
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  background-color: #fff;
  height: 2px;
  width: 0%;
  transition: width 3s linear; /* örnek: animasyonlu genişleme */
}





