  #heroSlider {
    position: relative;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 2;
  }

  .dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }

  .dots span {
    width: 8px;
    height: 8px;
    background: #e5d1ca;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .dots span.active {
    background: #db8f75;
    transform: scale(1.2);
  }
  
  
  /* Fade-up animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}
 /* إخفاء السكرول في الديسكتوب فقط */
  @media (min-width: 640px) {
    .no-desktop-scroll {
      overflow-x: hidden !important;
    }
  }

  /* إخفاء شريط السكرول بصريًا (ويبكيت + فايرفوكس) */
  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

.animate-fadeUp {
  animation: fadeUp .9s ease-out;
}

  body { font-family: "IBM Plex Sans Arabic"; background: #f9f6f4; }
    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }
      /* تأثير دخول ناعم */
  @keyframes topbarSlideDown {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .animate-topbar-slide {
    animation: topbarSlideDown .5s ease-out;
  }

    @keyframes scaleIn {
    0% { opacity: 0; transform: scale(.9); }
    100% { opacity: 1; transform: scale(1); }
  }
  
    .social-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slide-down {
  animation: slideDown 0.25s ease-out;
}
input, textarea, select {
    font-size: 16px;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}