#slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* Hər hansı artıq elementin görünməməsi üçün */
}

.swiper.mySwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.silder-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.silder-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}
.swiper-content{
  width: 100%;
  height: 100%;
}
.silder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-content-details {
  z-index: 2;
  position: absolute;
  width: 100%;
  max-width: 600px;
  text-align: center;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  color: #fff;
}

.swiper-content-details p {
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 29px;
  background: #f5f5f54d;
 padding: 10px 22px;
 border-radius: 30px;
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 15px;
}

.swiper-content-details h2 {
  text-align: start;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.2;
  color: #fff;
}

.swiper-content-details .btn {
  color: #000;
  background-color: #fff;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 40px;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  letter-spacing: 1px;
  width: 100%;
  transition: .4s all ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

}

.swiper-content-details .btn:hover {
  background-color: transparent;
  border-color: #fff;
}

/* Slider altındakı nömrələr */
.swiper-pagination {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #00aaff;
}
/* Nömrə göstəriciləri dizaynı */
.swiper-pagination {
  position: absolute;
  bottom: 5%; /* Alt hissədə mövqeləndirir */
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px; /* Nömrələr arasında məsafə */
  font-family: Arial, sans-serif;
}

.swiper-pagination-bullet {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7); /* Gümüşü rəng */
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  color: #fff; /* Aktiv nömrənin rəngi ağ olacaq */
  font-weight: bold;
  transform: scale(1.2); /* Aktiv nömrənin ölçüsünü artırır */
}

/* Çizgi effekti */
.swiper-pagination-line {
  position: absolute;
  bottom: 4%;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

/* Responsiv düzəlişlər */
@media screen and (min-width: 760px) {
  .swiper-content-details {
    width: 50%;
    padding: 10px;
    z-index: 2;
    position: absolute;
    text-align: center;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    color: #fff;
  }

  .swiper-content-details h2 {
    font-size: 1.8rem;
  }

  .swiper-content-details .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .swiper-pagination {
    bottom: 5%;
  }
}
