/* FORCE FULL WIDTH MOBILE MENU */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;   /* 🔥 change from absolute → fixed */
    top: 70px;
    left: 0;
    width: 100vw;      /* 🔥 FULL SCREEN WIDTH */
    background: #0a5cd8;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
  }
}