<style>
    :root {
      --accent: #ffffff;
      --bg: #f4f4f4;
      --text: #111;
      --muted: #555;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      font-family: 'Inter', sans-serif;
      color: var(--text);
      line-height: 1.8;
      font-size: 17px;
    }

    /* HEADER */
    /* header {
      padding: 120px 20px;
      text-align: center;
      background: white;
    }

    header h1 {
      font-size: 54px;
      font-weight: 600;
      letter-spacing: -1px;
    }

    header h2 {
      margin-top: 10px;
      font-weight: 300;
      font-size: 20px;
      color: #666;
    } */

    .intro {
    margin-bottom: 36px;
    }

    /* Typing Base Style */
    .typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent;
    width: 0;
    animation: typing 3.6s steps(40, end) forwards, blink .7s infinite;
    }

    /* Name + Title sizes */
    .name {
    font-size: 30px;
    font-weight: 600;
    }

    .title {
    font-size: 18px;
    color: #555;
    margin-top: 4px;
    }

    /* Typing Animation */
    @keyframes typing {
    to { width: 100%; }
    }

    /* Cursor Blink */
    @keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: transparent; }
    }

    .container {
      width: min(850px, 90%);
      margin: auto;
      padding: 60px 0;
      position: relative;
      z-index: 2;
    }

    section {
      margin-bottom: 80px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeIn 0.9s ease forwards;
    }

    section:nth-child(1) { animation-delay: 0.1s; }
    section:nth-child(2) { animation-delay: 0.2s; }
    section:nth-child(3) { animation-delay: 0.3s; }
    section:nth-child(4) { animation-delay: 0.4s; }
    section:nth-child(5) { animation-delay: 0.5s; }
    section:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-title {
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 20px;
      padding-bottom: 5px;
      border-bottom: 2px solid #ddd;
      width: fit-content;
    }

    ul {
      margin-top: 10px;
      padding-left: 18px;
    }

    li {
      margin-bottom: 6px;
    }

    .placeholder {
      padding: 18px;
      background: #f0f0f0;
      border-radius: 10px;
      font-style: italic;
      color: var(--muted);
    }

    /* BIO SECTION */
    .bio-section {
        margin-bottom: 40px;
    }

    .bio-card {
        display: flex;
        align-items: center;
        gap: 25px;
        background: #fafafa;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .bio-card:hover {
        border-color: #000000; 
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .bio-photo {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
    }

    .bio-text p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }

    .education-details {
    margin-left: 25px;
    }

    .experience-item {
        border: 1px solid #e0e0e0;
        padding: 16px;
        border-radius: 10px;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.25s ease;
        background: #fafafa;  
    }

    .education-card {
        border: 1px solid #e0e0e0;
        background: #fafafa;
        padding: 20px 22px;
        border-radius: 10px;
        margin-top: 14px;
        transition: all 0.25s ease;
        display: flex;
        align-items: flex-start;
        gap: 18px;
    }

    .education-card:hover {
        border-color: #BA0C2F;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .education-logo {
        width: 100px;
        height: 100px;
        align-self: center;
        object-fit: contain;
        display: block;
    }

    .education-text {
        flex: 1;
    }

    .education-details p {
        margin-bottom: 10px;
        color: #333;
    }

    .experience-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* Hover glow + lift */
    .experience-item:hover {
        border-color: #b8b8ff; 
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* Keep logos aligned */
    .experience-logo {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    /* Role/dates text layout */
    .role-dates {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        width: 100%; 
        font-size: 17px;
    }

    .role-dates .role {
        font-weight: 500;
    }

    .role-dates .dates {
        color: #666;
        font-weight: 400;
        margin-left: auto;
    }

    .dates {
        color: #666;
    }

    .company {
        margin-top: 4px;
        color: #444;
    }

    /* Expandable experience description */
    .experience-description {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: 
            max-height 0.35s ease,
            opacity 0.35s ease,
            margin-top 0.35s ease;
        color: #555;
        line-height: 1.55;
    }

    .experience-item:hover .experience-description {
        max-height: 250px;
        opacity: 1;
        margin-top: 10px;
    }

    .projects-section {
    margin-top: 40px;
    }

    .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
    }

    @media (max-width: 768px) {
      .projects-grid {
        grid-template-columns: 1fr; /* single column on mobile */
      }

      .project-card {
        padding: 18px;
      }

      .project-image {
        height: 180px;
      }
    }

    .project-card {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .project-card h4 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 600;
    }

    .project-desc {
    margin-bottom: 15px;
    color: #666;
    }

    .project-image {
    width: 100%;
    height: 140px;
    background-color: #eee;
    border-radius: 8px;
    border: 1px dashed #bbb;
    object-fit: cover;
    }

  .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
    }

    .cert-card {
        background: #fafafa;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;

        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .cert-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .cert-badge {
        width: auto;
        height: 80px;
        margin-bottom: 10px;
        object-fit: contain;
    }

    .skills-rotator {
        overflow: hidden;
        height: 40px;
        position: relative;
        margin-top: 15px;
    }

    .skills-track {
        display: flex;
        gap: 40px;
        white-space: nowrap;
        animation: loopSkills 12s linear infinite;
    }

    .skills-track span {
        font-weight: 500;
        font-size: 18px;
        color: #222;
    }

    /* Smooth infinite scrolling */
    @keyframes loopSkills {
        0% {
        transform: translateX(0);
        }
        100% {
        transform: translateX(-200%);
        }
    }

    /* Optional: pause on hover */
    .skills-rotator:hover .skills-track {
        animation-play-state: paused;
    }

    .footer {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 60px;
        padding-top: 20px;
        border-top: 1px solid #ddd;
        font-size: 16px;
        color: #222;
    }

    .footer a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.2s ease;
    }

    @keyframes wiggle {
        0%   { transform: rotate(0deg); }
        25%  { transform: rotate(8deg); }
        50%  { transform: rotate(-8deg); }
        75%  { transform: rotate(6deg); }
        100% { transform: rotate(0deg); }
    }

    .footer a:hover .footer-icon {
        animation: wiggle 0.4s ease-in-out;
    }

    .footer-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }
</style>

/* NAVBAR */
/* .navbar {
  width: 100%;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.nav-links li a:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.nav-links li a.active {
  background: #e6e6e6;
  font-weight: 600;
} */