
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Cairo', sans-serif; }
/* Page: الرئيسية - Section: hero-slider-1 */

.hero-slider-1 {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000;
  user-select: none;
  direction: ltr; /* Ensure correct sliding direction calculations */
}

.hero-slider-1 .slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.hero-slider-1 .slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removed pointer cursor and drag */
  cursor: grab;
}

.hero-slider-1 .slide:active {
  cursor: grabbing;
}

.hero-slider-1 .slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
  pointer-events: none;
  direction: rtl;
}

.hero-slider-1 .slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-slider-1 h2 {
  font-size: 3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin: 0;
}

.hero-slider-1 .prev-btn, 
.hero-slider-1 .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10;
  pointer-events: auto; 
}

.hero-slider-1 .prev-btn:hover, 
.hero-slider-1 .next-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

.hero-slider-1 .prev-btn { left: 20px; }
.hero-slider-1 .next-btn { right: 20px; }

@media (max-width: 768px) {
  .hero-slider-1 { height: 350px; }
  .hero-slider-1 h2 { font-size: 2rem; }
  .hero-slider-1 .prev-btn, .hero-slider-1 .next-btn {
    width: 40px; 
    height: 40px; 
    font-size: 18px;
  }
}

