/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f9ff;
    color: #1f2d3d;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #003366;
    padding: 1rem 2rem;
    color: white;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav h1 {
    font-size: 1.5rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    background-color: #0055cc;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .cta {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #3366cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .cta:hover {
    background-color: #1a4db3;
  }
  
  /* Section Layout */
  section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  h2 {
    color: #003366;
    margin-bottom: 1rem;
  }
  
  /* About */
  #about p {
    font-size: 1.1rem;
  }
  
  /* Contact */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
  }
  
  input, textarea {
    padding: 0.75rem;
    border: 1px solid #99b3e6;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  button {
    background-color: #0055cc;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background-color: #003f99;
  }
  
  /* Projects Page */
  .projects .project {
    margin-bottom: 2.5rem;
    padding: 1rem;
    background-color: #e6f0ff;
    border-left: 4px solid #3366cc;
    border-radius: 6px;
  }
  
  .projects img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 0.5rem 0;
  }
  
  .projects h3 {
    color: #003366;
  }
  
  /* Footer */
  footer {
    text-align: center;
    background-color: #003366;
    color: white;
    padding: 1rem;
    margin-top: 3rem;
  }

  ul{
    list-style: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  }
  