* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f0f0f0;
    color: #333;
    scroll-behavior: smooth;
  }
  
  /* Navbar */
  #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #222;
    padding: 15px;
    text-align: center;
    z-index: 1000;
  }
  
  #navbar a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
  }
  
  #navbar a:hover {
    color: #00aced;
  }
  
  /* Welcome Section */
  #welcome-section {
    height: 100vh;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
  }
  
  #welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  /* Projects */
  #projects {
    padding: 80px 20px 40px;
    background: #fff;
    text-align: center;
  }
  
  #projects h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .project-tile {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-left: 5px solid #0072ff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .project-tile a {
    display: inline-block;
    margin-top: 10px;
    color: #0072ff;
    text-decoration: none;
  }
  
  .project-tile a:hover {
    text-decoration: underline;
  }
  
  /* Contact */
  #contact {
    padding: 50px 20px;
    background: #e8e8e8;
    text-align: center;
  }
  
  #contact h2 {
    margin-bottom: 20px;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
  }
  
  /* Media Query */
  @media (max-width: 600px) {
    #navbar a {
      display: block;
      margin: 10px 0;
    }
  
    #welcome-section h1 {
      font-size: 2rem;
    }
  
    .project-tile {
      padding: 15px;
    }
  }
  .project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .project-tile {
    background: #f9f9f9;
    padding: 20px;
    width: 250px;
    border-left: 5px solid #0072ff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .project-tile:hover {
    transform: scale(1.05);
  }
  