
    /* ---------- Global Styles ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: #333;
      background: #f5f7fa;
    }

    h1, h2, h3 {
      font-weight: 600;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* ---------- Navbar ---------- */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
    }

    .nav-logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: #0078ff;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #0078ff;
    }

    /* ---------- Hero Section ---------- */
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(120deg, #0078ff, #00c6ff);
      color: #fff;
      min-height: 100vh;
      padding: 4rem 2rem;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      max-width: 1200px;
      width: 100%;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .hero-text h1 span {
      color: #ffe600;
    }

    .hero-text h2 {
      font-weight: 400;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .hero-text p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .btn-primary {
      background: #fff;
      color: #0078ff;
      padding: 0.8rem 1.6rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background: #eaeaea;
    }

.hero-img {
  flex: 1;
  text-align: center;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  
}

.hero-img img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  top: 20%; /* ✅ Moves image lower inside the container */
}

.hero-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}



    .hero-img img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    }

    /* ---------- Section Layout ---------- */
    .section {
      padding: 5rem 2rem;
      max-width: 1100px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      color: #0078ff;
      margin-bottom: 2rem;
    }

    /* ---------- About Section ---------- */
    .about-container {
      font-size: 1rem;
      line-height: 1.7;
      color: #333;
    }

    .about-container .highlights ul {
      margin-top: 1rem;
      list-style: disc;
      padding-left: 1.5rem;
    }

    /* ---------- Education ---------- */
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .timeline-item {
      background: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .timeline-item h3 {
      color: #0078ff;
      margin-bottom: 0.5rem;
    }

    .timeline-item span {
      font-size: 0.9rem;
      color: #777;
    }

    /* ---------- Skills ---------- */
    .skills-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .skill-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      flex: 1 1 300px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .skill-card h3 {
      color: #0078ff;
      margin-bottom: 1rem;
    }

    /* ---------- Projects ---------- */
    .project-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .project-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      flex: 1 1 300px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .project-card h3 {
      color: #0078ff;
      margin-bottom: 0.5rem;
    }

    /* ---------- Contact ---------- */
    .contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .contact-info i {
      color: #0078ff;
      margin-right: 0.5rem;
    }

    .social-links {
      text-align: center;
      margin-top: 1rem;
    }

    .social-links a {
      font-size: 1.5rem;
      margin: 0 0.5rem;
      color: #0078ff;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: #00c6ff;
    }

    /* ---------- Footer ---------- */
    .footer {
      background: #0078ff;
      color: #fff;
      text-align: center;
      padding: 1rem 0;
      font-size: 0.9rem;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 900px) {
      .hero {
        text-align: center;
        padding: 3rem 1.5rem;
      }

      .hero-content {
        flex-direction: column-reverse;
        gap: 2rem;
      }

      .hero-img img {
        width: 220px;
        height: 220px;
      }

      .hero-text h1 {
        font-size: 2.2rem;
      }

      .hero-text h2 {
        font-size: 1.2rem;
      }
    }
  