/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Ashutosh Kumar Portfolio – style.css v2
   Improved: hero typography, stat cards, project cards,
   ghost button, floating icons, skill pct labels
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── CSS Variables ─── */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1d1d2a;
  --bg-glass: rgba(22, 22, 31, 0.7);
  --border-color: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(99, 102, 241, 0.4);

  --text-primary: #f1f1f8;
  --text-secondary: #9497b0;
  --text-muted: #5e6078;

  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-3: #06b6d4;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --accent-glow: rgba(99, 102, 241, 0.25);

  --nav-bg: rgba(10, 10, 15, 0.9);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg-primary: #f1f5f9;
  --bg-secondary: #e2e8f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --border-color: rgba(99, 102, 241, 0.22);
  --border-hover: rgba(79, 70, 229, 0.55);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --accent: #4f46e5;
  --accent-2: #7c3aed;
  --accent-3: #0284c7;

  --nav-bg: rgba(241, 245, 249, 0.94);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(79, 70, 229, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 35px rgba(79, 70, 229, 0.2);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ─── Particle Canvas ─── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform var(--transition);
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* Ghost button – subtle, no border fill */
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .btn-ghost {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.03);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-xs {
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  border-radius: 8px;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 0.55rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'JetBrains Mono', monospace;
}

.logo-bracket {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.theme-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  border-left: 1px solid var(--border-color);
  transition: right var(--transition-slow);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: block;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
}

.mobile-link:hover {
  background: var(--bg-card);
  color: var(--accent);
  padding-left: 1.6rem;
}

.mobile-resume {
  margin-top: 0.5rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--accent) !important;
}

.mobile-resume:hover {
  background: var(--accent) !important;
  color: white !important;
}

/* ─── Section Base ─── */
.section {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-line {
  width: 56px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 3px;
  margin: 1rem auto 0;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating & Cascading 3D Tech Logos (Active only in Starfield Galaxy Mode) */
.hero-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  display: none; /* Only visible in Starfield Galaxy mode */
}

.float-icon {
  position: absolute;
  top: -50px;
  font-size: 1.8rem;
  opacity: 0.18;
  color: var(--accent-3);
  filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.2));
  animation: float-fall 18s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .float-icon {
  color: #6366f1;
  opacity: 0.16;
  filter: drop-shadow(0 2px 6px rgba(99, 102, 241, 0.15));
}

@keyframes float-fall {
  0% {
    top: -50px;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.2;
  }
  50% {
    transform: translateX(16px) rotate(180deg);
  }
  85% {
    opacity: 0.2;
  }
  100% {
    top: 105%;
    transform: translateX(-12px) rotate(360deg);
    opacity: 0;
  }
}

.fi-1 { left: 2%; animation-delay: 0s; }
.fi-2 { right: 2%; animation-delay: -3s; }
.fi-3 { left: 8%; animation-delay: -6s; }
.fi-4 { right: 8%; animation-delay: -9s; }
.fi-5 { left: 14%; animation-delay: -12s; }
.fi-6 { right: 14%; animation-delay: -15s; }
.fi-7 { left: 4%; animation-delay: -1.5s; }
.fi-8 { right: 4%; animation-delay: -4.5s; }
.fi-9 { left: 10%; animation-delay: -7.5s; }
.fi-10 { right: 10%; animation-delay: -10.5s; }

