@charset "UTF-8";
:root {
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-elevated: #ffffff;
  --bg-muted: #f4f4f5;
  --text-primary: #09090b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --border: #e4e4e7;
  --border-subtle: #f4f4f5;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-glow: rgba(37, 99, 235, 0.15);
  --gradient-hero: linear-gradient(135deg, #fafafa 0%, #f0f4ff 50%, #faf5ff 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --nav-bg: rgba(250, 250, 250, 0.85);
  --card-bg: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --timeline-line: #e4e4e7;
  --input-bg: #ffffff;
}

[data-theme=dark] {
  --bg-primary: #09090b;
  --bg-secondary: #0f0f12;
  --bg-elevated: #18181b;
  --bg-muted: #1c1c21;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: #27272a;
  --border-subtle: #1c1c21;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --accent-glow: rgba(59, 130, 246, 0.2);
  --gradient-hero: linear-gradient(135deg, #09090b 0%, #0f172a 50%, #1e1b4b 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --nav-bg: rgba(9, 9, 11, 0.9);
  --card-bg: #18181b;
  --timeline-line: #27272a;
  --input-bg: #18181b;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--accent-soft);
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: var(--accent-hover);
}

.section-padding {
  padding: 6rem 0;
}
@media (max-width: 767.98px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 36rem;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-progress {
  height: 100%;
  width: 30%;
  background: var(--gradient-accent);
  border-radius: 99px;
  animation: preloader-slide 1s ease-in-out infinite;
}

@keyframes preloader-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10000;
  background: var(--gradient-accent);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0.875rem 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 0.625rem 0;
}

.nav-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary) !important;
}
.nav-brand span {
  color: var(--accent);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 0.5rem 0.875rem !important;
  border-radius: 0.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary) !important;
  background: var(--accent-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: var(--bg-primary);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav .nav-link {
  display: block;
  font-size: 1.25rem;
  padding: 0.875rem 0 !important;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary) !important;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.375rem 0.5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--gradient-accent);
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px var(--accent-glow);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
  color: #fff !important;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: var(--accent-soft);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent) !important;
  background: var(--accent-soft);
  border: none;
  border-radius: 0.5rem;
}
.btn-ghost:hover {
  background: var(--accent-glow);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-title .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-stat .stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-visual .code-window {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.hero-visual .code-window .window-header {
  display: flex;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.hero-visual .code-window .window-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-visual .code-window .window-header .dot.red {
  background: #ef4444;
}
.hero-visual .code-window .window-header .dot.yellow {
  background: #eab308;
}
.hero-visual .code-window .window-header .dot.green {
  background: #22c55e;
}
.hero-visual .code-window .window-body {
  padding: 1.5rem;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.hero-visual .code-window .window-body .keyword {
  color: #7c3aed;
}
.hero-visual .code-window .window-body .string {
  color: #059669;
}
.hero-visual .code-window .window-body .func {
  color: #2563eb;
}
.hero-visual .code-window .window-body .comment {
  color: var(--text-muted);
}

.floating-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  font-size: 0.8125rem;
  animation: float 4s ease-in-out infinite;
}
.floating-card.card-1 {
  top: 10%;
  right: -5%;
}
.floating-card.card-2 {
  bottom: 15%;
  left: -8%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.glass-card, .testimonial-card, .service-card, .skill-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover, .testimonial-card:hover, .service-card:hover, .skill-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.skill-card {
  height: 100%;
}
.skill-card .skill-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.skill-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.skill-card .skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.skill-card .skill-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--bg-muted);
  color: var(--text-secondary);
  border-radius: 99px;
  border: 1px solid var(--border-subtle);
}

.experience-timeline {
  position: relative;
  padding-left: 2rem;
}
.experience-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--timeline-line);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.375rem;
  width: 12px;
  height: 12px;
  margin-left: -5px;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
}
.timeline-item .timeline-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}
.timeline-item .timeline-company {
  font-size: 1.125rem;
  font-weight: 700;
}
.timeline-item .timeline-role {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.timeline-item .timeline-achievements {
  list-style: none;
  padding: 0;
}
.timeline-item .timeline-achievements li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}
.timeline-item .timeline-achievements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.timeline-item .timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.timeline-item .timeline-tech span {
  font-size: 0.6875rem;
  padding: 0.2rem 0.5rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 99px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.portfolio-filters .filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 99px;
  cursor: pointer;
}
.portfolio-filters .filter-btn:hover, .portfolio-filters .filter-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.03);
}
.portfolio-card.hidden {
  display: none;
}

.portfolio-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-muted);
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.portfolio-image .portfolio-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-radius: 99px;
}

.portfolio-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.portfolio-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portfolio-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex: 1;
}
.portfolio-body .portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.portfolio-body .portfolio-tech span {
  font-size: 0.6875rem;
  padding: 0.15rem 0.45rem;
  background: var(--bg-muted);
  color: var(--text-muted);
  border-radius: 4px;
}

.featured-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
}
.featured-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}
.featured-card .featured-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.featured-card .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.featured-card .featured-content {
  padding: 1.75rem;
}
.featured-card .featured-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.featured-card .featured-content .featured-meta {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.featured-card .featured-content .featured-meta .meta-block h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
}
.featured-card .featured-content .featured-meta .meta-block p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}
.featured-card .featured-content .featured-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.featured-card .featured-content .featured-features span {
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 99px;
}

.service-card {
  height: 100%;
}
.service-card .service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card ul li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.tech-item i {
  font-size: 1.75rem;
  color: var(--text-primary);
}
.tech-item .tech-logo {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  flex-shrink: 0;
}
.tech-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

.testimonial-card {
  height: 100%;
}
.testimonial-card .stars {
  color: #eab308;
  margin-bottom: 1rem;
}
.testimonial-card .quote {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card .author .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}
.testimonial-card .author .role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-form .form-control {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 0.5rem;
}
.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--input-bg);
  color: var(--text-primary);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 0.5rem;
}

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-secondary);
  margin-right: 0.5rem;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1020;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}
.about-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-muted);
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
}
.about-highlights .highlight-item i {
  color: var(--accent);
}
.about-highlights .highlight-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.project-modal .modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

[data-theme=dark] .project-modal .btn-close {
  filter: invert(1);
}

.bg-body-secondary {
  background-color: var(--bg-muted) !important;
}

/*# sourceMappingURL=style.css.map */
