/* ============================================================
   GLASSMORPHISM AURORA — site.css
   Replace existing wwwroot/css/site.css completely
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg:     #060612;
  --bg2:    #0a0a1a;
  --bg3:    #0f0f1f;
  --glass:  rgba(255,255,255,.04);
  --glass2: rgba(255,255,255,.07);
  --glass3: rgba(255,255,255,.10);
  --gb:     rgba(255,255,255,.08);
  --gb2:    rgba(255,255,255,.14);
  --gb3:    rgba(255,255,255,.20);

  --vi:  #818cf8;
  --vi2: #6366f1;
  --vi3: #4f46e5;
  --pi:  #ec4899;
  --cy:  #06b6d4;
  --em:  #10b981;
  --am:  #f59e0b;

  --w:  #ffffff;
  --w2: #e2e8f0;
  --w3: #94a3b8;
  --w4: #475569;
  --w5: #334155;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 7px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--w);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--vi); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ===== AURORA BLOBS (fixed background) ===== */
body::before {
  content: '';
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 65%);
  top: -200px; left: -150px;
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,.14) 0%, transparent 65%);
  top: -100px; right: -100px;
  pointer-events: none; z-index: 0;
}
.aurora-3 {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 65%);
  bottom: 10%; left: 35%;
  pointer-events: none; z-index: 0;
}

/* Grid lines overlay */
.grid-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 10; }
.section { padding: 90px 0; position: relative; z-index: 10; }

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--gb);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass2);
  border-color: var(--gb2);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--vi2), var(--vi3));
  color: var(--w);
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: var(--glass);
  border: 1px solid var(--gb);
  color: var(--w2);
}
.btn-outline:hover { background: var(--glass2); border-color: var(--gb2); color: var(--w); }
.btn-ghost { background: transparent; color: var(--w3); }
.btn-ghost:hover { color: var(--w); }
.btn-full { width: 100%; justify-content: center; }
.btn-gradient {
  background: linear-gradient(135deg, var(--vi2), var(--pi));
  color: #fff;
}
.btn-gradient:hover { opacity: .9; transform: translateY(-1px); color: #fff; }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
  font-size: 14px; backdrop-filter: blur(10px);
}
.alert-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: #34d399; }
.alert-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.25);  color: #f87171; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,6,18,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gb);
  padding: 14px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--w);
  letter-spacing: -0.5px;
}
.nav-brand span { color: var(--vi); }

/* Pill nav */
.nav-pill {
  display: flex; align-items: center;
  background: var(--glass);
  border: 1px solid var(--gb);
  border-radius: 50px;
  padding: 5px;
  backdrop-filter: blur(12px);
  gap: 2px;
}
.nav-link {
  font-size: 13px; color: var(--w3); font-weight: 500;
  padding: 7px 18px; border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--glass2); color: var(--w); }
.nav-btn {
  background: var(--vi2); color: var(--w);
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  margin-left: 10px; transition: var(--transition);
}
.nav-btn:hover { background: var(--vi3); color: #fff; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; cursor: pointer; z-index: 1001; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--w3); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
  padding-top: 90px;
  position: relative; z-index: 10;
}

.role-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--gb);
  border-radius: 50px; padding: 7px 16px;
  font-size: 12px; color: var(--w2); font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.rc-av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vi2), var(--pi));
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.rc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--em);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -3px;
  color: var(--w);
  margin-bottom: 20px;
}
.hero-name .grad {
  background: linear-gradient(135deg, var(--vi), var(--pi));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-name .muted { display: block; color: rgba(255,255,255,.2); font-size: 80%; }

.hero-desc { font-size: 16px; color: var(--w3); line-height: 1.75; max-width: 440px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 0; }
.hs-item { padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.08); }
.hs-item:last-child { border-right: none; }
.hs-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -1px; color: var(--w); }
.hs-num span { font-size: 18px; color: var(--vi); }
.hs-label { font-size: 11px; color: var(--w4); margin-top: 2px; letter-spacing: .3px; }

/* Hero right cards */
.hero-right { display: flex; flex-direction: column; gap: 14px; }

