*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --orange: #7C3AED;
    --orange-soft: #8B5CF6;
    --orange-glow: rgba(124, 58, 237, 0.18);
    --orange-dim: rgba(124, 58, 237, 0.08);
    --bg: #05050F;
    --bg2: #08081A;
    --charcoal: #0D0D1F;
    --card: rgba(124,58,237,0.04);
    --card-border: rgba(139,92,246,0.12);
    --white: #FFFFFF;
    --gray: #A0A0B8;
    --gray-light: #C8C8E0;
    --text: #F0F0FF;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Caveat', cursive;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: normal;
  }
  .cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(232, 81, 10, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s;
  }
  body:has(a:hover) .cursor { width: 20px; height: 20px; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

  /* ============ NAVBAR ============ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
  }
  nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    padding: 14px 40px;
    border-bottom: none;
  }

  .nav-logo {
    font-family: var(--font-script);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--orange); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 6px 10px;
    backdrop-filter: blur(10px);
  }

  .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 40px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
    font-family: var(--font-display);
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--orange);
    background: rgba(232, 81, 10, 0.1);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 10, 4, 0.18);
    color: var(--white);
    text-decoration: none;
    padding: 7px 16px 7px 8px;
    border-radius: 999px;
    border: 1.4px solid rgba(232, 81, 10, 0.65);
    cursor: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    background: rgba(40, 12, 4, 0.28);
    border-color: rgba(232, 81, 10, 0.9);
    box-shadow: 0 0 18px rgba(232, 81, 10, 0.16);
  }

  .nav-cta-icon {
    width: 40px;
    height: 30px;
    border-radius: 11px 14px 14px 11px;
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }

  .nav-cta-icon svg {
    width: 19px;
    height: 19px;
  }

  .nav-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.02;
  }

  .nav-cta-text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .nav-cta {
      display: none;
    }
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 8px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: var(--card);
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 100vw);
    height: 100vh;
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--card-border);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-menu.open { right: 0; }
  .mobile-menu a {
    color: var(--gray-light);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--card-border);
    transition: color 0.2s;
    letter-spacing: -0.02em;
  }
  .mobile-menu a:hover { color: var(--orange); }
  .mobile-menu .mobile-cta {
    margin-top: 30px;
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-size: 15px;
    border-bottom: none;
  }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .mobile-overlay.open { opacity: 1; pointer-events: all; }

  /* ============ SECTION BASE ============ */
  section { position: relative; overflow: hidden; }

  /* ============ HERO ============ */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 60px;
    position: relative;
  }

  /* Background glow blobs */
  .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero-glow-left {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
    left: -100px; top: 50%;
    transform: translateY(-50%);
  }
  .hero-glow-right {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,38,180,0.18) 0%, transparent 70%);
    right: -80px; top: 40%;
  }
  .hero-glow-center {
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.10) 0%, transparent 70%);
    left: 50%; top: 50%; transform: translate(-50%, -50%);
  }

  /* Noise overlay */
  .noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Portrait area */
  .hero-portrait-wrap {
    position: relative;
    width: 340px;
    height: 440px;
    margin: 0 auto 0;
  }

  /* Orbit rings */
  .orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .orbit-ring-1 { width: 480px; height: 480px; }
  .orbit-ring-2 { width: 640px; height: 640px; border-color: rgba(255,255,255,0.04); }
  .orbit-ring-3 { width: 820px; height: 820px; border-color: rgba(232,81,10,0.06); }

  .portrait-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
    z-index: 3;
    object-fit: cover;
  }

  /* Placeholder portrait when no real image */
  .portrait-placeholder {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 380px;
    background: linear-gradient(160deg, #1a1a1a 0%, #111 50%, #0d0d0d 100%);
    border-radius: 140px 140px 30px 30px;
    border: 1px solid rgba(255,255,255,0.07);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .portrait-silhouette {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-top: -40px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* Orange glow behind portrait */
  .portrait-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(124,58,237,0.4) 0%, transparent 70%);
    z-index: 2;
    border-radius: 50%;
    filter: blur(20px);
  }

  /* Floating tech icons */
  .float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    z-index: 5;
    font-size: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
  }
  .float-icon:hover { transform: scale(1.1) !important; box-shadow: 0 8px 30px rgba(232,81,10,0.2); }
  .float-icon img { width: 30px; height: 30px; object-fit: contain; }
  .float-icon svg { width: 28px; height: 28px; }

  /* Hero text */
  .hero-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 860px;
    margin-top: -10px;
    position: relative;
    z-index: 4;
  }
  .hero-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .label-arrow {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .label-arrow svg { width: 10px; height: 10px; fill: var(--gray); }

  /* Hero headline — shown BELOW portrait in this layout */
  .hero-headline {
    margin-top: 50px;
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    text-align: center;
  }
  .hero-headline .name-accent { color: var(--orange); }
  .hero-headline .line-sub {
    display: block;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.01em;
    margin-top: 14px;
    font-family: var(--font-body);
  }

  .hero-cta-row {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    cursor: none;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,81,10,0.45); }
  .btn-outline {
    display: flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    cursor: none;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 4;
    opacity: 0.4;
  }
  .scroll-hint span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); font-family: var(--font-display); }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

  /* ============ SECTION SHARED STYLES ============ */
  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    font-family: var(--font-display);
    margin-bottom: 20px;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--orange);
  }

  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 86px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
  }
  .section-heading .accent { color: var(--orange); }

  /* ============ PROJECTS DEV ============ */
  #projects-dev {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg) 0%, #08081a 100%);
  }

  .dev-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 70px;
  }

  .dev-left .big-statement {
    font-family: var(--font-display);
    font-size: clamp(50px, 7vw, 100px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.06);
    margin-bottom: 50px;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  }

  .project-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.3s, box-shadow 0.4s;
    cursor: none;
  }
  .project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,81,10,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
  }
  .project-card:hover { transform: translateY(-6px); border-color: rgba(232,81,10,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,81,10,0.1); }
  .project-card:hover::before { opacity: 1; }

  .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .card-number {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .card-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .project-card:hover .card-arrow { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
  .card-arrow svg { width: 14px; height: 14px; stroke: var(--gray); }
  .project-card:hover .card-arrow svg { stroke: var(--white); }

  .card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .card-desc {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gray-light);
    font-family: var(--font-display);
  }
  .tag.orange { background: rgba(232,81,10,0.12); border-color: rgba(232,81,10,0.2); color: var(--orange-soft); }

  /* Mockup window card */
  .mockup-card {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #FF5F57; }
  .dot-y { background: #FEBC2E; }
  .dot-g { background: #28C840; }
  .mockup-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
    background: #0c0c0c;
  }
  .code-kw { color: #C586C0; }
  .code-fn { color: #DCDCAA; }
  .code-str { color: #CE9178; }
  .code-var { color: #9CDCFE; }
  .code-comment { color: #6A9955; }

  /* Right column */
  .dev-right {
    position: sticky;
    top: 120px;
  }
  .dev-right .section-eyebrow { margin-bottom: 16px; }
  .dev-right .section-heading { margin-bottom: 24px; }
  .dev-right .section-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 400px;
  }

  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }
  .stat-box {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    transition: border-color 0.3s;
  }
  .stat-box:hover { border-color: rgba(232,81,10,0.2); }
  .stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
  }
  .stat-num span { color: var(--orange); }
  .stat-label {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .tech-item {
    aspect-ratio: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: none;
  }

  .tech-item:hover {
    transform: translateY(-3px);
    border-color: rgba(232,81,10,0.22);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  }

  .tech-item:hover { transform: scale(1.1); border-color: rgba(232,81,10,0.2); }

  .tech-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.14));
  }

  .tech-cta-wrap {
    margin-top: 22px;
    display: flex;
    justify-content: center;
  }

  .tech-projects-btn {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 320px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.05),
      0 14px 34px rgba(0,0,0,0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      background 0.28s ease;
    overflow: hidden;
    cursor: none;
  }

  .tech-projects-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(232,81,10,0.08), transparent 42%, transparent 70%, rgba(232,81,10,0.05));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
  }

  .tech-projects-btn::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    border-radius: inherit;
    padding: 1.2px;
    background:
      conic-gradient(
        from 0deg,
        rgba(255,255,255,0.00) 0deg,
        rgba(255,255,255,0.00) 235deg,
        rgba(255,180,90,0.10) 275deg,
        rgba(255,190,110,0.95) 315deg,
        rgba(232,81,10,0.95) 338deg,
        rgba(255,255,255,0.00) 360deg
      );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: techBorderOrbit 5.8s linear infinite;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(232,81,10,0.18));
  }

  .tech-projects-btn:hover {
    transform: translateY(-3px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      0 18px 38px rgba(0,0,0,0.24),
      0 0 0 1px rgba(232,81,10,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  }

  .tech-projects-btn:hover::before {
    opacity: 1;
  }

  .tech-projects-btn-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .tech-projects-btn-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ff6b13 0%, #ff4d05 100%);
    color: #fff;
    box-shadow:
      0 10px 22px rgba(255,94,10,0.25),
      inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .tech-projects-btn:hover .tech-projects-btn-icon {
    transform: translateX(3px) scale(1.04);
    box-shadow:
      0 14px 26px rgba(255,94,10,0.32),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }

  .tech-projects-btn-icon svg {
    width: 18px;
    height: 18px;
  }

  .tech-projects-btn-text,
  .tech-projects-btn-icon {
    position: relative;
    z-index: 1;
  }

  @keyframes techBorderOrbit {
    0% {
      transform: rotate(0deg);
      opacity: 0.88;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: rotate(360deg);
      opacity: 0.88;
    }
  }

  @media (max-width: 480px) {
    .tech-projects-btn::after {
      padding: 1px;
      animation-duration: 6.4s;
    }
  }

  @media (max-width: 768px) {
    .tech-cta-wrap {
      margin-top: 18px;
    }

    .tech-projects-btn {
      max-width: 100%;
      min-height: 56px;
      padding: 10px 10px 10px 18px;
    }

    .tech-projects-btn-text {
      font-size: 13px;
    }

    .tech-projects-btn-icon {
      width: 38px;
      height: 38px;
    }
  }

  @media (max-width: 480px) {
    .tech-projects-btn {
      min-height: 54px;
      padding: 9px 9px 9px 16px;
    }

    .tech-projects-btn-text {
      font-size: 12.5px;
    }

    .tech-projects-btn-icon {
      width: 36px;
      height: 36px;
    }
  }

  /* ============ PROJECTS DESIGN ============ */
  #projects-design {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #0d0a08 0%, var(--bg) 100%);
  }

  .design-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .design-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--card);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
    cursor: none;
    position: relative;
  }
  .design-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
  .design-card.featured {
    grid-column: span 2;
  }

  .design-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
  }
  .design-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    transition: transform 0.5s ease;
  }
  .design-card:hover .design-thumb-inner { transform: scale(1.04); }

  .thumb-fitnexa { background: linear-gradient(135deg, #1a0e00 0%, #2d1500 40%, #1a0e00 100%); }
  .thumb-movie { background: linear-gradient(135deg, #030012 0%, #0f0020 40%, #030012 100%); }
  .thumb-vr { background: linear-gradient(135deg, #000a10 0%, #001428 40%, #000a10 100%); }

  /* Decorative thumb content */
  .thumb-deco {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .thumb-deco-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
  .thumb-deco-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .design-card-body {
    padding: 22px;
  }
  .design-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .design-card-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
  }

  .design-statement {
    grid-column: span 3;
    text-align: center;
    padding: 60px 20px;
    position: relative;
  }
  .design-statement-text {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.08);
    -webkit-text-stroke: 1px rgba(255,255,255,0.12);
    position: relative;
  }
  .design-statement-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
  }
  @keyframes shimmerText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  /* ============ ABOUT ============ */
  #about {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
    margin-top: 60px;
  }

  .about-left {}

  .about-role {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }
  .about-name {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 30px;
  }
  .about-name .name-o { color: var(--orange); }

  .about-expertise {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .expertise-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
  }
  .expertise-item:hover { border-color: rgba(232,81,10,0.25); transform: translateX(6px); }
  .expertise-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .expertise-icon img { width: 24px; height: 24px; object-fit: contain; }
  .expertise-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
  }
  .expertise-sub {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
  }

  /* Bio glass card */
  .bio-glass {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
  }
  .bio-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,81,10,0.4), transparent);
  }

  .bio-quote-mark {
    font-size: 60px;
    color: rgba(232,81,10,0.2);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
  }

  .bio-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 28px;
  }

  .bio-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,81,10,0.3), transparent);
    margin: 24px 0;
  }

  .bio-skills-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }
  .bio-skill-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .bio-skill-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .bio-skill-icon img { width: 20px; height: 20px; object-fit: contain; }
  .bio-skill-text {
    font-size: 13.5px;
    color: var(--gray-light);
  }
  .bio-skill-name { font-weight: 600; color: var(--white); font-family: var(--font-display); }

  .bio-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    padding: 10px 0;
  }
  .bio-role-badge strong { color: var(--orange); font-weight: 600; }

  /* Abstract lightning deco */
  .about-deco {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 400px;
    pointer-events: none;
    opacity: 0.15;
  }

 /* ============ CONTACT REMAKE ============ */
  #contact {
    position: relative;
    padding: 120px 0 110px;
    background:
      radial-gradient(circle at 78% 72%, rgba(124, 58, 237, 0.24) 0%, rgba(124, 58, 237, 0.10) 18%, transparent 42%),
      radial-gradient(circle at 58% 88%, rgba(124, 58, 237, 0.14) 0%, transparent 34%),
      linear-gradient(180deg, #050505 0%, #060606 12%, #080812 26%, #0a0a1a 54%, #0d0d20 100%);
    overflow: hidden;
  }

  #contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.88) 10%, rgba(5,5,5,0.42) 24%, rgba(5,5,5,0) 40%),
      linear-gradient(115deg, rgba(255,255,255,0.02), transparent 28%),
      radial-gradient(circle at 22% 30%, rgba(255,255,255,0.035), transparent 24%);
    pointer-events: none;
  }

  .contact-stage {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .contact-neon-left {
    position: absolute;
    left: -30px;
    top: 72px;
    width: 170px;
    height: 250px;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.3));
  }

  .contact-neon-left::before,
  .contact-neon-left::after {
    content: "";
    position: absolute;
    border-radius: 24px;
  }

  .contact-neon-left::before {
    width: 26px;
    height: 210px;
    left: 28px;
    top: 4px;
    background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 70%, #5b21b6 100%);
    box-shadow:
      0 0 0 3px rgba(124, 58, 237, 0.18),
      0 0 18px rgba(124, 58, 237, 0.65),
      0 0 42px rgba(124, 58, 237, 0.34);
    transform: skewX(-24deg);
  }

  .contact-neon-left::after {
    width: 118px;
    height: 22px;
    left: 6px;
    top: 30px;
    background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 60%, #5b21b6 100%);
    box-shadow:
      0 0 0 3px rgba(124, 58, 237, 0.15),
      0 0 16px rgba(124, 58, 237, 0.65),
      0 0 36px rgba(124, 58, 237, 0.30);
    transform: rotate(-64deg);
  }

  .contact-topline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }

  .contact-topline .accent {
    color: #8B5CF6;
  }

  .contact-grid-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 54px;
    align-items: start;
  }

  .contact-left-premium {
    position: relative;
    padding-top: 22px;
  }

  .contact-title-premium {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #fff;
    margin-bottom: 34px;
    text-shadow: 0 0 18px rgba(255,255,255,0.14);
  }

  .contact-main-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 38px;
  }

  .contact-main-item {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .contact-main-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
  }

  .contact-main-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
  }

  .contact-main-text,
  .contact-main-text a {
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .contact-main-text a:hover {
    color: #fff;
  }

  .contact-bottom-panel {
    position: relative;
    max-width: 690px;
    min-height: 156px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 20px 80px rgba(0,0,0,0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 24px 26px 70px;
  }

  .contact-bottom-panel::after {
    display: none;
  }

  .contact-status-title {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .contact-status-title strong {
    color: #fff;
    font-weight: 700;
  }

  .contact-status-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.84);
    line-height: 1.75;
    max-width: 540px;
  }

  .contact-hire-wrap {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    z-index: 4;
  }

  .contact-action-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .contact-hire-btn {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 22px;
    background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow:
      0 10px 28px rgba(124, 58, 237, 0.30),
      inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.22s ease, box-shadow 0.25s ease, filter 0.25s ease;
  }

  .contact-hire-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      0 14px 34px rgba(124, 58, 237, 0.40),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }

  .contact-whatsapp-btn {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.55);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.10),
      0 10px 24px rgba(0,0,0,0.20);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateX(-22px) scale(0.72) rotate(-10deg);
    pointer-events: none;
    transition:
      opacity 0.34s ease,
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.25s ease,
      border-color 0.25s ease;
    position: relative;
  }

  .contact-whatsapp-btn::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.3s ease, transform 0.35s ease;
  }

  .contact-whatsapp-btn svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
  }

  .contact-action-toggle.is-open .contact-whatsapp-btn {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    pointer-events: auto;
  }

  .contact-action-toggle.is-open .contact-whatsapp-btn::before {
    opacity: 1;
    transform: scale(1);
  }

  .contact-action-toggle.is-open .contact-hire-btn {
    filter: saturate(1.05);
  }

  .contact-whatsapp-btn:hover {
    border-color: rgba(255,255,255,0.9);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.10),
      0 14px 30px rgba(0,0,0,0.24),
      0 0 24px rgba(255,255,255,0.06);
  }

  @media (max-width: 768px) {
    .contact-action-toggle {
      gap: 10px;
    }

    .contact-hire-btn {
      min-width: 190px;
      font-size: 18px;
      padding: 16px 24px;
    }

    .contact-whatsapp-btn {
      width: 62px;
      height: 62px;
    }

    .contact-whatsapp-btn svg {
      width: 24px;
      height: 24px;
    }
  }

  .contact-footer-note {
    margin-top: 54px;
    font-size: 15px;
    color: rgba(255,255,255,0.70);
    line-height: 1.7;
  }

  .contact-right-premium {
    position: relative;
    min-height: 620px;
    padding-top: 16px;
  }

  .contact-glass-card {
    position: relative;
    min-height: 52px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 30px 80px rgba(0,0,0,0.22);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 46px 34px 74px;
    overflow: visible;
  }

  .contact-glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%, transparent 70%, rgba(255,255,255,0.03));
    pointer-events: none;
  }

  .contact-glass-inner {
    position: relative;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 100%;
  }

  .contact-at-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-at-symbol {
    font-family: Georgia, serif;
    font-size: clamp(120px, 12vw, 170px);
    line-height: 0.9;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 0 24px rgba(255,255,255,0.08);
  }

  .contact-social-rail {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .contact-social-row {
    display: grid;
    grid-template-columns: 16px 52px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    text-decoration: none;
  }

  .contact-social-row:hover .contact-social-box {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.28);
  }

  .contact-social-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    justify-self: center;
  }

  .contact-social-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .contact-social-box svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
  }

  .contact-social-content {
    min-width: 0;
    overflow: hidden;
  }

  .contact-social-url {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.45;
  }

  .contact-social-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .contact-social-rail {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
  }

  .contact-qr-box {
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 110px;
    height: 110px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 18px 40px rgba(0,0,0,0.20);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-qr-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
  }

  @media (max-width: 1100px) {
    .contact-grid-premium {
      grid-template-columns: 1fr;
      gap: 46px;
    }

    .contact-left-premium {
      padding-top: 0;
    }

    .contact-right-premium {
      min-height: auto;
    }

    .contact-glass-inner {
      grid-template-columns: 120px 1fr;
    }
  }

  @media (max-width: 768px) {
    #contact {
      padding: 90px 0 90px;
    }

    .contact-stage {
      padding: 0 20px;
    }

    .contact-neon-left {
      display: none;
    }

    .contact-title-premium {
      font-size: clamp(42px, 12vw, 68px);
      margin-bottom: 26px;
    }

    .contact-main-text,
    .contact-main-text a {
      font-size: 16px;
    }

    .contact-bottom-panel {
      min-height: auto;
      padding: 22px 18px 82px;
      border-radius: 24px;
    }

    .contact-bottom-panel::after {
      width: 180px;
    }

    .contact-hire-btn {
      min-width: 200px;
      font-size: 18px;
      padding: 16px 24px;
    }

    .contact-glass-card {
      padding: 26px 20px 84px;
      border-radius: 26px;
    }

    .contact-glass-inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .contact-at-wrap {
      justify-content: flex-start;
    }

    .contact-at-symbol {
      font-size: 94px;
    }

    .contact-social-row {
      grid-template-columns: 12px 44px 1fr;
      gap: 14px;
    }

    .contact-social-box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
    }

    .contact-social-box svg {
      width: 20px;
      height: 20px;
    }

    .contact-social-title {
      font-size: 16px;
    }

    .contact-social-url {
      font-size: 12px;
      white-space: normal;
    }

    .contact-qr-box {
      right: 14px;
      bottom: -18px;
      width: 92px;
      height: 92px;
      border-radius: 20px;
    }
  }

  /* ============ FOOTER ============ */
  .footer-minimal {
    background: transparent;
    border-top: none;
    padding: 34px 20px 42px;
    text-align: center;
  }

  .footer-inner-centered {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
  }

  .footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  .footer-copy span {
    color: var(--white);
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .footer-logo {
      font-size: 24px;
    }

    .footer-copy {
      font-size: 13px;
    }
  }

  /* ============ FLOATING ANIMATION KEYFRAMES ============ */
  @keyframes floatY1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
  }
  @keyframes floatY2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-4deg); }
  }
  @keyframes floatY3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(5deg); }
    66% { transform: translateY(-6px) rotate(-2deg); }
  }
  @keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }
  @keyframes orbitSpin2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
  }


  /* ============ REVEAL CLASSES ============ */
  html.no-js .reveal,
  html.no-js .reveal-left,
  html.no-js .reveal-right,
  html.no-js .reveal-scale {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  html.js .reveal { opacity: 0; transform: translateY(40px); }
  html.js .reveal-left { opacity: 0; transform: translateX(-40px); }
  html.js .reveal-right { opacity: 0; transform: translateX(40px); }
  html.js .reveal-scale { opacity: 0;  transform: scale(0.92); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .dev-layout { grid-template-columns: 1fr; }
    .dev-right { position: static; }
    .design-grid { grid-template-columns: 1fr 1fr; }
    .design-card.featured { grid-column: span 2; }
    .design-statement { grid-column: span 2; }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    #hero { padding: 90px 20px 80px; }
    .hero-portrait-wrap { width: 280px; height: 360px; }
    .orbit-ring-1 { width: 350px; height: 350px; }
    .orbit-ring-2 { width: 480px; height: 480px; }
    .orbit-ring-3 { display: none; }
    .portrait-placeholder { width: 200px; height: 290px; }

    .section-container { padding: 0 20px; }
    #projects-dev { padding: 80px 0 60px; }
    #projects-design { padding: 60px 0 80px; }
    #about { padding: 80px 0; }
    #contact { padding: 80px 0 60px; }

    .design-grid { grid-template-columns: 1fr; }
    .design-card.featured { grid-column: span 1; }
    .design-statement { grid-column: span 1; }

    .design-header { flex-direction: column; align-items: flex-start; gap: 20px; }

    .hero-labels { display: none; }
    .hero-headline { margin-top: 30px; }

    .hero-portrait-wrap .float-icon[style*="left: -200px"],
    .hero-portrait-wrap .float-icon[style*="right: -200px"] {
      display: flex;
    }

    footer { padding: 20px; }
    .footer-inner { flex-direction: column; text-align: center; }

    /* Float icons reduced on mobile */
    .float-icon { width: 42px; height: 42px; border-radius: 11px; }
    .float-icon img { width: 22px; height: 22px; }
  }

  @media (max-width: 480px) {
    .hero-portrait-wrap { width: 240px; height: 310px; }
    .portrait-placeholder { width: 175px; height: 255px; }
    .section-heading { font-size: clamp(34px, 10vw, 56px); }
    .stat-row { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-cta-row { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 260px; justify-content: center; }
  }

  /* Prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  }
  /* ============ EDUCATION & EXPERIENCE CARDS ============ */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.timeline-card {
  display: flex;
  gap: 20px;
  background: #0A0A12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.tc-logo {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
}
.tc-content {
  display: flex;
  flex-direction: column;
}
.tc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tc-subtitle {
  font-size: 14px;
  color: #A0A0B8;
  margin-bottom: 6px;
}
.tc-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 12px;
}
.tc-desc {
  font-size: 13px;
  color: #A0A0B8;
  line-height: 1.6;
}

/* ============ PROJECTS SHOWCASE ============ */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.filter-btn {
  background: transparent;
  border: none;
  color: #A0A0B8;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  color: var(--white);
}
.filter-btn.active {
  background: #7C3AED; /* Purple Blue matching screenshot */
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  background: #0D0D14;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.2);
}
.sc-img {
  width: 100%;
  height: 200px;
  background: #151520;
  overflow: hidden;
}
.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.showcase-card:hover .sc-img img {
  opacity: 1;
}
.sc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.sc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.sc-divider {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 4px, transparent 4px, transparent 8px);
  margin-bottom: 20px;
}
.sc-tech {
  margin-bottom: 24px;
}
.tech-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}
.tech-names {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #54C5F8; /* Light blue accent from image */
  margin-top: 6px;
}
.sc-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.sc-actions.single-btn {
  justify-content: center;
}
.sc-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-github {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-github:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn-preview {
  background: #7b61ff; /* Purple matching screenshot */
  color: var(--white);
  border: 1px solid #7b61ff;
}
.btn-preview:hover {
  background: #6a50eb;
  border-color: #6a50eb;
}

@media (max-width: 1024px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .filter-tabs { flex-wrap: wrap; border-radius: 16px; }
}
/* =========================================
   1. CUSTOM CURSOR (Purple Theme)
   ========================================= */
.cursor-follower {
  border: 1px solid rgba(124, 58, 237, 0.4) !important; 
}

/* =========================================
   2. DOWNLOAD CV BUTTON (Purple Theme)
   ========================================= */
.nav-cta {
  background: rgba(124, 58, 237, 0.08) !important;
  border: 1.4px solid rgba(124, 58, 237, 0.5) !important;
}
.nav-cta:hover {
  background: rgba(124, 58, 237, 0.15) !important;
  border-color: rgba(124, 58, 237, 0.9) !important;
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.25) !important;
}

