/* ============================================
   JM Portfolio — Premium Design System
   ============================================ */

:root {
  --bg-primary: #050816;
  --bg-secondary: #0B1120;
  --bg-card: #111827;
  --bg-elevated: #1a2332;
  --accent-primary: #3B82F6;
  --accent-secondary: #06B6D4;
  --accent-purple: #8B5CF6;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --text-white: #F8FAFC;
  --text-gray: #94A3B8;
  --text-muted: #64748B;
  --border: rgba(148, 163, 184, 0.12);
  --glass: rgba(17, 24, 39, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.25);
  --gradient-blue-cyan: linear-gradient(135deg, #3B82F6, #06B6D4);
  --gradient-purple-blue: linear-gradient(135deg, #8B5CF6, #3B82F6);
  --gradient-blue-violet: linear-gradient(135deg, #3B82F6, #8B5CF6);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --nav-height: 76px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Poppins", sans-serif;
  --font-ui: "Manrope", "Inter", sans-serif;
  --font-heading: "Poppins", "Manrope", sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg-primary: #F8FAFC;
  --bg-secondary: #EEF2FF;
  --bg-card: #FFFFFF;
  --bg-elevated: #F1F5F9;
  --text-white: #0F172A;
  --text-gray: #475569;
  --text-muted: #64748B;
  --border: rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 32px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Prevent animation libraries from leaving hero content offset */
.hero-section,
.hero-row,
.hero-copy,
.hero-visual {
  transform: none !important;
  opacity: 1 !important;
}

#fileProtocolBanner {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: #7f1d1d;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.88rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

#fileProtocolBanner a {
  color: #93c5fd;
  text-decoration: underline;
}

#fileProtocolBanner button {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.container {
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: rgba(59, 130, 246, 0.35);
  color: var(--text-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.gradient-text {
  background: var(--gradient-blue-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(11, 17, 32, 0.6), transparent);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  width: min(280px, 80vw);
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-blue-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}

.loader-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: var(--gradient-blue-cyan);
  border-radius: 999px;
  animation: loadProgress 1.4s ease forwards;
}

.loader-text {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient-blue-cyan);
  z-index: 10001;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ---------- Particles & Blobs ---------- */
#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 18s ease-in-out infinite;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #3B82F6;
  top: -10%;
  left: -5%;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: #8B5CF6;
  top: 40%;
  right: -8%;
  animation-delay: -6s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #06B6D4;
  bottom: -5%;
  left: 30%;
  animation-delay: -12s;
}

[data-theme="light"] .blob {
  opacity: 0.18;
}

[data-theme="light"] .hero-photo-img {
  border-color: #F8FAFC;
  filter: contrast(1.02) saturate(0.92);
}

/* ---------- Navbar ---------- */
.navbar {
  min-height: var(--nav-height);
  height: auto;
  padding: 0.55rem 0;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.navbar .nav-actions {
  order: 2;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar .navbar-collapse {
  order: 3;
  flex-basis: 100%;
}

@media (min-width: 992px) {
  .navbar .navbar-collapse {
    order: 2;
    flex-basis: auto;
    flex-grow: 1;
  }

  .navbar .nav-actions {
    order: 3;
    margin-left: 0.5rem;
  }
}

.navbar.scrolled {
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 250, 252, 0.85);
}

.navbar-brand {
  order: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--text-white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-blue-cyan);
  color: #fff;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow);
}

.brand-text {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.nav-link {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-gray) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0;
  height: 2px;
  background: var(--gradient-blue-cyan);
  border-radius: 2px;
}

.mega-menu {
  background: var(--glass) !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px !important;
  min-width: 200px;
  margin-top: 10px !important;
}

.mega-menu .dropdown-item {
  color: var(--text-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.mega-menu .dropdown-item:hover {
  background: rgba(59, 130, 246, 0.12);
  color: var(--text-white);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
}

.icon-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.navbar-toggler {
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: 12px;
  padding: 0.7rem 1.35rem;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--gradient-blue-cyan);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.btn-outline-glow {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(59, 130, 246, 0.45);
  box-shadow: inset 0 0 0 0 rgba(59, 130, 246, 0.15);
}

.btn-outline-glow:hover {
  color: var(--text-white);
  border-color: var(--accent-primary);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25), inset 0 0 20px rgba(59, 130, 246, 0.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-gray);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 10%, transparent 10.01%);
  transform: scale(10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.8s;
}

.btn-ripple:active::after {
  transform: scale(0);
  opacity: 0.4;
  transition: 0s;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + 0.5rem);
  padding-bottom: 1rem;
  min-height: auto;
  z-index: 1;
  overflow: visible;
}

.hero-row {
  min-height: calc(100svh - var(--nav-height) - 2rem);
  padding-top: clamp(1rem, 3vw, 2.5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
  row-gap: clamp(1rem, 3vw, 2rem);
}

.hero-copy {
  width: 100%;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: clamp(12px, 2vw, 24px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: clamp(8px, 1.5vw, 16px);
  word-wrap: break-word;
}

.hero-roles {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.6vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(12px, 2vw, 20px);
  min-height: 2.6em;
  line-height: 1.4;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.role-prefix {
  color: var(--text-gray);
  margin-right: 6px;
}

.typed-text {
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: normal;
}

.typed-cursor {
  color: var(--accent-primary);
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

.hero-desc {
  color: var(--text-gray);
  font-size: clamp(0.92rem, 2.2vw, 1.08rem);
  max-width: 540px;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.hero-cta .btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-gray);
  transition: var(--transition);
}

.social-icon:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient-blue-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(18px, 4vw, 32px);
  overflow: visible;
}

.hero-photo-ring {
  position: relative;
  width: min(360px, 72vw);
  height: min(360px, 72vw);
  flex-shrink: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 5px;
  background: var(--gradient-blue-cyan);
  box-shadow: var(--shadow-glow), 0 0 80px rgba(139, 92, 246, 0.2);
  animation: floatY 6s ease-in-out infinite;
  overflow: hidden;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--bg-primary);
  background: #0B1120;
}

.orbit-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--accent-primary);
  font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
  animation: floatY 4s ease-in-out infinite;
}

.orbit-1 { top: 8%; right: 4%; color: #F55247; animation-delay: 0s; }
.orbit-2 { bottom: 18%; right: -4%; color: #3DDC84; animation-delay: 0.5s; }
.orbit-3 { bottom: 8%; left: 8%; color: #777BB4; animation-delay: 1s; }
.orbit-4 { top: 20%; left: -4%; color: #06B6D4; animation-delay: 1.5s; }

.hero-stats {
  margin-top: 40px;
  margin-bottom: 60px;
}

.stat-card {
  padding: 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-blue-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.88rem;
  margin-top: 4px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto 20px;
  width: fit-content;
}

.scroll-indicator span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(45deg);
  opacity: 0;
  animation: scrollDown 1.6s infinite;
}

.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* ---------- About ---------- */
.about-card {
  padding: 32px;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about-card p {
  color: var(--text-gray);
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  gap: 16px;
}

.about-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.about-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.about-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about-item p {
  font-size: 0.88rem;
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-purple));
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-primary);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.timeline-content {
  padding: 20px;
}

.timeline-year {
  font-size: 0.8rem;
  color: var(--accent-secondary);
  font-weight: 600;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin: 4px 0 8px;
}

.timeline-content p {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Skills ---------- */
.skills-filters,
.certs-filters,
.projects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  border-color: transparent;
  background: var(--gradient-blue-cyan);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.skill-card {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.skill-card.hidden {
  display: none;
}

.skill-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.skill-info {
  flex: 1;
  min-width: 0;
}

.skill-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.skill-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--gradient-blue-cyan);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-skill {
  padding: 24px;
  text-align: center;
  position: relative;
}

.circular-skill svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke: url(#skillGradient);
  stroke: #3B82F6;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1.4s ease;
}

.circular-value {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.circular-label {
  margin-top: 8px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ---------- Projects ---------- */
.projects-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.search-box {
  position: relative;
  min-width: 240px;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.project-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.project-card.hidden {
  display: none;
}

.project-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  overflow: hidden;
}

.project-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-cover {
  transform: scale(1.06);
}

.project-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--gradient-purple-blue);
  opacity: 0.85;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image-inner {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.project-body p {
  color: var(--text-gray);
  font-size: 0.9rem;
  flex: 1;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.tech-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-secondary);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.project-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-actions .btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

/* Modal */
.glass-modal {
  background: var(--bg-card) !important;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg) !important;
  color: var(--text-white);
}

.modal-header {
  border-bottom-color: var(--border);
}

.modal-body h4 {
  font-size: 1rem;
  margin: 18px 0 8px;
  color: var(--accent-secondary);
}

.modal-body p,
.modal-body li {
  color: var(--text-gray);
}

.modal-body ul {
  padding-left: 18px;
  list-style: disc;
}

.modal-hero-shot {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0f1a;
}

.modal-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #0a0f1a;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.modal-gallery-item {
  height: 72px;
  border-radius: 10px;
  background: var(--gradient-blue-violet);
  opacity: 0.95;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

.modal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.modal-gallery-item:hover,
.modal-gallery-item.active {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
}

/* ---------- Experience ---------- */
.experience-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-purple), var(--accent-secondary));
}

.exp-item {
  position: relative;
  margin-bottom: 28px;
}

.exp-marker {
  position: absolute;
  left: -32px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-purple);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

.exp-card {
  padding: 28px;
}

.exp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.exp-date {
  color: var(--accent-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

.exp-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
}

.exp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.exp-company {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.exp-card ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--text-gray);
}

.exp-card li {
  margin-bottom: 6px;
}

/* ---------- Education ---------- */
.edu-card {
  padding: 28px;
  height: 100%;
  transition: transform var(--transition);
}

.edu-card:hover {
  transform: translateY(-6px);
}

.edu-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient-purple-blue);
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.edu-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.edu-school {
  color: var(--accent-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.edu-card p:last-child {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Certificates ---------- */
.cert-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.cert-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.cert-card.hidden {
  display: none;
}

.cert-preview {
  height: 160px;
  display: grid;
  place-items: center;
  background: var(--gradient-blue-violet);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cert-body {
  padding: 18px;
}

.cert-body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cert-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Achievements ---------- */
.achieve-card {
  padding: 28px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.achieve-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.achieve-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-primary);
  font-size: 1.4rem;
}

.achieve-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-blue-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.achieve-card h3 {
  font-size: 1.05rem;
  margin: 8px 0;
}

.achieve-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Services ---------- */
.service-card {
  padding: 28px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient-blue-cyan);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Tech Stack Wall ---------- */
.stack-group {
  margin-bottom: 32px;
}

.stack-group h3 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.stack-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: default;
}

.stack-logo i {
  font-size: 1.2rem;
  color: var(--accent-primary);
}

.stack-logo:hover {
  transform: translateY(-4px) scale(1.04);
  color: var(--text-white);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-glow);
}

/* ---------- Process ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.process-step {
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  padding: 32px;
  height: 100%;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-gray);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue-cyan);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}

.author-info h4 {
  font-size: 0.95rem;
  margin: 0;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.company-logo {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  opacity: 0.7;
}

.testimonials-swiper {
  padding-bottom: 48px;
}

.swiper-pagination-bullet {
  background: var(--text-muted);
}

.swiper-pagination-bullet-active {
  background: var(--accent-primary);
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--accent-primary) !important;
}

/* ---------- Blog ---------- */
.blog-card {
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.blog-image {
  height: 180px;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  background: var(--gradient-purple-blue);
  color: rgba(255, 255, 255, 0.9);
}

.blog-body {
  padding: 22px;
}

.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-secondary);
}

.blog-body h3 {
  font-size: 1.1rem;
  margin: 8px 0;
}

.blog-body p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 14px;
}

