/* ===== General Styles ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, #0b001a 0%, #120029 100%);
    color: #fff;
    overflow-x: hidden;
  }
  
  a {
    color: #b388ff;
    text-decoration: none;
    transition: 0.3s;
  }
  a:hover { text-decoration: underline; }
  
  h1 {
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
    color: #fff;
  }
  h1 i {
    color: #b366ff;
    margin-right: 10px;
  }
  
  /* ===== Navbar ===== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: transparent;
    font-size: 1.1rem;
  }
  
  .logo {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    color: #b366ff;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #b366ff;
  }
  
  .github-btn {
    background: #b366ff22;
    border: 1px solid #b366ff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
  }
  .github-btn:hover {
    background: #b366ff44;
  }
  
  /* ===== Timeline ===== */
  .experience-section {
    width: 80%;
    margin: 4rem auto;
    position: relative;
  }
  
  .timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 40px;
    border-left: 2px solid #b366ff;
  }
  
  .timeline-item {
    margin-bottom: 3rem;
    position: relative;
  }
  
  .timeline-dot {
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #b366ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #b366ff;
  }
  
  .timeline-content {
    margin-left: 30px;
    background: rgba(179, 102, 255, 0.08);
    padding: 1.2rem 1.6rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
  }
  .timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 15px #b366ff55;
  }
  
  .timeline-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
  }
  
  .timeline-content span {
    color: #b366ff;
    font-weight: 500;
  }
  
  .timeline-content .date {
    font-style: italic;
    color: #ccc;
    font-size: 0.9rem;
  }
  
  .timeline-content ul {
    margin-top: 0.6rem;
    padding-left: 1.2rem;
  }
  .timeline-content li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 786px) {
    .navbar {
      flex-direction: column;
      gap: 0.6rem;
    }
    .nav-links { gap: 0.6rem; }
    ul { padding: 0; }
  
    .experience-section {
      width: 90%;
    }
  }
  