.skill-card-hero { padding: 20px 22px; }
.sk-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--w4); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.sk-badge {
  background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.25);
  color: var(--vi); padding: 2px 10px; border-radius: 50px; font-size: 10px;
}
.skill-bars { display: flex; flex-direction: column; gap: 10px; }
.sb-row { display: grid; grid-template-columns: 90px 1fr 34px; align-items: center; gap: 10px; }
.sb-name { font-size: 12px; color: var(--w3); }
.sb-track { height: 5px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.sb-fill  { height: 100%; border-radius: 3px; transition: width 1s ease; }
.sb-pct   { font-size: 11px; color: var(--w4); text-align: right; }

.tech-pill-wrap { display: flex; flex-wrap: wrap; gap: 7px; padding: 18px 22px; }
.tech-pill {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xs); padding: 6px 12px;
  font-size: 11px; color: var(--w3); font-weight: 500;
  transition: var(--transition); cursor: default;
}
.tech-pill:hover { background: rgba(99,102,241,.15); border-color: rgba(99,102,241,.3); color: var(--vi); }
.tech-pill.active { background: rgba(99,102,241,.12); border-color: rgba(99,102,241,.25); color: var(--vi); }

.avail-card {
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(10px);
}
.avail-left { display: flex; align-items: center; gap: 10px; }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--em); animation: pulse-dot 2s ease infinite; }
.avail-text { font-size: 13px; color: rgba(16,185,129,.9); font-weight: 600; }
.avail-btn {
  background: var(--em); color: #052e16;
  font-size: 12px; font-weight: 800;
  padding: 8px 18px; border-radius: 8px;
  cursor: pointer; border: none; transition: var(--transition);
}
.avail-btn:hover { background: #0d9488; }

/* Social links */
.hero-socials { display: flex; gap: 8px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--glass); border: 1px solid var(--gb);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--w3);
  transition: var(--transition); backdrop-filter: blur(8px);
}
.social-link:hover { background: rgba(99,102,241,.15); border-color: rgba(99,102,241,.3); color: var(--vi); transform: translateY(-2px); }

/* ===== SECTION HEADER ===== */
.section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.section-title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--w3); text-transform: uppercase; letter-spacing: 2px;
  white-space: nowrap;
}
.section-line { flex: 1; height: 1px; background: rgba(255,255,255,.06); }
.section-count {
  font-size: 11px; color: var(--w4);
  background: var(--glass); border: 1px solid var(--gb);
  padding: 3px 12px; border-radius: 50px;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-bio { font-size: 16px; color: var(--w3); line-height: 1.8; margin-bottom: 32px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.astat-card {
  background: var(--glass); border: 1px solid var(--gb);
  border-radius: var(--radius-sm); padding: 18px;
  text-align: center; transition: var(--transition);
  backdrop-filter: blur(10px);
}
.astat-card:hover { background: var(--glass2); border-color: var(--gb2); transform: translateY(-3px); }
.astat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--vi); display: block; letter-spacing: -1px; }
.astat-label { font-size: 12px; color: var(--w4); margin-top: 4px; }

.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.skill-card {
  background: var(--glass); border: 1px solid var(--gb);
  border-left: 3px solid var(--skill-color, var(--vi));
  border-radius: var(--radius-sm); padding: 16px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition); backdrop-filter: blur(8px);
}
.skill-card:hover { background: var(--glass2); transform: translateX(4px); }
.skill-icon { font-size: 24px; flex-shrink: 0; }
.skill-info h4 { font-size: 13px; font-weight: 700; color: var(--w); }
.skill-info p  { font-size: 11px; color: var(--w3); margin-top: 2px; }

/* ===== TECH PILLS SECTION ===== */
.tech-section { background: transparent; }
.tech-pills-large { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-pill-lg {
  background: var(--glass); border: 1px solid var(--gb);
  border-radius: 50px; padding: 9px 22px;
  font-size: 14px; color: var(--w3); font-weight: 500;
  transition: var(--transition); backdrop-filter: blur(8px); cursor: default;
}
.tech-pill-lg:hover { border-color: rgba(99,102,241,.4); color: var(--vi); background: rgba(99,102,241,.1); transform: translateY(-3px); }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 18px; }
.project-card {
  background: var(--glass); border: 1px solid var(--gb);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); backdrop-filter: blur(10px);
  position: relative;
}
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--proj-glow, rgba(99,102,241,.5)), transparent);
  opacity: 0; transition: var(--transition);
}
.project-card:hover { background: var(--glass2); border-color: var(--gb2); transform: translateY(-6px); }
.project-card:hover::before { opacity: 1; }

