﻿:root {
  --bg: #f2f4f7;
  --surface: #ffffff;
  --ink: #101828;
  --muted: #475467;
  --line: #d0d5dd;
  --brand: #ff8a00;
  --deep: #1d2939;
  --ok: #0f766e;
  --shadow: 0 14px 40px rgba(16, 24, 40, 0.12);
}

[data-theme="neon"] {
  --bg: #0f1115;
  --surface: #171a21;
  --ink: #e7eaf0;
  --muted: #a7b0bf;
  --line: #2a2f3a;
  --brand: #5d89ff;
  --deep: #11141b;
  --ok: #7aa2ff;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff 0%, var(--bg) 42%, #e8edf3 100%);
  transition: background .35s ease, color .35s ease;
}

[data-theme="neon"] body,
body[data-theme="neon"] {
  background: radial-gradient(circle at 20% 0%, #1a1e27 0%, #11141b 50%, #0d1016 100%);
}

.site-bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(16, 24, 40, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 24, 40, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: -1;
}
[data-theme="neon"] .site-bg-grid {
  background-image: linear-gradient(rgba(124, 142, 176, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 142, 176, 0.08) 1px, transparent 1px);
}

 .site-header {
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(18, 28, 44, 0.92), rgba(29, 41, 57, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
[data-theme="neon"] .site-header {
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.92));
  border-bottom: 1px solid rgba(130, 145, 175, 0.25);
}

.navbar-brand { color: #fff; }
.navbar-brand strong { display: block; font-size: 1.04rem; line-height: 1.1; }
.navbar-brand small { font-size: 0.75rem; color: #cbd5e1; }
.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
[data-theme="neon"] .brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.nav-link {
  color: #e4e7ec;
  font-weight: 600;
  border-radius: 10px;
  padding: .56rem .9rem !important;
}
.nav-link:hover, .nav-link:focus { color: #fff; background: rgba(255, 255, 255, 0.08); }
[data-theme="neon"] .nav-link:hover,
[data-theme="neon"] .nav-link:focus { background: rgba(125, 142, 171, 0.18); }

.btn-cta {
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #ff6b00);
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.35);
}
.btn-cta:hover { color: #fff; transform: translateY(-1px); }
[data-theme="neon"] .btn-cta {
  color: #f6f8fc;
  background: linear-gradient(135deg, #4d74dd, #6d8ee8);
  box-shadow: 0 10px 20px rgba(77, 116, 221, .28);
}

.btn-theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.btn-theme-toggle:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
[data-theme="neon"] .btn-theme-toggle {
  border-color: rgba(145, 158, 183, 0.45);
  box-shadow: none;
}

.main-wrap { min-height: 70vh; }
.hero-panel,
.service-tile,
.machine-card,
.page-hero,
.info-block,
.partner-card,
.contact-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: background .35s ease, border-color .35s ease;
}
.hero-panel { border-radius: 24px; padding: clamp(1.3rem, 2.8vw, 2.2rem); overflow: hidden; position: relative; }
.hero-panel::after { content: ""; position: absolute; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255, 138, 0, .18), transparent 65%); left: -90px; bottom: -120px; }
[data-theme="neon"] .hero-panel::after { background: radial-gradient(circle, rgba(93,137,255,.16), transparent 65%); }

.hero-kicker { display: inline-block; background: #fff7ed; color: #b54708; border: 1px solid #fed7aa; padding: .35rem .8rem; border-radius: 999px; font-weight: 700; }
[data-theme="neon"] .hero-kicker { background: rgba(93,137,255,.14); color: #d7e2ff; border-color: rgba(122,162,255,.35); }

.hero-panel h1,
.section-head h2,
.page-hero h1,
.machine-body h6,
.machine-body h5,
.partner-card h5,
.site-footer h5,
.site-footer h6 { font-family: 'Cairo', sans-serif; font-weight: 800; }
.hero-copy, .section-head p, .page-hero p, .machine-body p { color: var(--muted); }

.hero-card { background: var(--deep); color: #fff; border-radius: 20px; padding: 1.2rem; border: 1px solid rgba(255,255,255,.14); }
.hero-card li { color: #d0d5dd; }
[data-theme="neon"] .hero-card { border-color: rgba(135, 146, 168, .28); }

.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.hero-metrics article { border-radius: 14px; border: 1px solid var(--line); padding: .75rem; text-align: center; background: var(--surface); }
.hero-metrics strong { display: block; color: var(--deep); font-size: 1.5rem; }
[data-theme="neon"] .hero-metrics strong { color: #cfdcff; }
.hero-metrics span { color: var(--muted); font-size: .88rem; }

.section-space { margin-top: clamp(1.7rem, 4vw, 3rem); }
.service-tile { height: 100%; border-radius: 18px; padding: 1rem; }
.service-tile i { width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #ffe4c7, #ffd8a6); color: #b54708; font-size: 1.2rem; }
[data-theme="neon"] .service-tile i { background: linear-gradient(145deg, #607dc9, #7f97d8); color: #f4f7ff; }

.machine-card { height: 100%; border-radius: 18px; overflow: hidden; }
.machine-card img { width: 100%; height: 220px; object-fit: cover; }
.machine-body { padding: 1rem; }
.machine-placeholder { height: 220px; display: grid; place-items: center; font-size: 2rem; color: #98a2b3; background: #f8fafc; }
[data-theme="neon"] .machine-placeholder { background: #121722; color: #aebce0; }
.machine-card-wide img, .machine-card-wide .machine-placeholder { height: 250px; }
.tag { display: inline-block; margin-bottom: .4rem; padding: .2rem .55rem; border-radius: 999px; background: #ecfdf3; color: #027a48; border: 1px solid #abefc6; }
[data-theme="neon"] .tag { background: rgba(93,137,255,.16); color: #dce6ff; border-color: rgba(122,162,255,.35); }

.page-hero { border-radius: 20px; padding: clamp(1.1rem, 3vw, 1.8rem); }
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.timeline-grid article { background: #101828; color: #fff; border-radius: 16px; padding: 1rem; }
.timeline-grid h5 { color: #ffb347; }
[data-theme="neon"] .timeline-grid article { background: #11141b; border: 1px solid rgba(145, 156, 176, .26); }
[data-theme="neon"] .timeline-grid h5 { color: #d5e0ff; }

.info-block, .partner-card, .contact-shell { border-radius: 16px; padding: 1rem; }
.brand-filter { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { text-decoration: none; color: #344054; border: 1px solid #d0d5dd; background: #fff; border-radius: 999px; padding: .45rem .9rem; font-weight: 700; }
.chip.active, .chip:hover { background: #1d2939; color: #fff; border-color: #1d2939; }
[data-theme="neon"] .chip { background: #0b1220; color: #bfdbfe; border-color: #1e293b; }
[data-theme="neon"] .chip.active, [data-theme="neon"] .chip:hover { background: #5d89ff; color: #f2f5ff; border-color: #5d89ff; }

.empty-box { border: 2px dashed #cbd5e1; border-radius: 14px; padding: 2rem; text-align: center; color: #667085; background: #f8fafc; }
[data-theme="neon"] .empty-box { background: #0b1220; border-color: #1e293b; color: #93c5fd; }

.contact-info-card { background: #111827; color: #fff; border-radius: 16px; padding: 1.1rem; height: 100%; }
.contact-info-card li { color: #e4e7ec; }
.contact-info-card i { color: #ffb347; margin-left: .4rem; }
[data-theme="neon"] .contact-info-card { background: #11141b; border: 1px solid rgba(145, 156, 176, .26); }
[data-theme="neon"] .contact-info-card i { color: #b8c9ff; }

.site-footer { background: linear-gradient(135deg, #0b1220, #1d2939); color: #e4e7ec; }
.site-footer hr { border-color: rgba(255,255,255,.2); }
[data-theme="neon"] .site-footer { background: linear-gradient(135deg, #0f1219, #171b24); border-top: 1px solid rgba(140, 152, 176, .2); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  z-index: 1200;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-2px); }

.flash-message { border-radius: 12px; border: none; }
.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(16px); transition: all .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .hero-metrics { grid-template-columns: 1fr; }
}

.hero-slider-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  margin-bottom: 1.1rem;
}
.hero-slider .carousel-item {
  height: clamp(220px, 34vw, 380px);
}
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slider .carousel-caption {
  right: 1rem;
  left: 1rem;
  bottom: .9rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .58));
  border-radius: 12px;
  padding: .6rem .9rem;
}
.hero-slider .carousel-caption p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
}
.hero-slider-wrap .carousel-control-prev,
.hero-slider-wrap .carousel-control-next {
  width: 9%;
}
.hero-slider-empty {
  border: 2px dashed var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
}
@media (max-width: 991px) {
  .hero-slider .carousel-item { height: 260px; }
}
@media (max-width: 576px) {
  .hero-slider-wrap { border-radius: 16px; margin-bottom: .9rem; }
  .hero-slider .carousel-item { height: 190px; }
  .hero-slider .carousel-caption {
    right: .55rem;
    left: .55rem;
    bottom: .55rem;
    padding: .45rem .65rem;
  }
  .hero-slider .carousel-caption p {
    font-size: .84rem;
    line-height: 1.35;
  }
}


/* About page scale-up */
.about-hero {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.about-hero h1 {
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  line-height: 2;
  margin: 0;
}
.about-timeline-wrap {
  max-width: 1120px;
  margin-inline: auto;
  margin-top: clamp(2rem, 4.5vw, 3.4rem);
}
.about-timeline {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.about-timeline article {
  padding: 1.25rem;
  border-radius: 18px;
}
.about-timeline h5 {
  font-size: 1.35rem;
  margin-bottom: .65rem;
}
.about-timeline p {
  margin: 0;
  line-height: 1.8;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .about-hero { padding: 1.1rem; }
  .about-hero p { line-height: 1.85; }
}

.map-frame {
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}




.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: contrast(1.08) saturate(1.08);
}





.brand-marquee-wrap { overflow: hidden; margin-inline: -2px; }
.brand-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(248,250,252,.9));
  box-shadow: var(--shadow);
  direction: ltr;
}
[data-theme="neon"] .brand-marquee {
  background: linear-gradient(180deg, rgba(23,26,33,.95), rgba(17,20,27,.95));
}
.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: max-content;
  padding: .7rem 0;
  animation: brandTicker 30s linear infinite;
  will-change: transform;
}
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-chip-item {
  min-width: 120px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  padding: .2rem .25rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-chip-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-chip-item span {
  font-weight: 700;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.2;
  text-align: center;
}

@keyframes brandTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .brand-chip-item { min-width: 140px; }
  .brand-marquee-track { animation-duration: 28s; }
}






.brand-grid-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: .75rem;
}
.brand-tile {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: .7rem .55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 118px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.brand-tile:hover {
  transform: translateY(-2px);
  border-color: #98a2b3;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.12);
}
.brand-tile.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(255, 138, 0, .2);
}
.brand-tile-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-tile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.brand-tile-name {
  font-weight: 700;
  font-size: .88rem;
  text-align: center;
  line-height: 1.2;
}


.product-details-modal .modal-content {
  border-radius: 16px;
  overflow: hidden;
}
.product-details-modal .modal-body {
  padding: 1rem 1.1rem;
}
.product-detail-media {
  width: 100%;
  height: 320px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-detail-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .product-detail-media {
    height: 230px;
  }
}

.custom-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1400;
}
.custom-modal.is-open {
  display: block;
}
.custom-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 24, 0.56);
}
.custom-modal-dialog {
  position: relative;
  width: min(940px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  margin: 1rem auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 1;
}
.custom-modal-header,
.custom-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.custom-modal-footer {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}
.custom-modal-body {
  padding: 1rem 1.1rem;
}
.custom-modal-close {
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
body.modal-lock {
  overflow: hidden !important;
}

/* Visual upgrade for product details modal */
.custom-modal {
  backdrop-filter: blur(1.5px);
}
.custom-modal-backdrop {
  background: radial-gradient(circle at 15% 15%, rgba(255, 138, 0, 0.14), rgba(7, 11, 20, 0.72));
}
.custom-modal-dialog {
  width: min(980px, calc(100vw - 1.25rem));
  margin: .7rem auto;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, #ffffff 22%);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.38);
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.custom-modal.is-open .custom-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.custom-modal-header {
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(29, 41, 57, 0.97), rgba(15, 23, 42, 0.93));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.custom-modal-header h5 {
  margin: 0;
  color: #f8fafc;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.custom-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background-color .2s ease, color .2s ease;
}
.custom-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.custom-modal-body {
  padding: 1.15rem;
}
.product-detail-media {
  height: clamp(250px, 36vw, 390px);
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-radius: 14px;
}
[data-theme="neon"] .product-detail-media {
  background: linear-gradient(180deg, #141a25, #0f1520);
}
.product-detail-image {
  filter: saturate(1.03) contrast(1.03);
}
#pdBrand {
  display: inline-block;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #b54708;
  border-radius: 999px;
  padding: .18rem .6rem;
  font-weight: 700;
}
[data-theme="neon"] #pdBrand {
  background: rgba(93, 137, 255, .14);
  border-color: rgba(122, 162, 255, .4);
  color: #dbe7ff;
}
#pdDescription {
  line-height: 1.95;
  color: var(--muted);
}
.custom-modal-footer {
  padding: .9rem 1.15rem;
  background: color-mix(in srgb, var(--surface) 92%, #f8fafc 8%);
}
@media (max-width: 768px) {
  .custom-modal-dialog {
    width: calc(100vw - .75rem);
    margin: .35rem auto;
    border-radius: 16px;
  }
  .custom-modal-header,
  .custom-modal-body,
  .custom-modal-footer {
    padding: .85rem;
  }
}

/* Home map section upgrade */
.home-map-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.home-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(12, 18, 31, .98), rgba(25, 36, 54, .94));
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.home-map-head h2 {
  margin: 0;
  color: #f8fafc;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
}
.home-map-head p {
  margin: .35rem 0 0;
  color: #c7d2e4;
}
.home-map-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255, 138, 0, .16);
  border: 1px solid rgba(255, 176, 74, .4);
  color: #ffd7aa;
  font-weight: 700;
  white-space: nowrap;
}
.home-map-frame {
  height: clamp(300px, 38vw, 470px);
  border: 0;
  border-radius: 0;
}
.home-map-frame iframe {
  filter: saturate(1.05) contrast(1.02);
}
[data-theme="neon"] .home-map-head {
  background: linear-gradient(135deg, rgba(8, 12, 20, .98), rgba(15, 23, 42, .95));
}
[data-theme="neon"] .home-map-chip {
  background: rgba(93, 137, 255, .16);
  border-color: rgba(122, 162, 255, .44);
  color: #dbe7ff;
}
@media (max-width: 768px) {
  .home-map-head {
    flex-direction: column;
    align-items: flex-start;
    padding: .9rem;
  }
  .home-map-frame {
    height: 300px;
  }
}

.home-video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(.9rem, 2vw, 1.2rem);
}
.home-video-head {
  margin-bottom: .8rem;
}
.home-video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1220;
}
.home-video-frame video {
  width: 100%;
  max-height: clamp(260px, 48vw, 560px);
  display: block;
  background: #000;
}
[data-theme="neon"] .home-video-frame {
  border-color: rgba(145, 156, 176, .35);
}
.home-video-title {
  margin: .7rem 0 0;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.home-video-carousel .carousel-indicators {
  margin-bottom: .2rem;
}
.home-video-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.65);
}
.home-video-carousel .carousel-control-prev,
.home-video-carousel .carousel-control-next {
  width: 8%;
}
.home-video-carousel .carousel-control-prev-icon,
.home-video-carousel .carousel-control-next-icon {
  background-color: rgba(15, 23, 42, .55);
  border-radius: 10px;
  background-size: 62% 62%;
}
[data-theme="neon"] .home-video-title {
  color: #dbe7ff;
}


/* Motion layer for all cards */
.hero-panel,
.hero-card,
.service-tile,
.machine-card,
.page-hero,
.info-block,
.partner-card,
.contact-shell,
.home-map-card,
.home-video-card,
.brand-tile,
.brand-chip-item,
.timeline-grid article,
.hero-metrics article,
.contact-info-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
  will-change: transform;
}

.hero-panel:hover,
.hero-card:hover,
.service-tile:hover,
.machine-card:hover,
.page-hero:hover,
.info-block:hover,
.partner-card:hover,
.contact-shell:hover,
.home-map-card:hover,
.home-video-card:hover,
.brand-tile:hover,
.brand-chip-item:hover,
.timeline-grid article:hover,
.hero-metrics article:hover,
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.16);
}

[data-theme="neon"] .hero-panel:hover,
[data-theme="neon"] .hero-card:hover,
[data-theme="neon"] .service-tile:hover,
[data-theme="neon"] .machine-card:hover,
[data-theme="neon"] .page-hero:hover,
[data-theme="neon"] .info-block:hover,
[data-theme="neon"] .partner-card:hover,
[data-theme="neon"] .contact-shell:hover,
[data-theme="neon"] .home-map-card:hover,
[data-theme="neon"] .home-video-card:hover,
[data-theme="neon"] .brand-tile:hover,
[data-theme="neon"] .brand-chip-item:hover,
[data-theme="neon"] .timeline-grid article:hover,
[data-theme="neon"] .hero-metrics article:hover,
[data-theme="neon"] .contact-info-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

/* soft pulse on icon cards */
.service-tile i,
.brand-tile-icon,
.contact-info-card i {
  transition: transform .24s ease;
}
.service-tile:hover i,
.brand-tile:hover .brand-tile-icon,
.contact-info-card:hover i {
  transform: scale(1.08);
}

/* smoother reveal offsets */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px) scale(.992);
  transition: opacity .62s ease, transform .62s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

