/* =============================================
   Portfolio — Fel Andrew Malto
   styles.css — All visual styles
   ============================================= */

/* RESET & BASE */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:root {
  /* Dark mode (default) */
  --purple: #533afd; --purple-hover: #4434d4; --purple-light: #b9b9f9;
  --purple-glow: rgba(83,58,253,0.12); --green: #15be53;
  --green-glow: rgba(21,190,83,0.15); --green-text: #34d673;
  --amber: #f59e0b; --amber-glow: rgba(245,158,11,0.12);
  --cyan: #06b6d4; --cyan-glow: rgba(6,182,212,0.1);
  --dark: #0a0f1e; --dark-card: #111827; --dark-card-hover: #1a2332;
  --border: #1e2a45; --white: #fff;
  --text: #c8d6e5; --text-muted: #8a9bb0; --text-dim: #7a8ba0;
  --radius: 8px; --radius-lg: 12px;
  color-scheme: dark;
}
[data-theme="light"] {
  --dark: #f8f9fb; --dark-card: #ffffff; --dark-card-hover: #f0f1f5;
  --border: #e2e5ea; --white: #0a0f1e;
  --text: #1a1d23; --text-muted: #5a6170; --text-dim: #6b7280;
  --purple-glow: rgba(83,58,253,0.08); --green-glow: rgba(21,190,83,0.1);
  --amber-glow: rgba(245,158,11,0.08); --cyan-glow: rgba(6,182,212,0.06);
  color-scheme: light;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--dark); line-height: 1.6; font-weight: 400; font-feature-settings: "ss01"; -webkit-font-smoothing: antialiased; }
a { color: var(--purple-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; border-radius: 2px; }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: 8px 16px; background: var(--purple); color: #fff; z-index: 9999; }

/* Utility: inline SVG alignment */
.svg-inline { vertical-align: middle; margin-right: 4px; }
.svg-inline-lg { vertical-align: middle; margin-right: 6px; }

/* Utility: project link spacing */
.project-link-gap { margin-left: 12px; }

/* NAV */
nav { position: -webkit-sticky; position: sticky; top: 0; z-index: 1000; background: rgba(10,15,30,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 28px; height: 56px; display: flex; align-items: center; justify-content: space-between; position: relative; flex-shrink: 0; }
.nav-logo { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); white-space: nowrap; }
.nav-logo span { color: var(--purple-light); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; color: #8899aa; }
.nav-links a:hover { color: var(--white); }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; font-size: 14px; font-weight: 500; font-family: inherit; border-radius: 6px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--purple); color: #fff; border: none; }
.btn-primary:hover { background: var(--purple-hover); color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; min-width: 44px; min-height: 44px; }
.hamburger svg { width: 24px; height: 24px; stroke: var(--white); }
.hamburger svg line { transition: all 0.3s; transform-origin: center; }
.hamburger[aria-expanded="true"] svg line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger[aria-expanded="true"] svg line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] svg line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.theme-toggle { background: none; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; padding: 6px; display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; color: #8a9bb0; transition: all 0.2s; position: relative; }
.theme-toggle:hover { border-color: var(--purple); color: var(--purple-light); }
.theme-icon-sun { display: none; }
.theme-icon-moon { display: block; }
[data-theme="light"] .theme-icon-sun { display: block; }
[data-theme="light"] .theme-icon-moon { display: none; }

/* HERO */
.hero-wrapper { position: relative; background: url('assets/hero-bg.png') center/cover no-repeat; }
.hero-wrapper::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 30%) var(--my, 30%), rgba(83,58,253,0.04) 0%, transparent 50%), rgba(10,15,30,0.80); pointer-events: none; z-index: 0; transition: background 0.3s; }
.hero-wrapper::after { content: ''; position: absolute; inset: 0; background-image: 
  linear-gradient(rgba(83,58,253,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(83,58,253,0.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none; z-index: 0; }
.hero-glow-pulse { position: absolute; top: 30%; left: 20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(83,58,253,0.08) 0%, transparent 70%); animation: heroGlow 6s ease-in-out infinite; pointer-events: none; z-index: 0; }
@keyframes heroGlow { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.3);opacity:1} }
.hero { position: relative; padding: 80px 28px 60px; max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: center; min-height: 70vh; overflow: visible; }
.hero h1, .section-title { font-family: 'Sora', sans-serif; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px; background: var(--green-glow); border: 1px solid rgba(21,190,83,0.2); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--green-text); margin-bottom: 20px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-badge-sep { opacity: 0.4; }
.hero-badge-loc { opacity: 0.7; cursor: default; }
.hero h1 { font-size: clamp(28px,4.2vw,44px); font-weight: 700; line-height: 1.12; letter-spacing: -1px; color: #ffffff; margin-bottom: 12px; }
.hero h1 .highlight { background: linear-gradient(135deg, #533afd, #7c5cfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hero-tag { font-size: 12px; font-weight: 500; padding: 5px 14px; border-radius: 100px; background: rgba(15,23,42,0.8); color: #8b9cc7; border: 1px solid #1e2a45; }
.hero-name-sub { font-size: 14px; color: #8a9bb0; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.3px; }
.hero-desc { font-size: 15px; color: #7a8ba0; line-height: 1.65; margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* PROFILE CARD */
.profile-card { position: relative; width: 400px; height: 400px; overflow: visible; flex-shrink: 0; }
.profile-particles { position: absolute; inset: -10px; overflow: hidden; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(83,58,253,0.4); animation: pfloat linear infinite; }
.profile-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; }
.profile-glow-outer { width: 340px; height: 340px; background: radial-gradient(circle, rgba(83,58,253,0.15) 0%, transparent 70%); animation: ppulse 4s ease-in-out infinite; }
.profile-glow-ring { width: 290px; height: 290px; border: 3px solid rgba(101,87,255,0.6); box-shadow: 0 0 20px rgba(101,87,255,0.5), 0 0 40px rgba(101,87,255,0.3), 0 0 80px rgba(101,87,255,0.15), inset 0 0 30px rgba(101,87,255,0.1); }
.profile-glow-ring-outer { width: 320px; height: 320px; border: 1.5px solid rgba(101,87,255,0.2); box-shadow: 0 0 40px rgba(101,87,255,0.1); }
.profile-backdrop { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #ffffff 0%, #f8f8ff 50%, #f0f0f8 100%); z-index: 1; box-shadow: 0 0 40px rgba(101,87,255,0.5), 0 0 80px rgba(101,87,255,0.25), 0 0 120px rgba(101,87,255,0.1); }
.profile-photo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 280px; height: 280px; overflow: visible; z-index: 2; }
.profile-photo-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; position: relative; box-shadow: 0 0 20px rgba(101,87,255,0.5), 0 0 40px rgba(101,87,255,0.3); }
.profile-photo-inner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, rgba(10,15,30,1) 0%, rgba(10,15,30,0.5) 50%, transparent 100%); z-index: 1; pointer-events: none; }
.profile-photo-inner img { width: 110%; height: 110%; object-fit: cover; object-position: center 22%; }
.hero-single-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; background: #533afd; color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(83,58,253,0.25); min-height: 44px; }
.hero-single-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(83,58,253,0.45); }
.scroll-indicator { position: absolute; bottom: 24px; right: 28px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #1e2a45; background: rgba(15,23,42,0.6); display: flex; align-items: center; justify-content: center; animation: scrollBounce 2s ease-in-out infinite; z-index: 2; }
.scroll-indicator svg { stroke: #8a9bb0; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* SECTIONS */
.certs-section { padding: 80px 28px; overflow: hidden; }
.container { max-width: 1120px; margin: 0 auto; }
.section-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; background: var(--purple-glow); border: 1px solid rgba(83,58,253,0.15); border-radius: 100px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--purple-light); margin-bottom: 12px; }
.section-title { font-size: clamp(26px,3.5vw,38px); font-weight: 300; letter-spacing: -0.7px; line-height: 1.12; color: var(--white); margin-bottom: 10px; }
.section-desc { font-size: 15px; color: #7a8ba0; max-width: 520px; line-height: 1.55; }

/* SHOOTING STARS / METEORS */
.meteor-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.meteor {
  position: absolute;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(160,140,255,0.5) 30%, rgba(100,80,255,0.15) 60%, transparent);
  border-radius: 50px;
  opacity: 0;
  animation: meteorFall linear infinite;
  transform-origin: center;
  filter: blur(0.3px);
}
.meteor::before {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 1px rgba(200,180,255,0.8), 0 0 10px 3px rgba(140,120,255,0.3);
}
@keyframes meteorFall {
  0% { transform: translate(0, 0) rotate(-35deg); opacity: 0; }
  3% { opacity: 0.8; }
  60% { opacity: 0.6; }
  85% { opacity: 0.2; }
  100% { transform: translate(-700px, 500px) rotate(-35deg); opacity: 0; }
}
/* Layer 1: Small distant stars — fast, thin, faint */
.meteor:nth-child(1) { top: 6%; left: 80%; width: 60px; height: 1px; animation-duration: 3.5s; animation-delay: 0s; opacity: 0; filter: blur(0.5px); }
.meteor:nth-child(2) { top: 18%; left: 55%; width: 50px; height: 1px; animation-duration: 4s; animation-delay: 5s; opacity: 0; filter: blur(0.5px); }
.meteor:nth-child(3) { top: 10%; left: 42%; width: 55px; height: 1px; animation-duration: 3.2s; animation-delay: 8s; opacity: 0; filter: blur(0.5px); }
/* Layer 2: Medium stars — moderate speed, visible */
.meteor:nth-child(4) { top: 4%; left: 72%; width: 110px; animation-duration: 5s; animation-delay: 1.5s; }
.meteor:nth-child(5) { top: 22%; left: 88%; width: 100px; animation-duration: 5.5s; animation-delay: 4s; }
.meteor:nth-child(6) { top: 14%; left: 65%; width: 90px; animation-duration: 4.8s; animation-delay: 7s; }
/* Layer 3: Large close stars — slower, brighter, longer tail */
.meteor:nth-child(7) { top: 2%; left: 92%; width: 160px; height: 2px; animation-duration: 7s; animation-delay: 2.5s; background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(160,140,255,0.6) 25%, rgba(100,80,255,0.2) 55%, transparent); }
.meteor:nth-child(7)::before { width: 5px; height: 5px; box-shadow: 0 0 6px 2px rgba(200,180,255,0.9), 0 0 14px 4px rgba(140,120,255,0.4); }
.meteor:nth-child(8) { top: 16%; left: 78%; width: 140px; height: 1.8px; animation-duration: 6.5s; animation-delay: 9s; background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(160,140,255,0.55) 30%, rgba(100,80,255,0.15) 60%, transparent); }
.meteor:nth-child(8)::before { width: 4px; height: 4px; box-shadow: 0 0 5px 2px rgba(200,180,255,0.85), 0 0 12px 3px rgba(140,120,255,0.35); }
@media (prefers-reduced-motion: reduce) { .meteor { display: none; } }

