/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
  }
  
  /* ===== HEADER / NAV ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .logo {
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: -40px;
  }
  
  .navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    color: rgb(198, 100, 228);
  }
  
  /* ===== HOME SECTION ===== */
  .home {
    width: 100%;
    height: 100vh;
    background: url('webpage.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

  .home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 0 10%;
    max-width: center;
    flex-wrap: center;
  }
  
  /* Text Content */
  .home-content {
    flex: 1;
    min-width: 300px;
    margin-left: 100px;
  }
  
  .home-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
  }
  
  .home-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: white;
  }
  
  .home-content h3 span {
    color: rgb(198, 100, 228);
    font-weight: bold;
  }
  
  .home-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    max-width: 600px;
    line-height: 1.6;
  }
  
  /* Social Icons */
  .home-sci {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }
  
  .home-sci a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid #6b1d8f;
    border-radius: 50%;
    font-size: 20px;
    color: #6b1d8f;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .home-sci a:hover {
    background: rgb(198, 100, 228);
    color: white;
    box-shadow: 0 0 15px #0ef;
    transform: scale(1.1);
  }
  
  /* Resume Button */
  .btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(198, 100, 228);
    border-radius: 30px;
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 40px;
  }
  
  .btn-box:hover {
    box-shadow: 0 0 10px rgb(198, 100, 228), 0 0 30px rgb(198, 100, 228), 0 0 50px rgb(198, 100, 228);
    transform: scale(1.05);
  }
  
  /* Circular Image */
  .home-image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
  }
  
  .home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
  }
  
  /* ===== TIMELINE SECTION ===== */
  .timeline-section {
    padding: 40px 10% 50px;
    background-color: #e2d6f8;
    text-align: center;
    color: #1a1a1a;
  }
  
  .section-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
  }
  
  .timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #c664e4;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 30px;
  }
  
  .timeline-item.left {
    left: 0;
  }
  
  .timeline-item.right {
    left: 50%;
  }
  
  /* Circle Icon */
  .circle-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 4px solid #c664e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #c664e4;
    font-size: 14px;
  }
  
  /* Timeline Box */
  .timeline-item .content {
    background-color: rgba(60, 60, 60, 0.85);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .timeline-item .content:hover {
    transform: scale(1.02);
  }
  
  .timeline-item h3 {
    color: #e2d6f8;
    font-size: 50px;
    margin-bottom: 5px;
  }
  
  .timeline-item h4 {
    color: #ccc;
    font-weight: normal;
    font-size: 16px;
    margin: 5px 0;
  }
  
  .timeline-date {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    display: block;
  }
  
  .timeline-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #eee;
  }
  
  /* ===== RESPONSIVE ===== */
  @media screen and (max-width: 900px) {
    .home-container {
      flex-direction: column;
      text-align: center;
    }
  
    .home-image-container {
      margin-top: 30px;
      width: 220px;
      height: 220px;
    }
  
    .timeline::after {
      left: 31px;
    }
  
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
    .timeline-item.right {
      left: 0;
    }
  
    .circle-icon {
      left: 31px;
      transform: none;
    }
  }
  