#hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;

}

/* בסיס */
.bgms-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  z-index: 10;
  cursor: pointer;
  user-select: none;
  padding: 5px 10px;

  direction: ltr;
  transition: background 0.3s, transform 0.3s;
}

/* ימין ושמאל */
.bgms-left {
  left: 10px;
}

.bgms-right {
  right: 10px;
}

/* אפקט hover */
.bgms-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* מובייל */
@media (max-width: 768px) {
  .bgms-arrow {
    font-size: 2.2rem;
    padding: 4px 8px;
  }
}