/* =========================================
   3. EXPLORE FULL PROJECT LIBRARY BUTTON
   ========================================= */
.tech-projects-btn::before {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.15), transparent 42%, transparent 70%, rgba(124, 58, 237, 0.1)) !important;
}
.tech-projects-btn::after {
  background: conic-gradient(
      from 0deg,
      rgba(255,255,255,0.00) 0deg,
      rgba(255,255,255,0.00) 235deg,
      rgba(167, 139, 250, 0.2) 275deg,
      rgba(139, 92, 246, 0.95) 315deg,
      rgba(109, 40, 217, 0.95) 338deg,
      rgba(255,255,255,0.00) 360deg
    ) !important;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3)) !important;
}
.tech-projects-btn:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 38px rgba(0,0,0,0.24), 0 0 0 1px rgba(124, 58, 237, 0.2) !important; 
}
.tech-projects-btn-icon {
  background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%) !important;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}
.tech-projects-btn:hover .tech-projects-btn-icon {
  box-shadow: 0 14px 26px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

/* =========================================
   4. EDUCATION & EXPERIENCE CARDS
   ========================================= */
.timeline-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(124, 58, 237, 0.1) !important;
    backdrop-filter: blur(12px);
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.timeline-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(124, 58, 237, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.15) !important;
    background: rgba(124, 58, 237, 0.04) !important;
}
.tc-logo {
    background: rgba(124, 58, 237, 0.1) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    border-radius: 15px !important;
    padding: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.tc-logo:hover {
    transform: scale(1.05);
}
.tc-title {
    color: #ffffff !important;
}
.tc-subtitle {
    color: #a78bfa !important;
    font-weight: 600;
}
.tc-date {
    background: rgba(124, 58, 237, 0.1);
    color: #c4b5fd !important;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    font-size: 11px !important;
    margin-bottom: 10px;
}

/* =========================================
   5. TECHNOLOGIES SECTION
   ========================================= */
#technologies {
    background: linear-gradient(180deg, #08081a 0%, rgba(45, 15, 90, 0.25) 100%) !important;
}
.tech-category-title {
    color: #ddd6fe !important; 
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}
.tech-pill {
    background: rgba(124, 58, 237, 0.08) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    color: #c4b5fd !important; 
    backdrop-filter: blur(8px) !important;
}
.tech-pill:hover {
    background: rgba(124, 58, 237, 0.25) !important;
    border-color: rgba(124, 58, 237, 0.8) !important;
    color: #ffffff !important; 
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.35) !important;
    transform: translateY(-4px) !important;
}
.tech-pill img {
    filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.4));
}

