 /* غلاف اللودر */
  #loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .loader-container {
    text-align: center;
  }

  /* اللوجو مع حركة Zoom */
  .loader-logo {
    width: 130px;
    height: auto;
    animation: zoom 2s ease-in-out infinite;
  }

  /* تأثير Zoom */
  @keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }