* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #ffffffd5;
}

/* Footer Section */
.footer {
  position: sticky;
  bottom: -0px;
  width: 100%;
  z-index: 10;
  overflow: visible;
}

.tool_nav {
  z-index: 15;
  width: 100%;
  display: flex;
  background: #181818;
  justify-content: center;
  box-shadow:
    inset 4px 3px 3px 0px #111,
    inset -2px -4px 4px 0px #333;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.tool_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 35px;
}
.tool_nav ul li {
  list-style: none;
  text-align: center;
  position: relative;
}
.tool_nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

/* Tool Items */
.tool_item {
  display: flex;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.tool_icon {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.tool_icon img {
  width: 40px;
  height: auto;
  filter: brightness(0.8);
  transition: 0.3s;
  opacity: 0.6;
}

.tool_text {
  position: relative;
  font-size: 17px;
  opacity: 0.5;
  z-index: 9;
  transition: 0.3s;
  font-family: "Overlock SC", sans-serif;
}

.tool_item.raviji a .tool_text {
  font-family: "Acme", sans-seri;
  opacity: 1;
  color: #ffffff;
  position: relative;
}

.tool_item a:hover .tool_text {
  opacity: 1;
  color: #2953fd;
  transition: 0.3s;
}

.tool_item.raviji .tool_icon img {
  filter: brightness(1);
  transform: scale(1.1);
  opacity: 1;
}

/* Indicatore  */
.tool_indicator {
  position: absolute;
  bottom: 0px;
  height: 6px;
  width: 70px;
  background: linear-gradient(90deg, #00f7ff, #ff00cc, #7b00ff);
  border-radius: 50px;
  transition:
    transform 0.4s cubic-bezier(0.4, 1.5, 0.6, 0.9),
    width 0.4s ease,
    background 0.6s ease,
    box-shadow 0.3s ease;

  z-index: 1;
  transform: translateX(var(--indicator-position, -0px));
  background-size: 300% 100%;
  animation: neonFlow 3s linear infinite;
  overflow: visible;
}

.tool_indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  animation: scanline 1.5s linear infinite;
  opacity: 0.7;
}

.tool_indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 247, 255, 0.3), transparent);
  filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool_nav ul li:hover ~ .tool_indicator {
  --hover-position: 0px;
  background: linear-gradient(90deg, #ff00cc, #7b00ff, #00f7ff);
  transform: translateX(var(--hover-position, var(--indicator-position)))
    scaleY(1.3);
}

.tool_nav ul li:hover ~ .tool_indicator::after {
  opacity: 0.8;
}

.tool_nav ul li.raviji:nth-child(1) ~ .tool_indicator {
  background: linear-gradient(90deg, #00f7ff, #00b7ff, #008cff);
}

.tool_nav ul li.raviji:nth-child(2) ~ .tool_indicator {
  background: linear-gradient(90deg, #ff00cc, #ff4dd2, #ff80d5);
  box-shadow:
    0 0 25px rgba(255, 0, 204, 0.9),
    0 0 45px rgba(255, 77, 210, 0.7),
    0 0 65px rgba(255, 128, 213, 0.5);
}

.tool_nav ul li.raviji:nth-child(3) ~ .tool_indicator {
  background: linear-gradient(90deg, #7b00ff, #9b4dff, #b388ff);
  box-shadow:
    0 0 25px rgba(123, 0, 255, 0.9),
    0 0 45px rgba(155, 77, 255, 0.7),
    0 0 65px rgba(179, 136, 255, 0.5);
}

.tool_nav ul li.raviji:nth-child(4) ~ .tool_indicator {
  background: linear-gradient(90deg, #00ff85, #4dff9b, #80ffb3);
  box-shadow:
    0 0 25px rgba(0, 255, 133, 0.9),
    0 0 45px rgba(77, 255, 155, 0.7),
    0 0 65px rgba(128, 255, 179, 0.5);
}

.tool_nav ul li.raviji:nth-child(5) ~ .tool_indicator {
  background: linear-gradient(90deg, #ffab00, #ffc107, #ffd740);
  box-shadow:
    0 0 25px rgba(255, 171, 0, 0.9),
    0 0 45px rgba(255, 193, 7, 0.7),
    0 0 65px rgba(255, 215, 64, 0.5);
}

@keyframes neonFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Social Links */
.social_links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  z-index: 15;
}
.social_item {
  list-style: none;
  position: relative;
  width: 55px;
  height: 40px;
  border: 2px solid #0e5a4a;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  box-shadow:
    0 0 5px #0ff,
    0 0 7px #0ff,
    0 0 1px #0ff;
  overflow: hidden;
}
.social_item:hover {
  width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}
.social_item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--i), var(--j));
  transition: 0.5s;
  opacity: 0;
}
.social_item:hover::before {
  opacity: 1;
}
.social_icon img {
  width: 28px;
  height: auto;
  top: 3px;
  position: relative;
  object-fit: contain;
  transition: 0.5s;
}
.social_item:hover .social_icon img {
  transform: scale(0);
  opacity: 0;
}
.contact_me {
  font-size: 1.2em;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  font-family: "Acme", sans-seri;
}
.social_item:hover .contact_me {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.25s;
}
.social_item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

.about-box {
  padding: 20px 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: blur(10px);
}
.about-box ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
}

.about-box ul li {
  position: relative;
}

.about-box ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 550;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.about-box ul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #03a9f4;
  bottom: 0;
  transition:
    width 0.4s ease-in-out,
    left 0.4s ease-in-out;
}