/* =========================================
   6. EXPERTISE / WHAT I BUILD SECTION
   ========================================= */
.expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2;
}
.expertise-card {
  background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px); border-radius: 24px; padding: 40px 30px; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
}
.expertise-card::before {
  content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(124, 58, 237, 0.15), transparent 70%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.expertise-card:hover::before { opacity: 1; }
.expertise-card:hover {
  transform: translateY(-10px); border-color: rgba(124, 58, 237, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.15); background: rgba(255, 255, 255, 0.03);
}
.exp-icon-wrap {
  width: 76px; height: 76px; margin: 0 auto 28px; background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.25); border-radius: 22px; display: flex; align-items: center; justify-content: center; color: #a78bfa; transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}
.expertise-card:hover .exp-icon-wrap {
  transform: scale(1.1) translateY(-5px); background: rgba(124, 58, 237, 0.2); color: #ffffff; box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}
.exp-icon-wrap svg { width: 34px; height: 34px; stroke-width: 1.5px; }
.exp-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 16px; }
.exp-desc { font-size: 14.5px; color: #A0A0B8; line-height: 1.7; }

/* =========================================
   7. PROJECT BUTTONS (Visit Project / Preview)
   ========================================= */
.sc-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13.5px !important;
  font-weight: 600;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-github {
  background: #11111a !important; 
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.btn-github:hover {
  background: #1a1a2e !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
}
.btn-preview {
  background: #7b61ff !important; 
  color: #ffffff !important;
  border: 1px solid #7b61ff !important;
}
.btn-preview:hover {
  background: #6a50eb !important;
  box-shadow: 0 6px 15px rgba(123, 97, 255, 0.3) !important;
  transform: translateY(-2px);
}
/* =========================================
   TECHNOLOGIES SECTION ORIGINAL THEME (DARK)
   ========================================= */


#technologies {
    background: var(--bg) !important;
}


.tech-category-title {
    color: var(--white) !important; 
    text-shadow: none !important;
}


.tech-pill {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: var(--gray-light) !important; 
    backdrop-filter: none !important;
}


.tech-pill:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(124, 58, 237, 0.5) !important;
    color: var(--white) !important; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-3px) !important;
}


