@font-face {
    font-family: 'MyCustomFont';
    src: url('./IBMPlexSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    font-family: 'MyCustomFont', sans-serif;
    margin: 0;
  }


  nav {
    background-color: #181d6c;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    /* position: absolute; */
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    direction: rtl;
  }
  
  .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    padding-right: 0;
    padding-left: 2rem;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    gap: 2rem;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 700;
  }
  
  .nav-linkss {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-radius: 6px;
  }
  
  .nav-linkss:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }
  
  .nav-linkss .dropdown-icon {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    margin-left: 0;
    margin-right: 4px;
    transition: transform 0.3s;
  }
  
  .dropdown:hover .nav-linkss .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    transform: translateY(10px) translateX(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-content::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
  }
  
  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    transition: background-color 0.2s;
    text-align: right;
  }
  
  .dropdown-item:hover {
    background-color: #f5f7ff;
  }
  
  .dropdown-item .dropdown-icon {
    width: 32px;
    height: 32px;
    background-color: #f0f3ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  
  .dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
  }
  
  .dropdown-title {
    font-weight: 500;
    color: #1a1a1a;
  }
  
  .dropdown-description {
    font-size: 0.875rem;
    color: #666;
  }
  
  .nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .btn {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-login {
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
  }
  
  .btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
  }
  
  .btn-trial {
    background: #ff6b35;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
  }
  
  .btn-trial:hover {
    background: #ff5a1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    background: linear-gradient(135deg, #181d6c, #3154b3);
    left: auto;
    right: -100%;
    border-radius: 24px 0 0 24px;
  }
  
  @media (max-width: 900px) {
    .nav-links,
    .nav-buttons {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100%;
      background-color: #181d6c;
      padding: 1rem;
      z-index: 1001;
      transition: left 0.3s ease-in-out;
      overflow-y: auto;
    }
  
    .mobile-menu.active {
      display: block;
      left: auto;
      right: 0;
    }
  
    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }
  
    .mobile-menu-close {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
    }
  
    .mobile-nav-links {
      list-style: none;
      margin-bottom: 2rem;
    }
  
    .mobile-nav-link {
      color: white;
      text-decoration: none;
      font-size: 1.125rem;
      padding: 12px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      opacity: 0.9;
      border-radius: 8px;
      margin: 4px 0;
    }
  
    .mobile-dropdown-icon {
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid white;
      transition: transform 0.3s;
    }
  
    .mobile-dropdown-icon.active {
      transform: rotate(180deg);
    }
  
    .mobile-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  
    .mobile-dropdown-content {
      display: none;
      padding: 0.5rem 0 0.5rem 1rem;
    }
  
    .mobile-dropdown-content.active {
      display: block;
    }
  
    .mobile-dropdown-item {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      padding: 12px 16px;
      display: block;
      font-size: 1rem;
      border-radius: 6px;
      margin: 4px 0;
    }
  
    .mobile-dropdown-item:hover {
      background: rgba(255, 255, 255, 0.1);
    }
  
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }
  
    .overlay.active {
      display: block;
    }
  }
  
  @media (min-width: 901px) and (max-width: 1024px) {
    .nav-menu {
      gap: 1rem;
    }
  
    .nav-links {
      gap: 1rem;
    }
  
    .nav-buttons {
      gap: 0.5rem;
    }
  }
  


  /* FOOTER START */
.footer {
  /* background: linear-gradient(135deg, #4169e1, #3154b3); */
  background: #191e6d;
  color: white;
  padding: 60px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-column ul li a:hover {
  padding-left: 8px;
  color: white;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
/* FOOTER END */