/* ---------- FAQ ---------- */
.faq-item {
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.faq-question i {
  transition: transform var(--transition);
  color: var(--accent-primary);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 18px;
  color: var(--text-gray);
  margin: 0;
}

/* ---------- Terminal & Widgets ---------- */
.terminal-window {
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.terminal-bar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #22C55E; }

.terminal-title {
  margin-left: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
}

.terminal-body {
  padding: 20px;
  min-height: 260px;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--success);
}

.terminal-body .cmd {
  color: var(--accent-secondary);
}

.terminal-body .out {
  color: var(--text-gray);
}

.widgets-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget {
  padding: 20px;
}

.widget-header {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.widget-body {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.widget-body .repo-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.widget-body .repo-item:last-child {
  border-bottom: none;
}

/* ---------- Contact ---------- */
.contact-info {
  padding: 32px;
  height: 100%;
}

.contact-info h3 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.contact-info > p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
}

.contact-list i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-primary);
}

.contact-list a:hover {
  color: var(--accent-secondary);
}

.map-placeholder {
  height: 160px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.map-placeholder i {
  font-size: 1.8rem;
}

.contact-form {
  padding: 32px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-white);
  padding: 12px 16px;
  transition: var(--transition);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  color: var(--text-white);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-success {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 28px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-desc {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin-top: 12px;
}

.footer-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-secondary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- Back to Top & FAB ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gradient-blue-cyan);
  border-color: transparent;
}

