
.hidden {
    display: none!important; /* أو أي خصائص أخرى تجعله غير مرئي */
}



@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}





.main-header::before {
    content: ''; /* يجب تحديد محتوى العنصر */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}


@keyframes leFadeInTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to { opacity: 1 }
}

/* إعدادات الـ header الأساسية */
.main-header {
    position: relative;
   
   
    transition: all 0.3s ease-in-out;
    
     transition:all 0.3s ease;
     animation: leFadeInTop 1s ease-in-out
}

.fixed-header-test {
    position: fixed!important;
    top: 0;
    left: 0;
    width: 100%;
   
   
    transition: background-color 0.3s ease;
    animation: leFadeInTop 1s ease-in-out
    
}
 .leFadeInTop {
      animation: leFadeInTop 0.3s ease-in-out;
    }


 .fadeOutUp {
       position: fixed!important;
        animation: fadeOutUp 0.5s forwards;
    }



@keyframes fadeOutUp {
    0% {
        transform: translateY(0); /* وضع العنصر في مكانه */
        opacity: 1; /* الشفافية كاملة */
    }
    100% {
        transform: translateY(-50px); /* تحريك العنصر لأعلى */
        opacity: 0; /* جعل العنصر شفافاً */
    }
}




#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e062b;
}
#preloader img{
    object-fit: contain;
}
.curtain-strips {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* خلف الصورة */
  display: flex;
  /* يمكن إضافة ستايل الشرائح هنا */
}

.curtain-strips div {
  flex: 1;
  background: #ffff; /* لون الشرائح */
  margin: 0 2px; /* مسافة بين الشرائح */
 
}

#status {
  position: relative;
  z-index: 2; /* فوق الشرائح */
  max-width: 150px;
  max-height: 150px;
}

