/* style.css */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: #f8f8f8;
    color: #111;
    line-height: 1.6;
  }
  
  header {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 1.2rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #007acc;
  }
  
  .hero {
    text-align: center;
    padding: 50px 20px;
  }
  
  .profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin: 10px 0;
  }
  
  .hero h3 {
    color: #555;
  }
  
  .buttons {
    margin: 20px 0;
  }
  
  .btn {
    padding: 10px 20px;
    margin: 0 5px;
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #808080;
  }
  
  .socials img {
    width: 40px;
    margin: 10px;
  }
  
  section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .about-pic {
    width: 200px;
    border-radius: 10px;
    margin: 20px 0;
  }
  
  .skills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
  }
  
  .skills li {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
  }
  
  .project {
    text-align: center;
    margin: 20px 0;
  }
  
  .project img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }
  
  footer {
    background: #f8f8f8;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
  }
  
  footer p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #000;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  
    .hero h1 {
      font-size: 1.5rem;
    }
  
    .profile-pic {
      width: 200px;
      height: 200px;
    }
  
    .skills ul {
      flex-direction: column;
      align-items: center;
    }
  
    .project img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .btn {
      display: block;
      margin: 10px auto;
    }
  
    .about-pic {
      width: 100%;
    }
  
    section {
      padding: 20px 10px;
    }
  }
  