@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --first-color: hsl(225, 72%, 55%);
  --text-color: hsl(225, 52%, 30%);
  --body-color: transparent; /* Not used now since navbar will be transparent */
  --container-color: transparent; /* Button background will be transparent */
  --container-color-two: hsl(225, 75%, 97%); /* Button background will be transparent */
  --body-font: "Poppins", sans-serif;
  --normal-font-size: var(--fs-base, 1rem);
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body, button {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    line-height: var(--lh-normal, 1.5);
    color: #1a1b20;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /*=============== NAVBAR CONTAINER ===============*/
  .containerNavbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent; /* Transparent background */
  }
  .logoSlico img {
    width: 150px;
    margin-right: 38px;
  }
  
  /*=============== DROPDOWN DESKTOP ===============*/
  .dropdown_desktop {
    position: relative;
    margin-right: 1rem;
    display: inline-block;
  }
  .dropdown__button {
    display: flex;
    align-items: center;
    border: none;
    background-color: transparent; /* Transparent button background */
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  .dropdown__icon {
    font-size: 1.25rem;
    color: var(--first-color);
    margin-right: 0.5rem;
  }
  .dropdown__name {
    font-weight: 500;
  }
  .dropdown__icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    position: relative;
  }
  .dropdown__icons i {
    font-size: 1.25rem;
    color: var(--first-color);
  }
  /* Hide the close icon initially */
  .dropdown__close {
    display: none;
  }
  .dropdown__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 1px 2px 9px 3px rgb(0 0 0 / 10%);
    display: none;
    z-index: 100;
    min-width: 180px;
  }
  .dropdown__menu.active {
    display: block;
  }
  .dropdown__item {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    padding: 8px;
  }
  .dropdown__item:last-child {
    margin-bottom: 0;
  }
  .dropdown__item:hover {
    background-color: #d1e9fb; /* لون الخلفية عند الهوفر */
    border-radius: 10px;
    cursor: pointer;
  }
  /* v1 */
  
  /* Desktop dropdown styling */
