#homepage-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  height: 0;
  padding-top: 37.5%; /* aspect ratio */
  margin: 0 auto;
}

@media (max-width: 768px) {
  #homepage-slider {
    padding-top: 38.25%; /* نسبت 16:9 برای موبایل */
    max-width: 100vw;
    height: auto; /* اجازه می‌دهد ارتفاع اتوماتیک شود */
  }
}

#homepage-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  visibility: hidden;
}

#homepage-slider img.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Slider dots styling */
.slider-dots {
  text-align: center;
  margin-top: 10px;
}
.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}
.slider-dots span.active {
  background: #000;
}

