/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
  }
  
  /* Header */
  header {
    background:green;
    color: white;
    border-radius: 50% / 30%;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  /* Navigation */
  nav {
    background: #333;
  }
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  nav ul li {
    margin: 0 15px;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
  }
  nav ul li a:hover {
    background:orange;
    border-radius: 5px;
  }
  
  /* Container */
  .container {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
  }
  
  /* Projects */
  .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  .card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .card h3 {
    margin-bottom: 10px;
  }
  
  /* Contact Section */
  #contact p {
    margin: 10px 0;
    font-size: 1.1rem;
  }
  #contact a {
    color: orange;
    text-decoration: none;
    font-weight: bold;
  }
  #contact a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-style: italic;
  }
  
  /* Profile Section */
.profile {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  .profile-info h2 {
    margin-bottom: 10px;
  }
  

  