.tech-pill img {
    filter: none !important;
}
/* =========================================
   MESSAGE BOX (CONTACT FORM) STYLES
   ========================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 18px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(124, 58, 237, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(124, 58, 237, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Mobile Responsive For Form */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper .contact-glass-card {
    padding: 30px 20px;
  }
}/* =========================================
   EXTRACTED CSS FROM INDEX.PHP
   ========================================= */
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-socials { display: flex; align-items: center; gap: 16px; }
.nav-socials a { color: #A0A0B8; transition: color 0.3s ease, transform 0.3s ease; display: flex; align-items: center; justify-content: center; }
.nav-socials a:hover { color: #FFFFFF; transform: translateY(-2px); }
.nav-socials svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 900px) { .nav-socials { display: none; } }

nav .nav-links { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; }
::-webkit-scrollbar { display: none !important; }
html, body { scrollbar-width: none !important; -ms-overflow-style: none !important; scroll-behavior: auto !important; }

/* About Bento */
.about-bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.about-bento-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 35px; backdrop-filter: blur(10px); transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease; display: flex; flex-direction: column; }
.about-bento-card:hover { transform: translateY(-6px); border-color: rgba(124, 58, 237, 0.3); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1); background: rgba(255, 255, 255, 0.03); }
.bento-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.bento-desc { font-size: 14.5px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.bento-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0; }
.bento-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--gray-light); line-height: 1.6; }
.bento-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.bento-list li strong { color: var(--white); font-weight: 600; font-family: var(--font-display); letter-spacing: 0.01em; }
@media (max-width: 900px) { .about-bento-grid { grid-template-columns: 1fr; } }

