/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #212529;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 20px;
    background-color: #1f2d3d;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }
  
  .header-container h1 {
    margin: 0;
    font-size: 2.2em;
  }
  
  .header-container p {
    font-size: 1.1em;
    margin-top: 10px;
    opacity: 0.9;
  }
  
  nav {
    margin-top: 15px;
  }
  
  nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 600;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  section {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  section h2 {
    margin-top: 0;
    color: #1f2d3d;
    font-size: 1.8em;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
  }
  
  .project h3 {
    color: #0077b6;
    margin-bottom: 10px;
    font-size: 1.3em;
  }
  
  ul {
    padding-left: 20px;
    line-height: 1.8;
  }
  
  ul li {
    margin-bottom: 6px;
  }
  
  a {
    color: #0077b6;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #1f2d3d;
    color: #ffffff;
    font-size: 0.95em;
    margin-top: 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }
  .resume-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0077b6;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .resume-button:hover {
    background-color: #005f8e;
  }
  .timeline {
    position: relative;
    margin: 2em 0;
    padding-left: 30px;
    border-left: 4px solid #0077b6;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-marker {
    position: absolute;
    left: -12px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #0077b6;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #0077b6;
  }
  
  .timeline-content {
    background-color: #f5faff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .timeline-content .date {
    font-size: 14px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 5px;
    display: inline-block;
  }
  
      