/* =====================================================
   YASIR QURESHI — PORTFOLIO
   style.css
   ===================================================== */

/* ── EDIT COLORS HERE ── */
:root {
  --bg:       #06060a;
  --surface:  #0f0f16;
  --card:     rgba(255, 255, 255, 0.035);
  --border:   rgba(255, 255, 255, 0.07);
  --border2:  rgba(255, 255, 255, 0.13);

  --gold:     #e8b84b;
  --gold2:    #f5d280;
  --teal:     #3de8c8;
  --rose:     #ff5f7e;

  --text:     #eeeef5;
  --muted:    rgba(238, 238, 245, 0.50);
  --dim:      rgba(238, 238, 245, 0.25);

  --radius:   14px;
  --max-w:    1160px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabinet Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cur-dot {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#cur-ring {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 184, 75, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
  width: 52px;
  height: 52px;
  border-color: var(--teal);
}

/* ── BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 72%);
}

/* ── AMBIENT ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 { width: 700px; height: 700px; background: rgba(232, 184, 75, 0.07); top: -300px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: rgba(61, 232, 200, 0.06); bottom: -200px; right: -100px; animation-duration: 11s; animation-direction: reverse; }
.orb-3 { width: 400px; height: 400px; background: rgba(255, 95, 126, 0.05); top: 50%; left: 60%; animation-duration: 9s; animation-delay: 3s; }

@keyframes orbFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.1) translateY(-20px); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  height: 68px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4); }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  cursor: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover         { color: var(--gold); }
.nav-links a:hover::after  { transform: scaleX(1); }
.nav-links a.active        { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-hire {
  background: linear-gradient(135deg, var(--gold), #c9922a) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(232, 184, 75, 0.25);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-hire:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(232, 184, 75, 0.5) !important;
}

.nav-hire::after { display: none !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LAYOUT HELPERS ── */
section { position: relative; z-index: 1; }
.bg-surface { background: var(--surface); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

/* ── SECTION TYPOGRAPHY ── */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
  max-width: 60px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 56px;
}

.hl-gold { color: var(--gold); }
.hl-teal { color: var(--teal); }
.hl-rose { color: var(--rose); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.22s;
  border: none;
  cursor: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9922a);
  color: #000;
  box-shadow: 0 0 24px rgba(232, 184, 75, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(232, 184, 75, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 232, 200, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(61, 232, 200, 0); }
}

@keyframes rotateBorder {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.rd1 { transition-delay: 0.07s; }
.rd2 { transition-delay: 0.14s; }
.rd3 { transition-delay: 0.21s; }
.rd4 { transition-delay: 0.28s; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 460px;
}

.hero-left {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232, 184, 75, 0.3);
  padding: 6px 16px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  width: fit-content;
  animation: fadeUp 0.7s ease both;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-name-1 { display: block; color: var(--text); }

.hero-name-2 {
  display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: fadeUp 0.7s 0.1s ease both, shimmer 5s linear infinite;
}

.hero-roles {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-roles .sep { color: var(--border2); }

.hero-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.82;
  max-width: 480px;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-desc strong { color: var(--text); font-weight: 700; }

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

/* Hero Right Panel */
.hero-right {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 100px 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(232, 184, 75, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Photo */
.photo-wrap {
  width: 200px;
  height: 250px;
  position: relative;
  flex-shrink: 0;
}

.photo-border {
  position: absolute;
  inset: -3px;
  border-radius: 110px 110px 70px 70px;
  background: linear-gradient(160deg, var(--gold), var(--teal), var(--rose));
  z-index: 0;
  animation: rotateBorder 6s linear infinite;
}

.photo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 110px 110px 70px 70px;
  overflow: hidden;
  background: #1a1820;
}

.photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}

.ph-icon  { font-size: 2.8rem; }
.ph-label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; opacity: 0.45; }

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.stat-label { font-size: 0.7rem; color: var(--dim); }
.stat-val   { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--text); }
.stat-val em { font-style: normal; color: var(--gold); font-weight: 700; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about { padding: 110px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 700; }

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.acard:hover { border-color: var(--gold); transform: translateX(5px); }

.acard-icon  { font-size: 1.5rem; flex-shrink: 0; }
.acard-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.acard-sub   { font-size: 0.74rem; color: var(--dim); font-family: 'JetBrains Mono', monospace; }

/* ══════════════════════════════════════
   EXPERIENCE
══════════════════════════════════════ */
#experience { padding: 110px 0; }

.exp-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.exp-left p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.78;
  margin-top: 16px;
}

.exp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 36px 36px 42px;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
}