/* Tech Stack */
.tech-category-title { text-align: center; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); margin: 40px 0 20px; letter-spacing: 0.02em; }
.tech-pills-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 950px; margin: 0 auto; }
.tech-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 10px 18px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gray-light); font-family: var(--font-body); transition: all 0.3s ease; }
.tech-pill:hover { background: rgba(255,255,255,0.06); border-color: rgba(124, 58, 237, 0.5); transform: translateY(-3px); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.tech-pill img { width: 16px; height: 16px; object-fit: contain; }
.icon-white { filter: invert(1) brightness(2); }
.tech-footer-note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 50px; letter-spacing: 0.02em; }

/* Expertise Projects */
.projects-header-wrapper { margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.projects-subtitle { text-align: center; color: var(--gray); max-width: 600px; margin: 15px auto 0; font-size: 15px; line-height: 1.7; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.expertise-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 24px; padding: 40px 30px; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.expertise-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(124, 58, 237, 0.15), transparent 70%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.expertise-card:hover::before { opacity: 1; }
.expertise-card:hover { transform: translateY(-10px); border-color: rgba(124, 58, 237, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.15); background: rgba(255, 255, 255, 0.03); }
.exp-icon-wrap { width: 76px; height: 76px; margin: 0 auto 28px; background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.25); border-radius: 22px; display: flex; align-items: center; justify-content: center; color: #a78bfa; transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease; }
.expertise-card:hover .exp-icon-wrap { transform: scale(1.1) translateY(-5px); background: rgba(124, 58, 237, 0.2); color: #ffffff; box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3); }
.exp-icon-wrap svg { width: 34px; height: 34px; stroke-width: 1.5px; }
.exp-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 16px; letter-spacing: -0.02em; }
.exp-desc { font-size: 14.5px; color: #A0A0B8; line-height: 1.7; }
@media (max-width: 1024px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .expertise-grid { grid-template-columns: 1fr; } }

/* Contact Form */
.form-glass-card { background: rgba(15, 15, 25, 0.5); border: 1px solid rgba(124, 58, 237, 0.15); border-radius: 24px; padding: 45px 50px; backdrop-filter: blur(24px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; }
.form-glass-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 60%); pointer-events: none; z-index: 0; }
.form-glass-card h3 { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 35px; text-align: center; letter-spacing: -0.02em; position: relative; z-index: 1; }
.form-glass-card h3 span { color: #A78BFA; }
.contact-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.form-group label { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: #C8C8E0; letter-spacing: 0.02em; padding-left: 4px; }
.form-control { width: 100%; background: rgba(5, 5, 15, 0.5); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; padding: 16px 20px; color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; transition: all 0.3s ease; box-sizing: border-box; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); }
.form-control::placeholder { color: rgba(255, 255, 255, 0.25); }
.form-control:focus { outline: none; border-color: rgba(124, 58, 237, 0.6); background: rgba(124, 58, 237, 0.05); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1); }
.form-control:-webkit-autofill, .form-control:-webkit-autofill:hover, .form-control:-webkit-autofill:focus, .form-control:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 30px #0e0e18 inset !important; -webkit-text-fill-color: white !important; transition: background-color 5000s ease-in-out 0s; border: 1px solid rgba(124, 58, 237, 0.3) !important; }
textarea.form-control { resize: vertical; min-height: 150px; }
.btn-submit-premium { background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%); color: #fff; border: 1px solid rgba(124, 58, 237, 0.4); border-radius: 14px; padding: 18px 32px; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255,255,255,0.1); margin-top: 10px; width: 100%; }
.btn-submit-premium:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255,255,255,0.2); background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.form-alert { padding: 16px; border-radius: 12px; margin-bottom: 24px; font-size: 14px; font-weight: 500; text-align: center; position: relative; z-index: 1; }
.form-alert.success { background: rgba(40, 200, 64, 0.1); color: #28C840; border: 1px solid rgba(40, 200, 64, 0.2); }
.form-alert.error { background: rgba(255, 77, 77, 0.1); color: #ff4d4d; border: 1px solid rgba(255, 77, 77, 0.2); }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; gap: 24px; } .form-glass-card { padding: 35px 25px; } }

/* =========================================
   EDUCATION & EXPERIENCE IMAGE FRAMES
   ========================================= */
.timeline-card {
  display: flex;
  gap: 24px;
  background: rgba(15, 15, 25, 0.4) !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 20px !important;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px);
}

.timeline-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(124, 58, 237, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.15) !important;
  background: rgba(15, 15, 25, 0.7) !important;
}

.tc-logo {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3) !important;
  border: 2px solid rgba(124, 58, 237, 0.3) !important;
  border-radius: 18px !important; /* Premium Rounded Edge */
  padding: 4px !important; /* Spacing inside frame */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease !important;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5) !important;
  overflow: hidden;
}

