/* 
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0e1a2b;
    color: #d1d5db;
    line-height: 1.6;
  }
  

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0e1a2b;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .logo .dot {
    color: #22c55e; 
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links .active {
    color: #22c55e;
  }
  
 
  .container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .profile-image {
    width: 280px;
    height: auto;
    border-radius: 20px;
    border: 2px solid #ccc;
    margin-bottom: 30px;
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
  }
  
  .bio {
    text-align: left;
    font-size: 16px;
    color: #d1d5db;
  } */




  body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e1a2b;
    color: white;
    margin: 0;
    padding: 0;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  .logo span {
    color: #21C55D;
  }
  
  .nav-links a {
    margin-left: 40px;
    text-decoration: none;
    color: #D1D5DB;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a.active,
  .nav-links a:hover {
    color: #21C55D;
  }
  
  .about-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 3px solid #ffffff;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #E5E7EB;
    margin-bottom: 20px;
  }

 /* Hamburger button styling */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  margin-left: auto;
  z-index: 10;
}

/* Hide nav-links on small screens by default */
.nav-links {
  display: flex;
  align-items: center;
  transition: max-height 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px; /* height of nav */
    right: 0;
    background-color: #0e1a2b;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid #334155;
  }

  .nav-links.active {
    max-height: 300px; /* enough to show all links */
  }

  .nav-links a {
    margin: 15px 0;
    padding: 10px 20px;
    display: block;
    width: 100%;
  }
}



@media (max-width: 768px) {
  .nav-links a {
    padding: 10px 20px 10px 70px;
    display: block;
    width: 100%;
  }
}