* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
  }

  
  html {
    direction: rtl; 
    scrollbar-width: thin;
    scrollbar-color: #9f4fff #1a1321;
  }
  
  body {
    direction: ltr; 
  }
  
 
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #1a1321;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9f4fff, #603F84);
    border-radius: 10px;
    border: 2px solid #1a1321;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b366ff, #7B00FF);
  }
  
  body {
    background: linear-gradient(110deg, #09070b, #603F84, #09070b);
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  #loading-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, #09070b, #603F84, #09070b);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }

  #loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
  }

  #loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9f4fff, #7B00FF);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
  }

  #loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-loading 1.5s infinite;
  }

  @keyframes shimmer-loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  #loading-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.8;
    animation: pulse-text 2s infinite;
  }

  @keyframes pulse-text {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
  }
  
  header {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5vw;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
  }
  
  header h2 {
    margin: 0;
    font-size: 2rem;
    white-space: nowrap;
  }
  
  .nav-container {
    display: flex;
    gap: 3.125rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    align-items: center;
  }
  
  nav.main-nav {
    display: flex;
    gap: 3.125rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  nav.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    transition: color 0.3s ease, transform 0.3s ease; 
    padding: 0.5rem 0;
  }
  
  nav.main-nav a:hover {
    color: #9f4fff;
    transform: translateY(-2px);
  }
  
  .contact-btn {
    background: #7B00FF;
    padding: 0.625rem 1.25rem;
    border-radius: 1.25rem;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; 
    white-space: nowrap;
  }
  
  .contact-btn:hover {
    background: #603F84;
    transform: translateY(-2px);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 20;
    margin-left: 20px;
    transition: transform 0.3s ease; 
  }
  
  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
  }
  
  footer {
    background: #1a1321;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5vw;
    min-height: 120px;
    font-size: 1.5rem;
    margin-top: auto;
    border-top: 1px solid white;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  
  .footer-logo .highlight {
    color: #9f4fff;
  }
  
  .footer-desc {
    font-size: 0.85rem;
    margin-top: 0.2rem;
    font-weight: 500;
  }
  
  .footer-credits {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    text-align: center;
    flex: 1;
    line-height: 120px;
  }
  
  .footer-credits a {
    color: #9f4fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-credits a:hover {
    color: #b366ff;
    text-decoration: underline;
  }
  
  .get-started-btn {
    background: #7B00FF;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 1.2rem;
    border: none;
     text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s; 
  }
  
  .get-started-btn:hover {
    background: #9f4fff;
    transform: translateY(-2px);
  }
  
  @media (max-width: 1024px) {
    header {
      padding: 1.25rem 4vw;
    }
    .nav-container {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 5vw;
      text-align: left;
    }
  
    header h2 {
      margin: 0;
    }
  
    .nav-container {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background: #1a032f;
      padding: 1rem 5vw;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 15;
    }
  
    .nav-container.active {
      display: flex;
    }
  
    nav.main-nav {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
  
    nav.main-nav a {
      padding: 0.8rem 0;
      text-align: center;
      font-size: 1rem;
      width: 100%;
    }
  
    .contact-btn {
      margin-top: 1.25rem;
      width: 100%;
      max-width: none;
      text-align: center;
    }
  
    .hamburger {
      display: flex;
    }
  
    footer {
      flex-direction: column;
      align-items: center;
      padding: 0.5rem 2vw;
      min-height: auto;
    }
  
    .footer-left {
      align-items: center;
      margin-bottom: 0.6rem;
    }
  
    .footer-desc {
      font-size: 0.9rem;
    }
  
    .footer-credits {
      font-size: 0.9rem;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }
  
    .get-started-btn {
      width: 32%;
      max-width: 250px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    header h2 {
      font-size: 1.6rem;
    }
  }