.tc-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* Make images auto-adjust perfectly */
  border-radius: 12px; /* Curves for the inner image */
  transition: transform 0.4s ease !important;
}

.timeline-card:hover .tc-logo {
  border-color: rgba(124, 58, 237, 0.8) !important;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3), inset 0 0 10px rgba(124, 58, 237, 0.2) !important;
  transform: scale(1.05) rotate(-2deg) !important; /* Nice hover effect */
}

.timeline-card:hover .tc-logo img {
  transform: scale(1.1) !important; /* Image slight zoom on hover */
}

@media (max-width: 768px) {
  .timeline-card {
    flex-direction: column;
    gap: 16px;
  }
  .tc-logo {
    width: 60px;
    height: 60px;
  }
}
/* --- Navigation Social Icons Fix --- */
.nav-socials {
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.nav-socials a svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #A0A0B8; /* Icon pata */
    transition: fill 0.3s ease, transform 0.3s ease;
}

.nav-socials a:hover svg {
    fill: #FFFFFF;
    transform: translateY(-2px);
}

/* --- Contact Section Buttons Fix --- */
.contact-action-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 10; /* Button eka kapa wena eka nawaththanna */
}

.contact-hire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 160px;
}

/* --- Education & Experience Image Frames --- */
.tc-logo {
    width: 65px;
    height: 65px;
    border-radius: 14px; /* Namuna curves */
    border: 2px solid rgba(124, 58, 237, 0.2); /* Purple frame */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Photo eka frame ekata auto adjust wenna */
    transition: transform 0.4s ease;
}