.exp-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.exp-company {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.exp-badge {
  background: rgba(61, 232, 200, 0.1);
  border: 1px solid rgba(61, 232, 200, 0.3);
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.exp-role   { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.exp-period { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--dim); margin-bottom: 20px; }

.exp-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.exp-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.exp-points li::before { content: '→'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════
   SKILLS
══════════════════════════════════════ */
#skills { padding: 110px 0; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.sk-block {
  background: var(--bg);
  padding: 30px 26px;
  transition: background 0.25s;
}

.sk-block:hover { background: var(--surface); }

.sk-icon  { font-size: 1.4rem; margin-bottom: 12px; }
.sk-title { font-weight: 800; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }

.sk-pills { display: flex; flex-wrap: wrap; gap: 6px; }

.sk-pills span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 5px;
  transition: all 0.2s;
}

.sk-block:hover .sk-pills span {
  border-color: rgba(232, 184, 75, 0.3);
  color: var(--text);
}

/* ══════════════════════════════════════
   CURRENTLY LEARNING
══════════════════════════════════════ */
#learning { padding: 110px 0; }

.learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.learn-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.learn-card:hover { border-color: rgba(232, 184, 75, 0.3); transform: translateY(-4px); }

.learn-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.learn-icon { font-size: 1.6rem; }

.learn-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.learn-badge-active {
  background: rgba(61, 232, 200, 0.1);
  border: 1px solid rgba(61, 232, 200, 0.3);
  color: var(--teal);
}

.learn-badge-yellow {
  background: rgba(232, 184, 75, 0.1);
  border: 1px solid rgba(232, 184, 75, 0.3);
  color: var(--gold);
}

.learn-badge-dim {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--dim);
}

.learn-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.learn-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 18px;
}

/* Progress bar */
.progress-wrap {
  height: 4px;
  background: var(--border2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 99px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   PROJECTS
══════════════════════════════════════ */
#projects { padding: 110px 0; }

.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.proj-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 75, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.proj-thumb {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.proj-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6, 6, 10, 0.9));
}

/* EDIT: Change these gradient colors per project if you want */
.proj-thumb-1 { background: linear-gradient(135deg, #1a1230, #2a1a40); }
.proj-thumb-2 { background: linear-gradient(135deg, #0d2020, #102e28); }
.proj-thumb-3 { background: linear-gradient(135deg, #1a0d20, #2a1230); }
.proj-thumb-4 { background: linear-gradient(135deg, #1a1408, #2a2010); }

.proj-body { padding: 22px; }

.proj-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.proj-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.proj-tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  background: rgba(232, 184, 75, 0.08);
  color: var(--gold);
  border: 1px solid rgba(232, 184, 75, 0.2);
  padding: 3px 9px;
  border-radius: 4px;
}

.proj-links { display: flex; gap: 14px; }

.proj-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.proj-links a:hover { color: var(--teal); }

/* ══════════════════════════════════════
   EDUCATION
══════════════════════════════════════ */
#education { padding: 110px 0; }

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.edu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.edu-card:hover { border-color: rgba(232, 184, 75, 0.3); transform: translateY(-4px); }

.edu-year-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--gold);
  background: rgba(232, 184, 75, 0.08);
  border: 1px solid rgba(232, 184, 75, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.edu-degree {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.edu-school { font-size: 0.88rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }

.edu-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--dim);
}

.edu-score span { color: var(--gold); font-weight: 700; font-size: 0.88rem; }

/* ══════════════════════════════════════
   ACHIEVEMENTS
══════════════════════════════════════ */
#achievements { padding: 110px 0; }

.ach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.ach-card:hover { border-color: rgba(232, 184, 75, 0.4); transform: translateX(5px); }

.ach-medal { font-size: 2.8rem; flex-shrink: 0; line-height: 1; }

.ach-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--gold);
}

.ach-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 10px;
}

.ach-desc strong { color: var(--text); }

.ach-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--dim);
}

/* ══════════════════════════════════════
   INTERESTS
══════════════════════════════════════ */
#interests { padding: 110px 0; }

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.int-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.int-card:hover { border-color: rgba(61, 232, 200, 0.3); transform: translateY(-6px); }

.int-icon  { font-size: 2.6rem; margin-bottom: 16px; }
.int-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.06em; margin-bottom: 8px; }
.int-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.68; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { padding: 110px 0; }

