  .logo-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
    transform-style: preserve-3d;
  }

  .logo-container {
    width: 320px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
  }

  .logo-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
  }

  .logo-piece {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('assets/images/logo.png');
    background-size: 320px 120px;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(2) rotateX(90deg) rotateY(180deg) translateZ(100px);
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55), filter 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: brightness(1.5) contrast(1.2);
    transform-style: preserve-3d;
  }

  .logo-overlay.assembled .logo-piece {
    opacity: 1;
    transform: scale(1) rotateX(0deg) rotateY(0deg) translateZ(0);
    filter: brightness(1) contrast(1);
  }

  .logo-overlay.disappear .logo-piece {
    opacity: 0;
    transform: scale(1.5) rotateX(-30deg) rotateY(20deg) translateZ(50px);
    transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
.logo-overlay.disappear {
  animation: hideLogoOverlay 1.5s forwards;
}

@keyframes hideLogoOverlay {
  0% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
  .particle-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
  }

  .particle {
    position: absolute;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    animation: rotateParticle 10s linear infinite;
  }

  @keyframes rotateParticle {
    0% { transform: rotate(0deg) translateX(0); }
    100% { transform: rotate(360deg) translateX(20px); }
  }

  .light-effect {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(231, 76, 60, 0.1) 30%, transparent 70%);
    animation: lightPulse 8s alternate infinite;
    transform: translate(-25%, -25%);
  }

  @keyframes lightPulse {
    0% { transform: translate(-25%, -25%) scale(0.8); opacity: 0.3; }
    100% { transform: translate(-25%, -25%) scale(1.2); opacity: 0.1; }
  }

 .transition-overlay {
  position: fixed;
  inset: 0;
  background: #031640;
  z-index: 2000;
  clip-path: circle(0% at 50% 50%);
  opacity: 1;
  pointer-events: none;
  animation: none;
}

.logo-overlay.transition .transition-overlay {
  animation: expandAndFade 2s forwards;
}