/* Frame hover effect */
.timeline-card:hover .tc-logo {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    transform: scale(1.05);
}

.timeline-card:hover .tc-logo img {
    transform: scale(1.1); /* Photo eka zoom wenna */
}

/* Mobile waladi icons penna meka danna */
@media (max-width: 900px) {
    .nav-socials { 
        display: flex !important; /* Hide wela thibba eka ain kala */
    }
}
/* =========================================
   PREMIUM HERO BUTTONS
   ========================================= */
.hero-cta-row { 
  gap: 20px; 
  margin-top: 45px; 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  position: relative;
  z-index: 10;
}

/* View My Work Button - Balanced Premium Purple */
.btn-premium-primary {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: rgba(124, 58, 237, 0.75); 
  color: #ffffff; 
  font-family: var(--font-display); 
  font-size: 15px; 
  font-weight: 600;
  padding: 16px 32px; 
  border-radius: 50px; 
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.btn-premium-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  background: rgba(124, 58, 237, 0.95);
  border-color: rgba(167, 139, 250, 0.6);
}

.btn-premium-primary svg {
  transition: transform 0.3s ease;
}

.btn-premium-primary:hover svg {
  transform: translateX(3px);
}

/* Let's Talk Button - Glass Outline */
.btn-premium-outline {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff; 
  font-family: var(--font-display); 
  font-size: 15px; 
  font-weight: 600;
  padding: 16px 32px; 
  border-radius: 50px; 
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-outline:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* =========================================
   FIX: RED HOVER COLORS TO LIGHT PURPLE
   ========================================= */

/* 1. Nav Links Hover & Active State */
.nav-links a:hover, 
.nav-links a.active {
    color: #c4b5fd !important; 
    background: rgba(139, 92, 246, 0.15) !important; 
}

/* 2. Cursor Follower Border Color */
.cursor-follower {
    border: 1px solid rgba(167, 139, 250, 0.6) !important; 
}
/* =========================================
   FIX: FLOATING ICONS HOVER SHADOW TO PURPLE
   ========================================= */
.float-icon:hover {
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.4) !important;
}
/* =========================================
   PREMIUM HERO BUTTONS (Updated Solid Color)
   ========================================= */
