/* style.css */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #111;
    line-height: 1.6;
    padding-top: 80px;
  }
  
  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: 150px;
    height: 150px;
    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: #007acc;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #005f99;
  }
  
  .socials img {
    width: 25px;
    margin: 10px;
  }
  
  section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  #about {
    padding: 20px;
  }
  #about h2{
    text-align: center;
  }
  .about-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .about-pic {
    width: 200px;
    height: auto;
    border-radius: 8px;
  }
  
  .about-content p {
    flex: 1;
    margin-top: 2%;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-pic {
      width: 100%;
      max-width: 300px;
    }
  }
  
  
  .skills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
  }
  
  #experience {
    text-align: center;
  }
  
  .skills {
    display: flex;
    justify-content: center;
  }
  
  .skills ul {
    text-align: left; /* Keeps bullets and text aligned properly */
    padding: 0;
    margin: 0;
  }
  
  
  .skills li {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
  }
  .skills li a{
    text-decoration: none;
    font-weight: bold;
    color: #000;
  }
  .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: #999;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 20px;
      z-index: 1100;
    }
  
    .nav-menu ul {
      display: none;
      flex-direction: column;
      gap: 10px;
      background: #fff;
      padding: 10px;
      border: 1px solid #eee;
      position: absolute;
      top: 60px;
      right: 20px;
      z-index: 1000;
    }
  
    .nav-menu.active ul {
      display: flex;
    }
  }
  #contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;     
    text-align: center;      
  }
  
  #education {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .education-details {
    display: flex;
    justify-content: center;
  }
  
  .education-details ul {
    text-align: left;
    padding: 0;
    margin: 0;
  }
  