:root {
  --blue: #082b86;
  --blue-2: #0d3ea3;
  --blue-3: #49512a;
  --gold: #d99a27;
  --gold-2: #f0bd4c;
  --silver: #c8ced8;
  --ink: #041136;
  --muted: #667085;
  --line: rgba(8, 43, 134, .16);
  --white: #fff;
  --glass: rgba(255, 255, 255, .72);
  --shadow: 0 24px 70px rgba(4, 17, 54, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f7f9fe;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; padding: 110px 0; }
.section-compact { padding: 80px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b89555;/*var(--blue-2);*/
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 2rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}
.section-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
  margin: 14px 0 18px;
}
.section-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--silver), var(--blue-2));
  z-index: 1100;
}
.site-header {
  padding: 0px 0;
  transition: .35s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 45px rgba(4, 17, 54, .14);
  backdrop-filter: blur(18px);
  padding: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.site-logo {
  width: auto;
  height: 120px;
  max-width: 190px;
  object-fit: contain;
  border-radius: 10px;
}
.site-header.is-scrolled .site-logo {height: 85px;border-radius: 0;}
.footer-logo {
  height: 75px;
  max-width: 220px;
  filter: none;
  border-radius: 10px;
}
.navbar-nav {gap: 3px;}
.nav-link {
  position: relative;
  color: #fff;
  font-weight: 800;
  padding: 12px 16px !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
  background: var(--gold);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--blue-3) !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  padding-inline: 20px !important;
  box-shadow: 0 10px 26px rgba(217, 154, 39, .28);
}
.nav-cta::after { display: none; }
.nav-arrow {
  margin-left: 7px;
  font-size: .68rem;
  transition: transform .22s ease;
}
.nav-dropdown { position: relative; }
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 1000;
  width: 280px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 10px;
}
.nav-submenu a {
  text-transform: capitalize;
  display: block;
  padding: 11px 13px;
  border-radius: 7px;
  color: #172033;
  font-size: .9rem;
  font-weight: 700;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible { color: var(--gold); background: rgba(217,154,39,.08); }
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown:focus-within .nav-arrow { transform: rotate(180deg); }
.mega-trigger { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: .25s ease;
}
.mega-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-label {
  display: block;
  color: var(--blue-2);
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}
.mega-menu a {
  display: block;
  padding: 10px 0;
  color: #172033;
  font-weight: 700;
}
.mega-menu a:hover { color: var(--gold); transform: translateX(4px); }
.navbar-toggler {
  width: 46px;
  height: 42px;
  border: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.navbar-toggler span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}
.mobile-panel { width: min(360px, 92vw) !important; }
.mobile-panel .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-panel .offcanvas-body > a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-parent { display: flex; align-items: center; }
.mobile-nav-parent > a { flex: 1; padding: 15px 0; font-weight: 800; }
.mobile-nav-parent button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
}
.mobile-nav-parent button i { transition: transform .22s ease; }
.mobile-nav-parent button[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-submenu { padding: 0 0 10px 14px; }
.mobile-submenu a { display: block; padding: 10px 12px; color: #374151; font-weight: 700; }
.mobile-submenu a:hover { color: var(--gold); }
.mobile-actions { margin-top: 22px; display: grid; gap: 12px; }
.btn {
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 850;
  border-width: 1px;
}
.btn-primary {
  color: var(--blue-3);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(217,154,39,.26);
}
.btn-outline-light, .btn-outline-dark { backdrop-filter: blur(10px); }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 10, 37, .76) 0%, rgba(2, 10, 37, .48) 45%, rgba(2, 10, 37, .08) 78%),
    url('../images/hass-hero-banner.png') center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000000, transparent 82%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #f7f9fe);
  pointer-events: none;
}
.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  filter: blur(.2px);
  animation: floatParticle var(--duration) ease-in-out infinite alternate;
}
@keyframes floatParticle {
  to { transform: translate3d(var(--tx), -38px, 0); opacity: .35; }
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: .94;
  font-weight: 950;
  letter-spacing: 0;
  margin: 18px 0 24px;
}
.hero p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}
.typed-word {
  color: var(--gold-2);
  position: relative;
  display: inline-block;
  min-width: 4.8em;
}
.typed-word::after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .82em;
  margin-left: .08em;
  background: var(--silver);
  animation: caretBlink .8s steps(1) infinite;
  vertical-align: -0.06em;
}
@keyframes caretBlink {
  50% { opacity: 0; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-service-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-service-rail span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: .9rem;
}
.hero-service-rail i { color: var(--gold-2); }
.hero-glass {
  position: absolute;
  right: 7vw;
  bottom: 8vh;
  width: min(420px, 38vw);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}
.hero-tech-card {
  overflow: hidden;
}
.hero-tech-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(240,189,76,.32), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.tech-card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.tech-card-top span {
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 900;
}
.tech-card-top strong {
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: 0;
}
.hero-meter {
  position: relative;
  display: grid;
  gap: 14px;
}
.meter-row { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.86); font-weight: 800; }
.meter-row i { color: var(--gold-2); }
.signal-bars {
  position: relative;
  height: 90px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.signal-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, var(--blue-2), var(--gold-2));
  box-shadow: 0 0 22px rgba(240,189,76,.18);
  transform-origin: bottom;
  animation: signalPulse 1.8s ease-in-out infinite alternate;
}
.signal-bars span:nth-child(2) { animation-delay: .12s; }
.signal-bars span:nth-child(3) { animation-delay: .24s; }
.signal-bars span:nth-child(4) { animation-delay: .36s; }
.signal-bars span:nth-child(5) { animation-delay: .48s; }
@keyframes signalPulse {
  to { transform: scaleY(.72); opacity: .72; }
}
.solution-flow {
  margin-top: -52px;
  padding-top: 0;
  z-index: 3;
}
.flow-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.flow-copy,
.flow-card {
  border: 1px solid rgba(8,43,134,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.flow-copy { padding: 28px; }
.flow-copy h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  font-weight: 950;
  margin: 12px 0 0;
}
.flow-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,154,39,.5);
  box-shadow: 0 26px 70px rgba(8,43,134,.16);
}
.flow-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-3);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 1.35rem;
}
.flow-card strong {
  font-size: 1.12rem;
  font-weight: 950;
}
.flow-card span {text-transform: capitalize;color: var(--muted);line-height: 1.65;}
.about-visual, .page-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 420px;
  box-shadow: var(--shadow);
}
.about-visual img, .page-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .7s ease;
}
.about-visual:hover img, .product-card:hover img, .page-visual:hover img { transform: scale(1.06); }
.glass-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 8px;
  color: #fff;
  background: rgba(2,6,23,.62);
  backdrop-filter: blur(14px);
}
.division-card, .product-card, .service-card, .why-card, .testimonial-card, .contact-card {
  position: relative;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 34px rgba(15,23,42,.06);
  backdrop-filter: blur(16px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.division-card::before, .product-card::before, .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(217,154,39,.65), transparent, rgba(200,206,216,.52));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .28s ease;
  pointer-events: none;
}
.division-card:hover, .product-card:hover, .service-card:hover, .why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217,154,39,.42);
  box-shadow: 0 25px 70px rgba(8,43,134,.18);
}
.division-card:hover::before, .product-card:hover::before, .service-card:hover::before { opacity: 1; }
.division-card { padding: 34px; min-height: 300px; }
.division-card i, .service-card i, .why-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  font-size: 1.45rem;
  margin-bottom: 24px;
  transition: .25s ease;
}
.service-card:hover i { transform: rotate(-8deg) scale(1.08); }
.division-card h3, .product-card h3, .service-card h3, .why-card h3 { font-size: 1.35rem; font-weight: 900; }
.division-card p, .product-card p, .service-card p, .why-card p { color: var(--muted); line-height: 1.7; }
.partner-card {
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    linear-gradient(135deg, rgba(240,189,76,.1), transparent 44%);
}
.partner-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.partner-card-head > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  margin: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  font-size: 1.45rem;
}
.partner-card-head span {
  padding: 8px 12px;
  border: 1px solid rgba(217,154,39,.3);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(217,154,39,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.partner-list-title {
  display: block;
  margin-top: 24px;
  color: var(--blue-3);
  font-size: .84rem;
  font-weight: 950;
  text-transform: uppercase;
}
.partner-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.partner-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(8,43,134,.12);
  border-radius: 8px;
  color: #26364f;
  background: #fff;
  font-weight: 760;
  line-height: 1.35;
}
.partner-card .partner-list i {
  width: auto;
  height: auto;
  display: inline-block;
  flex: 0 0 auto;
  margin: 4px 0 0;
  border-radius: 0;
  color: var(--gold);
  background: none;
  font-size: .86rem;
}
.product-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform .7s ease;
}
.product-body { padding: 26px; }
.feature-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.feature-list li { color: #344054; }
.feature-list i { color: var(--gold); margin-right: 8px; }
.series-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.series-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217,154,39,.13);
  color: var(--blue);
  font-weight: 800;
  font-size: .86rem;
}
.service-card, .why-card { padding: 28px; }
.dark-band {
  color: #fff;
  background: linear-gradient(rgb(78 86 48), rgba(4, 17, 54, .92)), url(https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80) center / cover fixed;
}
.dark-band .section-text, .dark-band p { color: rgba(255,255,255,.72); }
.counter-box {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.counter-box strong {
  display: block;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 950;
  color: var(--gold-2);
}
.counter-box span { color: rgba(255,255,255,.75); font-weight: 800; }
.industry-slide {
  min-height: 180px;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgba(4,17,54,.12), rgba(4,17,54,.82)), var(--bg) center/cover;
}
.industry-slide h3 { font-weight: 900; margin: 0; }
.services-carousel-section { overflow: hidden; background: #f1f4fa; }
.services-section-heading { margin-bottom: 46px; }
.division-carousel + .division-carousel {margin-top: 0;padding-top: 0;border-top: 1px solid var(--line);}
.carousel-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.carousel-heading h3 { margin: 7px 0 0; color: var(--blue-3); font-size: clamp(1.55rem,3vw,2.5rem); font-weight: 900; }
.division-number { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-carousel-controls { display: flex; gap: 10px; flex: 0 0 auto; }
.service-carousel-controls button { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: #fff; transition: .22s ease; }
.service-carousel-controls button:hover { color: var(--blue-3); border-color: var(--gold); background: var(--gold-2); }
.service-swiper { overflow: visible; padding-bottom: 48px; }
.service-image-card { position: relative; display: block; overflow: hidden; height: 280px; border-radius: 10px; background: var(--blue-3); box-shadow: 0 14px 34px rgba(4,17,54,.12); }
.service-image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,17,54,.04) 35%,rgba(4,17,54,.9) 100%); }
.service-image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-image-card:hover img { transform: scale(1.07); }
.service-image-card.no-image { display: grid; place-items: center; background: linear-gradient(145deg,var(--blue),var(--blue-3)); }
.service-image-card.no-image > i { color: rgba(240,189,76,.8); font-size: 4.5rem; transform: translateY(-18px); }
.service-image-card span {text-transform: capitalize;position: absolute;right: 24px;bottom: 24px;left: 24px;z-index: 1;color: #fff;font-size: clamp(1.2rem,2vw,1.65rem);font-weight: 900;line-height: 1.08;}
.service-pagination { bottom: 0 !important; }
.service-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: #a5acb8; opacity: .6; }
.service-pagination .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }
.testimonial-card { padding: 32px; }
.testimonial-card p { color: #344054; line-height: 1.8; }
.testimonial-card strong { display: block; margin-top: 18px; }
.swiper-button-next, .swiper-button-prev { color: var(--gold); }
.swiper-pagination-bullet-active { background: var(--gold); }
.contact-section { background: #edf2fb; }
.contact-card { padding: 34px; }
.form-floating > .form-control, .form-floating > .form-select {
  border: 1px solid rgba(8,43,134,.18);
  border-radius: 8px;
  min-height: 58px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(217,154,39,.16);
}
.hass-form .form-control, .hass-form .form-select { transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.hass-form .is-valid, .hass-form.was-validated .form-control:valid, .hass-form.was-validated .form-select:valid { border-color: #138a58; }
.hass-form .is-invalid, .hass-form.was-validated .form-control:invalid, .hass-form.was-validated .form-select:invalid { border-color: #c23b3b; }
.hass-form .invalid-feedback { font-size: .82rem; font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.map-frame {
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
  height: 100%;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.15); }
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: end;
  padding: 150px 0 80px;
  color: #fff;
  background: linear-gradient(90deg, rgb(69 77 36), rgba(8, 43, 134, .72)), var(--page-bg) center / cover;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 950;
  line-height: 1;
}
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 1.18rem; line-height: 1.75; }
.product-page-hero { min-height: 68vh; }
.product-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 22px; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 700; }
.product-breadcrumb a:hover { color: var(--gold-2); }
.product-breadcrumb i { font-size: .58rem; }
.product-feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg,var(--blue),var(--blue-3));
  box-shadow: var(--shadow);
}
.product-feature-panel::after { content: ""; position: absolute; width: 230px; height: 230px; right: -70px; bottom: -90px; border: 34px solid rgba(240,189,76,.12); border-radius: 50%; }
.product-feature-panel > i { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 8px; color: var(--blue-3); background: linear-gradient(135deg,var(--gold-2),var(--gold)); font-size: 1.8rem; }
.product-feature-panel span { color: var(--gold-2); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.product-feature-panel h2 { margin: 8px 0 14px; font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 900; }
.product-feature-panel p { position: relative; z-index: 1; color: rgba(255,255,255,.72); line-height: 1.7; }
.product-information { background: #edf2fb; }
.product-gallery-section { background: #fff; }
.product-media-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.product-media-grid.single { grid-template-columns: minmax(0,760px); }
.product-media-card { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 34px rgba(15,23,42,.07); }
.product-media-card img { width: 100%; height: 360px; object-fit: contain; padding: 16px; background: #fff; transition: transform .4s ease; }
.product-media-card:hover img { transform: scale(1.025); }
.product-media-card figcaption { padding: 14px 18px; border-top: 1px solid var(--line); color: #475467; font-size: .9rem; font-weight: 700; }
.product-info-card { height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 34px rgba(15,23,42,.06); }
.product-info-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 8px; color: var(--blue-3); background: linear-gradient(135deg,var(--gold-2),var(--gold)); }
.product-info-card h2 { margin-bottom: 20px; font-size: 1.3rem; font-weight: 900; }
.product-info-card ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.product-info-card li {text-transform: capitalize;display: flex;align-items: flex-start;gap: 10px;color: #475467;line-height: 1.55;}
.product-info-card li i { margin-top: 5px; color: var(--gold); font-size: .72rem; }
.product-feature-section { background: #fff; }
.product-feature-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.product-feature-grid-row { display: flex; flex-wrap: nowrap; align-items: stretch; overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; }
.product-feature-grid-row .product-feature-card { width: auto; min-width: 260px; flex: 0 0 auto; }
.product-feature-card { min-height: 100%; padding: 26px; }
.product-feature-card h2,
.product-spec-card h2 { font-size: 1.12rem; line-height: 1.25; }
.product-spec-section { background: #f7f9fe; }
.product-spec-card { min-height: 100%; padding: 26px; }
.site-footer {
  padding: 82px 0 28px;
  color: rgba(255,255,255,.75);
  background: var(--blue-3);
}
.footer-brand { color: #fff; margin-bottom: 20px; }
.footer-company-name,.footer-company-ar { display: block; color: #fff; margin-bottom: 7px; }
.footer-company-ar { width: fit-content; font-size: 1.05rem; }
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.68);
  margin: 10px 0;
}
.site-footer a:hover { color: #fff; }
.footer-contact a, .footer-contact address { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact address { margin: 10px 0; color: rgba(255,255,255,.68); }
.footer-contact i { width: 15px; margin-top: 3px; color: var(--gold-2); text-align: center; }
.footer-contact span { overflow-wrap: anywhere; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.newsletter {
  margin-top: 48px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.newsletter strong { display: block; color: #fff; }
.newsletter-form {
  display: flex;
  width: min(390px, 100%);
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  border: 0;
  padding: 14px 18px;
  min-width: 0;
}
.newsletter-form button {
  width: 52px;
  border: 0;
  color: var(--blue-3);
  background: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.site-header .nav-link.active:not(.nav-cta) { color: #fff;/*var(--blue);*/ }
.site-header .nav-link.active:not(.nav-cta)::after { transform: scaleX(1); }
.site-footer h2 { color: #fff; font-size: 1rem; font-weight: 900; margin-bottom: 16px; }
.site-footer address { line-height: 1.7; }
.dark-band .service-card { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.dark-band .service-card p { color: rgba(255,255,255,.75); }
.dark-band .service-card i { color: var(--blue-3); background: linear-gradient(135deg,var(--gold-2),var(--gold)); }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-panel .section-title { font-size: clamp(1.9rem,3vw,3rem); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }
.content-note { color: var(--muted); font-size: .84rem; line-height: 1.6; }
.service-detail { padding: 36px; scroll-margin-top: 100px; }
.service-detail h2 { font-size: 1.55rem; font-weight: 900; }
.service-detail .content-note i { width: auto; height: auto; display: inline; margin: 0 5px 0 0; color: var(--gold); background: none; font-size: inherit; }
.mission-card { height: 100%; padding: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.08); }
.mission-card i { color: var(--gold-2); font-size: 2rem; margin-bottom: 20px; }
.mission-card h2 { font-weight: 900; }
.quality-promise { padding-top: 0; background: #f7f9fe; }
.quality-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgb(67 75 34), rgb(105 111 81)), url(https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80) center / cover;
  box-shadow: var(--shadow);
}
.quality-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240,189,76,.18), transparent 52%);
  pointer-events: none;
}
.quality-copy,
.quality-lines { position: relative; z-index: 1; }
.quality-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 950;
}
.quality-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}
.quality-lines {
  display: grid;
  gap: 14px;
}
.quality-lines span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  font-size: 1.06rem;
  font-weight: 900;
}
.quality-lines i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-3);
  background: linear-gradient(135deg,var(--gold-2),var(--gold));
}
.industry-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-grid span { padding: 14px 20px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800; }
.product-category { scroll-margin-top: 80px; }
.product-category:nth-of-type(odd) { background: #edf2fb; }
.category-heading { display: flex; align-items: center; gap: 22px; margin-bottom: 32px; }
.category-heading .section-title { margin-bottom: 0; }
.category-icon { flex: 0 0 72px; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 8px; color: var(--blue-3); background: linear-gradient(135deg,var(--gold-2),var(--gold)); font-size: 1.6rem; }
.product-detail { display: flex; flex-direction: column; }
.product-detail > img { object-fit: contain; padding: 12px; background: #fff; }
.product-detail .product-body { display: flex; flex-direction: column; flex: 1; }
.product-detail .btn { align-self: flex-start; margin-top: auto !important; }
.product-placeholder { height: 235px; display: grid; place-items: center; align-content: center; gap: 12px; color: #718096; background: linear-gradient(135deg,#e8edf6,#d5deee); }
.product-placeholder i { font-size: 2.2rem; }
.product-placeholder span { font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.gallery-filters button { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: #fff; font-weight: 800; }
.gallery-filters button.active,.gallery-filters button:hover { color: var(--blue-3); border-color: var(--gold); background: var(--gold-2); }
.gallery-card { height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 34px rgba(15,23,42,.06); }
.gallery-placeholder { height: 250px; display: grid; place-items: center; align-content: center; gap: 12px; color: #fff; background: linear-gradient(135deg,var(--blue),var(--blue-3)); }
.gallery-placeholder i { color: var(--gold-2); font-size: 2.4rem; }
.gallery-placeholder span { font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.gallery-caption { padding: 24px; }
.gallery-caption small { color: var(--blue-2); font-weight: 900; text-transform: uppercase; }
.gallery-caption h2 { margin: 8px 0; font-size: 1.3rem; font-weight: 900; }
.gallery-caption p { margin: 0; color: var(--muted); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 20px; }
.company-name-ar { width: fit-content; margin: -8px 0 18px; color: var(--blue-2); font-size: 1.15rem; font-weight: 800; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list li > i { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 8px; color: var(--blue-3); background: var(--gold-2); }
.contact-list strong { display: block; }
.contact-list address { margin: 0; color: var(--muted); }
.contact-social a { color: #fff; background: var(--blue); }
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: grid;
  gap: 10px;
}
.floating-contact a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 15px 34px rgba(0,0,0,.22);
}
.floating-contact .whatsapp { background: #19a463; }
.floating-contact .call { background: var(--blue); }
.site-header.is-scrolled .nav-link{
  color:black;
}
.site-header.is-scrolled .nav-link.active:not(.nav-cta){
  color:black;
}

i.fa-brands.fa-whatsapp {
    font-size: xx-large;
}