.about-box ul li a:hover::before {
  width: 100%;
  left: 0;
}

.about-box ul li a:hover {
  color: #03a9f4;
  transform: translateY(-5px);
}

.about-box p {
  font-size: 17px;
  color: #aaaaaa;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 1px;
}

.about-box p:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 440px) {
  .tool_nav ul {
    gap: 30px;
  }
  .tool_icon img {
    width: 35px;
  }
  .tool_text {
    font-size: 18px;
  }
  .tool_indicator {
    height: 4px;
    width: 60px;
  }
}

@media (max-width: 399px) {
  .tool_nav ul {
    gap: 25px;
  }
  .tool_icon img {
    width: 30px;
  }
  .tool_text {
    font-size: 15px;
  }
  .tool_indicator {
    height: 5%;
    width: 50px;
  }
  .social_links {
    gap: 12px;
    margin: 20px 4px;
  }
  .social_item {
    width: 55px;
    height: 35px;
  }
  .social_item:hover {
    width: 150px;
  }
  .social_icon img {
    width: 22px;
    top: 3px;
  }
  .contact_me {
    font-size: 1em;
  }
  .about-box ul {
    padding: 0px 10px;
    gap: 10px;
  }
  .about-box ul li a {
    font-size: 12px;
  }
  .about-box ul li a::before {
    height: 1px;
  }
  .about-box p {
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 330px) {
  .tool_nav ul {
    gap: 20px;
  }
  .tool_icon img {
    width: 25px;
  }
  .tool_text {
    font-size: 12px;
  }
  .contact_me {
    font-size: 0.8em;
  }
  .about-box ul li a {
    font-size: 11px;
  }
  .about-box ul li a::before {
    height: 0px;
  }
}

@media (max-width: 270px) {
  .tool_nav ul {
    gap: 15px;
  }
  .tool_icon img {
    width: 20px;
  }
  .tool_text {
    font-size: 9px;
  }
  .social_item {
    width: 50px;
    height: 30px;
    border-radius: 8px;
  }
  .social_item:hover {
    width: 120px;
  }
  .social_icon img {
    width: 18px;
  }
  .contact_me {
    font-size: 0.6em;
  }
  .about-box ul li a {
    font-size: 11px;
  }
  .tool_indicator {
    width: 30px;
  }
}

@media (max-width: 299px) {
  .about-box {
    padding: 30px 10px;
  }
  .about-box ul {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
  }
  .about-box ul li a {
    font-size: 16px;
    padding: 2px 10px;
  }
  .about-box ul li a::before {
    height: 1px;
  }
  .about-box p {
    font-size: 12px;
  }
  .about-box p:hover {
    color: #ffffff;
    transform: translateY(0);
  }
}

@media (min-width: 576px) {
  .tool_icon {
    overflow: visible;
  }
  .tool_nav ul {
    gap: 60px;
  }
  .tool_icon img {
    width: 40px;
  }
  .tool_text {
    font-size: 18px;
  }
  .tool_indicator {
    width: 78px;
  }
  .social_links {
    gap: 25px;
    padding-top: 20px;
  }
  .social_item {
    width: 60px;
    height: 40px;
    border-radius: 10px;
  }
  .social_item:hover {
    width: 180px;
  }
  .social_icon img {
    width: 30px;
  }
  .contact_me {
    font-size: 1.3em;
  }
  .about-box {
    padding: 20px 10px;
  }
  .about-box ul {
    gap: 30px;
  }
  .about-box ul li a {
    font-size: 18px;
    font-weight: 600;
  }
  .about-box p {
    font-size: 18px;
  }
}

@media (min-width: 760px) {
  .tool_nav {
    left: 0;
    position: relative;
    width: 55%;
    z-index: 11;
  }
  .tool_nav ul {
    gap: 28px;
  }
  .tool_text {
    font-size: 20px;
  }
  .footer {
    z-index: 10;
  }
  .footer2 {
    position: sticky;
    bottom: 0px;
    z-index: 11;
    width: 45%;
    margin-left: 55%; 
  }
  .social_links {
    display: flex;
    justify-self: flex-end;
    justify-content: space-between;
    align-items: center;
    align-self: top;
    gap: 15px;
    width: 222.8%;
    margin-top: -60px;
    margin-bottom: auto;
    background: #181818;
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow:
      10px 0px 5px rgba(20, 20, 20, 0.6),
      0 0px 12px rgba(0, 0, 0, 0.4);
    z-index: 90;
  }
  .social_item {
    width: 55px;
    height: 40px;
  }
  .social_item:hover {
    width: 180px;
  }
  .social_icon img {
    width: 25px;
  }
  .contact_me {
    font-size: 1em;
  }
  .about-box ul {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    align-items: center;
    padding-top: 22px;
    margin-bottom: 15px;
  }
  .about-box ul li a {
    font-size: 2vw;
    text-transform: uppercase;
  }
  .about-box ul li a::before {
    height: 3px;
  }
  .about-box p {
    font-size: 25px;
    text-align: center;
    margin-top: 0px;
  }
  .about-box p:hover {
    color: #ffffff;
    transform: translateY(1);
  }
}

@media (min-width: 992px) {
  .tool_indicator {
    width: 80px;
  }
  .tool_nav ul {
    gap: 45px;
  }
  .tool_icon img {
    width: 42px;
  }
  .tool_text {
    font-size: 18px;
  }
  .social_links {
    padding: 15px 20px;
    margin-top: -75px;
    gap: none;
  }
  .social_item {
    width: 60px;
    height: 40px;
  }
  .social_icon img {
    width: 30px;
  }
  .contact_me {
    font-size: 1.2em;
  }
  .about-box p {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  .tool_nav ul {
    gap: 55px;
  }
  .about-box ul {
    display: flex;
    gap: 20px;
  }
  .about-box ul li a {
    font-size: 2vw;
  }
  .about-box p {
    font-size: 2.5vw;
    margin-top: 25px;
  }
  .about-box p:hover {
    color: #ffffff;
    transform: translateY(-5px);
  }
}

@media (min-width: 1400px) {
  .tool_nav ul {
    gap: 70px;
  }
  .tool_icon img {
    width: 52px;
  }
  .tool_text {
    font-size: 25px;
  }
  .tool_indicator {
    width: 100px;
  }
  .social_links {
    margin-top: -6vw;
    padding: 20px 30px;
    gap: 20px;
  }
  .social_item {
    width: 80px;
    height: 48px;
  }
  .social_item:hover {
    width: 200px;
  }
  .social_icon img {
    width: 35px;
  }
  .contact_me {
    font-size: 1.4em;
  }
}

@media (min-width: 1600px) {
  .about-box {
    margin-top: 40px;
  }
  .about-box ul {
    display: flex;
    gap: 30px;
  }
  .about-box ul li a {
    font-size: 2vw;
  }
  .about-box p {
    font-size: 2vw;
    margin-top: 30px;
  }
  .about-box p:hover {
    color: #ffffff;
    transform: translateY(-8px);
  }
}

@media (min-width: 1700px) {
  .tool_nav ul {
    gap: 90px;
  }
  .social_links {
    gap: 25px;
    padding: 20px 50px;
  }
}

@media (min-width: 1800px) {
  .social_links {
    margin-top: -5vw;
    gap: 20px;
  }
}

@media (min-width: 1900px) {
  .tool_nav ul {
    gap: 5vw;
  }
  .tool_icon img {
    width: 3.5vw;
  }
  .tool_text {
    font-size: 1.75vw;
  }
  .tool_indicator {
    height: 0.5vw;
    width: 7.5vw;
  }
  .social_links {
    gap: 1.2vw;
    margin-top: -6vw;
    padding: 1.15vw 3vw;
  }
  .social_item {
    width: 6vw;
    height: 3.7vw;
    border-radius: 1vw;
  }
  .social_item:hover {
    width: 14vw;
  }
  .social_icon img {
    width: 2.2vw;
  }
  .contact_me {
    font-size: 1.5vw;
  }
  .about-box {
    margin-top: 3vw;
  }
  .about-box ul {
    display: flex;
    gap: 30px;
  }
  .about-box ul li a {
    font-size: 2vw;
  }
  .about-box p {
    font-size: 2vw;
    margin-top: 35px;
  }
  .about-box p:hover {
    color: #ffffff;
    transform: translateY(-10px);
  }
}

@media (min-width: 2300px) {
  .about-box ul {
    display: flex;
    gap: 70px;
  }
  .about-box ul li a {
    font-size: 2vw;
  }
  .about-box p {
    font-size: 2vw;
    margin-top: 40px;
  }
  .about-box p:hover {
    color: #ffffff;
    transform: translateY(-12px);
  }
  .social_links {
    padding: 1.1vw 3vw;
  }
}

@media (min-width: 3300px) {
  .tool_indicator {
    height: 0.5vw;
    width: 8vw;
  }
  .social_links {
    padding: 1vw 3vw;
  }
}
 

@media (min-width: 3300px) and (max-height: 2800px) {
  .footer {
    position: relative;
    bottom: -0px;
    box-shadow: none;
    margin: 0 auto 12px auto;
    z-index: 15;
  }
  .tool_nav {
    display: flex;
    justify-self: end;
    position: fixed;
    bottom: 18px;
    right: 12px;
    gap: 0px;
    padding: 0;
    margin: 0;
    box-shadow:
      inset 3px 2px 2px 0px #111,
      inset -3px -4px 2px 0px #333;
    background: #181818;
    width: 190px;
  }
  .tool_item {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .tool_item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    color: white;
    text-decoration: none;
  }
  .tool_nav ul {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 95%;
    list-style: none;
    padding: 110px 0;
    margin: 0;
    gap: 7vh;
  }
  .tool_icon img {
    width: 130px;
  }
  .tool_text {
    font-size: 42px;
    position: relative;
    top: 40px;
  }
  .tool_indicator {
    width: 12px;
    height: 165px;
    right: 0;
  }
  .tool_nav ul li:hover ~ .tool_indicator {
    transform: translateX(var(--hover-position, var(--indicator-position)))
      scaleY(1.1);
  }
  .footer2 {
    position: relative;
    width: auto;
    margin-left: 0%;
  }
  .social_links {
    width: 50%;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 1.2vw;
    padding: 1vw 3vw;
    margin: 0px;
  }
  .social_item {
    width: 6vw;
    height: 4vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.5vw;
  }
  .contact_me {
    font-size: 1.5vw;
  }
  .about-box ul {
    width: 85%;
  }
}

@media (min-width: 2800px) and (max-height: 2500px) {
  .footer {
    position: relative;
    bottom: -0px;
    box-shadow: none;
    margin: 0 auto 12px auto;
    z-index: 15;
  }
  .tool_nav {
    display: flex;
    justify-self: end;
    position: fixed;
    bottom: 12px;
    right: 12px;
    gap: 0px;
    padding: 0;
    margin: 0;
    box-shadow:
      inset 3px 2px 2px 0px #111,
      inset -3px -4px 2px 0px #333;
    background: #181818;
    width: 160px;
  }
  .tool_item {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .tool_item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    bottom: 0;
    background: transparent;
    color: white;
    text-decoration: none;
  }
  .tool_nav ul {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 95%;
    list-style: none;
    padding: 90px 0;
    margin: 0;
    gap: 5vh;
  }
  .tool_icon img {
    width: 95px;
  }
  .tool_text {
    font-size: 38px;
    position: relative;
    top: 32px;
  }
  .tool_indicator {
    width: 9px;
    height: 130px;
    right: 0;
  }
  .tool_nav ul li:hover ~ .tool_indicator {
    transform: translateX(var(--hover-position, var(--indicator-position)))
      scaleY(1.1);
  }
  .footer2 {
    position: relative;
    width: auto;
    margin-left: 0%;
  }
  .social_links {
    width: 50%;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 1.2vw;
    padding: 1vw 3vw;
    margin: 0px;
  }
  .social_item {
    width: 6vw;
    height: 4vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.5vw;
  }
  .contact_me {
    font-size: 1.3vw;
  }
  .about-box ul {
    width: 85%;
  }
}

@media (min-width: 2300px) and (max-height: 2200px) {
  .footer {
    position: relative;
    bottom: -0px;
    box-shadow: none;
    margin: 0 auto 12px auto;
    z-index: 15;
  }
  .tool_nav {
    display: flex;
    justify-self: end;
    position: fixed;
    bottom: 12px;
    right: 12px;
    gap: 0px;
    padding: 0;
    margin: 0;
    box-shadow:
      inset 3px 2px 2px 0px #111,
      inset -3px -4px 2px 0px #333;
    background: #181818;
    width: 140px;
  }
  .tool_item {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .tool_item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    color: white;
    text-decoration: none;
  }
  .tool_nav ul {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 95%;
    list-style: none;
    padding: 60px 0;
    margin: 0;
    gap: 4.5vh;
  }
  .tool_icon img {
    width: 90px;
  }
  .tool_text {
    font-size: 32px;
    position: relative;
    top: 16px;
  }
  .tool_indicator {
    width: 9px;
    height: 125px;
    right: 0;
  }
  .tool_nav ul li:hover ~ .tool_indicator {
    transform: translateX(var(--hover-position, var(--indicator-position)))
      scaleY(1.1);
  }
  .footer2 {
    position: relative;
    width: auto;
    margin-left: 0%;
  }
  .social_links {
    width: 50%;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 12px;
    padding: 30px 60px;
    margin: 0px;
  }
  .social_item {
    width: 7vw;
    height: 4vb;
    border-radius: 20px;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.5vw;
  }
  .contact_me {
    font-size: 1.3vw;
  }
  .about-box ul {
    width: 85%;
  }
}

@media (min-width: 3800px) and (max-height: 2180px) {
  .tool_nav {
    width: 140px;
  }
  .tool_nav ul {
    gap: 5.5vh;
    padding: 65px 0;
  }
  .tool_icon img {
    width: 88px;
  }
  .tool_text {
    font-size: 33px;
    top: 23px;
  }
  .tool_indicator {
    width: 9px;
    height: 120px;
  }
  .social_links {
    padding: 30px 70px;
  }
  .social_item {
    width: 6.2vw;
    height: 4vw;
  }
  .social_item:hover {
    width: 11vw;
  }
  .social_icon img {
    width: 2.4vw;
  }
  .contact_me {
    font-size: 1.4vw;
  }
}

@media (min-width: 2000px) and (max-height: 1800px) {
  .footer {
    position: relative;
    bottom: -0px;
    box-shadow: none;
    margin: 0 auto 10px auto;
    z-index: 15;
  }
  .tool_nav {
    display: flex;
    justify-self: end;
    position: fixed;
    bottom: 12px;
    right: 6px;
    gap: 0px;
    padding: 0;
    margin: 0;
    box-shadow:
      inset 3px 2px 2px 0px #111,
      inset -3px -4px 2px 0px #333;
    background: #181818;
    width: 125px;
  }
  .tool_item {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .tool_item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    color: white;
    text-decoration: none;
  }
  .tool_nav ul {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 95%;
    list-style: none;
    padding: 50px 0;
    margin: 0;
    gap: 4.5vh;
  }
  .tool_icon img {
    width: 70px;
  }
  .tool_text {
    font-size: 25px;
    position: relative;
    top: 15px;
  }
  .tool_indicator {
    width: 6px;
    height: 100px;
    right: 0;
  }
  .tool_nav ul li:hover ~ .tool_indicator {
    transform: translateX(var(--hover-position, var(--indicator-position)))
      scaleY(1.15);
  }
  .footer2 {
    position: relative;
    width: auto;
    margin-left: 0%;
  }
  .social_links {
    width: 50%;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 0px;
    padding: 20px 70px;
    margin: 0px;
  }
  .social_item {
    border-radius: 20px;
    width: 5vw;
    height: 3vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2vw;
  }
  .contact_me {
    font-size: 1.3vw;
  }
  .about-box ul {
    width: 85%;
  }
}

@media (min-width: 2800px) and (max-height: 1800px) {
  .tool_nav {
    width: 130px;
  }
  .tool_nav ul {
    gap: 5vh;
    padding: 55px 0;
  }
  .tool_icon img {
    width: 72px;
  }
  .tool_text {
    font-size: 29px;
    top: 18px;
  }
  .tool_indicator {
    width: 7px;
    height: 105px;
  }
  .social_links {
    padding: 28px 68px;
  }
  .social_item {
    width: 5.8vw;
    height: 3.6vw;
  }
  .social_item:hover {
    width: 10.5vw;
  }
  .social_icon img {
    width: 2.3vw;
  }
  .contact_me {
    font-size: 1.35vw;
  }
}

@media (min-width: 1500px) and (max-height: 1450px) {
  .footer {
    position: relative;
    bottom: -0px;
    box-shadow: none;
    margin: 0 auto 10px auto;
    z-index: 15;
  }
  .tool_nav {
    display: flex;
    justify-self: end;
    position: fixed;
    bottom: 5px;
    right: 6px;
    gap: 0px;
    padding: 0;
    margin: 0;
    box-shadow:
      inset 3px 2px 2px 0px #111,
      inset -3px -4px 2px 0px #333;
    background: #181818;
    width: 100px;
  }
  .tool_item {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .tool_item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    color: white;
    text-decoration: none;
  }
  .tool_nav ul {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 95%;
    list-style: none;
    padding: 40px 0;
    margin: 0;
    gap: 3.5vh;
  }
  .tool_icon img {
    width: 62px;
  }
  .tool_text {
    font-size: 20px;
    position: relative;
    top: 6px;
    gap: 0px;
  }
  .tool_indicator {
    width: 6px;
    height: 90px;
    right: 0;
  }
  .tool_nav ul li:hover ~ .tool_indicator {
    transform: translateX(var(--hover-position, var(--indicator-position)))
      scaleY(1.1);
  }
  .footer2 {
    position: relative;
    width: auto;
    margin-left: 0%;
  }
  .social_links {
    width: 50%;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 0px;
    padding: 22px 45px;
    margin: 0px;
  }
  .social_item {
    width: 5vw;
    height: 3.5vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.8vw;
  }
  .contact_me {
    font-size: 1.3vw;
  }
  .about-box ul {
    width: 85%;
  }
}

@media (min-width: 2560px) and (max-height: 1450px) {
  .tool_nav {
    width: 110px;
  }
  .tool_nav ul {
    gap: 5vh;
    padding: 45px 0;
  }
  .tool_icon img {
    width: 68px;
  }
  .tool_text {
    font-size: 25px;
    top: 14px;
  }
  .tool_indicator {
    width: 7px;
    height: 95px;
  }
  .social_links {
    padding: 26px 65px;
  }
  .social_item {
    width: 5.5vw;
    height: 3.5vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.2vw;
  }
  .contact_me {
    font-size: 1.3vw;
  }
}

@media (min-width: 3400px) and (max-height: 1450px) {
  .tool_nav {
    width: 120px;
  }
  .tool_nav ul {
    gap: 3.8vh;
    padding: 48px 0;
  }
  .tool_icon img {
    width: 70px;
  }
  .tool_text {
    font-size: 25px;
    top: 20px;
  }
  .tool_indicator {
    width: 7px;
    height: 98px;
  }
  .social_links {
    padding: 26px 65px;
  }
  .social_item {
    width: 4.8vw;
    height: 3vw;
  }
  .social_item:hover {
    width: 9.5vw;
  }
  .social_icon img {
    width: 1.9vw;
  }
  .contact_me {
    font-size: 1.25vw;
  }
}

@media (min-width: 1900px) and (max-height: 1200px) {
  .tool_nav {
    width: 95px;
  }
  .tool_nav ul {
    gap: 4vh;
    padding: 40px 0;
  }
  .tool_icon img {
    width: 58px;
  }
  .tool_text {
    font-size: 19px;
    top: 14px;
  }
  .tool_indicator {
    width: 6px;
    height: 85px;
  }
  .social_links {
    padding: 24px 60px;
  }
  .social_item {
    width: 5vw;
    height: 3.3vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.3vw;
  }
  .contact_me {
    font-size: 1.25vw;
  }
}

@media (min-width: 1024px) and (max-height: 1100px) {
  .footer {
    position: relative;
    bottom: -0px;
    box-shadow: none;
    margin: 0 auto 10px auto;
    z-index: 15;
    right: 0;
  }
  .tool_nav {
    display: flex;
    justify-self: end;
    position: fixed;
    bottom: 5px;
    right: 0px;
    gap: 0px;
    padding: 0;
    margin: 0;
    box-shadow:
      inset 3px 2px 2px 0px #111,
      inset -3px -4px 2px 0px #333;
    background: #181818;
    width: 70px;
  }
  .tool_item {
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .tool_item a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    color: white;
    text-decoration: none;
  }
  .tool_nav ul {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 95%;
    list-style: none;
    padding: 20px 0;
    margin: 0;
    gap: 2.5vh;
  }
  .tool_icon img {
    width: 42px;
  }
  .tool_text {
    font-size: 14px;
    position: relative;
    top: 0px;
  }
  .tool_indicator {
    width: 4px;
    height: 65px;
    right: 0;
  }
  .tool_nav ul li:hover ~ .tool_indicator {
    transform: translateX(var(--hover-position, var(--indicator-position)))
      scaleY(1.15);
  }
  .footer2 {
    position: relative;
    width: auto;
    margin-left: 0%;
  }
  .social_links {
    width: 50%;
    position: relative;
    display: flex;
    justify-self: center;
    align-items: center;
    padding: 15px 20px;
    margin: 0px;
  }
  .social_item {
    width: 75px;
    height: 45px;
  }
  .social_item:hover {
    width: 150px;
  }
  .social_icon img {
    width: 30px;
  }
  .contact_me {
    font-size: 1rem;
  }
  .about-box ul {
    width: 85%;
  }
}

@media (min-width: 1600px) and (max-height: 1100px) {
  .tool_nav {
    width: 85px;
  }
  .tool_nav ul {
    gap: 2.5vh;
    padding: 30px 0;
  }
  .tool_icon img {
    width: 52px;
  }
  .tool_text {
    font-size: 17px;
    top: 11px;
  }
  .tool_indicator {
    width: 5px;
    height: 80px;
  }
  .social_links {
    padding: 22px 58px;
  }
  .social_item {
    width: 5.2vw;
    height: 3.2vw;
  }
  .social_item:hover {
    width: 10vw;
  }
  .social_icon img {
    width: 2.2vw;
  }
  .contact_me {
    font-size: 1.2vw;
  }
}

@media (min-width: 2560px) and (max-height: 1100px) {
  .tool_nav {
    width: 90px;
  }
  .tool_nav ul {
    gap: 2.8vh;
    padding: 32px 0;
  }
  .tool_icon img {
    width: 55px;
  }
  .tool_text {
    font-size: 18px;
    top: 3px;
  }
  .tool_indicator {
    width: 6px;
    height: 82px;
  }
  .social_links {
    padding: 22px 60px;
  }
  .social_item {
    width: 4.5vw;
    height: 2.8vw;
  }
  .social_item:hover {
    width: 9vw;
  }
  .social_icon img {
    width: 1.8vw;
  }
  .contact_me {
    font-size: 1.2vw;
  }
}

@media (min-width: 1024px) and (max-height: 910px) {
  .tool_nav ul {
    gap: 1vh;
    padding: 15px 0;
  }
  .tool_icon img {
    width: 38px;
  }
  .tool_text {
    font-size: 15px;
    top: 3px;
  }
  .tool_indicator {
    width: 4px;
    height: 60px;
    right: 0;
  }
  .social_icon img {
    width: 33px;
  }
}

@media (min-width: 1400px) and (max-height: 910px) {
  .tool_nav {
    width: 75px;
  }
  .tool_nav ul {
    gap: 2vh;
    padding: 22px 0;
  }
  .tool_icon img {
    width: 45px;
  }
  .tool_text {
    font-size: 15px;
    top: 8px;
  }
  .tool_indicator {
    width: 5px;
    height: 75px;
  }
  .social_links {
    padding: 20px 40px;
  }
  .social_item {
    width: 72px;
    height: 46px;
  }
  .social_item:hover {
    width: 145px;
  }
}

@media (min-width: 1366px) and (max-height: 770px) {
  .tool_nav {
    width: 70px;
  }
  .tool_nav ul {
    gap: 1.5vh;
    padding: 18px 0;
  }
  .tool_icon img {
    width: 40px;
  }
  .tool_text {
    font-size: 14px;
    top: 3px;
  }
  .tool_indicator {
    width: 4px;
    height: 70px;
  }
  .social_links {
    padding: 20px 50px;
  }
  .social_item {
    width: 70px;
    height: 45px;
  }
  .social_item:hover {
    width: 140px;
  }
  .social_icon img {
    width: 32px;
  }
}

@media (min-width: 1024px) and (max-height: 700px) {
  .tool_nav {
    width: 65px;
  }
  .tool_nav ul {
    gap: 0.5vh;
  }
  .tool_icon img {
    width: 32px;
  }
  .tool_text {
    font-size: 14px;
    top: -5px;
  }
  .tool_indicator {
    width: 3px;
    height: 9vh;
  }
}

@media (min-width: 600px) and (max-height: 500px) {
  .footer {
    position: relative;
  }
  .footer2 {
    position: relative;
  }
}