.proj-icon-wrap {
  padding: 22px 22px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.proj-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.proj-ext { display: flex; gap: 8px; }
.proj-ext a {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--w4); transition: var(--transition);
}
.proj-ext a:hover { color: var(--w); border-color: rgba(255,255,255,.25); }

.project-body { padding: 16px 22px 22px; }
.project-category { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; display: block; }
.project-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--w); margin-bottom: 8px; letter-spacing: -.3px; }
.project-desc { font-size: 13px; color: var(--w3); line-height: 1.65; margin-bottom: 16px; }
.project-tech { display: flex; flex-wrap: wrap; gap: 5px; }
.tech-tag {
  font-size: 10px; color: var(--w4);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 3px 9px; border-radius: 4px;
}

/* ===== EXPERIENCE ===== */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute;
  left: 16px; top: 0; bottom: 0; width: 1px;
  background: rgba(255,255,255,.06);
}
.timeline-item { display: flex; gap: 28px; margin-bottom: 24px; position: relative; }
.timeline-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--w5); border: 2px solid var(--bg);
  flex-shrink: 0; margin-top: 18px; position: relative; z-index: 1;
}
.timeline-dot.active { background: var(--vi); box-shadow: 0 0 0 4px rgba(99,102,241,.2); }
.timeline-card {
  flex: 1; background: var(--glass); border: 1px solid var(--gb);
  border-radius: var(--radius); padding: 22px;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.timeline-card:hover { background: var(--glass2); border-color: var(--gb2); }
.timeline-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 10px; gap: 16px; flex-wrap: wrap; }
.timeline-role { font-size: 16px; font-weight: 700; color: var(--w); }
.timeline-company { font-size: 13px; color: var(--vi); margin-top: 3px; }
.timeline-duration { font-size: 12px; color: var(--w4); white-space: nowrap; }
.current-badge {
  display: inline-block; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25);
  color: var(--vi); padding: 2px 10px; border-radius: 50px; font-size: 10px; font-weight: 700; margin-left: 8px;
}
.timeline-desc { font-size: 13px; color: var(--w3); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 18px; }
.service-card {
  background: var(--glass); border: 1px solid var(--gb);
  border-top: 2px solid var(--svc-color, var(--vi));
  border-radius: var(--radius); padding: 26px;
  position: relative; overflow: hidden;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.service-card:hover { background: var(--glass2); transform: translateY(-6px); border-color: var(--gb2); }
.service-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--svc-color, var(--vi));
  color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px;
}
.service-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.service-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--w); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--w3); line-height: 1.7; margin-bottom: 14px; }
.service-price { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--svc-color, var(--vi)); }
.service-duration { font-size: 12px; color: var(--w4); margin: 4px 0 14px; display: flex; align-items: center; gap: 5px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.06); margin-bottom: 16px; }
.service-features li { font-size: 12px; color: var(--w3); display: flex; align-items: center; gap: 8px; }
.service-features li i { color: var(--svc-color, var(--vi)); font-size: 11px; flex-shrink: 0; }
.service-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); color: var(--w3);
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.service-cta:hover { background: var(--svc-color, var(--vi)); border-color: transparent; color: #fff; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  background: var(--glass); border: 1px solid var(--gb);
  border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(12px);
}
.contact-heading { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--w); line-height: 1.15; margin-bottom: 10px; letter-spacing: -1px; }
.contact-sub { font-size: 13px; color: var(--w3); line-height: 1.65; margin-bottom: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; color: var(--w4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.form-control {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: 11px 14px;
  color: var(--w); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: var(--transition); width: 100%;
}
.form-control:focus { border-color: rgba(99,102,241,.5); background: rgba(99,102,241,.06); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.form-control::placeholder { color: var(--w5); }
textarea.form-control { resize: vertical; }

.contact-info { display: flex; flex-direction: column; justify-content: space-between; }
.ci-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ci-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition); cursor: pointer;
}
.ci-item:hover { background: rgba(99,102,241,.08); border-color: rgba(99,102,241,.2); }
.ci-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--vi); flex-shrink: 0;
}
.ci-label { font-size: 10px; color: var(--w4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.ci-value { font-size: 13px; color: var(--w2); margin-top: 2px; }
.contact-socials { display: flex; gap: 8px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  position: relative; z-index: 10;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: var(--w4); }
.footer-admin-link { font-size: 12px; color: var(--w5); }
.footer-admin-link:hover { color: var(--vi); }

/* ===== PROJECT DETAIL ===== */
.project-detail { padding-top: 110px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 13px; color: var(--w4); }
.breadcrumb a { color: var(--vi); }
.breadcrumb i { font-size: 10px; }
.project-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.project-detail-title { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--w); margin: 12px 0 14px; letter-spacing: -1.5px; }
.project-detail-desc { font-size: 17px; color: var(--w3); margin-bottom: 28px; line-height: 1.7; }
.project-detail-body h3 { color: var(--w); margin-bottom: 14px; font-size: 18px; }
.project-detail-body p { color: var(--w3); line-height: 1.8; }
.project-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.sidebar-card {
  background: var(--glass); border: 1px solid var(--gb);
  border-radius: var(--radius); padding: 22px; margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.sidebar-card h4 { font-size: 11px; color: var(--w4); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 14px; }
.project-detail-img { border-radius: var(--radius-sm); width: 100%; }

/* ===== ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .project-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-pill { display: none; }
  .nav-pill.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(6,6,18,.97); border-radius: 0; padding: 80px 32px; justify-content: center; z-index: 999; border: none; }
  .nav-pill.open .nav-link { font-size: 20px; padding: 14px 0; text-align: center; }
  .nav-btn { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-name { font-size: 42px; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ===== HERO IMAGE BOX + FLOATING BADGES ===== */
/*.hero-img-box {
  position: relative;
  width: 380px;
  height: 480px;
}*/

.hero-img-box {
    position: relative;
    width: 380px;
    height: 480px;
    background: rgba(99,102,241,.08);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(2px);
    -webkit-user-select: none;
    user-select: none;
}

    .hero-img-box::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 26px;
        background: linear-gradient(135deg, rgba(99,102,241,.25) 0%, rgba(236,72,153,.15) 50%, rgba(6,182,212,.2) 100%);
        z-index: -1;
        filter: blur(20px);
    }

/*.hero-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  display: block;
}*/

/*.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    border: none;
    display: block;
    mix-blend-mode: luminosity;
    filter: brightness(1.2) contrast(1.05);
    transition: all .3s ease;
}*/

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    border: none;
    display: block;
    opacity: 0.15;
    filter: brightness(0.8) contrast(1.05);
    transition: all .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* Base floating badge style */
.hf-badge {
  position: absolute;
  background: rgba(6,6,18,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: badge-float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

/* Individual positions */
.hf-top-left  { top: 20px;  left: -30px;  animation-delay: 0s; }
.hf-top-right { top: 20px;  right: -30px; animation-delay: 0.6s; }
.hf-bot-left  { bottom: 28px; left: -28px;  animation-delay: 1.2s; }
.hf-bot-right { bottom: 28px; right: -28px; animation-delay: 0.3s; }
.hf-mid-right { top: 50%;   right: -36px; transform: translateY(-50%); animation-delay: 0.9s; }

/* Available badge dot */
.hf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

/* Float animation */
@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.hf-mid-right {
  animation-name: badge-float-mid;
}
@keyframes badge-float-mid {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50%       { transform: translateY(-50%) translateX(6px); }
}

/* Hero right column override for image mode */
.hero-right {
  position: relative;
  padding: 40px 40px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-img-box { width: 300px; height: 380px; }
  .hf-top-left  { left: -10px; }
  .hf-top-right { right: -10px; }
  .hf-bot-left  { left: -10px; }
  .hf-bot-right { right: -10px; }
  .hf-mid-right { right: -10px; }
}
