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;
    }
  }
  

/* Padding for the body to avoid content being hidden under the navbar */
body {
    padding-top: 80px; /* Adjust based on the height of your navbar */
}



/* Style for the Development Section */
.development {
    color: white;
    text-align: center;
    font-size: medium;
    font-family: Sans-Serif	;
    max-width: 1200px; /* Maximum width of the entire section */
    margin: 0 auto; /* Center the entire development section on the page */
    padding: 100px 0;
}

.development h2 {
    color: white;
    margin-bottom: 20px;
    text-decoration: underline;
}

.development p {
    margin-top: 0;
}

/* Container for the development project boxes */
.development-container {
    color: white;
    display: flex;
    justify-content: center; /* Center the boxes horizontally within the container */
    align-items: center; /* Center items vertically */
    gap: 20px; /* Space between the two boxes */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Individual development project boxes */
.development-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 20px;
  border: 1px solid red;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Styling for project titles */
.development-box h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Styling for project descriptions */
.development-box p {
    color: white; 
    font-size: 1em;
}

.development-box a {
    color: white;
    text-decoration: underline;
}

/* Hover effect for project boxes */
.development-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.button-wrapper {
  margin-top: auto;
  text-align: center;
}

.nav-links i {
  margin-right: 6px;
  color: #f0c419; /* gold accent, change as you like */
}
