  header {
    /* background-color: #000;
    position: fixed;
    z-index: 1909;
    top: 0;
    left: 0;
    right: 0;
    transition: all 1s linear; */
    /* width: 100dvw; */
    position: fixed;
    top: 31px;
    left: 0;
    right: 0;
    z-index: 1909;
    /* background-color: #000; */
    padding: 0 35px;
    transition: all 0.3s ease;

    .navbar {
      background-color: #25252A;
      padding: 12px 14px;
      border-radius: 10px;
      z-index: 1909;
      width: 100%;
      margin: auto;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      /* border-bottom: 1px solid rgba(255, 255, 255, 0.50); */
    }
  }

  .ismobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    /* background: black; */
  }

  .logo img {
    /* height: 37px; */
  }

  .nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color, background .25s linear;
    padding: 6px 10px;

    &:active,
    &.active,
    &:hover {
      color: var(--primary-color);
    }

    &.button {
      background: var(--primary-color);
      padding: 6px 26px;
      border-radius: 25px;

      &:active,
      &.active,
      &:hover {
        background-color: white;
        color: #000;
      }

      &.button-outline {
        border: 1px solid var(--white);
        background: transparent;
        color: #fff;

        &:active,
        &.active,
        &:hover {
          background-color: var(--white);
          color: #000;
        }
      }
    }
  }




  .nav-center {
    flex-grow: 1;
    text-align: center;
  }

  .desktop-only {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  /* Light variant of header after scroll */
  header.light {
    top: 0;
    background-color: transparent;
    /* background-color: #fff !important; */
    /* backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out; */
    /* transition: background-color 0.3s ease, color 0.3s ease; */
  }

  header.light .nav-menu a,
  header.light .nav-toggle {
    color: #fff;
  }

  header.light {
    .nav-menu a{
         &:active,
    &.active,
      &:hover {
        color: var(--primary-color);
      }
    }

    .nav-menu a.button {
      color: #fff;
   &:active,
    &.active,
      &:hover {
        background-color: #fff;
        color: #000;
      }

      &.button-outline {
        color: #fff;
   &:active,
    &.active,
        &:hover {
          color: #000;
          background-color: #fff;
          border-color: #fff;
        }
      }
    }
  }

  /* ------------ Mobile Styles ------------ */
  .nav-toggle {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-toggle span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    transition: 0.3s ease;
  }

  .nav-toggle .line1 {
    top: 0;
  }

  .nav-toggle .line2 {
    top: 10px;
  }

  .nav-toggle .line3 {
    top: 21px;
  }

  .nav-toggle.active .line1 {
    transform: rotate(45deg) translate(7px, 8px);
  }

  .nav-toggle.active .line2 {
    opacity: 0;
  }

  .nav-toggle.active .line3 {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  .menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 900;
  }

  @media (max-width: 992px) {
    header {
      .navbar {
        padding: 0;
      }
    }



    .nav-toggle {
      display: block;
    }

    .desktop-only {
      display: none;
    }

    .ismobile-header {
      padding: .5rem 1rem;
    }

    .mobile-menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      background-color: #111;
      position: absolute;
      top: 100%;
      left: 0;
      padding: 15px 20px;
      gap: 2dvh;
      z-index: 1100;
      display: none;
    }

    .mobile-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 15px;
    }

    .mobile-menu.active {
      display: flex;
    }

    .nav-center {
      text-align: left;
      margin-top: 10px;
    }
  }

  @media (min-width: 992.1px) {
    .ismobile-header {
      /* position: absolute;
      top: 0;
      z-index: 1200;
      padding: 1rem;
      left: 50%;
      transform: translateX(-50%); */
      width: auto;
      /* display: block; */
    }
  }

  @media (min-width: 992px) and (max-width: 1279px) {

    header {
      .navbar {
        max-width: 96%;
        padding: 6px 12px;
      }
    }



    .nav-menu {
      gap: 4px;

      a {
        font-size: 12px;
        padding: 6px 6px;

        &.button {
          padding: 6px 16px;
        }
      }
    }

  }

  @media (min-width: 1280px) and (max-width: 1600px) {





    .logo img {
      /* width: 65px; */
    }
  }

  @media (min-width: 1280px) {

    .nav-menu {
      gap: 7px;
    }
  }

  /* *{border: 1px solid red;} */