* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  header {
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  nav a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #00bfff;
  }
  
  .hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #007BFF, #00bfff);
    color: white;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .hero .buttons a {
    display: inline-block;
    margin: 1rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .hero .buttons a:hover {
    transform: translateY(-3px);
    background: #e3f2fd;
  }
  
  section {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    animation: fadeIn 1s ease;
  }
  
  h2 {
    color: #007BFF;
  }
  
  .project {
    margin-bottom: 1.5rem;
    border-left: 4px solid #007BFF;
    padding-left: 1rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .project:hover {
    transform: scale(1.02);
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: white;
    margin-top: 2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .buttons a {
      width: 100%;
      margin: 0.5rem auto;
    }
  }