.hero-bg img {
  display: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* الفيديو */
.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;

  /* تحسين وضوح الفيديو */
  filter: brightness(1.25) contrast(1.1);
}

/* الطبقة الغامقة فوق الفيديو */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* قلل الرقم لو عايز الفيديو يبان أكتر */
  background: rgba(0, 0, 0, 0.35);

  z-index: 1;
}