
nav {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    background-color: rgba(34, 34, 55, 0.5);
    backdrop-filter: blur(25px);
    border-bottom: 1px #4d4d7b solid;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 35px;
    z-index: 99999;
  }
  
  nav .logo {
    width: max-content;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    text-wrap: nowrap;
    color: var(--white-color);
  }
  
  nav .logo #vector-logo {
    height: 43px;
    margin-right: 10px;
    /* filter: invert(92); */
  }

  nav .logo #text-logo {
    margin-left: 10px;
    height: 28px;
    width: auto;
  }
  
  nav .logo {
   cursor: pointer;
  }
  
  nav .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
  }
  
  nav .links a {
    text-decoration: none;
    color: var(--white-color);
    position: relative;
  }
  
  .hover-line {
    &:after {
      content: "";
      position: absolute;
      left: 0;
      top: 95%;
      width: 0;
      height: 2px;
      border-radius: 10px;
      background: linear-gradient(
        to left,
        var(--first-color),
        var(--second-color)
      );
      transition: width 0.3s; /* تحديد سرعة الانتقال هنا */
    }
  
    &:hover {
      text-decoration: none;
      &:after {
        width: 100%; /* توسيع الخط عند التحوم */
      }
    }
  }
  
  nav .links .nav-btn:hover {
    background: linear-gradient(to left, var(--first-color), var(--second-color));
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease-in-out;
  }


  /* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {
    nav {
        width: 100%;
        height: 60px;
      }
    
      nav .logo {
        width: 150px;
        height: 100%;
        /* border: 1px solid blue; */
        font-size: 20px;
      }

       nav .logo #text-logo {
    margin-left: 5px;
    height: 20px;
    width: auto;
  }
    
      nav .logo img {
        height: 30px;
      }
      nav .links {
        font-size: 10px;
        column-gap: 40px;
      }
}


/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {
  nav {
      width: 100%;
      height: 60px;
      /* background-color: red; */
      /* display: none;/ */
    }
  
    nav .logo {
      width: 80px;
      height: 100%;
      /* border: 1px solid blue; */
      font-size: 20px;
    }
  
    nav .logo img {
      height: 32px;
    }
    nav .links {
      display: none;
      font-size: 10px;
      column-gap: 40px;
    }
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {
    nav {
        /* background-color: green; */
        height: 50px;
        padding: 20px 15px;
      }
    
      nav .logo {
        width: fit-content;
        height: fit-content;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .logo #vector-logo {
        width: 30px;
        /* border: 1px solid red; */
      }
      
      .logo #text-logo {
        height: 17px !important;
        /* border: 1px solid red; */
      }

      nav .logo img {
        height: 30px;
      }
}
