/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    width: 30px;
    height: 30px;
  }

  .hamburger-icon {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    padding-top: 70px;
    box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 0 20px;
    overflow-y: auto;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
  }

  /* Menu category styling */
  .menu-home {
    background-color: #4267b2;
    color: white !important;
    border-radius: 10px;
    margin: 5px 15px;
  }

  .menu-projects {
    background-color: #f0f0f0;
    border-radius: 10px;
    margin: 5px 15px;
  }

  .menu-work {
    background-color: #5a9d8e;
    color: white !important;
    border-radius: 10px;
    margin: 5px 15px;
  }

  .menu-about {
    background-color: #5a9d8e;
    color: white !important;
    border-radius: 10px;
    margin: 5px 15px;
  }

  .menu-contact {
    background-color: #e76f51;
    color: white !important;
    border-radius: 10px;
    margin: 5px 15px;
  }

  /* Close button */
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
  }
}