.contact-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.04);
  filter: blur(80px);
  pointer-events: none;
}

.contact-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.contact-left p { font-size: 0.94rem; color: var(--muted); line-height: 1.82; }

.contact-links { display: flex; flex-direction: column; gap: 10px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: none;
}

.contact-link:hover {
  border-color: var(--gold);
  background: rgba(232, 184, 75, 0.05);
  transform: translateX(4px);
}

.cl-icon  { font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
.cl-label { font-size: 0.62rem; font-family: 'JetBrains Mono', monospace; color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; }
.cl-val   { font-size: 0.86rem; font-weight: 600; margin-top: 1px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--dim);
  position: relative;
  z-index: 1;
}

.heart { color: var(--rose); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }

  .hero-right {
    min-height: auto;
    padding: 48px 40px;
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-row   { min-width: 220px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(6, 6, 10, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }

  .wrap { padding: 0 24px; }

  .hero-left { padding: 80px 24px 40px; }

  .about-grid,
  .exp-grid,
  .proj-grid,
  .edu-grid,
  .ach-grid,
  .learning-grid { grid-template-columns: 1fr; }

  .interests-grid { grid-template-columns: 1fr 1fr; }

  .skills-grid { grid-template-columns: 1fr 1fr; }

  .contact-inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }

  footer { flex-direction: column; gap: 8px; padding: 24px; text-align: center; }
}

@media (max-width: 480px) {
  .skills-grid    { grid-template-columns: 1fr; }
  .interests-grid { grid-template-columns: 1fr; }
  .hero-btns      { flex-direction: column; }
}
/* ══════════════════════════════════════
   PHOTO PROFESSIONAL ANIMATIONS
══════════════════════════════════════ */

.photo-wrap {
  position: relative;
  width: 200px;
  height: 250px;
  flex-shrink: 0;
  animation: photoFloat 4s ease-in-out infinite;
}

/* Gentle floating up-down */
@keyframes photoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Rotating gradient border */
.photo-border {
  position: absolute;
  inset: -3px;
  border-radius: 110px 110px 70px 70px;
  background: linear-gradient(160deg, var(--gold), var(--teal), var(--rose));
  z-index: 0;
  animation: rotateBorder 4s linear infinite;
}

/* Outer pulse ring 1 */
.photo-ring-1 {
  position: absolute;
  inset: -16px;
  border-radius: 120px 120px 80px 80px;
  border: 1px solid rgba(232, 184, 75, 0.2);
  z-index: 0;
  animation: ringPulse 3s ease-in-out infinite;
}

/* Outer pulse ring 2 */
.photo-ring-2 {
  position: absolute;
  inset: -30px;
  border-radius: 130px 130px 90px 90px;
  border: 1px solid rgba(61, 232, 200, 0.1);
  z-index: 0;
  animation: ringPulse 3s ease-in-out infinite 0.5s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

/* Photo image */
.photo-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 110px 110px 70px 70px;
  overflow: hidden;
  background: #1a1820;
}

.photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.photo-inner img:hover {
  transform: scale(1.05);
}

/* Floating badges around photo */
.photo-badge {
  position: absolute;
  background: rgba(15, 15, 22, 0.92);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  z-index: 4;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.photo-badge-1 {
  top: 20px;
  left: -70px;
  animation: badgeFloat 3.5s ease-in-out infinite;
}

.photo-badge-2 {
  bottom: 80px;
  left: -65px;
  animation: badgeFloat 3.5s ease-in-out infinite 1s;
}

.photo-badge-3 {
  top: 50px;
  right: -75px;
  animation: badgeFloat 3.5s ease-in-out infinite 2s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-6px); }
}

/* Shimmer overlay on photo */
.photo-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 60%
  );
  background-size: 200% 200%;
  animation: photoShimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes photoShimmer {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}