*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --nav-bg:               #2b2b2b;
      --nav-text:             #ffffff;
      --nav-link:             #d1d1d1;
      --nav-link-hover:       #ffffff;
      --body-bg:              #f5f5f5;
      --hero-title:           #101010;
      --hero-sub:             #5F5F61;
      --btn-primary-bg:       #3535e0;
      --btn-primary-text:     #ffffff;
      --btn-secondary-border: #cccccc;
      --btn-secondary-text:   #3535e0;
      --font-body:            'Lexend', sans-serif;
      --font-title:           'DM Serif Display', serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background:#ffffff;
      color: var(--hero-title);
      -webkit-font-smoothing: antialiased;
    }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      padding: 10px 28px;
    }

    .nav-inner {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
      position: relative;
      background: var(--nav-bg);
      border-radius: 100px;
    }

    /* ── Logo ── */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 4px;
      text-decoration: none;
      flex-shrink: 0;
      z-index: 1;
    }

    /* Rounded pill/rect container for the A icon — matching the design */
    .nav-logo-badge {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-logo-badge svg {
      width: 17px;
      height: 17px;
      display: block;
    }

    .nav-logo-name {
      font-family: 'Merriweather';
      font-size:26px;
      font-weight: 400;
      color: #ffffff;
      letter-spacing: 0.01em;
      line-height: 1;
    }

    /* ── Centre nav links (desktop) ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 32%;
      transform: translateX(-50%);
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--nav-link);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.18s;
    }
    .nav-links a:hover { color: var(--nav-link-hover); }

    /* ── Right contact info (desktop) ── */
    .nav-contact {
      display: flex;
      align-items: center;
      gap: 20px;
      z-index: 1;
    }

    .nav-contact-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: var(--font-body);
      font-size: 0.775rem;
      font-weight: 400;
      color: var(--nav-link);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.18s;
    }
    .nav-contact-item:hover { color: var(--nav-link-hover); }

    .nav-contact-item svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      opacity: 0.75;
    }

    /* ── Hamburger (mobile only) ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 5px;
      cursor: pointer;
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      padding: 4px;
      z-index: 1;
    }

    .hamburger span {
      display: block;
      height: 1.5px;
      background: var(--nav-text);
      border-radius: 2px;
      transition: all 0.28s ease;
      transform-origin: center;
    }
    .hamburger span:nth-child(1) { width: 22px; }
    .hamburger span:nth-child(2) { width: 22px; }
    .hamburger span:nth-child(3) { width: 14px; } /* shorter third line like design */

    .hamburger.open span:nth-child(1) { width: 22px; transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

    /* ── Mobile drawer ── */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--nav-bg);
      padding: 8px 24px 24px;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.07);
      max-width: 1300px;
      width: calc(100% - 56px);
      margin: 4px auto 0;
      border-radius: 0 0 28px 28px;
    }
    .mobile-menu.open { display: flex;
    z-index: 200;
    position:fixed !important;
    left: 0;
right: 0;
    margin: auto;
    }

    .mobile-menu a {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 400;
      color: var(--nav-link);
      text-decoration: none;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.18s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--nav-link-hover); }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      min-height: calc(100vh - 52px);
      background: #FEFEFF;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 24px;
    }

    .hero-content {
      max-width: 680px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-title {
      font-family: var(--font-title);
      font-size: 74px;
      font-weight: 300;
      color: var(--hero-title);
      line-height: 0.8;
      letter-spacing: -0.015em;
      margin-bottom: 24px;
      max-width: 682px;
    }

    .hero-sub {
      font-family: var(--font-body);
      font-size:24px;
      font-weight: 300;
      color: var(--hero-sub);
      line-height: 1.65;
      max-width: 682px;
      margin-bottom: 40px;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: var(--btn-primary-bg);
      color: var(--btn-primary-text);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      padding: 13px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-primary:hover  { background: #2828c4; transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0); }

    .btn-secondary {
      background: transparent;
      color: var(--btn-secondary-text);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      padding: 12px 24px;
      border-radius: 100px;
      border: 1.5px solid var(--btn-secondary-border);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: border-color 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-secondary:hover  { border-color: var(--btn-primary-bg); transform: translateY(-1px); }
    .btn-secondary:active { transform: translateY(0); }

    .btn-secondary svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 768px) {
      .nav-links   { display: none; }
      .nav-contact { display: none; }
      .hamburger   { display: flex; }

      .hero { padding: 56px 20px; }
      .hero-title { font-size: 36px; margin-bottom: 16px; }
      .hero-sub   { font-size: 18px; max-width: 300px; }

      .hero-buttons   { flex-direction: column; width: 100%; gap: 12px; }
      .btn-primary    { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
      .btn-secondary  { width: 100%; max-width: 320px; justify-content: center; }
    }

    @media (min-width: 769px) {
      .mobile-menu { display: none !important; }
    }

    /* ══════════════════════════════
       MY SPECIALIZATION
    ══════════════════════════════ */
    .specialization {
      background: #101010;
      padding: 80px 0 90px;
    }

    .spec-container {
      max-width: 1620px;
      margin: 0 auto;
      padding: 0 80px;
    }

    .spec-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .spec-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .spec-sub {
      font-family: var(--font-body);
      font-size:18px;
      font-weight: 300;
      color: #B7B7B7;
      max-width: 868px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .spec-card {
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 22px;
      padding: 40px 40px 44px;
    }

    /* Icon circle — dark grey with border */
    .spec-icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #222222;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 26px;
      flex-shrink: 0;
    }

    .spec-icon-circle svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    .spec-card-title {
      font-family:Lexend;
      font-size:30px;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .spec-card-divider {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin-bottom: 16px;
    }

    .spec-card-body {
      font-family:Lexend;
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      line-height: 1.8;
    }

    /* ══════════════════════════════
       MY DESIGN JOURNEY
    ══════════════════════════════ */
    .journey {
      background: #ffffff;
      padding: 80px 0 90px;
    }

    .journey-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 80px;
    }

    .journey-header {
      margin-bottom: 60px;
      /* align with right column: 260px photo + 72px gap */
      padding-left: calc(340px + 80px);
    }

    .journey-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #101010;
      margin-bottom: 6px;
      letter-spacing: 1px;
    }

    .journey-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      line-height: 1.65;
    }

    .journey-inner {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Profile photo circle */
    .journey-photo {
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: #d9d9d9;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .journey-photo svg {
      width: 100%;
      height: 100%;
    }

    /* Right content */
    .journey-who {
      font-family: var(--font-body);
      font-size:24px;
      font-weight: 600;
      color: #101010;
      margin-bottom: 18px;
    }

    .journey-para {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      line-height: 1.82;
      margin-bottom: 14px;
      max-width: 973px;
    }

    /* 8+ Years Experience badge */
    .journey-badge {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      border: 1px solid #dddddd;
      border-radius: 10px;
      padding: 14px 20px 16px;
      margin: 18px 0 28px;
      gap: 2px;
    }

    .journey-badge-num {
      font-family: var(--font-body);
      font-size: 24px;
      font-weight: 600;
      color: #101010;
      line-height: 1.2;
    }

    .journey-badge-label {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
    }

    /* Skill tags row */
    .journey-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .journey-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1.5px solid #eeeeee;
      border-radius: 100px;
      padding: 9px 18px;
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #101010;
      background: #eeeeee;
      white-space: nowrap;
    }

    .journey-tag svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      stroke: #101010;
    }

    /* ══════════════════════════════
       RESPONSIVE — both sections
    ══════════════════════════════ */
    @media (max-width: 768px) {
      /* Specialization mobile */
      .specialization { padding: 60px 0 60px; }
      .spec-container  { padding: 0 22px; }
      .spec-header     { margin-bottom: 40px; }
      .spec-title      { font-size: 30px; letter-spacing: 1px;}
      .spec-sub        { font-size: 16px; width: 340px;}
      .spec-grid       { grid-template-columns: 1fr; gap: 40px; }
      .spec-card       { padding: 24px 22px 28px; }
      .spec-icon-circle { width: 90px; height: 90px; margin-bottom: 20px; }
      .spec-icon-circle svg { width: 26px; height: 26px; }
      .spec-card-title { font-size: 24px; font-weight: 400; }

      /* Design Journey mobile */
      .journey         { padding: 60px 0 60px; }
      .journey-container { padding: 0 22px; }
      .journey-header  { text-align: center; margin-bottom: 36px; padding-left: 0; }
      .journey-title   { font-size: 30px; letter-spacing: 1px; }
      .journey-sub     { font-size: 16px; width: 100% }
      .journey-who     { font-size: 18px; }
      .journey-para    { font-size: 14px; }
      .journey-inner   { grid-template-columns: 1fr; gap: 40px; }
      .journey-badge-num     { font-size: 18px; }
      .journey-badge-label     { font-size: 14px; }
      .journey-photo   {
        width: 260px; height: 260px;
        margin: 0 auto;
      }
      .journey-tags    { flex-direction: column; gap: 20px; }
      .journey-tag     { width: 100%; max-width: 240px; justify-content: flex-start; }
    }

    /* ══════════════════════════════
       MY PORTFOLIO
    ══════════════════════════════ */
    .portfolio {
      background: #0e0e0e;
      padding: 80px 0 90px;
    }

    .portfolio-container {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 80px;
    }

    /* Section header */
    .portfolio-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .portfolio-title {
      font-family: var(--font-title);
      font-size: 54px ;
      font-weight: 400;
      color: #FEFEFF;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .portfolio-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      max-width: 516px;
      margin: 0 auto;
      line-height: 1.7;

    }

    /* ── Featured card (Artzone — wide horizontal) ── */
    .pf-featured {
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 22px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 480px 1fr;
      margin-bottom: 44px;
      min-height: 360px;
    }

    .pf-featured-img {
      width: 240px;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      display: block;
      background: #1e1612;
    }

    /* Artzone phone mockup placeholder */
    .pf-featured-img-placeholder {
      width: 442px;
      height: 420px;
      background: linear-gradient(145deg, #2a1f14 0%, #1e1410 40%, #251b10 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin: 40px;
      border-radius: 11px;
    }

    .pf-phone-svg {
      width: 160px;
      height: auto;
      position: relative;
      z-index: 1;
    }

    .pf-featured-content {
      padding: 40px 44px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* ── Regular 2-col grid (Netflix + Mailbrew) ── */
    .pf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
    }

    .pf-card {
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 22px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Image area top of card */
    .pf-card-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative;
      padding:30px 30px 40px;
    }

    /* Netflix mock */
    .pf-img-netflix {
      width: 100%;
      height: 110%;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 30%, #0d0d0d 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      border-radius: 11px;
      background-image: url("./Image/Netlix homepage redesign.png");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* Mailbrew mock */
    .pf-img-mailbrew {
      width: 100%;
      height: 110%;
      background: linear-gradient(135deg, #0a0f1a 0%, #0d1520 50%, #0a1018 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      border-radius: 11px;
      background-image: url("./Image/Mailbrew homepage redesign.png");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }

    .pf-card-body {
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* ── Shared card content styles ── */
    .pf-label {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 400;
      color: #777777;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pf-label::before {
      content: '';
      display: inline-block;
      width: 3px;
      height: 18px;
      background: #555555;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .pf-project-title {
      font-family: var(--font-body);
      font-weight: 300;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.3;
      font-size: 34px;
    }

    .pf-project-title .brand {
      font-weight: 500;
      font-style: normal;
    }

    .pf-card-title {
      font-family: var(--font-body);
      font-size: 34px;
      font-weight: 300;
      color: #ffffff;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .pf-card-title .brand {
      font-weight: 500;
      font-style: normal;
    }

    .pf-desc {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      line-height: 1.75;
      margin-bottom: 34px;
    }

    /* Tags */
    .pf-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 34px;
    }

    .pf-tag {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      color: #d5cece;
      background: #1E1E1E;
      border: 1px solid #1E1E1E;
      border-radius: 100px;
      padding: 8px 26px;
      white-space: nowrap;
    }

    /* CTA button */
    .pf-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--btn-primary-bg);
      color: #ffffff;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      padding: 11px 22px;
      border-radius: 100px;
      border: none;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      width: fit-content;
    }

    .pf-btn:hover  { background: #2828c4; transform: translateY(-1px); }
    .pf-btn:active { transform: translateY(0); }

    .pf-btn svg {
      width: 14px; height: 14px; flex-shrink: 0;
    }

    /* ── Laptop + phone mockup SVG shared styles ── */
    .mockup-wrap {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 8px;
      padding: 16px 12px 0;
      height: 100%;
    }

    /* ══════════════════════════════
       PORTFOLIO RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 768px) {
      .portfolio          { padding: 60px 0 60px; }
      .portfolio-container { padding: 0 22px; }
      .portfolio-container { padding: 0 18px; }
      .portfolio-header   { margin-bottom: 32px; }
      .portfolio-title    { font-size: 30px; letter-spacing: 1px; }
      .portfolio-sub  { font-size: 16px; width: 100% }

      /* Featured card stacks vertically */
      .pf-featured {
        grid-template-columns: 1fr;
        min-height: unset;
      }

      .pf-featured-img-placeholder {
        width: 100%;
        height: 100%;
        align-items: center;
        aspect-ratio: 9/9;
        padding: 24px 20px 20px;
        background: #101010;
        margin: 0px;
      }
      

      .pf-featured-content { padding: 24px 22px 28px; }

      /* Bottom 2 cards stack to single column */
      .pf-card-body { padding: 24px 22px 28px; }
      .pf-grid { grid-template-columns: 1fr; gap: 40px; }
      
      .pf-card-img-wrap {
        aspect-ratio: 14/9; 
        padding:20px 20px 20px; 
        border-radius: 11px;}

      .pf-label {font-size: 14px;}

      .pf-project-title { font-size: 22px }
      .pf-card-title    { font-size: 22px; }
    }

    /* ══════════════════════════════
       MY WORK EXPERIENCE
    ══════════════════════════════ */
    .experience {
      background: #ffffff;
      padding: 90px 0 100px;
    }

    .exp-container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .exp-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .exp-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #101010;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .exp-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      max-width: 554px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Timeline rows */
    .exp-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .exp-row {
      display: grid;
      grid-template-columns: 680px 44px 1fr;
      align-items: start;
      padding: 0px 0;
      border-bottom: none;
      gap: 0;
    }

    /* no top border on first row */

    /* Left column — company */
    .exp-company {
      padding-right: 24px;
      text-align: right;
    }

    .exp-company-name {
      font-family: var(--font-body);
      font-size: 30px;
      font-weight: 600;
      color: #101010;
      line-height: 1.4;
      margin-bottom: 6px;
    }

    .exp-company-meta {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      line-height: 1.5;
    }

    /* Centre column — dot indicator */
    .exp-dot-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 1px;
      position: relative;
      height: 390px;
    }

    /* Dashed vertical line: runs full height of first row's dot column,
       from just below the dot to the bottom of the row */
    .exp-row:first-child .exp-dot-col {
      /* stretch to full row height so the line reaches the bottom */
      align-self: stretch;
    }

    .exp-row:first-child .exp-dot-col::after {
      content: '';
      display: block;
      /* fill all remaining space after the dot */
      flex: 1;
      width: 0;
      border-left: 2px dashed #d6d7db;
      margin-top: 4px;
      /* slight offset so line starts exactly at dot edge */
      margin-left: 1px;
    }

    .exp-dot {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #bbbbbb;
      border: 5px solid #e8e8e8;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    .exp-dot.active {
      background: #3535e0;
      border-color: #cccccc;
      border: 5px solid #e8e8e8;
    }

    /* Right column — role + bullets */
    .exp-role-col {
      padding-left: 24px;
    }

    .exp-role-title {
      font-family: var(--font-body);
      font-size: 30px;
      font-weight: 600;
      color: #101010;
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .exp-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .exp-bullets li {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      line-height: 1.85;
      padding-left: 16px;
      position: relative;
    }

    .exp-bullets li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #999999;
      font-size: 18px;
    }

    /* Hide mobile-only company block on desktop */
    .mob-company { display: none; }

    /* ══════════════════════════════
       MY EDUCATION & CERTIFICATIONS
    ══════════════════════════════ */
    .education {
      background: #101010;
      padding: 90px 0 100px;
    }

    .edu-container {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 80px;
    }

    .edu-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .edu-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .edu-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      max-width: 704px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Education list rows */
    .edu-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .edu-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 28px 0;
      border-bottom:1px solid #212121;
      gap: 32px;
    }

    /* no top border on first edu row */

    .edu-info {
      flex: 1;
      padding-left: 14px;
    }

    .edu-degree {
      font-family: var(--font-body);
      font-size: 24px;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .edu-institution {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      line-height: 1.5;
    }

    .edu-year {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 400;
      color: #d8d8da;
      white-space: nowrap;
      flex-shrink: 0;
      padding-top: 2px;
      padding-right: 14px;
    }

    /* ══════════════════════════════
       RESPONSIVE — Work Exp + Education
    ══════════════════════════════ */
    @media (max-width: 768px) {
      /* Work Experience */
      .experience       { padding: 60px 0 60px; }
      .exp-container    { padding: 0 22px; }
      .exp-header       { margin-bottom: 40px; }
      .exp-title        { font-size: 30px; text-align:center; letter-spacing: 1px;}
      .exp-sub          { text-align:center; font-size: 16px; }

      /* Mobile: 2-col layout — dot | all content */
      .exp-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 0px 0;
        gap: 0;
        border-bottom: none;
      }

      .exp-dot-col {
        flex-shrink: 0;
        width: 28px;
        padding-top: 1px;
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 540px;
      }

      .exp-dot{
        width: 24px;
        height: 24px;
      }

      /* Hide desktop left-column company on mobile */
      .exp-company {
        display: none;
      }

      /* Role col takes full right width */
      .exp-role-col {
        flex: 1;
        padding-left: 10px;
      }

      /* Show company name + meta inside role col via .mob-company element */
      .mob-company {
        display: block;
        margin-bottom: 4px;
      }

      .mob-company-name {
        font-family:Lexend;
        font-size: 18px;
        font-weight: 300;
        color: #101010;
        margin-bottom: 6px;
      }

      .mob-company-meta {
        font-family:Lexend;
        font-size: 14px;
        font-weight: 300;
        color: #101010;
        margin-bottom: 20px;
      }

      .exp-role-title   { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
      .exp-company-name { font-size: 0.88rem; }
      .exp-company-meta { font-size: 0.76rem; }
      .exp-bullets li   { font-size: 14px; }

      /* Education */
      .education        { padding: 60px 0 60px; }
      .edu-container    { padding: 0 22px; }
      .edu-header       { margin-bottom: 36px; }
      .edu-title        { font-size: 30px; text-align:center; letter-spacing: 2px; }
      .edu-sub          { text-align:center; font-size: 16px; }

      .edu-row {
        padding: 20px 20px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        margin-bottom: 12px;
        background: #1a1a1a;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .edu-list { gap: 20px; }

      .edu-degree       { font-size: 20px; font-weight: 400; }
      .edu-institution  { font-size: 16px; width: 204px; }
      .edu-year         { font-size: 18px; font-weight: 300;}
      .edu-info {padding: 0px;}
    }

    /* ══════════════════════════════
       MY AWARD WINNING JOURNEY
    ══════════════════════════════ */
    .awards {
      background: #ffffff;
      padding: 90px 0 100px;
    }

    .awards-container {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 80px;
    }

    .awards-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .awards-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #101010;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .awards-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      max-width: 630px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* 3-column card grid */
    .awards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .award-card {
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 20px;
      padding: 32px 32px 40px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Top row: icon left, year right */
    .award-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    /* Laurel wreath icon circle */
    .award-icon-wrap {
      width: 68px;
      height: 68px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding-left: 30px;
    }

    .award-icon-wrap svg {
      width: 68px;
      height: 68px;
    }

    /* Large muted year number */
    .award-year {
      font-family:Lexend;
      font-size: 74px;
      font-weight: 400;
      color: #e7e7eb;
      line-height: 1;
      letter-spacing: -0.02em;
      align-self: center;
    }

    .award-name {
      font-family: var(--font-body);
      font-size: 30px;
      font-weight: 700;
      color: #101010;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .award-desc {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 300;
      color: #5F5F61;
      line-height: 1.75;
    }

    /* ══════════════════════════════
       TOOLS BEHIND MY DESIGN
    ══════════════════════════════ */
    .tools {
      background: #101010;
      padding: 90px 0 100px;
    }

    .tools-container {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 80px;
    }

    .tools-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .tools-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .tools-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      max-width: 490px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* 7-item row */
    .tools-grid {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 44px;
      flex-wrap: wrap;
    }

    .tool-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    /* Tall pill / capsule container */
    .tool-pill {
      width: 140px;
      height: 190px;
      border-radius: 80px;
      background: #1c1c1c;
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }

    .tool-pill:hover {
      border-color: rgba(255,255,255,0.2);
      background: #222222;
    }

    .tool-pill img,
    .tool-pill svg {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 12px;
    }

    .tool-label {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      text-align: center;
      white-space: nowrap;
    }

    /* ══════════════════════════════
       RESPONSIVE — Awards + Tools
    ══════════════════════════════ */
    @media (max-width: 1024px) {
      .awards-grid   { gap: 20px; }
      .tools-grid    { gap: 16px; }
      .tool-pill     { width: 110px; height: 155px; }
      .tool-pill img,
      .tool-pill svg { width: 44px; height: 44px; }
    }

    @media (max-width: 768px) {
      /* Awards */
      .awards           { padding: 60px 0 60px; }
      .awards-container { padding: 0 22px; }
      .awards-header    { margin-bottom: 40px; }
      .awards-title     { font-size: 30px; text-align:center; letter-spacing: 1px; }
      .awards-sub       { text-align:center; font-size: 16px; }
      .awards-grid      { grid-template-columns: 1fr; gap: 30px; }
      .award-card       { padding: 32px 24px 32px; }
      .award-year       { font-size: 46px; }
      .award-desc       {font-size: 14px;}
      .award-card-top   {margin-bottom: 30px;}
      .award-name       { font-size: 22px; }

      /* Tools */
      .tools            { padding: 60px 0 60px; }
      .tools-container  { padding: 0 22px; }
      .tools-header     { margin-bottom: 48px; }
      .tools-title      { font-size: 30px; text-align:center; letter-spacing: 0.8px; }
      .tools-sub        { text-align:center; font-size: 16px; padding: 0px 10px; }
      .tools-grid       { gap: 60px 30px; justify-content: center; }
      .tool-pill        { width: 130px; height: 180px; border-radius: 100px; }
      .tool-pill img,
      .tool-pill svg    { width: 120px; height: 120px; }
      .tool-label       { font-size: 18px; }
    }

    /* ══════════════════════════════
       CONTACT ME
    ══════════════════════════════ */
    .contact-section {
      background: #f5f5f7;
      padding: 80px 24px;
    }

    /* Outer card wrapping everything */
    .contact-card {
      max-width: 1000px;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 24px;
      padding: 60px 70px 64px;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .contact-title {
      font-family: var(--font-title);
      font-size: 54px;
      font-weight: 400;
      color: #101010;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .contact-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #5F5F61;
      max-width: 624px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Form fields */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .cf-input,
    .cf-textarea {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 300;
      color: #333333;
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 16px 20px;
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
      margin: 8px 0px 8px 0px;
    }

    .cf-input::placeholder,
    .cf-textarea::placeholder {
      color: #aaaaaa;
      font-weight: 300;
    }

    .cf-input:focus,
    .cf-textarea:focus {
      border-color: #3535e0;
    }

    .cf-textarea {
      min-height: 240px;
    }

    /* Send message button */
    .cf-submit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #2c2ce0;
      color: #ffffff;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      width: fit-content;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }

    .cf-submit:hover  { background: #1e1ec8; transform: translateY(-1px); }
    .cf-submit:active { transform: translateY(0); }

    .cf-submit svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .footer {
      background: #101010;
      padding: 64px 0 56px;
    }

    .footer-container {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 80px;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1.6fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Col 1 — brand */
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-brand-logo svg {
      width: 22px;
      height: 22px;
    }

    .footer-brand-name {
      font-family:Merriweather;
      font-size: 28px;
      font-weight: 400;
      color: #ffffff;
    }

    .footer-brand-desc {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: #9a9a9b;
      line-height: 1.75;
      max-width: 360px;
    }

    /* Col 2 — quick links */
    .footer-col-title {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 22px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .footer-links a {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      color: #888888;
      text-decoration: none;
      transition: color 0.18s;
    }
    .footer-links a:hover { color: #ffffff; }

    /* Col 3 — contact info */
    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .footer-contact-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 2px;
      color: #888888;
    }

    .footer-contact-icon svg {
      width: 20px;
      height: 20px;
      stroke: #888888;
    }

    .footer-contact-label {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .footer-contact-value {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      color: #9a9a9b;
      line-height: 1.55;
    }

    /* Col 4 — Follow Me */
    .footer-social-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 0;
    }

    .footer-social-item {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #888888;
      font-family:Lexend;
      font-size: 16px;
      font-weight: 300;
      transition: color 0.18s;
    }
    .footer-social-item:hover { color: #ffffff; }
    .footer-social-badge badge-linkedin:hover{ color: #ffffff; }

    .footer-social-badge {
      width: 32px;
      height: 32px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .footer-social-badge svg {
      width: 18px;
      height: 18px;
    }

    

    .badge-linkedin { background: #101010; }
    .badge-behance  { background: #101010; }

    /* ══════════════════════════════
       RESPONSIVE — Contact + Footer
    ══════════════════════════════ */
    @media (max-width: 768px) {
      /* Contact */
      .contact-section { padding: 48px 16px; }
      .contact-card    { padding: 36px 24px 44px; border-radius: 18px; }
      .contact-title   { font-size: 30px; text-align:center; letter-spacing: 1px; }
      .contact-sub     { text-align:center; font-size: 16px; }
      .cf-row          { grid-template-columns: 1fr; gap: 14px; }
      .cf-textarea     { min-height: 180px; }

      /* Footer */
      .footer-brand{ text-align: center;
      padding: 40px;
      border-bottom: 1px solid #212121;
    }

      .footer           { padding: 52px 0 44px; }

      .footer-container {
        padding: 0 22px;
        grid-template-columns: 1fr;
        gap: 0px;
      }

      .footer-brand-logo  { justify-content:center; margin-bottom: 10px;}
      .footer-brand-desc { max-width: 310px; text-align: center; font-size: 14px; }

      .footer-quick-links { justify-content: center;
      padding: 40px;
      border-bottom: 1px solid #212121;
      }
      .footer-col-title { text-align: center; margin-bottom: 14px;}
      .footer-links {text-align: center; gap: 12px;}

      .footer-contact-list {text-align: center; 
      padding: 40px;
      border-bottom: 1px solid #212121;
      }

      .footer-contact-label {justify-content: center; margin-left: 5px;}
      .footer-contact-item {justify-content: center;}
      .Location {margin-left: 66px;}
      .Email {margin-left: 60px;}
      .Number {margin-right: 5px;}
      .footer-social-item{justify-content: center;}
      .footer-contact-item {gap: 0px;}
      .footer-contact-icon{margin-top: 0px}
      .footer-social-list{ gap: 16px;}
      .footer-social{
      text-align: center; 
      padding: 40px;
      
      }
      
      

    }

  