.nav-menu .dropdown {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-top: 0.5em;
  }
  .nav-menu li.active > .dropdown {
    display: block;
  }
  
  /* Mobile dropdown styling */
  .mobile-dropdown {
    display: none;
    flex-direction: column;
    margin-top: 0.5em;
  }
  .mobile-dropdown.active {
    display: flex;
  }
  
  /* Basic styles for demonstration (customize as needed) */
  .nav-menu,
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-menu li,
  .mobile-menu li {
    margin: 0.5em 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    margin-left: 0.5em;
  }
  
  
  .dropdown__button:hover {
    background-color: #eeecec; /* لون الخلفية عند الهوفر */
    color: #000; /* يمكن تغييره حسب التصميم */
    border-radius: 100px;
  }

  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .nav-item {
    position: relative;
    /* margin-right: 20px; */
  }
  
  /* Dropdown icon styling (if needed) */
  .dropdown-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 4px;
  }
  
  .hero-section {
    display: flex; 
    flex-direction: row; 
    /* gap: 100px; */
    gap: 20px;
    padding: 0px 20px;
    align-items: start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  
  @media (max-width: 1330px) {
    .hero-section  {
      gap: 10px;
    }
  }
  .logoWebsite {
    flex-shrink: 0;
    width: 130px;
    height: 48px;
    position: relative;
    overflow: visible;
  }
  
  /* Hide the dropdown menus by default */
  .dropdown {
    display: none;
    position: relative;
  
    padding-top: 10px;
    list-style: none;
    z-index: 100;
  }
  
  /* Display the dropdown on hover */
  .nav-item:hover .dropdown {
    display: block;
  }
  
  
  
  /* Optional styling for dropdown items */
  .dropdown li {
    margin: 5px 0;
  }
  
  .dropdown li a {
    color: black;
    text-decoration: none;
  }
  
  .nav-item, .state-layer, .nav-links, .nav-container {
    position: relative;
    overflow: visible;  /* Ensure dropdown can appear without affecting layout */
  }
  
  
  @media (min-width: 1280px) {
  .mobile-hero-image{
    display: none; 
  }
  }
  
  @media (max-width: 1280px) {
  .hero-image{
    display: none;
  }
  }
  
  /* Hamburger Menu */
  .hamburger-menu {
  display: none; /* Hidden by default on larger screens */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 0px;
  padding: 10px;
  z-index: 1000;
  }
  
  .hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: 0.4s;
  }
  
  /* Sidebar */
  .sidebar {
  position: fixed;
  top: 0;
  right: -700px; /* Hide sidebar by default */
  width: 350px;
  height: 100vh;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  }
  
  .sidebar.open {
  right: 0; 
  }
  
  .sidebar .sidenav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  }
  
  @media (max-width: 1280px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Hide sidebar by default */
    width: 300px;
    height: 900px;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1999;
  }
  
  }
  
  /* Hide regular nav-links on mobile */
  @media only screen and (max-width: 1280px) {
  .hamburger-menu {
    display: flex; /* Show hamburger menu on mobile */
  }
  .nav-dropdowns {
    display: none !important;
  }
  }
  /* 
  @media (max-width: 1280px) {
  .sidenav-item{
    display: none;
  }
  .side-language {
    display: none;
  }
  } */
  
  .signin-color{
  background-color: transparent;
  /* color: white; */
  color: black;
  }

  @media only screen and (max-width: 1280px) {
    
    .signin-color{
     
      color: white;
      /* color: black; */
      }
  }
  .nav-container {
  /* padding: 12px 60px 12px 60px; */
  /* position: absolute; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center; 
  padding: 12px 30px 12px 0px;
  justify-content: space-between; 
  
  }
  @media (max-width: 1330px) {
  /* .nav-container {
   padding: 12px 10px;
  }
   */
  }
  .nav-links {
  padding: 4px 0px 4px 0px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  }
  .nav-item {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  }
  
  .language {
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  }
  
  @media (max-width: 1330px) {
  .nav-item{
    display: none;
  }
  .language {
    display: none;
  }
  }
  
  
  .sidenav-item > .state-layer {
  align-items: start;
  }
  .state-layer {
  padding: 8px 4px 8px 12px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  }
  .servicesHero {
  color: #191c1f;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-base, 1rem);
  line-height: var(--lh-normal, 1.5);
  font-weight: 500;
  position: relative;
  }
  .material-symbols-keyboard-arrow-down-rounded {
  flex-shrink: 0;
  /* width: 24px; */
  height: 24px;
  position: relative;
  overflow: visible;
  }
  
  .material-symbols-keyboard-arrow-down-rounded2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
  }
  .material-symbols-keyboard-arrow-down-rounded3 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
  }
  
  .state-layer3 {
  padding: 8px 12px 8px 12px;
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  }
  
  .current-language {
  flex-shrink: 0;
  /* width: 24px;
  height: 24px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  }
  .clip-path-group {
  height: auto;
  position: relative;
  left: 0px;
  top: 0px;
  overflow: visible;
  }
  .en {
  color: #191c1f;
  text-align: start;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-base, 1rem);
  line-height: var(--lh-normal, 1.5);
  font-weight: 500;
  position: relative;
  }
  .auth-buttons {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  
  }
  
  
  .sign-in-button {
  border-radius: 100px;
  border: 3px solid black;
  padding: 12px 16px 12px 16px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  /* background-color: #1A2650;   */
  background-color: white;
  margin-right: 12px;
  /* box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.3); */
  }

  
  @media (max-width: 500px) {
    .sign-in-button{
      display: none;
    }
  }
  .sign-in-Hero {
  color: #ffffff;
  text-align: start;
  font-family: "poppins";
  font-size: 16px;
  font-weight: 600;
  position: relative;
  }
  .material-symbols-chevron-right-rounded {
  
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
  }
  .seller-button {
  background: #000000;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid black;
  }
  .seller-button:hover{
    background-color: #272626;
    border-color: #272626;

  }

  .signn:hover{
    background-color: #272626;
    border-color: #272626;
  }
  @media (max-width: 1280px) {
  .seller-button {
    display: none;
    
  }
  }
  .state-layer4 {
  padding: 12px 16px 12px 16px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  }
  
  .nav-container {
  z-index: 1000;
  background-color: #ffffff;
  }
  
  
  .sign-in-hero {
  color: var(--blue-3, #1a2650);
  text-align: start;
  font-family: "poppins";
  font-size: 16px;
  font-weight: 600;
  position: relative;
  }
  .material-symbols-chevron-right-rounded2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
  }
  .hero-content {
  display: flex;
  flex-direction: column; 
  gap: 12px; 
  align-items: flex-start;
  justify-content: center;
  /* width: 878px; */
  padding: 72px;
  z-index: 3;
  margin-top: 0px;
  }
  
  @media (max-width: 1280px) {
  .hero-content{
    padding: 15px;
  }
  }
  .category-container {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  }
  .category-item {
  padding: 8px 12px 8px 12px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  }
  .ellipse-9 {
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  position: relative;
  }
  .category-label {
  color: #ffffff;
  text-align: center;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  }
  .ellipse-92 {
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  position: relative;
  }
  
  
  /* .nav-container,
  .nav-item,
  .servicesHero {
  overflow: visible;
  } */
  
  .side-language .language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  /* left: 0; */
  text-align: center;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 100;
  min-width: 150px;
  }
  .side-language:hover .language-dropdown,
  .side-language .state-layer3.active .language-dropdown {
  display: block;
  }
  
  /*  */
  .language {
  position: relative;
  }
  
  .language-dropdown-desktop {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  }
  .deskLang {
  display: block;
  }
  
  .lang-item {
  cursor: pointer;
  }
  /* Default: hide the dropdown */
  .language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background: #fff;
  padding: 10px;
  z-index: 100;
  min-width: 150px;
  }
  
  /* Desktop: show dropdown on hover */
  @media (min-width: 768px) {
  .language:hover .language-dropdown {
    display: block;
  }
  }
  
  /* Mobile: use a toggle class to show dropdown */
  .language.active .language-dropdown {
  display: block;
  }
  
  
  .language .dropdown {
  display: none;
  
  padding-top: 10px;
  list-style: none;
  z-index: 100;
  }
  
  .language:hover .dropdown {
  display: block;
  }