@keyframes expandAndFade {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
  }
  100% {
    clip-path: circle(150% at 50% 50%);
    opacity: 1;
  }
}
    /* CSS Reset and Base Styles */
    :root {
      --primary-color: #031640;
      --secondary-color: #fff;
      --accent-color: #FFc107;
      --text-color: #333333;
      --light-text: #FFFFFF;
      --light-bg: #031640;
      --border-color: rgba(255, 255, 255, 0.1);
      --success-color: #28A745;
      --warning-color: #FFC107;
      --danger-color: #DC3545;
      --c-dark: #32302f;
      --c-red: #FF6B6B;
      --c-blue: #031640;
      --c-indigo: #6B5BFF;
      --c-green: #6BCB77;
      --c-blue-lighter: rgba(239, 247, 255, 0.7);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      --glass-blur: blur(10px);
    }

    @font-face {
      font-family: 'Futura PT';
      src: url('FuturaPTBook.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Fira Sans', 'Futura PT', Arial, sans-serif;
    }

    body {
      color: var(--text-color);
      line-height: 1.6;
      background-color: #031603;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    ul {
      list-style: none;
    }

    /* Utility Classes */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-py-full {
      padding: 80px 0;
    }

    .section-mt {
      margin-top: 60px;
    }

    .col {
      display: flex;
      flex-direction: column;
    }

    .row {
      display: flex;
    }

    .col-center-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .col-center-start {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .row-center-center {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .row-start-center {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .gap-2 {
      gap: 8px;
    }

    .gap-4 {
      gap: 16px;
    }

    .gap-5 {
      gap: 20px;
    }

    .gap-6 {
      gap: 24px;
    }

    .mt-2 {
      margin-top: 8px;
    }

    .mt-3 {
      margin-top: 12px;
    }

    .mt-4 {
      margin-top: 16px;
    }

    .mt-7 {
      margin-top: 28px;
    }

    .mt-9 {
      align-items: center;
      margin-top: 36px;
    }

    .mt-11 {
      margin-top: 44px;
    }

    .mt-16 {
      margin-top: 64px;
    }

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

    .text-left-imp {
      text-align: center !important;
      font-size: 26px !important;
    }

    .font-bold {
      font-weight: bold;
    }

    .rounded-lg {
      border-radius: 8px;
    }

    .rounded-xl {
      border-radius: 12px;
    }

    .border {
      border: 1px solid;
    }

    .bgc-green {
      background-color: var(--c-green);
    }

    .bgc-blue {
      background-color: var(--c-blue);
    }

    .bgc-red {
      background-color: var(--c-red);
    }

    .bgc-indigo {
      background-color: var(--c-indigo);
    }

    .bgc-blue-lighter {
      background-color: var(--c-blue-lighter);
    }

    .box-72 {
      width: 72px;
      height: 72px;
    }

    .box-100 {
      width: 100px;
      height: 100px;
    }

    .h1-60 {
      font-size: 60px;
      line-height: 1.2;
      font-weight: bold;
      color: #F8B919 !important;
    }

    .text-2xl-res {
      font-size: 24px;
    }

    .text-3xl-res {
      font-size: 24px;
      color: #fff !important;
    }

    .text-4xl-res {
      font-size: 36px;
    }

    .btn-strip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 600;
      align-self: center !important;
      margin-bottom: 5px !important;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-black {
      background-color: #F8B919 !important;
      color: black !important;
    }

    .btn-black:hover {
      background-color: #1a1a1a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-black-light {
      background-color: transparent;
      color: #F8B919;
      border: 2px solid #F8B919;
    }

    .btn-black-light:hover {
      background-color: var(--c-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .btn-black-account {
      background-color: #031640;
      color: #ffffff;
      border: 2px solid #031640;
    }
    .btn-light {
      background-color: transparent;
      color: #ffffff;
      border: 2px solid #ffffff;
    }

    .btn-light:hover {
      background-color: var(--c-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .btn-black-account:hover {
      background-color: var(--c-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .sec-grad-green {
      background: linear-gradient(to bottom, #E8F5E9, #FFFFFF);
    }

    .sec-grad-blue-indigo-120 {
      background: linear-gradient(120deg, var(--c-blue), var(--c-indigo));
    }

    .os-shadow {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Glassmorphism Effect */
    .glass-card {
      border: 1px solid var(--glass-border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-shadow);
      border-radius: 16px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .glass-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    /* Header Styles */
    header {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--light-text);
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 50px;
      margin-right: 15px;
    }

    .logo span {
      color: var(--secondary-color);
    }

    /* Main Navigation */
    .main-nav {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 2rem;
      position: relative;
      z-index: 100;
    }

    .main-nav .nav-item {
      position: relative;
      cursor: pointer;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .main-nav .nav-item > a,
    .main-nav .nav-item > span {
      color: var(--light-text);
      font-size: 0.95rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 0.5rem 0;
      transition: color 0.2s ease;
    }

    .main-nav .nav-item:hover > a,
    .main-nav .nav-item:hover > span,
    .main-nav .nav-item.active > a,
    .main-nav .nav-item.active > span {
      color: var(--accent-color);
    }

    .has-dropdown .dropdown {
      min-width: 360px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
      position: absolute;
      top: 100%;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      z-index: 200;
    }

    .has-dropdown:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .has-dropdown .dropdown {
      pointer-events: none;
    }
    .has-dropdown:hover .dropdown {
      pointer-events: auto;
    }

    .dropdown-body {
      display: flex;
      align-items: stretch;
      gap: 16px;
      padding: 0 16px;
    }

    @media (min-width: 640px) {
      .dropdown-body {
        grid-template-columns: auto 1fr;
        gap: 16px;
      }
    }

    .dropdown-body a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 4px;
      color: #031640;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background-color 0.15s ease, color 0.15s ease;
    }

    .dropdown-body a:hover {
      background-color: #f5f8fa;
      color: #4E8CFF;
    }

    .dropdown-body .box-27 {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      background-color: #4E8CFF;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.15s ease;
    }

    .dropdown-body a:hover .box-27 {
      background-color: #365fc1;
    }

    .dropdown-body a span {
      display: block;
      white-space: nowrap;
    }

    .dropdown-body > img {
      order: 0;
      height: 100%;
      width: auto;  
      object-fit: cover;
      margin: 0;
    }

    @media (min-width: 640px) {
      .dropdown-body {
        grid-template-columns: 100px 1fr;
      }
    }

    body.arabic .has-dropdown .dropdown {
      left: auto;
      right: 0;
    }
    body.arabic .dropdown-body {
      direction: rtl;
    }
    body.arabic .dropdown-body img {
      margin-left:  0;
      margin-right: auto;
    }
    .has-dropdown:hover .dropdown {
      pointer-events: auto;
    }

    .main-nav .dropdown-arrow {
      font-size: 0.8rem;
      margin-left: 0.3rem;
      transition: transform 0.25s ease;
      display: inline-block;
    }

    .main-nav .nav-item:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    /* Header Buttons */
    .header-buttons {
      display: flex;
      align-items: center;
    }

    .header-buttons .btn {
      margin-left: 1rem;
      padding: 0.5rem 1.2rem;
      border-radius: 4px;
      font-weight: 500;
      transition: all 0.3s;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
    }

    .btn-login {
      background-color: transparent;
      color: var(--light-text);
      border: 1px solid var(--light-text);
    }

    .btn-login:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .btn-register {
      background-color: var(--secondary-color);
      color: var(--light-text);
      border: 1px solid var(--secondary-color);
    }

    .btn-register:hover {
      background-color: #0088c0;
      border-color: #0088c0;
    }

    /* Language Switcher */
    .language-switcher {
      position: relative;
      margin-left: 1rem;
    }

    .language-btn {
      background: none;
      border: none;
      color: var(--light-text);
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 0.5rem 0.8rem;
      border-radius: 4px;
      transition: background-color 0.3s;
      font-size: 0.9rem;
    }

    .language-btn:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .language-btn i {
      margin-left: 5px;
      font-size: 0.8rem;
    }

    .language-options {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--light-text);
      min-width: 120px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      padding: 0.5rem 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 100;
      border: 1px solid var(--border-color);
    }

    .language-options a {
      display: block;
      padding: 0.5rem 1rem;
      color: var(--text-color);
      font-size: 0.9rem;
    }

    .language-options a:hover {
      background-color: var(--light-bg);
      color: var(--secondary-color);
      border-radius: 15px;
    }

    .language-switcher:hover .language-options {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--light-text);
      font-size: 1.5rem;
      cursor: pointer;
      margin-left: 1rem;
      transition: transform 0.3s;
    }

    .mobile-menu-btn:hover {
      transform: scale(1.1);
    }

    /* Mobile Sidebar */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(3, 22, 64, 0.95);
      color: var(--light-text);
      padding: 1.5rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 1001;
      overflow-y: auto;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .mobile-sidebar.active {
      transform: translateX(0);
    }

    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .close-sidebar {
      background: none;
      border: none;
      color: var(--light-text);
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .close-sidebar:hover {
      transform: rotate(90deg);
    }

    .sidebar-nav li {
      margin-bottom: 0.5rem;
    }

    .sidebar-nav a {
      display: block;
      padding: 0.8rem;
      border-radius: 4px;
      transition: all 0.3s;
      font-size: 0.95rem;
    }

    .sidebar-nav a:hover {
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--secondary-color);
    }

    .sidebar-dropdown {
      position: relative;
    }
.highlight-yellow {
  color: #f8b919 !important;
}
    .sidebar-dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .sidebar-dropdown-menu {
      padding-left: 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .sidebar-dropdown-menu.active {
      max-height: 500px;
    }

    .sidebar-dropdown-menu li {
      margin-bottom: 0;
    }

    .sidebar-dropdown-menu a {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .sidebar-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .sidebar-buttons .btn {
      width: 100%;
      text-align: center;
      padding: 0.7rem;
      border-radius: 4px;
      font-weight: 500;
    }

    /* Main Content */
    .main-content {
      padding: 2rem 0;
      max-width: 100%;
      margin: 0 auto;
      background-color: #031640;
    }

    .main-content h1 {
      color: var(--primary-color);
      margin-bottom: 1.5rem;
      font-size: 2.2rem;
    }

    .main-content h2 {
      color: var(--primary-color);
      margin: 1.5rem 0 1rem;
      font-size: 1.6rem;
    }

    .main-content p {
      margin-bottom: 1rem;
      color: var(--text-color);
      line-height: 1.7;
    }

    /* Hero Section */
    .-mt-20 {
      margin-top: -80px;
    }

    .hero-shadow {
      position: relative;
      overflow: hidden;
      background: #031640;
      padding: 120px 0;
    }

    .hero-shadow img {
      position: absolute;
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .hero-shadow img.lazyloaded {
      opacity: 1;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-content h1 {
      font-size: 3.75rem;
      font-weight: bold;
      color: #ffffff;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease;
    }

    .hero-content p {
      font-size: 1.5rem;
      color: #ffffff;
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease 0.2s forwards;
      opacity: 0;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      color: #F8B919;
      animation: fadeInUp 0.8s ease 0.4s forwards;
      opacity: 0;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Trading Terminal Section */
    .trading-terminal-section {
      padding: 80px 0;
            background: transparent;

    }

    .terminal-container {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .terminal-content {
      flex: 1;
      padding-right: 40px;
    }

    .terminal-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .terminal-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .terminal-image img:hover {
      transform: translateY(-5px);
    }

    .os-badges {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .os-badge {
      width: 72px;
      height: 72px;
      background: white;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .os-badge:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Account Types Section */
    .account-types {
      padding: 80px 0;
      text-align: center;
    }

    .account-cards-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 0px;
    }

    .account-cards {
      display: flex;
      gap: 30px;
      padding-bottom: 20px;
      
      scroll-snap-type: x mandatory;
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .account-cards::-webkit-scrollbar {
      display: none;
    }

.account-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  scroll-snap-align: start;
  border: 1px solid rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 34px 30px 50px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  text-align: left;
background-size:170% 160%;
  background-position: center;
  background-repeat: no-repeat;
}

    .account-card:hover {
      transform: translateY(0px) !important;
      box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
    }

    .account-card h2 {
      font-size: 1.8rem;
      font-weight: bold;
      color: #000000;
      margin-bottom: 10px;
    }

    .account-card h3 {
      font-size: 1.1rem;
      color: #000000;
      margin-bottom: 20px;
    }

    .account-features {
      margin: 30px 0;
    }

.feature-item {
  display: flex;
  justify-content: center; /* توسيط أفقي */
  align-items: center;     /* توسيط عمودي */
  color: rgb(255, 255, 255);
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-align: center;
}

    .feature-item svg {
      min-width: 16px;
    }

    /* Why Us Section */
    .why-us-section {
      padding: 80px 0;
      text-align: center;
    }

    .why-us-cards-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 60px;
    }

    .why-us-cards {
      display: flex;
      gap: 30px;
      padding-bottom: 20px;
      scroll-snap-type: x mandatory;
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
.why-us-card:hover{
        transform: translateY(0px) !important;

}
    .why-us-cards::-webkit-scrollbar {
      display: none;
    }

    .why-us-card {
      flex: 0 0 calc(33.333% - 20px);
      min-width: 300px;
      scroll-snap-align: start;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 40px 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .why-us-card:hover {
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

    .card-icon {
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .why-us-card h2 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #000000;
      margin-bottom: 20px;
    }

    .why-us-card p {
      font-size: 1.1rem;
      color: #000000;
    }

    /* Dashboard Section */
    .dashboard-section {
      padding: 80px 0;
    }

    .dashboard-container {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .dashboard-image {
      flex: 1;
      justify-content: center;
    }

    .dashboard-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .dashboard-content {
      color: white;
      flex: 1;
    }

    .dashboard-feature {
      display: flex;
      color: white;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .feature-badge {
      width: 73px;
      height: 73px;
      background: white;
      color: black !important;
      border-radius: 50%;
      border: 1px solid #32302f;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      font-weight: bold;
      font-size: 24px;
    }

    .feature-text h3 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff !important;
      margin-bottom: 5px;
    }

    .feature-text p {
      font-size: 1.1rem;
      color: #ffffff;
    }

    .progress-bar {
      height: 15px;
      background: #c3ddee;
      border-radius: 7.5px;
      margin-top: 15px;
      width: 100%;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: #32302f;
      border-radius: 7.5px;
    }

    /* CTA Section */
    .cta-section {
      padding: 80px 0;
    }

    .cta-box {
      border-radius: 12px;
      padding: 80px 40px;
      text-align: center;
      color: white;
        background: linear-gradient(120deg, rgba(78, 140, 255, 0.7), rgba(107, 91, 255, 0.7));

    }

    .cta-box h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: white;
    }

    .cta-box p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
            color: white;

    }
.localized-img {
  display: block;
  width: 120px;
  height: auto;
  margin: -20px auto 10px auto;
  object-fit: contain;
}
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Footer */
    footer {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 3rem 2rem;
      z-index: 1000 !important;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .footer-col h3 {
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      color: var(--secondary-color);
      letter-spacing: 0.5px;
    }

    .footer-col ul li {
      margin-bottom: 0.8rem;
    }

    .footer-col a {
      opacity: 0.9;
      transition: all 0.3s;
      font-size: 0.95rem;
    }

    .footer-col a:hover {
      color: var(--secondary-color);
      opacity: 1;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: all 0.3s;
    }

    .social-links a:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
      color:#000;
    }

    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* Form Styles */
    input[type="email"] {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--border-color);
      border-radius: 4px;
      margin-bottom: 0.8rem;
      font-size: 0.9rem;
    }

    input[type="email"]:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 2px rgba(0, 163, 224, 0.2);
    }

    /* Access Dropdown */
    .access-dropdown {
      position: relative;
    }

    .access-btn {
      background-color: #FFD700 !important;
      color: #000 !important;
      border: none;
      padding: 0.55rem 1.2rem;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .access-btn:hover {
      background-color: #e6c200;
    }

    .access-menu {
      position: absolute;
      top: 120%;
      right: 0;
      background-color: #fff;
      border-radius: 6px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      min-width: 180px;
      z-index: 1000;
    }

    .access-dropdown:hover .access-menu {
      opacity: 1;
      visibility: visible;
    }

    .access-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      color: #333;
      font-size: 0.9rem;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s;
    }

    .access-item:last-child {
      border-bottom: none;
    }

    .access-item:hover {
      background-color: #f2f2f2;
    }

    /* Scroll indicators for mobile */
    .scroll-indicator {
      display: none;
      text-align: center;
      margin-top: 15px;
    }

    .scroll-indicator span {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      margin: 0 5px;
      cursor: pointer;
    }

    .scroll-indicator span.active {
      background: #F8B919 !important;
    }

    /* RTL Styles */
    body.arabic {
      direction: rtl;
      text-align: right;
    }

    body.arabic .main-nav li {
      margin-left: 0;
      margin-right: 1.5rem;
    }

    body.arabic .main-nav .dropdown-arrow {
      margin-left: 0;
      margin-right: 5px;
    }

    body.arabic .main-nav .dropdown-menu {
      left: auto;
      right: 0;
    }

    body.arabic .header-buttons .btn {
      margin-left: 0;
      margin-right: 1rem;
    }

    body.arabic .language-btn i {
      margin-left: 0;
      margin-right: 5px;
    }

    body.arabic .language-options {
      right: auto;
      left: 0;
    }

    body.arabic .mobile-sidebar {
      left: auto;
      right: -300px;
    }

    body.arabic .mobile-sidebar.active {
      right: 0;
      left: auto;
    }

    body.arabic .sidebar-dropdown-menu {
      padding-left: 0;
      padding-right: 1rem;
    }

    body.arabic .mobile-menu-btn {
      margin-left: 0;
      margin-right: 1rem;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .h1-60 {
        font-size: 48px;
      }

      .terminal-container,
      .dashboard-container {
        gap: 40px;
      }
    }

    @media (max-width: 992px) {
      .main-nav,
      .header-buttons {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero-content h1 {
        font-size: 2.8rem;
        color: #fff;
      }

      .hero-content p {
        font-size: 1.2rem;
      }

      .terminal-container,
      .dashboard-container {
        flex-direction: column;
        gap: 40px;
      }

      .terminal-content,
      .dashboard-content {
        padding-right: 0;
        text-align: center;
      }

      .os-badges {
        justify-content: center;
      }

      .dashboard-feature {
        justify-content: center;
        text-align: center;
      }

      .feature-badge {
        margin-right: 0;
      }

      .cta-box h1 {
        font-size: 2.8rem;
        color: #fff;
      }
      
      .account-cards,
      .why-us-cards {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
      }
      
      .account-card,
      .why-us-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
      }
      
      .scroll-indicator {
        display: block;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        padding: 1rem;
      }

      .hero-content h1 {
        font-size: 2.2rem;
      }

      .hero-content p {
        font-size: 1.1rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footer-col {
        margin-bottom: 1.5rem;
      }

      .copyright {
        margin-top: 2rem;
      }

      .cta-box h1 {
        font-size: 2.2rem;
      }

      .cta-box p {
        font-size: 1.1rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    /* تعديل التصميم */
    .lang-switch {
      background: none;
      border: none;
      padding: 0.5rem 1rem;
      color: #ffffff;
      cursor: pointer;
      width: 50%;
      text-align: left;
    }

    .sidebar-buttons {
      margin-top: 1rem;
      padding: 0 1rem;
    }

    .access-buttons {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    .access-btn {
      flex: 1;
      background-color: #0638a7;
      color: #fff;
      text-align: center;
      padding: 0.6rem;
      border-radius: 8px;
      font-weight: 600;
      transition: 0.3s;
    }

    .access-btn:hover {
      background-color: #042d82;
    }

    @media (max-width: 480px) {
      header {
        padding: 0.8rem 1rem;
      }

      .logo {
        font-size: 1.5rem;
      }

      .hero-content h1 {
        font-size: 1.8rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .btn-strip {
        padding: 10px 20px;
        font-size: 14px;
      }

      .cta-box {
        padding: 60px 20px;
      }

      .cta-box h1 {
        font-size: 1.8rem;
      }
      
      .account-card,
      .why-us-card {
        flex: 0 0 90%;
        min-width: 90%;
      }
    }
canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10 !important;
}
section, main ,footer{
  position: relative;
  z-index: 10;
}
