body header .scrollUp {
  position: fixed;
  z-index: 10;
  top: 72%;
  left: 88%;
  rotate: -50deg;
  width: fit-content;
  height: fit-content;
  scale: 0.7;
  transition: 0.5s ease-in-out;
}
body header a svg {
  width: 100%;
  max-width: 150px;
}
body header .scrollUp svg path {
  fill: whitesmoke;
  transition: 0.5s ease-in-out;
}
body header > .scrollArrow {
  rotate: 0deg;
  scale: 1;
}
body header .scrollArrow svg path {
  fill: #f24b4b;
}


/* -------------------- Main Menu ------------------ */
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Logo Block - Start */
.gradient-background {
  border : none;
  color: var(--color-white);
  background: linear-gradient(300deg, rgb(255, 94, 0), darkviolet, blue);
  background-size: 180% 180%;
  animation: gradient-animation 3s ease infinite;

  &:focus-visible {
    scale: 1;
    text-decoration: none;
    outline: 0;
    border-radius: 0 0 55px 55px;

    i {
      scale : 1.5;
      outline: 5px solid var(--ac-focus);
      padding: 10px;
      border-radius: 3px;
    }
  }
}

.menu-tab {
  position: fixed;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: top 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  border-radius: 0px 0px 55px 55px;

  & > img {
    width: 40%;
  }
}
/* Logo Area End */

/* Navigation Links - Start */

.gradientArrow1 {
  fill: url(#gradient1);
}
.gradientArrow2 {
  fill: url(#gradient2);
}
.gradientArrow3 {
  fill: url(#gradient3);
}
.gradientArrow4 {
  fill: url(#gradient4);
}
.gradientArrow5 {
  fill: url(#gradient5);
}
.gradientArrow6 {
  fill: url(#gradient6);
}
.gradientArrow7 {
  fill: url(#gradient7);
}

.menu {
  --border-bottom: solid 1px #232323;

  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  position: fixed;
  z-index: 10;
  top: -600px;
  left: 50%;
  transform: translate(-50%, -20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  transition: top 0.3s ease;
  background: #000;

  .close-mobile {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--border-bottom);
    box-sizing: border-box;

    .close-menu {
      cursor: pointer;
    }

    .radiant-button {
      background: linear-gradient(300deg, rgb(255, 94, 0), darkviolet);
      background-size: 200% 200%;
      animation: gradient-animation 3s ease infinite;
      border: none;
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 94, 0, 0.2);
      transition: background-position 0.5s ease;
    }

    & > img {
      width: 23%;
      max-width: 70px;
      margin-left: 5%;
      filter: brightness(1.5);
    }
  }

  .menu-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.5s ease, top 0.5s ease;

    height: 50px;
    background: #000;

    border-bottom: var(--border-bottom);

    .text {
      position: absolute;
      color: transparent;
      background: linear-gradient(300deg, rgb(255, 94, 0), darkviolet);
      background-size: 120% 10%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; 

      font-family: var(--font-sans-serif);
      font-size: 20px;
      font-weight: 900;
    }

    & > svg {
      width: 100%;
      min-width: 100vw;
      height: 50px;
 
      & > g {
        display: none;
      }
      
      & > text {
        font-family: var(--font-sans-serif);
        font-size: 36px;
        text-shadow: whitesmoke;
      }
    }
  }  
}

/* Tablet only (between 768px and 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* tablet-specific styles */
}

/* Desktop only (1024px and up) */
@media (min-width: 1024px) {
  /* desktop-specific styles */

  .menu-tab {
    width: 210px;
  }
  .menu {
    transform: translate(-50%, 0);
    top: -350px;
    flex-direction: row;
    background: none;

    .close-mobile {
      display: none;
    }

    .menu-bar {
      height: auto;
      background: none;
      border-bottom: none;

      .text {
        color: transparent;
        background: none;
      }

      & > svg {
        width: 100%;
        max-width: 150px;
        min-width: auto;
        height: auto;

        & > g {
          display: inline;
        }

        & > text {
          fill: whitesmoke;
          font-size: 24px;
        }
      }
    }
  }
}