 
 @media screen and (max-width: 768px) {
  /* Navigation Menu */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 60vw;
    background-color: #a9a7a7b3;
    backdrop-filter: blur(20px);
    z-index: 9;
    transition: all 0.5s ease-in-out;
  }

  .nav-links a {
    color: #1f1f1f;
    border: none;
  }

  .nav-links a:hover {
    border: none;
    background-color: transparent;
    box-shadow: none;
    color: #4f4f4f;
  }

  #check {
    display: none;
  }

  .toggle img {
    display: flex;
    position: absolute;
    top: 18px;
    right: 25px;
    z-index: 100;
  }

  .toggle img:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: all 0.3s ease;
  }

  #check:checked ~ .nav-links {
    right: 0;
  }

  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
  }

  .left-hero {
    width: 100vw;
  }

  .right-hero {
    width: 100vw;
    height: 40vh;
    background-color: #1f1f1f;
    animation-name: swipe;
    animation-duration: 2s;
    z-index: -1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-timeline: view();
    animation-range: entry 10%;
  }

  @keyframes swipe {
    0% {
      transform: translateX(-100vw);
    }
    100% {
      transform: translateX(0);
    }
  }

  #cursor {
    position: relative;
    z-index: 8;
  }

  #icons {
    display: none;
  }

  .box-head {
    height: 200px;
    width: 200px;
  }

  .box-head img {
    height: 240px;
  }

  /* About Section */
  .about {
    background-color: #e8e8e8;
    padding: 40px 15px;
  }

  .box-about {
    background-color: #1f1f1f;
    width: 90%;
    height: auto;
    margin: 20px 0;
    padding: 20px;
  }

  .box-about img {
    height: auto;
    width: 50%;
    padding: 10px;
    background-color: #1f1f1f;
  }

  .box-about-text {
    color: #e8e8e8;
    font-weight: 550;
    font-size: 13px;
    margin: 5% 8%;
  }

  .box-about-text span {
    background: linear-gradient(to right, #9ca2ff, #c39cff, rgb(248, 151, 248));
    background-clip: text;
    color: transparent;
  }

  .button-box-about a button {
    background-color: #1f1f1f;
    color: #e8e8e8;
    border: 2px solid #e8e8e8;
    padding: 10px 20px;
    font-size: 13px;
  }

  .button-box-about a:hover button {
    background-color: #e8e8e8;
    color: #1f1f1f;
    border: none;
  }

  .about-heading {
    margin-top: 10vw;
    font-size: 20px;
    width: auto;
    text-align: center;
    border: none;
  }

  .first-row,
  .second-row,
  .third-row {
    gap: 30px;
    margin-top: 30px;
  }

  /* Services Section */
  .services {
    background-color: #101010;
  }

.services-heading {
  font-size: 7vw;
}



}



      @media (max-width: 700px) {
      .contact-form {
        grid-template-columns: 1fr;
      }

      .contact-form textarea,
      .contact-form button {
        grid-column: 1 / 2;
      }
    }