/* SERVICES */
.services-section { position: relative; overflow: hidden; padding: 100px 28px; }
.services-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(83,58,253,0.06) 0%, transparent 70%); pointer-events: none; }
.services-section::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(21,190,83,0.04) 0%, transparent 70%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.service-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all 0.35s cubic-bezier(.4,0,.2,1); min-height: 240px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(83,58,253,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.35s; pointer-events: none; }
.service-card:hover { border-color: var(--purple); background: var(--dark-card-hover); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(83,58,253,0.12); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { padding: 36px; min-height: 280px; background: linear-gradient(135deg, var(--dark-card) 0%, rgba(83,58,253,0.04) 100%); border-color: rgba(83,58,253,0.15); }
.service-card.featured:hover { border-color: var(--purple); box-shadow: 0 8px 40px rgba(83,58,253,0.1); }
.service-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--purple-glow); }
.service-icon img { width: 22px; height: 22px; filter: brightness(0) invert(1); opacity: 0.85; }
.service-name { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.service-card.featured .service-name { font-size: 19px; }
.service-desc { font-size: 13px; color: #7a8ba0; line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.service-tools { display: flex; flex-wrap: wrap; gap: 4px; }
.service-tool { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 4px; background: rgba(83,58,253,0.06); color: var(--purple-light); border: 1px solid rgba(83,58,253,0.1); white-space: nowrap; }
/* TOOLS */
.tools-section { background: #0d1322; overflow: hidden; padding: 100px 28px; }
.tools-row-wrap { overflow: hidden; margin-top: 40px; }
.tools-row { display: flex; gap: 12px; width: max-content; animation: scrollMarquee 25s linear infinite; }
.tools-row:hover, .tools-row-wrap:focus-within .tools-row { animation-play-state: paused; }
.tool-chip { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 8px; border: 1px solid var(--border); background: var(--dark-card); color: #94a3b8; font-size: 13px; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
.tool-logo { width: 20px; height: 20px; flex-shrink: 0; }
.tool-chip:hover { border-color: var(--purple); color: var(--white); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollMarqueeReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.tools-row.reverse { animation: scrollMarqueeReverse 25s linear infinite; }
.tools-row-wrap + .tools-row-wrap { margin-top: 12px; }

/* PORTFOLIO */
#portfolio { padding: 100px 28px; }
#testimonials { padding: 100px 28px; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 24px; }
.filter-tab { padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 500; border: 1px solid var(--border); background: transparent; color: #7a8ba0; cursor: pointer; transition: all 0.2s; font-family: inherit; min-height: 44px; min-width: 44px; }
.filter-tab:hover, .filter-tab.active { background: var(--white); color: var(--dark); border-color: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.project-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all 0.35s cubic-bezier(.4,0,.2,1); overflow: hidden; position: relative; }
.project-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(83,58,253,0.08) 0%, transparent 60%); opacity: 0; transition: opacity 0.35s; pointer-events: none; }
.project-card:hover { border-color: var(--purple); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(83,58,253,0.15), 0 0 0 1px rgba(83,58,253,0.2); }
.project-card:hover::before { opacity: 1; }
.project-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--amber); margin-bottom: 8px; }
.project-name { font-size: 19px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.project-desc { font-size: 13px; color: #7a8ba0; line-height: 1.55; margin-bottom: 16px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 16px; }
.project-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; padding: 3px 8px; border-radius: 4px; background: rgba(83,58,253,0.08); color: var(--purple-light); border: 1px solid rgba(83,58,253,0.12); }
.project-link { font-size: 12px; font-weight: 500; color: var(--purple-light); }

/* CERTIFICATIONS */
.certs-section { background: #0d1322; }
.certs-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; margin-top: 40px; }
.cert-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 12px; transition: all 0.2s; }
.cert-card:hover { border-color: var(--purple); }
.cert-card-featured { border-color: rgba(83,58,253,0.3); background: linear-gradient(135deg, #111827, #141b2d); }
.cert-platform-badge { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; letter-spacing: -0.5px; }
.ghl-badge { background: linear-gradient(135deg, #533afd, #7c5cfc); color: #fff; }
.cisco-badge { background: linear-gradient(135deg, #049fd9, #00a3e0); color: #fff; }
.udemy-badge { background: linear-gradient(135deg, #a435f0, #c77dff); color: #fff; }
.misc-badge { background: linear-gradient(135deg, #1e293b, #334155); color: #8b9cc7; border: 1px solid #2d3a54; }
.cert-name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.cert-meta { display: flex; align-items: center; gap: 8px; }
.cert-year { font-size: 11px; color: #8a9bb0; }
.cert-tag { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.cert-tag-auto { background: rgba(83,58,253,0.12); color: #7c5cfc; }
.cert-tag-data { background: rgba(6,182,212,0.12); color: #06b6d4; }
.cert-tag-web { background: rgba(245,158,11,0.12); color: #f59e0b; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.testimonial-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: #94a3b8; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--purple-glow); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--purple-light); }
.testimonial-name { font-size: 13px; font-weight: 500; color: var(--white); }
.testimonial-role { font-size: 11px; color: #8a9bb0; }
.stats-bar { display: flex; justify-content: center; gap: 48px; margin-top: 40px; padding: 24px; background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.stat-val { font-size: 28px; font-weight: 300; color: var(--white); }
.stat-label { font-size: 11px; color: #8a9bb0; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* CONTACT */
/* STRATEGY CALL / CONTACT SECTION */
.strategy-section { padding: 100px 24px; background: linear-gradient(135deg, #0a0f1e 0%, #111827 50%, #0d1525 100%); position: relative; overflow: hidden; }
.strategy-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(83,58,253,0.06) 0%, transparent 50%); }
.strategy-section .container { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.strategy-text { text-align: left; display: flex; flex-direction: column; justify-content: center; }
.contact-form-card { background: #111827; border: 1px solid #1e2a45; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.4); height: 100%; display: flex; flex-direction: column; min-height: 400px; }
.contact-form-header { background: #0f172a; padding: 16px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #1e2a45; }
.contact-form-header span { color: #8b9cc7; font-size: 14px; font-weight: 600; }
.contact-form { padding: 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: #8b9cc7; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea { background: #0f172a; border: 1px solid #1e2a45; border-radius: 10px; padding: 12px 14px; color: #fff; font-size: 16px; font-family: inherit; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #533afd; box-shadow: 0 0 0 3px rgba(83,58,253,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #6b7280; }
.form-group input[aria-invalid="true"], .form-group textarea[aria-invalid="true"] { border-color: #ef4444; }
.form-error { font-size: 12px; color: #ef4444; display: none; }
.form-error.visible { display: block; }
.form-submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 10px; background: linear-gradient(135deg, #533afd, #7c5cfc); color: #fff; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all 0.3s; margin-top: 4px; width: 100%; min-height: 44px; }
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(83,58,253,0.35); }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.bubble-cursor { position: fixed; width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(83,58,253,0.35); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.2s, height 0.2s, opacity 0.3s; background: rgba(83,58,253,0.04); }
.bubble-cursor-dot { position: fixed; width: 6px; height: 6px; border-radius: 50%; background: rgba(83,58,253,0.7); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: opacity 0.3s; }
.bubble-particle { position: fixed; pointer-events: none; z-index: 9997; border-radius: 50%; border: 1.5px solid rgba(83,58,253,0.4); }
[data-theme="light"] .bubble-cursor { border-color: rgba(83,58,253,0.25); background: rgba(83,58,253,0.02); }
[data-theme="light"] .bubble-cursor-dot { background: rgba(83,58,253,0.6); }
.contact-form-note { text-align: center; font-size: 12px; color: #3d4b63; padding: 0 24px 20px; margin: 0; }
.strategy-badge { display: inline-flex; width: fit-content; padding: 6px 18px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(83,58,253,0.12); color: #7c5cfc; border: 1px solid rgba(83,58,253,0.3); margin-bottom: 24px; }
.strategy-title { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 20px; }
.strategy-title .highlight { background: linear-gradient(135deg, #533afd, #7c5cfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.strategy-desc { font-size: 17px; color: #8b9cc7; max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.strategy-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; width: fit-content; border-radius: 14px; background: linear-gradient(135deg, #0f172a, #1e293b); color: #ffffff; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,0,0,0.4); border: 1px solid #2d3a54; min-height: 44px; }
.strategy-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(83,58,253,0.25); border-color: #533afd; }
.strategy-note { margin-top: 16px; font-size: 13px; color: #8a9bb0; }
.trust-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.trust-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #b0bdd0; }
.strategy-callout { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; margin-bottom: 28px; padding: 16px 18px; background: rgba(83,58,253,0.08); border: 1px solid rgba(83,58,253,0.2); border-radius: 12px; }
.strategy-callout svg { flex-shrink: 0; margin-top: 2px; }
.strategy-callout span { font-size: 14px; color: #b0bdd0; line-height: 1.5; }
.connect-labeled-icons { display: flex; gap: 12px; }
.connect-icon-labeled { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: #111827; border: 1px solid #1e2a45; border-radius: 10px; text-decoration: none; transition: all 0.3s; min-height: 44px; }
.connect-icon-labeled span { font-size: 13px; font-weight: 600; color: #8b9cc7; }
.connect-icon-labeled:hover { border-color: #533afd; transform: translateY(-2px); }
.connect-icon-labeled:hover span { color: #fff; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 48px 28px 32px; overflow: hidden; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-size: 15px; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 12px; color: #8a9bb0; margin-top: 2px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #8b9cc7; }
.footer-links a:hover { color: var(--purple-light); }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 44px; height: 44px; border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #8b9cc7; transition: all 0.2s; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer-cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; border-radius: 8px; background: linear-gradient(135deg, #533afd, #7c5cfc); color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.3s; }
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(83,58,253,0.35); }
.footer-copyright { max-width: 1120px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid var(--border); text-align: center; font-size: 12px; color: #6b7280; }
.footer-social:hover { border-color: var(--purple); color: var(--purple-light); }

/* ANIMATIONS */
@keyframes ppulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:1} 50%{transform:translate(-50%,-50%) scale(1.05);opacity:0.8} }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
@keyframes pfloat { 0%{transform:translateY(0) translateX(0);opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{transform:translateY(-60px) translateX(20px);opacity:0} }
@media (prefers-reduced-motion:no-preference){ .fade-up{opacity:0;transform:translateY(12px);transition:opacity .4s,transform .4s} .fade-up.visible{opacity:1;transform:translateY(0)} .projects-grid .fade-up:nth-child(1){transition-delay:0s} .projects-grid .fade-up:nth-child(2){transition-delay:.08s} .projects-grid .fade-up:nth-child(3){transition-delay:.16s} .projects-grid .fade-up:nth-child(4){transition-delay:.24s} .projects-grid .fade-up:nth-child(5){transition-delay:.32s} .projects-grid .fade-up:nth-child(6){transition-delay:.4s} .projects-grid .fade-up:nth-child(7){transition-delay:.48s} .projects-grid .fade-up:nth-child(8){transition-delay:.56s} .projects-grid .fade-up:nth-child(9){transition-delay:.64s} .projects-grid .fade-up:nth-child(10){transition-delay:.72s} .projects-grid .fade-up:nth-child(11){transition-delay:.8s} .projects-grid .fade-up:nth-child(12){transition-delay:.88s} .services-grid .fade-up:nth-child(1){transition-delay:0s} .services-grid .fade-up:nth-child(2){transition-delay:.12s} .services-grid .fade-up:nth-child(3){transition-delay:.24s} }
@media (prefers-reduced-motion:reduce){ 
  .fade-up{opacity:1;transform:none} 
  .particle{display:none}
  .tools-row{animation:none}
  .profile-glow-outer{animation:none}
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero{gap:32px}
  .profile-card{width:300px;height:300px;flex-shrink:0}
  .profile-glow-outer{width:360px;height:360px}
  .profile-glow-ring{width:340px;height:340px}
  .profile-glow-ring-outer{width:350px;height:350px}
  .profile-backdrop{width:300px;height:300px}
  .profile-photo{width:300px;height:300px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .projects-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-inner{position:relative;flex-wrap:nowrap}
  .nav-links{display:none !important;position:absolute;top:100%;left:0;right:0;background:rgba(10,15,30,0.98);border-top:1px solid #1e2a45;flex-direction:column;padding:16px 24px;gap:0;z-index:1001;box-shadow:0 8px 32px rgba(0,0,0,0.5);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px)}
  .nav-links.open{display:flex !important;animation:slideDown 0.2s ease-out}
  .nav-links a{padding:14px 0;border-bottom:1px solid rgba(30,42,69,0.5);font-size:16px;color:#c8d6e5;display:block;width:100%}
  .nav-links a:last-child{border-bottom:none}
  .nav-links a:hover{color:#7c5cfc}
  .hamburger{display:block;order:3;z-index:1002;padding:8px}
  .theme-toggle{order:4}
  .btn-primary{order:2;font-size:12px;padding:8px 16px;white-space:nowrap}
  nav{position:-webkit-sticky;position:sticky;top:0;z-index:1000;background:rgba(10,15,30,0.98)}
  .hero{grid-template-columns:1fr;text-align:center;padding:32px 16px 48px;min-height:auto;gap:24px}
  .hero > div:first-child{order:2;margin-top:0}
  .profile-card{order:1;margin-top:0;overflow:visible;position:relative}
  .profile-particles{display:none}
  .profile-card{margin:0 auto 20px;width:180px;height:180px;flex-shrink:0;position:relative}
  .profile-glow-outer{width:220px;height:220px}
  .profile-glow-ring{width:200px;height:200px}
  .profile-glow-ring-outer{width:210px;height:210px}
  .profile-backdrop{width:170px;height:170px}
  .profile-photo{width:170px;height:170px}
  .hero-desc{margin:0 auto 28px;font-size:14px;line-height:1.6} .hero-actions{justify-content:center;flex-direction:column;align-items:center;gap:10px}
  .hero h1{font-size:clamp(24px,6vw,36px);line-height:1.15}
  .hero-badge{font-size:11px}
  .hero-name-sub{font-size:13px}
  .hero-actions a{width:100%;max-width:280px;justify-content:center;font-size:14px;padding:12px 20px}
  .service-card{padding:24px;min-height:auto}
  .project-card{padding:24px}
  .container{padding:0 16px}
  .services-grid{grid-template-columns:1fr} .projects-grid{grid-template-columns:1fr}
  .testimonials-grid{grid-template-columns:1fr}   .strategy-grid{grid-template-columns:1fr;gap:32px}
  .strategy-text{text-align:center}
  .strategy-badge{margin:0 auto 24px}
  .strategy-desc{margin:0 auto 28px}
  .strategy-btn{margin:0 auto}
  .strategy-callout{margin:20px auto 28px;max-width:400px}
  .trust-bullets{align-items:center}
  .connect-labeled-icons{justify-content:center;flex-wrap:wrap}
  .stats-bar{flex-wrap:wrap;gap:24px} .footer-inner{flex-direction:column;text-align:center} .footer-right{align-items:center}
  .section-title{font-size:clamp(22px,5vw,32px)}
  .section-desc{font-size:14px;padding:0 8px}
  .section-badge{font-size:11px}
  .stats-bar{padding:24px 16px}
    .stat-label{font-size:11px}
  .cert-card{padding:20px}
  .testimonial-card{padding:24px}
    .footer-inner{padding:0 16px}
  .strategy-section{padding:60px 16px}
  .strategy-title{font-size:clamp(22px,5vw,32px)}
  .strategy-grid{gap:24px}
  .contact-form-card{min-height:auto}
  .contact-form{padding:20px}
  .contact-form-header{padding:14px 18px}
  .contact-form-header span{font-size:13px}
  .form-submit-btn{padding:14px 24px;font-size:14px}
  .strategy-callout{padding:14px 16px}
  .connect-labeled-icons{flex-direction:column;align-items:center}
  .connect-icon-labeled{width:100%;max-width:250px;justify-content:center}
}

@media(max-width:480px){
  .hero{padding:32px 12px}
  .services-section,.tools-section,#portfolio,#testimonials,.certs-section{padding:60px 16px}
  .profile-card{width:150px;height:150px;flex-shrink:0}
  .profile-glow-outer{width:180px;height:180px}
  .profile-glow-ring{width:165px;height:165px}
  .profile-glow-ring-outer{width:170px;height:170px}
  .profile-backdrop{width:140px;height:140px}
  .profile-photo{width:140px;height:140px}
  .hero h1{font-size:22px}
  .hero-desc{font-size:13px}
  .hero-actions a{font-size:13px;padding:10px 16px}
  .service-card{padding:20px}
  .project-card{padding:20px}
  .section-title{font-size:20px}
}

/* ===== RESUME SECTION ===== */
.resume-section { padding: 100px 28px; background: #0d1322; position: relative; overflow: hidden; }
.resume-section::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(83,58,253,0.06) 0%, transparent 70%); pointer-events: none; }
.resume-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Resume Preview Card */
.resume-preview-card { position: relative; max-width: 420px; margin: 0 auto; }
.resume-preview-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(83,58,253,0.12) 0%, transparent 70%); pointer-events: none; }
.resume-preview-inner { position: relative; background: linear-gradient(135deg, #111827 0%, #1a2332 100%); border: 1px solid rgba(83,58,253,0.25); border-radius: 16px; padding: 28px; box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 40px rgba(83,58,253,0.08); transform: rotate(-2deg); transition: transform 0.3s; }
.resume-preview-card:hover .resume-preview-inner { transform: rotate(0deg); }
.resume-preview-badge { display: flex; gap: 8px; justify-content: flex-end; margin-bottom: 16px; }
.resume-preview-badge span { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; background: rgba(83,58,253,0.12); color: #7c5cfc; letter-spacing: 0.5px; }
.resume-preview-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(30,42,69,0.5); }
.resume-preview-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, #533afd, #7c5cfc); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.resume-preview-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: #7c5cfc; margin-bottom: 4px; }
.resume-preview-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.resume-preview-role { font-size: 12px; color: #7a8ba0; }
.resume-preview-sections { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.resume-preview-section-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: #7c5cfc; margin-bottom: 8px; }
.resume-preview-line { height: 6px; border-radius: 3px; background: rgba(30,42,69,0.6); margin-bottom: 6px; }
.resume-preview-line.short { width: 60%; }
.resume-preview-filename { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #3d4b63; text-align: right; }

/* Resume Info */
.resume-info .highlight { background: linear-gradient(135deg, #533afd, #7c5cfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.resume-stats { display: flex; gap: 16px; margin: 28px 0; }
.resume-stat { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; flex: 1; text-align: center; border-top: 2px solid rgba(83,58,253,0.3); }
.resume-stat-val { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.resume-stat-label { font-size: 11px; color: #8a9bb0; text-transform: uppercase; letter-spacing: 0.5px; }
.resume-highlights { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.resume-highlights li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #b0bdd0; }
.resume-highlights li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #533afd; flex-shrink: 0; }
.resume-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.resume-btn-view { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; background: linear-gradient(135deg, #533afd, #7c5cfc); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(83,58,253,0.25); }
.resume-btn-view:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(83,58,253,0.45); color: #fff; }
.resume-btn-download { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; background: var(--dark-card); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s; border: 1px solid var(--border); }
.resume-btn-download:hover { transform: translateY(-2px); border-color: var(--purple); background: var(--dark-card-hover); color: #fff; }

/* Resume Responsive */
@media(max-width:768px) {
  .resume-section{padding:60px 16px}
  .resume-grid{grid-template-columns:1fr;gap:32px}
  .resume-preview-card{max-width:320px}
  .resume-preview-inner{transform:rotate(0deg)}
  .resume-stats{flex-direction:column;gap:12px}
  .resume-actions{flex-direction:column;align-items:stretch}
  .resume-btn-view,.resume-btn-download{justify-content:center;text-align:center}
}
@media(max-width:480px) {
  .resume-preview-card{max-width:280px}
  .resume-preview-inner{padding:20px}
  .resume-preview-name{font-size:15px}
  .resume-stat-val{font-size:20px}
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #533afd, #7c5cfc); z-index: 10000; width: 0%; transition: width 0.1s linear; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 28px; position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; top: -100px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(83,58,253,0.06) 0%, transparent 70%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; display: flex; justify-content: center; }
.about-image-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 280px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(83,58,253,0.15) 0%, transparent 70%); pointer-events: none; }
.about-photo { width: 240px; height: 360px; border-radius: 20px; object-fit: cover; object-position: center 35%; border: 2px solid rgba(83,58,253,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(83,58,253,0.1); position: relative; z-index: 1; }
.about-content .section-title { margin-bottom: 20px; }
.about-content .highlight { background: linear-gradient(135deg, #533afd, #7c5cfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text { font-size: 15px; color: #8a9bb0; line-height: 1.7; margin-bottom: 16px; }
.about-stats { display: flex; gap: 16px; margin: 28px 0; }
.about-stat { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; flex: 1; text-align: center; border-top: 2px solid rgba(83,58,253,0.3); transition: all 0.3s; }
.about-stat:hover { border-color: var(--purple); transform: translateY(-3px); }
.about-stat-val { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.about-stat-label { font-size: 11px; color: #8a9bb0; text-transform: uppercase; letter-spacing: 0.5px; }
.about-strengths { display: flex; flex-wrap: wrap; gap: 8px; }
.about-strength { font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 100px; background: rgba(83,58,253,0.08); color: #b9b9f9; border: 1px solid rgba(83,58,253,0.15); }

/* ===== PROCESS SECTION ===== */
.process-section { padding: 100px 28px; background: #0d1322; overflow: hidden; position: relative; }
.process-section::before { content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(83,58,253,0.05) 0%, transparent 70%); pointer-events: none; }
.process-grid { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 48px; }
.process-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; flex: 1; max-width: 320px; transition: all 0.35s cubic-bezier(.4,0,.2,1); position: relative; }
.process-card:hover { border-color: var(--purple); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(83,58,253,0.12); }
.process-number { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 700; background: linear-gradient(135deg, #533afd, #7c5cfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.process-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--purple-glow); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.process-desc { font-size: 13px; color: #7a8ba0; line-height: 1.6; }
.process-arrow { padding: 0 12px; flex-shrink: 0; }

/* ===== FEATURED PROJECT ===== */
.featured-project { background: linear-gradient(135deg, var(--dark-card) 0%, rgba(83,58,253,0.06) 100%); border: 1px solid rgba(83,58,253,0.2); border-radius: 16px; padding: 40px; margin-bottom: 24px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center; transition: all 0.35s; }
.featured-project:hover { border-color: var(--purple); box-shadow: 0 16px 60px rgba(83,58,253,0.12); }
.featured-badge { display: inline-flex; padding: 4px 12px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(83,58,253,0.15); color: #7c5cfc; border: 1px solid rgba(83,58,253,0.25); margin-bottom: 16px; }
.featured-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.featured-desc { font-size: 14px; color: #8a9bb0; line-height: 1.6; margin-bottom: 16px; }
.featured-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.featured-links { display: flex; gap: 16px; align-items: center; }
.featured-link { font-size: 14px; font-weight: 600; color: var(--purple-light); transition: all 0.2s; }
.featured-link:hover { color: var(--white); }
.featured-link-live { color: #8a9bb0; }
.featured-link-live:hover { color: var(--white); }
.featured-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.featured-metric { background: rgba(10,15,30,0.6); border: 1px solid rgba(83,58,253,0.1); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: all 0.3s; }
.featured-metric:hover { border-color: rgba(83,58,253,0.3); }
.featured-metric-val { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700; color: #fff; }
.featured-metric-label { font-size: 11px; color: #8a9bb0; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* ===== SCROLL ANIMATION VARIANTS ===== */
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.slide-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.5s, transform 0.5s; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(30px); transition: opacity 0.5s, transform 0.5s; }
.slide-right.visible { opacity: 1; transform: translateX(0); }
.blur-reveal { opacity: 0; filter: blur(8px); transform: translateY(12px); transition: opacity 0.6s, filter 0.6s, transform 0.6s; }
.blur-reveal.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ===== NEW SECTIONS RESPONSIVE ===== */
@media(max-width:768px) {
  .about-section{padding:60px 16px}
  .about-grid{grid-template-columns:1fr;gap:32px;text-align:center}
  .about-image{order:0}
  .about-photo{width:200px;height:300px}
  .about-stats{flex-direction:column;gap:12px}
  .about-strengths{justify-content:center}
  .process-section{padding:60px 16px}
  .process-grid{flex-direction:column;gap:0}
  .process-arrow{padding:8px 0;transform:rotate(90deg)}
  .process-card{max-width:100%}
  .featured-project{grid-template-columns:1fr;gap:24px;padding:28px}
  .featured-metrics{grid-template-columns:repeat(4,1fr)}
  .featured-title{font-size:20px}
}
@media(max-width:480px) {
  .about-section,.process-section{padding:60px 16px}
  .about-photo{width:160px;height:240px}
  .about-stat-val{font-size:22px}
  .featured-project{padding:20px}
  .featured-metrics{grid-template-columns:1fr 1fr}
  .featured-metric-val{font-size:24px}
  .process-number{font-size:36px}
}

/* ===== LIGHT MODE OVERRIDES ===== */
[data-theme="light"] body { background: var(--dark); }
[data-theme="light"] nav { background: rgba(248,249,251,0.98); }
[data-theme="light"] .nav-links a { color: #5a6170; }
[data-theme="light"] .nav-links a:hover { color: var(--purple); }
[data-theme="light"] .nav-links.open { background: rgba(248,249,251,0.98); }
[data-theme="light"] .nav-links a { border-bottom-color: rgba(226,229,234,0.5); color: #5a6170; }
[data-theme="light"] .hero-wrapper::before { background: rgba(248,249,251,0.85); }
[data-theme="light"] .hero-wrapper::after { background-image: linear-gradient(rgba(83,58,253,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(83,58,253,0.04) 1px, transparent 1px); }
[data-theme="light"] .hero h1 { color: #1a1d23; }
[data-theme="light"] .hero-name-sub { color: #6b7280; }
[data-theme="light"] .hero-desc { color: #5a6170; }
[data-theme="light"] .hero-tag { background: rgba(255,255,255,0.8); color: #5a6170; border-color: #e2e5ea; }
[data-theme="light"] .hero-badge { background: rgba(21,190,83,0.15); border-color: rgba(21,190,83,0.4); color: #0d9e3e; }
[data-theme="light"] .section-title { color: #1a1d23; }
[data-theme="light"] .section-desc { color: #5a6170; }
[data-theme="light"] .about-text { color: #5a6170; }
[data-theme="light"] .about-strength { background: rgba(83,58,253,0.06); color: #533afd; border-color: rgba(83,58,253,0.12); }
[data-theme="light"] .process-desc { color: #374151; }
[data-theme="light"] .process-name { color: #1a1d23; }
[data-theme="light"] .service-desc { color: #374151; }
[data-theme="light"] .service-icon img { filter: brightness(0); opacity: 0.85; }
[data-theme="light"] .tool-chip { background: #fff; color: #374151; }
[data-theme="light"] .tool-chip:hover { color: #533afd; }
[data-theme="light"] .project-desc { color: #5a6170; }
[data-theme="light"] .featured-desc { color: #5a6170; }
[data-theme="light"] .featured-project { background: linear-gradient(135deg, #fff 0%, rgba(83,58,253,0.04) 100%); }
[data-theme="light"] .featured-metric { background: rgba(248,249,251,0.8); }
[data-theme="light"] .featured-metric-val { color: #1a1d23; }
[data-theme="light"] .featured-metric-label { color: #374151; }
[data-theme="light"] .cert-name { color: #1a1d23; }
[data-theme="light"] .cert-card { background: #fff; }
[data-theme="light"] .cert-card-featured { background: linear-gradient(135deg, #fff, #f8f7ff); }
[data-theme="light"] .testimonial-text { color: #5a6170; }
[data-theme="light"] .testimonial-card { background: #fff; }
[data-theme="light"] .stat-val { color: #1a1d23; }
[data-theme="light"] .strategy-section { background: linear-gradient(135deg, #f8f9fb 0%, #fff 50%, #f5f6fa 100%); }
[data-theme="light"] .strategy-title { color: #1a1d23; }
[data-theme="light"] .strategy-desc { color: #5a6170; }
[data-theme="light"] .strategy-btn { background: linear-gradient(135deg, #fff, #f8f9fb); color: #1a1d23; border-color: #e2e5ea; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
[data-theme="light"] .strategy-btn:hover { border-color: #533afd; box-shadow: 0 8px 30px rgba(83,58,253,0.15); }
[data-theme="light"] .trust-bullets li { color: #374151; }
[data-theme="light"] .strategy-callout { background: rgba(83,58,253,0.05); border-color: rgba(83,58,253,0.12); }
[data-theme="light"] .strategy-callout span { color: #374151; }
[data-theme="light"] .contact-form-card { background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
[data-theme="light"] .contact-form-header { background: #f8f9fb; border-bottom-color: #e2e5ea; }
[data-theme="light"] .contact-form-header span { color: #374151; }
[data-theme="light"] .form-group input, [data-theme="light"] .form-group textarea { background: #f8f9fb; border-color: #e2e5ea; color: #1a1d23; }
[data-theme="light"] .form-group input:focus, [data-theme="light"] .form-group textarea:focus { border-color: #533afd; box-shadow: 0 0 0 3px rgba(83,58,253,0.08); }
[data-theme="light"] .form-group label { color: #374151; }
[data-theme="light"] .form-group input::placeholder, [data-theme="light"] .form-group textarea::placeholder { color: #9ca3af; }
[data-theme="light"] .form-submit-btn { box-shadow: 0 4px 16px rgba(83,58,253,0.2); }
[data-theme="light"] .contact-form-note { color: #9ca3af; }
[data-theme="light"] .connect-icon-labeled { background: #fff; border-color: #e2e5ea; }
[data-theme="light"] .connect-icon-labeled span { color: #374151; }
[data-theme="light"] .connect-icon-labeled:hover { border-color: #533afd; }
[data-theme="light"] .connect-icon-labeled:hover span { color: #533afd; }
[data-theme="light"] .connect-icon-labeled svg { stroke: #374151; }
[data-theme="light"] .strategy-badge { background: rgba(83,58,253,0.08); color: #533afd; border-color: rgba(83,58,253,0.2); }
[data-theme="light"] .strategy-note { color: #6b7280; }
[data-theme="light"] .footer-tagline { color: #6b7280; }
[data-theme="light"] .footer-social { border-color: #e2e5ea; color: #374151; }
[data-theme="light"] .footer-social:hover { border-color: #533afd; color: #533afd; }
[data-theme="light"] footer { border-top-color: #e2e5ea; }
[data-theme="light"] .footer-copyright { border-top-color: #e2e5ea; color: #9ca3af; }
[data-theme="light"] .resume-section { background: #f5f6fa; }
[data-theme="light"] .resume-stat { background: #fff; }
[data-theme="light"] .resume-btn-download { background: #fff; border-color: #e2e5ea; }
[data-theme="light"] .resume-btn-download:hover { border-color: #533afd; }
[data-theme="light"] .services-section::before, [data-theme="light"] .services-section::after { background: radial-gradient(circle, rgba(83,58,253,0.03) 0%, transparent 70%); }
[data-theme="light"] .process-section { background: #f5f6fa; }
[data-theme="light"] .certs-section { background: #f5f6fa; }
[data-theme="light"] .tools-section { background: #f0f1f5; }
[data-theme="light"] .meteor { display: none; }
[data-theme="light"] .profile-backdrop { background: radial-gradient(circle at 40% 40%, #ffffff 0%, #f0f0f8 50%, #e8e8f0 100%); box-shadow: 0 0 40px rgba(83,58,253,0.3), 0 0 80px rgba(83,58,253,0.15); }
[data-theme="light"] .hero-glow-pulse { background: radial-gradient(circle, rgba(83,58,253,0.05) 0%, transparent 70%); }
[data-theme="light"] .profile-glow-outer { background: radial-gradient(circle, rgba(83,58,253,0.1) 0%, transparent 70%); }
[data-theme="light"] .scroll-indicator { background: rgba(248,249,251,0.8); border-color: #e2e5ea; }
[data-theme="light"] .scroll-indicator svg { stroke: #533afd; }
[data-theme="light"] .tool-chip img { filter: none; opacity: 1; }
[data-theme="light"] .strategy-callout svg { stroke: #533afd; }
[data-theme="light"] .about-image-glow { background: radial-gradient(circle, rgba(83,58,253,0.08) 0%, transparent 70%); }
[data-theme="light"] .about-photo { border-color: rgba(83,58,253,0.12); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
[data-theme="light"] .resume-preview-inner { background: linear-gradient(135deg, #fff 0%, #f8f9fb 100%); border-color: rgba(83,58,253,0.15); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
[data-theme="light"] .resume-preview-label, [data-theme="light"] .resume-preview-section-title { color: #533afd; }
[data-theme="light"] .resume-preview-name { color: #1a1d23; }
[data-theme="light"] .resume-preview-role { color: #5a6170; }
[data-theme="light"] .resume-preview-line { background: rgba(226,229,234,0.8); }
[data-theme="light"] .resume-preview-filename { color: #9ca3af; }
[data-theme="light"] .resume-preview-icon { box-shadow: 0 4px 16px rgba(83,58,253,0.2); }
[data-theme="light"] .hamburger svg { stroke: #1a1d23; }
[data-theme="light"] .form-error { color: #dc2626; }
[data-theme="light"] .filter-tab { color: #5a6170; border-color: #e2e5ea; }
[data-theme="light"] .filter-tab:hover, [data-theme="light"] .filter-tab.active { background: #1a1d23; color: #fff; border-color: #1a1d23; }
[data-theme="light"] .project-card { background: #fff; }
[data-theme="light"] .service-card { background: #fff; }
[data-theme="light"] .service-card.featured { background: linear-gradient(135deg, #fff 0%, rgba(83,58,253,0.03) 100%); }
[data-theme="light"] .stats-bar { background: #fff; }
[data-theme="light"] .process-card { background: #fff; }
[data-theme="light"] .process-number { background: linear-gradient(135deg, #533afd, #7c5cfc); -webkit-background-clip: text; background-clip: text; }
[data-theme="light"] .process-icon { background: rgba(83,58,253,0.12); }
[data-theme="light"] .process-icon svg { stroke: #533afd; }
[data-theme="light"] .process-arrow svg { stroke: #9ca3af; }
[data-theme="light"] .about-stat { background: #fff; }
[data-theme="light"] .section-badge { background: rgba(83,58,253,0.1); border-color: rgba(83,58,253,0.25); color: #533afd; }
[data-theme="light"] .hero-badge .dot { background: #0d9e3e; }
[data-theme="light"] .strategy-badge { border-color: rgba(83,58,253,0.3); }
[data-theme="light"] .featured-badge { border-color: rgba(83,58,253,0.3); }
[data-theme="light"] .hero-tag { border-color: #d1d5db; color: #374151; }
[data-theme="light"] .service-tool { background: rgba(83,58,253,0.06); border-color: rgba(83,58,253,0.15); color: #533afd; }
[data-theme="light"] .project-tag { background: rgba(83,58,253,0.06); border-color: rgba(83,58,253,0.15); color: #533afd; }
[data-theme="light"] .filter-tab { color: #374151; border-color: #d1d5db; }
[data-theme="light"] .filter-tab:hover, [data-theme="light"] .filter-tab.active { background: #1a1d23; color: #fff; border-color: #1a1d23; }
[data-theme="light"] .about-strength { border-color: rgba(83,58,253,0.2); }
[data-theme="light"] .cert-card { border-color: #e2e5ea; }
[data-theme="light"] .cert-card-featured { border-color: rgba(83,58,253,0.25); }
[data-theme="light"] .testimonial-card { border-color: #e2e5ea; }
[data-theme="light"] .project-card { border-color: #e2e5ea; }
[data-theme="light"] .project-card:hover { border-color: #533afd; }
[data-theme="light"] .service-card { border-color: #e2e5ea; }
[data-theme="light"] .service-card:hover { border-color: #533afd; }
[data-theme="light"] .stats-bar { border-color: #e2e5ea; }
[data-theme="light"] .featured-project { border-color: rgba(83,58,253,0.2); }
[data-theme="light"] .featured-metric { border-color: #e2e5ea; }
[data-theme="light"] .process-card { border-color: #e2e5ea; }
[data-theme="light"] .process-card:hover { border-color: #533afd; }
[data-theme="light"] .about-stat { border-color: #e2e5ea; }
[data-theme="light"] .tool-chip { border-color: #e2e5ea; }
[data-theme="light"] .tool-chip:hover { border-color: #533afd; }
[data-theme="light"] .cert-year { color: #374151; }
[data-theme="light"] .stat-label { color: #374151; }
[data-theme="light"] .testimonial-role { color: #374151; }
[data-theme="light"] .about-stat-label { color: #374151; }
[data-theme="light"] .about-stat-val { color: #1a1d23; }
[data-theme="light"] .resume-stat-val { color: #1a1d23; }
[data-theme="light"] .resume-stat-label { color: #374151; }
[data-theme="light"] .resume-preview-badge span { background: rgba(83,58,253,0.08); color: #533afd; }
[data-theme="light"] .form-submit-btn { background: linear-gradient(135deg, #533afd, #7c5cfc); }
[data-theme="light"] .footer-cta-btn { background: linear-gradient(135deg, #533afd, #7c5cfc); }
[data-theme="light"] .resume-btn-view { background: linear-gradient(135deg, #533afd, #7c5cfc); box-shadow: 0 4px 16px rgba(83,58,253,0.2); }
[data-theme="light"] .hero-single-cta { background: #533afd; box-shadow: 0 4px 16px rgba(83,58,253,0.2); }
[data-theme="light"] .theme-toggle { border-color: #d1d5db; color: #374151; }
[data-theme="light"] .theme-toggle:hover { border-color: #533afd; color: #533afd; }
[data-theme="light"] .hamburger svg { stroke: #1a1d23; }

/* ===== INTERACTIVE HERO FEATURES ===== */

/* Typewriter cursor */
.typewriter-cursor { display: inline-block; color: var(--purple-light); animation: cursorBlink 0.7s step-end infinite; font-weight: 300; margin-left: 2px; }
.typewriter-cursor.fade-out { opacity: 0; transition: opacity 0.5s ease; }
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Animated counter tabular nums */
.about-stat-val { font-variant-numeric: tabular-nums; }

/* Parallax layers */
.parallax-layers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; opacity: 0; transition: opacity 0.6s ease; }
.parallax-layer { position: absolute; inset: 0; will-change: transform; }
.parallax-grid { background-image: linear-gradient(rgba(83,58,253,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(83,58,253,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.parallax-orbs { background: radial-gradient(circle at 20% 30%, rgba(83,58,253,0.06) 0%, transparent 40%), radial-gradient(circle at 70% 60%, rgba(6,182,212,0.04) 0%, transparent 35%), radial-gradient(circle at 50% 80%, rgba(59,130,246,0.04) 0%, transparent 30%); }
.parallax-dots { background-image: radial-gradient(circle, rgba(83,58,253,0.08) 1px, transparent 1px); background-size: 24px 24px; }
@media (prefers-reduced-motion: reduce) { .parallax-layer { transform: none !important; } }
@media (prefers-reduced-motion: reduce) { .parallax-layers { opacity: 1 !important; transition: none; } }

/* Profile photo interactive glow and hover */
.profile-photo { transition: transform 0.3s ease, filter 0.3s ease; }
.profile-card.hero-entrance { transform: translateY(60px); opacity: 0; animation: profileSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
@keyframes profileSlideUp { from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.profile-photo:hover { transform: translate(-50%,-50%) scale(1.05); }

/* Hero tags wave animation */
.hero-tag { opacity: 0; transform: translateY(16px); animation: tagWaveIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-tag:nth-child(1) { animation-delay: 1.2s; }
.hero-tag:nth-child(2) { animation-delay: 1.3s; }
.hero-tag:nth-child(3) { animation-delay: 1.4s; }
@keyframes tagWaveIn { to { opacity: 1; transform: translateY(0); } }
.hero-tag:hover { transform: translateY(-4px); border-color: #533afd; box-shadow: 0 0 12px rgba(83,58,253,0.2); transition: all 0.25s ease; }
@media (prefers-reduced-motion: reduce) { .hero-tag { opacity: 1; transform: none; animation: none; } }

/* Scroll indicator fade */
.scroll-indicator { transition: opacity 0.4s ease; }
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }

/* CTA button micro-interactions */
.hero-single-cta { position: relative; overflow: hidden; }
.hero-single-cta::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s; }
.hero-single-cta:hover::after { left: 100%; }
.hero-single-cta:hover { box-shadow: 0 0 30px rgba(83,58,253,0.4); }
.hero-single-cta .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.3); transform: scale(0); animation: rippleExpand 0.6s ease-out forwards; pointer-events: none; }
@keyframes rippleExpand { to { transform: scale(4); opacity: 0; } }

/* Entrance animation classes */
.hero-entrance { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-entrance.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .hero-entrance { opacity: 1; transform: none; transition: none; } }

/* Availability badge */
.availability-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 100px; background: rgba(21,190,83,0.1); border: 1px solid rgba(21,190,83,0.2); font-size: 12px; color: #34d673; position: relative; cursor: default; margin-bottom: 16px; }
.availability-dot { width: 8px; height: 8px; border-radius: 50%; background: #15be53; animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }
.availability-tooltip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%) translateY(-8px); background: #111827; border: 1px solid #1e2a45; padding: 6px 12px; border-radius: 8px; font-size: 11px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; color: #c8d6e5; }
.availability-badge:hover .availability-tooltip { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .availability-dot { animation: none; } }