.hero-cta-row { 
  gap: 20px; 
  margin-top: 45px; 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  position: relative;
  z-index: 10;
}

/* View My Work Button - Vibrant Solid Purple */
.btn-premium-primary {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: #7C3AED; /* Solid vibrant purple */
  color: #ffffff; 
  font-family: var(--font-display); 
  font-size: 15px; 
  font-weight: 600;
  padding: 16px 32px; 
  border-radius: 50px; 
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.btn-premium-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  background: #6D28D9; /* Ektu dark purple hover korle */
  border-color: rgba(167, 139, 250, 0.8);
}

.btn-premium-primary svg {
  transition: transform 0.3s ease;
}

.btn-premium-primary:hover svg {
  transform: translateX(3px);
}

/* Let's Talk Button - Glass Outline */
.btn-premium-outline {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff; 
  font-family: var(--font-display); 
  font-size: 15px; 
  font-weight: 600;
  padding: 16px 32px; 
  border-radius: 50px; 
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-outline:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* =========================================
   HIDE NAVBAR SOCIALS & CTA ON MOBILE
   ========================================= */
@media (max-width: 900px) {
    .nav-socials,
    .nav-cta {
        display: none !important;
    }
}
/* --- Back Button Styles --- */
    .back-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .back-btn:hover {
      background: rgba(124, 58, 237, 0.15);
      border-color: rgba(124, 58, 237, 0.4);
      color: #A78BFA;
      transform: translateX(-4px);
    }
    @media (max-width: 768px) {
      .back-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
      }
      .back-btn svg {
        width: 18px;
        height: 18px;
      }
      #navbar {
        padding: 15px 20px !important; 
      }
    }
    /* =========================================
   ORBIT BOTTOM LABELS (Software Dev & Dev Tools)
   ========================================= */
.orbit-label {
    position: absolute;
    bottom: -10%; 
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5); 
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 5;
    transition: color 0.3s ease;
}

.orbit-label:hover {
    color: rgba(167, 139, 250, 0.9); 
}

.orbit-label-left {
    left: -120px;
}

.orbit-label-right {
    right: -120px;
}

.orbit-label svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.3);
}


@media (max-width: 900px) {
    .orbit-label {
        display: none;
    }
}
/* =========================================
   FIX: BRIGHTER ORBIT LABELS 
   ========================================= */
.orbit-label {
    color: rgba(255, 255, 255, 0.95) !important; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(124, 58, 237, 0.6) !important; 
    font-size: 14.5px !important;
    font-weight: 700 !important; 
    letter-spacing: 0.15em !important;
}

.orbit-label svg {
    color: #A78BFA !important;
    filter: drop-shadow(0 0 5px rgba(167, 139, 250, 0.5));
}
/* =========================================
   FIX: ORBIT LABELS POSITION (TECH STACK & ECOSYSTEM)
   ========================================= */
.orbit-label {
    position: absolute;
    bottom: 0%; 
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(124, 58, 237, 0.6) !important;
    font-family: var(--font-display);
    font-size: 14.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    z-index: 5;
    transition: color 0.3s ease;
}
/* =========================================
   HIDE FLOATING ICONS & ORBIT LABELS ON MOBILE
   ========================================= */
@media (max-width: 900px) {
    .float-icon,
    .orbit-label {
        display: none !important;
    }
}
/* =========================================
   MOBILE MENU (Matched with Home Page Theme)
   ========================================= */
.mobile-menu {
    
    background: linear-gradient(180deg, rgba(15, 12, 25, 0.95) 0%, rgba(8, 8, 15, 0.98) 100%) !important; 
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-left: 1px solid rgba(124, 58, 237, 0.15) !important; 
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6) !important;
}
/* =========================================
   FIX: NAVBAR OVERLAPPING ON MEDIUM SCREENS
   ========================================= */
@media (max-width: 1150px) { 
  
    .nav-socials,
    #desktopCta,
    .nav-right {
        display: none !important;
    }

   
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }
}