@keyframes float-drift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(12px, -18px) rotate(5deg);
  }

  66% {
    transform: translate(-8px, 12px) rotate(-4deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* Available badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* Hero intro block */
.hero-intro {
  margin-bottom: 1.25rem;
}

.hero-greeting {
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.hero-name {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.hero-role-line {
  display: flex;
  justify-content: center;
}

.hero-role {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0.35rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.cursor-blink {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Tagline block */
.hero-taglines {
  margin-bottom: 1.4rem;
}

.hero-tagline-main {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.hero-tagline-sub {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.text-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.hero-location i {
  color: var(--accent);
}

/* CTA row */
.hero-cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* ─── Stat Cards (improved) ─── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.stat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-card-body {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.avatar-wrapper {
  position: relative;
  width: 190px;
  height: 190px;
}

.avatar-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.65;
  animation: rotate-ring 8s linear infinite;
}

@keyframes rotate-ring {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.avatar-inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-secondary);
}

.avatar-initials {
  font-size: 3.8rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.avatar-badge {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 42px;
  height: 42px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: white;
  border: 3px solid var(--bg-secondary);
}

.about-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.78rem;
  transition: all var(--transition);
  word-break: break-all;
}

.contact-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-chip i {
  color: var(--accent);
  flex-shrink: 0;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-text strong {
  color: var(--text-primary);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.highlight-item i {
  color: var(--accent);
  font-size: 0.82rem;
}

.about-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ─── EXPERIENCE ─── */
.experience-section {
  background: var(--bg-primary);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  position: relative;
}

.timeline-dot {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 18px var(--accent-glow);
  transition: all var(--transition);
}

.timeline-dot.secondary {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  color: white;
  transform: scale(1.08);
}

.timeline-item:hover .timeline-dot.secondary {
  background: var(--accent-2);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.timeline-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.timeline-card:hover::before {
  transform: scaleX(1);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.job-company {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.2rem;
}

.company-name {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.company-location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.company-location i {
  margin-right: 0.3rem;
}

.job-duration {
  text-align: right;
}

.duration-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

.duration-badge.current {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.2);
}

.duration-type {
  display: block;
  color: var(--text-muted);
  font-size: 0.73rem;
  margin-top: 0.28rem;
  text-align: right;
}

.job-bullets {
  list-style: none;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.job-bullets li {
  color: var(--text-secondary);
  font-size: 0.91rem;
  padding-left: 1.2rem;
  position: relative;
}

.job-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.job-bullets strong {
  color: var(--text-primary);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-tag {
  padding: 0.28rem 0.75rem;
  background: rgba(99, 102, 241, 0.07);
  border: 1px solid rgba(99, 102, 241, 0.13);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  transition: all var(--transition);
}

.tech-tag:hover {
  background: var(--accent);
  color: white;
}

/* ─── SKILLS ─── */
.skills-section {
  background: var(--bg-secondary);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.skill-category {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.skill-category:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.skill-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.skill-cat-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.skill-info span:not(.skill-pct) {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  flex: 1;
}

.skill-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
}

.skill-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.skill-icon-fa {
  font-size: 1rem;
  color: var(--accent);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.skill-bar {
  height: 5px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 3px;
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tech badges */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.badge-pill {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: default;
}

.badge-pill:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.28);
}

/* ─── PROJECTS ─── */
.projects-section {
  background: var(--bg-primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.1);
}

/* Glow accent on top */
.project-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.project-card-glow.secondary {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.project-card:hover .project-card-glow {
  transform: scaleX(1);
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.project-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
}

.project-icon-wrap.secondary {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.18);
  color: var(--accent-2);
}

.project-links {
  display: flex;
  gap: 0.6rem;
}

.project-link-btn {
  position: relative;
  color: var(--text-muted);
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.project-link-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.08);
}

.project-link-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.project-link-btn:hover .project-link-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.project-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

.project-subtitle {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  flex: 1;
}

.project-desc strong {
  color: var(--text-primary);
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.project-features span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 500;
}

.project-features i {
  color: var(--accent);
  font-size: 0.68rem;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.project-stack span {
  padding: 0.22rem 0.65rem;
  background: rgba(99, 102, 241, 0.07);
  border: 1px solid rgba(99, 102, 241, 0.13);
  border-radius: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: auto;
}

.project-date {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── EDUCATION ─── */
.education-section {
  background: var(--bg-secondary);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.edu-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.edu-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cert-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.18);
  color: #f59e0b;
}

.edu-degree {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.edu-institution {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.28rem;
}

.edu-location {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.edu-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.edu-years,
.edu-cgpa {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.edu-cgpa i {
  color: #f59e0b;
}

.edu-cgpa strong {
  color: var(--text-primary);
}

.cert-badge {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 100px;
  padding: 0.18rem 0.65rem;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--bg-primary);
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.contact-intro strong {
  color: var(--text-primary);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  transition: all var(--transition);
  text-align: left;
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: var(--shadow-glow);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-card-icon.linkedin {
  background: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.18);
  color: #0a66c2;
}

.contact-card-icon.github {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.09);
  color: var(--text-primary);
}

[data-theme="light"] .contact-card-icon.github {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.contact-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.18rem;
}

.contact-card-value {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  word-break: break-all;
}

.contact-card-arrow {
  color: var(--text-muted);
  transition: transform var(--transition);
}

.contact-card:hover .contact-card-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2.75rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-content {
  margin-bottom: 1rem;
}

.footer-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-content strong {
  color: var(--accent);
}

.footer-sub {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.22rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.22);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-avatar-col {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .section {
    padding: 5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-actions {
    flex-direction: column;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .timeline-header {
    flex-direction: column;
  }

  .job-duration {
    text-align: left;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-value {
    font-size: 0.78rem;
  }

  .contact-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.8rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .timeline-card {
    padding: 1.25rem;
  }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-2);
}

/* ─── Selection ─── */
::selection {
  background: rgba(99, 102, 241, 0.25);
  color: var(--text-primary);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3D WEBGL ENGINE & 3D INTERACTION STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Live 3D Canvas Background */
#webgl-canvas-3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  transition: opacity 0.5s ease;
}

[data-theme="light"] #webgl-canvas-3d {
  opacity: 0.25; /* Soft, clean 3D background tint in Light Mode */
}

.canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(10, 10, 15, 0.1) 0%, rgba(10, 10, 15, 0.75) 100%);
  z-index: 0;
  transition: background 0.5s ease;
}

[data-theme="light"] .canvas-overlay {
  background: radial-gradient(circle at 50% 50%, rgba(241, 245, 249, 0.35) 0%, rgba(241, 245, 249, 0.88) 100%);
}

/* 3D Scene Controls Widget - Icon Logo Button (No Text) */
.control-widget-3d {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.btn-3d-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5), 0 0 20px rgba(6, 182, 212, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.btn-3d-toggle:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.7), 0 0 30px rgba(6, 182, 212, 0.6);
}

.btn-3d-toggle i {
  color: #ffffff;
  font-size: 1.4rem;
  animation: spin3d 8s linear infinite;
}

.fab-tooltip.left {
  left: 72px;
  right: auto;
  transform: translateX(-10px);
}

.control-widget-3d:hover .fab-tooltip.left {
  opacity: 1;
  transform: translateX(0);
}

@keyframes spin3d {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-3d-toggle:hover {
  background: rgba(30, 30, 45, 0.95);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.mode-options-3d {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem;
  background: rgba(16, 16, 25, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  min-width: 180px;
  animation: fadeIn3d 0.3s ease;
}

.mode-options-3d.active {
  display: flex;
}

@keyframes fadeIn3d {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mode-options-3d button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mode-options-3d button i {
  font-size: 0.9rem;
  width: 16px;
}

.mode-options-3d button:hover,
.mode-options-3d button.active {
  background: rgba(99, 102, 241, 0.18);
  color: #ffffff;
}

.mode-options-3d button.active {
  color: var(--accent-3);
  font-weight: 700;
}

/* 3D Depth & Extreme Tilt Card Transformations */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.15s cubic-bezier(0.1, 0.9, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* 3D Dynamic Cursor Glare Spotlight */
.tilt-card::before {
  content: '';
  position: absolute;
  top: var(--glare-y, 50%);
  left: var(--glare-x, 50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.tilt-card:hover::before {
  opacity: 1;
}

.tilt-card:hover {
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(99, 102, 241, 0.3);
}

/* Multi-layer Z-Axis 3D Spatial Pops */
.tilt-card .project-icon-wrap,
.tilt-card .stat-card-icon,
.tilt-card .avatar-wrapper,
.tilt-card .skill-cat-icon,
.tilt-card .timeline-dot {
  transform: translateZ(50px);
  transition: transform 0.2s ease;
}

.tilt-card .project-title,
.tilt-card .job-title,
.tilt-card .skill-cat-header h3,
.tilt-card .stat-number {
  transform: translateZ(35px);
  transition: transform 0.2s ease;
}

.tilt-card .project-desc,
.tilt-card .job-bullets,
.tilt-card .project-features,
.tilt-card .tech-stack {
  transform: translateZ(20px);
  transition: transform 0.2s ease;
}

.tilt-card .project-footer,
.tilt-card .project-links {
  transform: translateZ(40px);
  transition: transform 0.2s ease;
}

/* Pulse Dot */
.badge-dot.pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Project Header & Category Badges */
.project-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.project-category-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-3);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.project-card-glow.cyan {
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.15), transparent 70%);
}

.project-card-glow.python {
  background: radial-gradient(circle at top right, rgba(234, 179, 8, 0.15), transparent 70%);
}

.project-card-glow.react {
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent 70%);
}

.project-icon-wrap.cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.3);
}

.project-icon-wrap.python {
  background: rgba(234, 179, 8, 0.12);
  color: #eab308;
  border-color: rgba(234, 179, 8, 0.3);
}

.project-icon-wrap.react {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.project-card-glow.voice {
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.18), transparent 70%);
}

.project-icon-wrap.voice {
  background: rgba(168, 85, 247, 0.14);
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.35);
}

.project-link-btn.highlight {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
}

.project-link-btn.highlight:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* AWS Cert Styling */
.edu-icon.cert-icon.aws {
  background: rgba(255, 153, 0, 0.12);
  color: #ff9900;
  border-color: rgba(255, 153, 0, 0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3D PHOTO AVATAR FRAME & LIGHT MODE POLISH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 3D Photo Frame in About Section */
.avatar-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 5px;
  background: var(--accent-gradient);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4), 0 0 30px rgba(6, 182, 212, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.1, 0.9, 0.2, 1), box-shadow 0.4s ease;
}

.avatar-wrapper:hover {
  transform: perspective(1000px) rotateX(10deg) rotateY(-10deg) scale(1.06);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.6), 0 0 45px rgba(6, 182, 212, 0.5);
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 4px solid var(--bg-primary);
  transform: translateZ(30px);
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.avatar-wrapper:hover .avatar-photo {
  transform: scale(1.08);
}

.avatar-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--accent);
  color: var(--accent-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateZ(50px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PREMIUM LIGHT MODE DESIGN SYSTEM POLISH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Light Mode Base & Hero Typography ── */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --border-color: rgba(99, 102, 241, 0.18);
  --border-hover: rgba(79, 70, 229, 0.5);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --accent: #4f46e5;
  --accent-2: #7c3aed;
  --accent-3: #0284c7;

  --nav-bg: rgba(248, 250, 252, 0.95);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 36px rgba(79, 70, 229, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px rgba(79, 70, 229, 0.18);
}

[data-theme="light"] .hero-greeting {
  color: #475569;
  font-weight: 600;
}

[data-theme="light"] .hero-name {
  background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.15));
}

[data-theme="light"] .hero-role {
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.25);
  color: #3730a3;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.08);
}

[data-theme="light"] .hero-tagline-main {
  color: #0f172a;
  font-weight: 600;
}

[data-theme="light"] .hero-tagline-sub {
  color: #475569;
  font-weight: 500;
}

[data-theme="light"] .hero-badge {
  background: #ffffff;
  border-color: rgba(79, 70, 229, 0.25);
  color: #3730a3;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
}

[data-theme="light"] .btn-ghost {
  color: #334155;
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .btn-ghost:hover {
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  border-color: #4f46e5;
}

[data-theme="light"] .btn-outline {
  border-color: #4f46e5;
  color: #4f46e5;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.1);
}

[data-theme="light"] .btn-outline:hover {
  background: #4f46e5;
  color: #ffffff;
}

/* ── Light Mode Section Headers & Titles ── */
[data-theme="light"] .section-title {
  color: #0f172a;
}

[data-theme="light"] .section-tag {
  color: #4f46e5;
  font-weight: 700;
}

[data-theme="light"] .section-line {
  background: linear-gradient(90deg, #4f46e5, #0284c7, transparent);
}

/* ── Light Mode 3D Tilt Cards ── */
[data-theme="light"] .tilt-card {
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06), 0 0 20px rgba(99, 102, 241, 0.05);
}

[data-theme="light"] .tilt-card:hover {
  border-color: rgba(79, 70, 229, 0.55);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12), 0 0 35px rgba(79, 70, 229, 0.2);
}

/* ── Light Mode Experience Timeline ── */
[data-theme="light"] .timeline-card {
  background: #ffffff;
}

[data-theme="light"] .job-title {
  color: #0f172a;
}

[data-theme="light"] .company-name {
  color: #4338ca;
  font-weight: 700;
}

[data-theme="light"] .duration-type {
  color: #64748b;
}

[data-theme="light"] .job-bullets li {
  color: #334155;
}

[data-theme="light"] .job-bullets strong {
  color: #1e1b4b;
}

[data-theme="light"] .timeline-dot {
  background: #4f46e5;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.35);
}

/* ── Light Mode Skill Cards & Bars ── */
[data-theme="light"] .skill-category {
  background: #ffffff;
}

[data-theme="light"] .skill-cat-header h3 {
  color: #0f172a;
}

[data-theme="light"] .skill-info span {
  color: #1e293b;
  font-weight: 600;
}

[data-theme="light"] .skill-pct {
  color: #4f46e5;
  font-weight: 700;
}

[data-theme="light"] .skill-bar {
  background: rgba(99, 102, 241, 0.12);
}

[data-theme="light"] .skill-fill {
  background: linear-gradient(90deg, #4f46e5, #0284c7);
}

/* ── Light Mode Project Cards ── */
[data-theme="light"] .project-card {
  background: #ffffff;
}

[data-theme="light"] .project-title {
  color: #0f172a;
}

[data-theme="light"] .project-subtitle {
  color: #4338ca;
  font-weight: 600;
}

[data-theme="light"] .project-desc {
  color: #334155;
}

[data-theme="light"] .project-desc strong {
  color: #1e1b4b;
}

[data-theme="light"] .project-features span {
  background: rgba(79, 70, 229, 0.07);
  color: #3730a3;
  border: 1px solid rgba(79, 70, 229, 0.18);
  font-weight: 600;
}

[data-theme="light"] .project-stack span,
[data-theme="light"] .tech-tag,
[data-theme="light"] .badge-pill {
  background: rgba(79, 70, 229, 0.08);
  color: #3730a3;
  border: 1px solid rgba(79, 70, 229, 0.2);
  font-weight: 600;
}

[data-theme="light"] .badge-pill:hover {
  background: #4f46e5;
  color: #ffffff;
}

[data-theme="light"] .project-category-badge {
  background: rgba(79, 70, 229, 0.12);
  color: #4338ca;
  border-color: rgba(79, 70, 229, 0.3);
}

/* ── Light Mode Contact Cards ── */
[data-theme="light"] .contact-wrapper {
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .contact-intro {
  color: #334155;
}

[data-theme="light"] .contact-card {
  background: #f8fafc;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .contact-card:hover {
  background: #ffffff;
  border-color: #4f46e5;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.15);
}

[data-theme="light"] .contact-card-label {
  color: #64748b;
}

[data-theme="light"] .contact-card-value {
  color: #0f172a;
  font-weight: 600;
}

/* ── Light Mode Footer ── */
[data-theme="light"] .footer {
  background: #f1f5f9;
  border-top: 1px solid rgba(99, 102, 241, 0.18);
  color: #475569;
}

[data-theme="light"] .footer strong {
  color: #0f172a;
}

[data-theme="light"] .footer-social a {
  background: #ffffff;
  color: #475569;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .footer-social a:hover {
  background: #4f46e5;
  color: #ffffff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LIVE AI VOICE ASSISTANT WIDGET & MODAL STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Floating Voice Assistant FAB Button */
.voice-assistant-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 120;
  display: flex;
  align-items: center;
}

.btn-fab-voice {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5), 0 0 20px rgba(6, 182, 212, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn-fab-voice:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.7), 0 0 30px rgba(6, 182, 212, 0.6);
}

.fab-pulse-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(99, 102, 241, 0.6);
  animation: fabPulse 2s infinite;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.fab-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.voice-assistant-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* AI Voice Modal Overlay */
.voice-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.voice-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.voice-modal-card {
  width: 100%;
  max-width: 580px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 35px rgba(99, 102, 241, 0.25);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.1, 0.9, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.voice-modal-overlay.active .voice-modal-card {
  transform: scale(1) translateY(0);
}

.voice-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.voice-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Modal Header */
.voice-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.assistant-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
}

.avatar-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid var(--bg-card);
}

.voice-modal-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.assistant-subtitle {
  font-size: 0.76rem;
  color: var(--accent-3);
  font-family: 'JetBrains Mono', monospace;
}

/* Voice Pipeline Diagram Component */
.voice-pipeline-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pipeline-step.active {
  background: rgba(99, 102, 241, 0.2);
  color: var(--accent-3);
  font-weight: 700;
  border: 1px solid rgba(99, 102, 241, 0.4);
}

.pipeline-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Audio Waveform Animation */
.voice-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 24px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.voice-waveform.speaking {
  opacity: 1;
}

.voice-waveform .bar {
  width: 4px;
  height: 8px;
  background: var(--accent-3);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.voice-waveform.speaking .bar {
  animation: waveBar 0.5s ease-in-out infinite alternate;
}

.voice-waveform.speaking .bar:nth-child(1) { animation-delay: 0s; }
.voice-waveform.speaking .bar:nth-child(2) { animation-delay: 0.1s; }
.voice-waveform.speaking .bar:nth-child(3) { animation-delay: 0.2s; }
.voice-waveform.speaking .bar:nth-child(4) { animation-delay: 0.3s; }
.voice-waveform.speaking .bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes waveBar {
  0% { height: 6px; }
  100% { height: 22px; }
}

/* Chat Container */
.voice-chat-box {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chat-message {
  display: flex;
  gap: 0.75rem;
  max-width: 90%;
  animation: msgPop 0.3s ease;
}

@keyframes msgPop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message.assistant {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.msg-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.chat-message.user .msg-icon {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent-3);
}

.msg-content {
  background: rgba(22, 22, 31, 0.9);
  border: 1px solid var(--border-color);
  padding: 0.65rem 0.95rem;
  border-radius: 14px;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.chat-message.user .msg-content {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(99, 102, 241, 0.4);
}

/* Quick Prompts Pills */
.voice-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.voice-prompt-pill {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.voice-prompt-pill:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Control Bar */
.voice-control-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.btn-voice-mic {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-voice-mic:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-voice-mic.listening {
  background: linear-gradient(135deg, #ef4444, #f97316);
  animation: micPulse 1.2s infinite;
}

@keyframes micPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.voice-text-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(16, 16, 25, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.2rem 0.4rem 0.2rem 0.9rem;
}

.voice-text-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
}

.voice-text-input-wrap button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.voice-text-input-wrap button:hover {
  transform: scale(1.1);
}

/* Light Mode Voice Assistant Theme Overrides */
[data-theme="light"] .voice-modal-card {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18), 0 0 35px rgba(79, 70, 229, 0.15);
}

[data-theme="light"] .voice-pipeline-diagram {
  background: #f1f5f9;
  border-color: rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .voice-chat-box {
  background: #f8fafc;
}

[data-theme="light"] .chat-message.assistant .msg-content {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.2);
  color: #0f172a;
}

[data-theme="light"] .voice-text-input-wrap {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.25);
}

