:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-card-hover: #1e2a40;
  --text-primary: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59,130,246,0.15);
  --accent-subtle: rgba(59,130,246,0.08);
  --border: #1f2937;
  --border-light: #2d3a4e;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --header-height: 72px;
}

/* Base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection { background: var(--accent); color: white; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--text-primary); font-weight: 700; letter-spacing: -0.02em; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
p { color: var(--text-secondary); line-height: 1.7; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .section-title { font-size: 1.8rem; }
}

/* Tech grid background pattern */
.tech-bg {
  position: relative;
}
.tech-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}
.tech-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

/* Navbar */
.navbar-main {
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  padding: 0;
  height: var(--header-height);
}
.navbar-main .container { height: 100%; }
.navbar-main .navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.5px;
  font-family: var(--font-mono);
}
.navbar-main .navbar-brand span { color: var(--accent); }
.navbar-main .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  position: relative;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--text-primary) !important; }
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler {
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url( data:image/svg+xml,%3csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 30 30%3e%3cpath stroke=rgba(229,231,235,0.8) stroke-linecap=round stroke-miterlimit=10 stroke-width=2 d=M4 7h22M4 15h22M4 23h22/%3e%3c/svg%3e) !important;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
  background-image: url('/assets/images/bk-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .tech-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.08;
  pointer-events: none;
}
.hero .glow-1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.hero .glow-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-primary);
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat h3 {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-terminal .terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.hero-terminal .terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-terminal .terminal-dot:nth-child(1) { background: var(--danger); }
.hero-terminal .terminal-dot:nth-child(2) { background: var(--warning); }
.hero-terminal .terminal-dot:nth-child(3) { background: var(--success); }
.hero-terminal .terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.hero-terminal .terminal-body .cmd { color: var(--success); }
.hero-terminal .terminal-body .path { color: var(--accent); }
.hero-terminal .terminal-body .output { color: var(--text-muted); }
.hero-terminal .terminal-body .cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 991px) {
  .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat h3 { font-size: 1.5rem; }
}

/* Services */
.services-grid .service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.services-grid .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.services-grid .service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.08);
}
.services-grid .service-card:hover::before { opacity: 1; }
.services-grid .service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--accent-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.services-grid .service-card:hover .icon {
  background: var(--accent-glow);
  transform: scale(1.05);
}
.services-grid .service-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.services-grid .service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}


/* Service card image */
.service-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.services-grid .service-card:hover .service-card-image img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-body .icon {
  width: 56px;
  height: 56px;
  background: var(--accent-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.services-grid .service-card:hover .service-card-body .icon {
  background: var(--accent-glow);
  transform: scale(1.05);
}
.service-card-body h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.service-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Benefits */
.benefit-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
  height: 100%;
}
.benefit-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.06);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.benefit-item h6 { font-weight: 600; font-size: 1rem; }
.benefit-item p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0; }

/* Portfolio */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.portfolio-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.08);
}
.portfolio-card .card-body { padding: 1.5rem; }
.portfolio-card .card-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.portfolio-card .card-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.portfolio-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.gallery-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.08);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
}
.gallery-item .overlay i {
  margin-left: auto;
  color: var(--accent);
  font-size: 1.2rem;
}
.gallery-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 767px) {
  .gallery-item img,
  .gallery-placeholder { height: 220px; }
}

/* Articles section */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.article-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.06);
}
.article-card .card-body { padding: 1.5rem; }
.article-card .card-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.article-card .card-text { color: var(--text-secondary); font-size: 0.9rem; }
.article-card .text-muted { color: var(--text-muted) !important; font-size: 0.8rem; }
.article-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  font-size: 3rem;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  text-align: center;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  transition: all 0.3s;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.contact-email:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.08);
}
.contact-email i {
  font-size: 1.5rem;
  color: var(--accent);
}

/* Page header (articles) */
.page-header {
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-header .tech-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.page-header h1 {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}
.page-header .lead { color: var(--text-secondary); }
.page-header .breadcrumb { background: transparent; padding: 0; }
.page-header .breadcrumb-item a { color: var(--accent); }
.page-header .breadcrumb-item.active { color: var(--text-muted); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* Article layout */
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.article-content p { margin-bottom: 1rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; }
.article-content li { color: var(--text-secondary); margin-bottom: 0.5rem; }
.article-content code {
  background: var(--bg-card);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  border: 1px solid var(--border);
}

/* Section spacing */
section { padding: 5rem 0; }
.section-alt { background: var(--bg-secondary); }

/* Section divider glow */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.5rem 0;
  box-shadow: 0 0 12px var(--accent-glow);
}
.section-divider.centered { margin-left: auto; margin-right: auto; }

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer h6 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer a:hover { color: var(--accent); }
.footer p { color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.footer-bottom p { font-size: 0.85rem; }
.footer .brand {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.5px;
}
.footer .brand span { color: var(--accent); }

/* Buttons */
.btn-accent {
  background: var(--accent);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  color: white;
}
.btn-outline-accent {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1029;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}
body.menu-open { overflow: hidden; }
body.menu-open .nav-overlay { display: block; opacity: 1; }

/* Fancybox dark theme override */
.fancybox__container { --fancybox-bg: rgba(10,14,26,0.95); }

/* AOS custom animations */
[data-aos=fade-up] { transform: translate3d(0, 30px, 0); }
[data-aos=fade-up].aos-animate { transform: translate3d(0, 0, 0); }

/* Responsive */
@media (max-width: 991px) {
  section { padding: 4rem 0; }
  .page-header h1 { font-size: 2rem; }
}
@media (max-width: 767px) {
  section { padding: 3rem 0; }
  .page-header { padding: calc(var(--header-height) + 1rem) 0 2rem; }
  .page-header h1 { font-size: 1.5rem; }
}

/* Article card image */
.article-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border-bottom: 1px solid var(--border);
}
.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.article-card:hover .article-card-image img {
  transform: scale(1.08);
}
.article-card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.6;
  transition: all 0.3s;
}
.article-card:hover .article-card-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Article card meta date */
.article-card-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 999;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Article card body adjustments */
.article-card-body {
  padding: 1.25rem;
}
.article-card-body h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.article-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Gallery carousel */
#galleryCarousel .carousel-item {
  height: 50vh;
  max-height: 500px;
}
#galleryCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.8;
}
#galleryCarousel .carousel-control-prev { left: 1rem; }
#galleryCarousel .carousel-control-next { right: 1rem; }
#galleryCarousel .carousel-control-prev:hover,
#galleryCarousel .carousel-control-next:hover { opacity: 1; background: var(--bg-card-hover); }
#galleryCarousel .carousel-control-prev-icon,
#galleryCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}
#galleryCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--text-muted);
  opacity: 0.5;
}
#galleryCarousel .carousel-indicators button.active {
  opacity: 1;
  background: var(--accent);
}
@media (max-width: 767px) {
  #galleryCarousel .carousel-item { height: 220px; }
  #galleryCarousel .carousel-control-prev,
  #galleryCarousel .carousel-control-next { width: 36px; height: 36px; }
}
/* Hide gallery carousel indicators */
#galleryCarousel .carousel-indicators {
  display: none;
}
