/* Reset and Global Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
  }
  
  header {
    width: 100%;
    background-color: #1f1f1f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f260;
  }
  
  nav ul {
    display: flex;
    list-style-type: none;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 5px;
    position: relative;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00f260;
    transition: width 0.3s ease;
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  nav ul li a:hover {
    color: #00f260;
  }
  
  /* About Section Styling */
  #about-section {
    padding: 50px;
    background-color: #1f1f1f;
    color: #e0e0e0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .intro-text {
    flex: 1;
  }
  
  .intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .section {
    margin-bottom: 40px;
  }
  
  h1, h2, h3 {
    color: #00f260;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .education-item, .experience-item {
    background-color: #2b2b2b;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
  }
  
  ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .intro {
      flex-direction: column;
      align-items: center;
    }
  
    .profile-img {
      width: 150px;
      height: 150px;
    }
  }
  
/* About Page Styles */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

#about {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #00f260;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}
/* About Page Styles */
#about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
  }
  
  #about-section h2 {
    font-size: 2.5rem;
    color: #00f260;
  }
  
  #about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
  }
  