body {
    background: 
      radial-gradient(at 50% 60%, rgba(255, 255, 255, 0.2) 0%, #003153 60%), /* Center glow */
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 90%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 90%),
      radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 90%),
      radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 90%),
      #003153; /* Base color fallback */
    
    width: 100%;
    font-family: 'Modern Sans-Serif';
    padding-top: 80px;
    margin: 0;
  }

  .nav h1 {
    display: inline-block;
    transform-origin: center;
  }
  
  .nav {
    font-family: 'Modern Sans-Serif';
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #003153;
    border-bottom: 2px solid red;
    z-index: 1000;
  
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
  
  .nav-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .nav h1 {
    color: white;
    margin: 0;
    font-size: 24px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    font-size: 18px;
    text-decoration: underline;
    font-family: 'Sans-Serif';
  }
  
  .nav-links a:hover {
    text-decoration: none;
  }
  
  
  @media screen and (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      font-size: 20px;
      padding: 10px 0;
    }
  }
  


  /* Project section */

.projects {
    color: white;
    padding: 150px 0;
    font-size: medium;
    font-family: sans-serif;
    text-align: center;
    margin: 0 auto;
  }
  
  .projects h2 {
    font-size: x-large;
    text-decoration: underline;
  }
  
  .project-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Project card */
  .project-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid red;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 300px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .project-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: white;
  }
  
  .project-box p {
    font-size: 1em;
    color: white;
    margin-bottom: auto;
    
  }
  
  .project-button-wrapper {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;    
  }

  
  .project-link-button {
    text-decoration: underline;
    color: white;
    font-size: 14px;
    font-weight: normal;
    transition: color 0.2s ease;
  }
  
  .project-link-button:hover {
    color: #FFDB89;
  }

  .nav-links i {
    margin-right: 6px;
    color: #f0c419; /* gold accent, change as you like */
  }
  