/* Reset & font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    color: #333;
    scroll-behavior: smooth;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3a0ca3;
    color: #fff;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .nav-links li a:hover {
    color: #fcbf49;
  }
  
  /* Home section */
  .home-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #edf2f7;
  }
  .home-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
  .profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid #3a0ca3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  .home-content h1 {
    font-size: 2.5rem;
    color: #3a0ca3;
  }
  .home-content p {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  
  /* Sections */
  .section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  .section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3a0ca3;
  }
  .project {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #4361ee;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  /* Contact */
  a {
    color: #3a0ca3;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
  }
  .hidden {
    display: none;
  }
  .hidden {
    display: none;
  }
  
  .home-fixed {
    background: #edf2f7;
    padding: 60px 20px;
  }
  
  #content {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
  }
  