* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #0d1117;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
  }
  
  header {
    background: #161b22;
    padding: 15px 30px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav .logo {
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
  }
  
  nav .logo span {
    color: #58a6ff;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav ul li a {
    color: #c9d1d9;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
  }
  nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #58a6ff;
    transition: width 0.6s ease-in-out;
  }
  nav ul li a:hover {
    color: #a1bcdd;
    
    
  }
  nav ul li a:hover::after {
    width: 100%;
  }
  
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 30px;
    flex-wrap: wrap;
    gap: 20px;

  }
  
  .hero-text {
    max-width: 600px;
    margin-left: auto;
  }
  
  .hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero-text h1 span {
    color: #58a6ff;
  }
  
  .hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #b3b3b3;
  }
  
  .buttons .btn {
    padding: 10px 20px;
    margin-right: 10px;
    background: #58a6ff;
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .btn-outline {
    background: transparent;
    border: 1px solid #58a6ff;
    color: #58a6ff;
  }
  
  .hero-image{
    margin-right: auto;
  }

  .hero-image img {
    width: 320px;
    border-radius: 50%;
    border: 3px solid #58a6ff;
    
  }
  
  .content-section {
    padding: 50px 30px;
    max-width: 800px;
    margin: auto;
  }
  
  .content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #58a6ff;
  }
  
  .skills-list, .project-list {
    list-style: none;
    padding-left: 20px;
  }
  
  .skills-list li, .project-list li {
    margin-bottom: 10px;
  }
  
  .project-list a {
    color: #58a6ff;
    text-decoration: none;
  }

  .menu-toggle {
  display: none;
  font-size: 28px;
  color: #c9d1d9;
  cursor: pointer;
}
  /* Mobile Side*/
  @media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 15px;
  }

  #nav-links.show {
    display: flex;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    margin: 0;
  }

  .hero-image {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-image img {
    width: 220px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .buttons .btn {
    margin: 6px 0;
    width: 200px;
  }

  .content-section {
    padding: 40px 20px;
  }
}

  footer {
    text-align: center;
    padding: 20px;
    background: #161b22;
    color: #8b949e;
  }
  