.fab-menu {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-blue-cyan);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition);
}

.fab-main.open {
  transform: rotate(45deg);
}

.fab-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab-action {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.fab-action:hover {
  background: var(--accent-primary);
  border-color: transparent;
}

/* ---------- AI Chat ---------- */
.ai-chat {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: min(340px, calc(100vw - 40px));
  height: 420px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ai-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(59, 130, 246, 0.12);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.ai-chat-header button {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
}

.ai-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  max-width: 90%;
}

.ai-msg.bot {
  background: rgba(59, 130, 246, 0.12);
  color: var(--text-gray);
  align-self: flex-start;
}

.ai-msg.user {
  background: var(--gradient-blue-cyan);
  color: #fff;
  align-self: flex-end;
}

.ai-chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}

.ai-chat-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text-white);
  outline: none;
}

.ai-chat-form button {
  width: 40px;
  border: none;
  border-radius: 10px;
  background: var(--accent-primary);
  color: #fff;
  cursor: pointer;
}

/* ---------- Cookie Notice ---------- */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 32px));
  z-index: 1002;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cookie-notice p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-gray);
  margin: 0;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

/* ---------- Focus & A11y ---------- */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Print ---------- */
@media print {
  .loader,
  .navbar,
  .cursor-glow,
  #particles-js,
  .bg-blobs,
  .back-to-top,
  .fab-menu,
  .ai-chat,
  .cookie-notice,
  .scroll-progress {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 20px 0;
    break-inside: avoid;
  }
}
