@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #0066d6;
  --primary-rgb: 0, 102, 214;
  --navy: #071a35;
  --navy-soft: #123d6a;
  --accent: #f58220;
  --white: #ffffff;
  --light: #f8fbff;
  --muted: #5d708c;
  --border: #dceaf7;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --shadow-soft: 0 15px 40px rgba(15, 23, 42, 0.09);
  --radius: 22px;
  --radius-sm: 14px;
  --font: "Plus Jakarta Sans", sans-serif;
}

.nowrap {
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-light {
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--primary-rgb), 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 20% 18%, rgba(56, 189, 248, 0.18), transparent 28%),
    linear-gradient(135deg, #08111f 0%, #0f172a 55%, #111f38 100%);
  color: var(--white);
}

.section-title {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .eyebrow {
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.04;
  font-weight: 750;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  line-height: 1.15;
  font-weight: 730;
}

h3 {
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.section-dark p,
.hero p,
.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  padding: 11px 21px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 38px rgba(var(--primary-rgb), 0.28);
}

.btn-light-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-light-outline:hover {
  color: var(--navy);
  background: var(--white);
}

.btn-soft {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
}

.site-navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1050;
  padding: 18px 0;
  transition: all 0.32s ease;
}

.site-navbar.scrolled,
.site-navbar.inner {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.09);
}

.site-navbar.inner {
  position: sticky;
  top: 0;
}

.nav-shell {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  padding: 0 18px 0 22px;
  transition: all 0.32s ease;
}

.site-navbar.scrolled .nav-shell,
.site-navbar.inner .nav-shell {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.25);
}

.navbar-brand {
  min-width: 238px;
  padding: 0;
  margin-right: 22px;
  transition: transform 0.25s ease;
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.navbar-brand .brand-mark,
.navbar-brand .brand-text,
.navbar-brand::before {
  display: none;
}

.site-logo {
  display: block;
  width: min(238px, 48vw);
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  color: var(--white);
  font-weight: 800;
  line-height: 1.05;
  font-size: 0.98rem;
}

.site-navbar.scrolled .brand-text,
.site-navbar.inner .brand-text {
  color: var(--navy);
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.nav-link {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 650;
  font-size: 0.88rem;
  padding: 24px 9px !important;
}

.site-navbar.scrolled .nav-link,
.site-navbar.inner .nav-link {
  color: var(--navy);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  width: min(980px, calc(100vw - 36px));
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translate(-50%, 16px);
  visibility: hidden;
  transition: all 0.24s ease;
}

.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-title {
  color: var(--primary);
  font-weight: 750;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.84rem;
  transition: all 0.22s ease;
}

.mega-link i {
  color: var(--primary);
}

.mega-link:hover {
  background: rgba(var(--primary-rgb), 0.09);
  transform: translateX(4px);
}

.mobile-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--navy);
}

.site-navbar.scrolled .mobile-toggle,
.site-navbar.inner .mobile-toggle {
  color: var(--navy);
  background: rgba(15, 23, 42, 0.06);
}

.hero {
  height: 100vh;
  min-height: 690px;
  color: var(--white);
  overflow: hidden;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 25, 0.201) 0%, rgba(15, 23, 42, 0.5) 42%, rgba(15, 23, 42, 0.366) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.337), rgba(15, 23, 42, 0.37));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-top: 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  backdrop-filter: blur(16px);
  font-weight: 550;
  font-size: 0.68rem;
}

.hero p {
  font-size: clamp(0.98rem, 1.45vw, 1.13rem);
  max-width: 720px;
  margin: 22px 0 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.hero-metric {
  min-width: 158px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-metric strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 750;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.78rem;
}

.hero .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 20px); }
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: -28px;
  bottom: 30px;
  max-width: 270px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.counter-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.counter-card strong {
  font-size: 1.7rem;
  color: var(--primary);
  font-weight: 750;
}

.counter-card span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card,
.product-card,
.industry-card,
.feature-card,
.team-card,
.opening-card,
.value-card,
.client-card,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.service-card:hover,
.product-card:hover,
.industry-card:hover,
.feature-card:hover,
.team-card:hover,
.opening-card:hover,
.value-card:hover,
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  border-color: rgba(var(--primary-rgb), 0.28);
}

.service-card,
.product-card {
  display: flex;
  flex-direction: column;
}

.service-img,
.product-img,
.gallery-img {
  height: 215px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.service-card:hover .service-img,
.product-card:hover .product-img,
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.service-body,
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-body p,
.product-body p {
  flex: 1;
}

.service-body .btn,
.product-card-action {
  align-self: flex-start;
  margin-top: auto;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.25);
  font-size: 1.35rem;
  transition: transform 0.3s ease;
}

.service-card:hover .icon-box,
.feature-card:hover .icon-box {
  transform: rotate(-6deg) scale(1.08);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.product-img {
  object-fit: contain;
  padding: 18px;
}

.product-overlay {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.74);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card-action {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-card {
  height: 100%;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card p {
  margin-bottom: 0;
}

.feature-card:hover {
  box-shadow: 0 0 45px rgba(56, 189, 248, 0.18);
}

.industry-card,
.value-card {
  height: 100%;
  padding: 25px;
}

.industry-card i {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 18px;
}

.logo-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-strip {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: logoMove 28s linear infinite;
}

.logo-item {
  min-width: 220px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
  filter: none;
  opacity: 1;
  transition: all 0.25s ease;
}

.logo-item:hover {
  filter: none;
  opacity: 1;
  color: var(--primary);
  transform: translateY(-4px);
}

.logo-item img {
  width: 82%;
  max-width: 210px;
  height: 70px;
  display: block;
  object-fit: contain;
}

@keyframes logoMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-wrap {
  position: relative;
  background:
    linear-gradient(rgba(8, 17, 31, 0.85), rgba(8, 17, 31, 0.85)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.testimonial-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.quote-icon {
  color: var(--accent);
  font-size: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 650;
  font-size: 0.9rem;
  transition: all 0.22s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item.tall .gallery-img {
  height: 430px;
}

.gallery-item .gallery-img {
  height: 300px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.88));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.cta-banner {
  border-radius: 34px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.4), transparent 25%),
    linear-gradient(135deg, var(--primary), #083f9f 55%, var(--navy));
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.form-control,
.form-select {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 12px 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.12);
}

.map-frame {
  width: 100%;
  height: 338px;
  border: 0;
  border-radius: 24px;
  filter: saturate(0.9);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}

.contact-list i {
  color: var(--primary);
  margin-top: 5px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.36);
  font-size: 1.7rem;
}

.footer {
  padding: 90px 0 28px;
  color: var(--white);
  background: #070d19;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.footer-brand img {
  width: 205px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer h5 {
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 11px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.qr-placeholder {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 50%, transparent 50%) 0 0 / 18px 18px,
    rgba(255, 255, 255, 0.06);
}

.page-hero {
  min-height: 420px;
  display: flex;
  align-items: end;
  color: var(--white);
  padding: 160px 0 82px;
  background:
    linear-gradient(90deg, rgba(6, 12, 25, 0.9), rgba(15, 23, 42, 0.58)),
    var(--page-bg, url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.breadcrumb-modern {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0.12);
}

.process-step {
  height: 100%;
  padding: 25px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--primary);
  font-weight: 750;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  font-weight: 700;
  border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0;
}

.job-meta span,
.spec-chip {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.09);
  font-weight: 650;
  font-size: 0.78rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 10, 20, 0.88);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.service-detail {
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-detail + .service-detail {
  margin-top: 24px;
}

.cert-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px dashed rgba(var(--primary-rgb), 0.35);
  border-radius: 22px;
  background: rgba(var(--primary-rgb), 0.05);
  text-align: center;
}

.skip-hidden {
  display: none !important;
}

.service-page-hero {
  min-height: 430px;
}

.service-detail-page {
  padding: 74px 0 90px;
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--primary-rgb), 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.service-sidebar {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.service-sidebar nav {
  display: grid;
  margin-top: 8px;
  max-height: 62vh;
  overflow-y: auto;
  padding-right: 4px;
}

.service-sidebar nav::-webkit-scrollbar {
  width: 5px;
}

.service-sidebar nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.35);
}

.service-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--navy);
  font-weight: 650;
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.service-sidebar a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.service-sidebar a.active-service {
  color: var(--primary);
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.09), transparent);
  border-radius: 12px;
  border-bottom-color: transparent;
}

.service-sidebar a i {
  color: var(--primary);
  font-size: 0.76rem;
}

.sidebar-cta {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 14%, rgba(56, 189, 248, 0.42), transparent 32%),
    linear-gradient(135deg, var(--primary), var(--navy));
}

.sidebar-cta h3 {
  font-size: 1.08rem;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.service-intro-card,
.service-long-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-intro-card {
  padding: 36px;
  margin-bottom: 28px;
}

.service-intro-card h2 {
  max-width: 800px;
}

.service-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.service-stats-row div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(var(--primary-rgb), 0.07);
}

.service-stats-row strong {
  display: block;
  color: var(--primary);
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1;
}

.service-stats-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.service-long-card {
  scroll-margin-top: 115px;
  margin-bottom: 28px;
}

.service-long-card > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.service-long-body {
  padding: 36px;
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.09);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-long-body h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.service-info-grid > div {
  padding: 24px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.service-info-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.service-info-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-info-grid li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.service-info-grid li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  font-size: 0.78rem;
}

.service-process-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}

.service-process-strip span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(15, 23, 42, 0.06);
  font-size: 0.82rem;
  font-weight: 650;
}

.single-service-card {
  margin-bottom: 28px;
}

.single-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(var(--primary-rgb), 0.14);
}

.single-service-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.single-service-footer p {
  margin: 0;
}

.service-faq-mini {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.product-page-hero {
  min-height: 430px;
}

.product-detail-card > img {
  object-fit: contain;
  padding: 34px;
  background: #f8fafc;
}

.product-spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.product-spec-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #f8fafc;
}

.product-spec-table span {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-spec-table strong {
  color: var(--navy);
  font-size: 0.86rem;
  text-align: right;
}

.product-directory-grid .product-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/* Premium vibrant enterprise redesign layer */
:root {
  --primary: #0066d6;
  --primary-rgb: 0, 102, 214;
  --secondary: #f58220;
  --teal: #eaf5ff;
  --green: #1e88e5;
  --navy: #071a35;
  --navy-soft: #0e2a52;
  --light: #f5f9ff;
  --muted: #5d6f88;
  --border: rgba(7, 26, 53, 0.1);
  --accent-gradient: linear-gradient(135deg, #0066d6 0%, #1e88e5 100%);
  --shadow: 0 24px 70px rgba(7, 26, 53, 0.16);
  --shadow-soft: 0 18px 45px rgba(7, 26, 53, 0.1);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 42%, #eef8ff 100%);
}

.section {
  overflow: hidden;
}

main > .section:nth-of-type(odd) {
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.055), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

main > .section:nth-of-type(even),
.section-light {
  background:
    linear-gradient(120deg, rgba(0, 174, 239, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(0, 194, 168, 0.1), transparent 38%),
    #f5f9ff;
}

main > .section:nth-of-type(5),
.section-dark {
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.34), transparent 34%),
    linear-gradient(315deg, rgba(0, 194, 168, 0.24), transparent 40%),
    linear-gradient(135deg, #06152b 0%, #071a35 52%, #09284f 100%);
}

main > .section:nth-of-type(8),
.cta-banner {
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.95), rgba(0, 174, 239, 0.88) 52%, rgba(0, 194, 168, 0.94)),
    linear-gradient(180deg, #0066d6, #1e88e5);
}

.section-title h2,
.service-long-body h2,
.page-hero h1 {
  position: relative;
}

.section-title h2::after,
.service-long-body h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--accent-gradient);
}

.section-title.center h2::after {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  color: var(--primary);
}

.btn-primary,
.btn-soft:hover,
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gradient);
  box-shadow: 0 18px 42px rgba(0, 102, 255, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.btn-primary:hover,
.btn-soft:hover,
.btn-light-outline:hover {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 22px 52px rgba(0, 174, 239, 0.38);
}

.btn-soft {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 194, 168, 0.1));
}

.nav-shell {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(7, 26, 53, 0.2);
}

.mega-menu {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.94));
  border: 1px solid rgba(0, 102, 255, 0.14);
  box-shadow: 0 28px 80px rgba(7, 26, 53, 0.22);
}

.mega-link {
  border: 1px solid transparent;
}

.mega-link:hover {
  border-color: rgba(0, 174, 239, 0.16);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 194, 168, 0.08));
}

.hero {
  background: #071a35;
}

/* .hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.72;
}

.hero::before {
  right: -10vw;
  top: 16vh;
  width: 44vw;
  height: 46vh;
  clip-path: polygon(18% 0, 100% 18%, 82% 100%, 0 76%);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.34), rgba(0, 194, 168, 0.14));
  animation: floatPanel 9s ease-in-out infinite;
}

.hero::after {
  left: -14vw;
  bottom: 5vh;
  width: 36vw;
  height: 32vh;
  clip-path: polygon(0 18%, 80% 0, 100% 76%, 22% 100%);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.26), rgba(34, 197, 94, 0.12));
  animation: floatPanel 11s ease-in-out infinite reverse;
} */

@keyframes floatPanel {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(16px, -14px, 0) rotate(2deg); }
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.94) 0%, rgba(7, 26, 53, 0.72) 46%, rgba(7, 26, 53, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 102, 255, 0.18), rgba(7, 26, 53, 0.92));
}

.hero-slide {
  filter: saturate(1.15) contrast(1.05);
}

.hero-content {
  max-width: 820px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(0, 174, 239, 0.34);
  box-shadow: 0 12px 36px rgba(0, 174, 239, 0.14);
}

.hero h1 {
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.hero-metric,
.counter-card {
  border-color: rgba(0, 174, 239, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.8));
  box-shadow: 0 20px 55px rgba(0, 102, 255, 0.16);
}

.hero-metric {
  color: var(--navy);
}

.hero-metric span {
  color: var(--muted);
}

.image-stack img {
  border: 8px solid rgba(255, 255, 255, 0.92);
  filter: saturate(1.18) contrast(1.04);
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: -22px 34px 34px -22px;
  z-index: -1;
  border-radius: 34px;
  background: var(--accent-gradient);
  opacity: 0.18;
  transform: rotate(-2deg);
}

.floating-card,
.contact-panel,
.service-intro-card,
.service-long-card,
.service-faq-mini {
  border: 1px solid rgba(0, 102, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.92));
  box-shadow: 0 24px 64px rgba(7, 26, 53, 0.12);
}

.service-card,
.product-card,
.industry-card,
.value-card,
.team-card,
.opening-card,
.client-card {
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 102, 255, 0.26), rgba(0, 194, 168, 0.18)) border-box;
  box-shadow: 0 20px 60px rgba(7, 26, 53, 0.08);
}

.service-card:hover,
.product-card:hover,
.industry-card:hover,
.value-card:hover,
.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 76px rgba(0, 102, 255, 0.18);
}

.service-img,
.product-img,
.gallery-img {
  filter: saturate(1.2) contrast(1.04);
}

.service-filter-item:nth-child(6n + 1) .service-card,
.service-card:nth-child(6n + 1) { --card-accent: #0057d9; }
.service-filter-item:nth-child(6n + 2) .service-card,
.service-card:nth-child(6n + 2) { --card-accent: #0057d9; }
.service-filter-item:nth-child(6n + 3) .service-card,
.service-card:nth-child(6n + 3) { --card-accent: #003c8f; }
.service-filter-item:nth-child(6n + 4) .service-card,
.service-card:nth-child(6n + 4) { --card-accent: #0057d9; }
.service-filter-item:nth-child(6n + 5) .service-card,
.service-card:nth-child(6n + 5) { --card-accent: #003c8f; }
.service-filter-item:nth-child(6n) .service-card,
.service-card:nth-child(6n) { --card-accent: #0057d9; }

.service-card .icon-box,
.product-card .icon-box,
.feature-card .icon-box,
.value-card .icon-box {
  background: linear-gradient(135deg, var(--card-accent, var(--primary)), var(--secondary));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--card-accent, #0057d9) 35%, transparent);
}

.service-card:hover .icon-box,
.product-card:hover .icon-box {
  transform: rotate(-8deg) scale(1.08);
}

.product-card {
  background:
    linear-gradient(160deg, #ffffff 0%, #f8fbff 60%, rgba(0, 174, 239, 0.08) 100%);
}

.product-media {
  min-height: 225px;
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 194, 168, 0.08)),
    #f8fbff;
}

.product-overlay {
  background: linear-gradient(135deg, rgba(7, 26, 53, 0.74), rgba(0, 102, 255, 0.68));
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 174, 239, 0.22);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
}

.feature-card:hover {
  box-shadow: 0 0 54px rgba(0, 174, 239, 0.28);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

.industry-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 26, 53, 0.2), rgba(7, 26, 53, 0.86));
}

.industry-card i,
.industry-card h3 {
  color: var(--white);
}

.section .row > .col-sm-6:nth-child(1) .industry-card { background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(2) .industry-card { background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(3) .industry-card { background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(4) .industry-card { background-image: url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(5) .industry-card { background-image: url("https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(6) .industry-card { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(7) .industry-card { background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80"); }
.section .row > .col-sm-6:nth-child(8) .industry-card { background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=900&q=80"); }

.logo-item {
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.09);
  border-color: rgba(0, 174, 239, 0.14);
}

.logo-item:hover {
  box-shadow: 0 22px 52px rgba(0, 174, 239, 0.2);
}

.testimonial-wrap {
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.9), rgba(7, 26, 53, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 174, 239, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.testimonial-card::after {
  content: "★★★★★";
  display: block;
  margin-top: 18px;
  color: #facc15;
  letter-spacing: 0.08em;
}

.gallery-item {
  border: 1px solid rgba(0, 174, 239, 0.14);
}

.cta-banner {
  box-shadow: 0 30px 90px rgba(0, 102, 255, 0.28);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.92), rgba(7, 26, 53, 0.58)),
    var(--page-bg, url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.service-page-hero,
.product-page-hero {
  min-height: 520px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: -55px;
  width: 280px;
  height: 170px;
  clip-path: polygon(0 10%, 100% 0, 84% 100%, 12% 78%);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.5), rgba(0, 194, 168, 0.34));
  filter: blur(0.2px);
}

.service-sidebar {
  border-color: rgba(0, 102, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.9));
}

.service-long-card > img {
  filter: saturate(1.18) contrast(1.04);
}

.service-info-grid > div,
.product-spec-table div {
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.055), rgba(0, 194, 168, 0.05)),
    #ffffff;
  border-color: rgba(0, 102, 255, 0.12);
}

.service-process-strip span {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 194, 168, 0.1));
}

.accordion-item {
  border-color: rgba(0, 102, 255, 0.12);
}

.footer {
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(0, 194, 168, 0.12), transparent 38%),
    #06152b;
}

/* Contrast and accessibility correction layer */
:root {
  --text-heading: #071a35;
  --text-subheading: #2c4365;
  --text-body: #5d708c;
  --text-muted: #7d90aa;
  --dark-bg: #071a35;
  --dark-bg-2: #0b2248;
}

body {
  color: var(--text-heading);
}

.section-light,
main > .section:not(.section-dark):not(.testimonial-wrap) {
  color: var(--text-heading);
}

.section-light .section-title,
.section-light .section-title h1,
.section-light .section-title h2,
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
main > .section:not(.section-dark):not(.testimonial-wrap) .section-title,
main > .section:not(.section-dark):not(.testimonial-wrap) .section-title h1,
main > .section:not(.section-dark):not(.testimonial-wrap) .section-title h2,
main > .section:not(.section-dark):not(.testimonial-wrap) h1,
main > .section:not(.section-dark):not(.testimonial-wrap) h2,
main > .section:not(.section-dark):not(.testimonial-wrap) h3,
main > .section:not(.section-dark):not(.testimonial-wrap) h4,
main > .section:not(.section-dark):not(.testimonial-wrap) h5,
main > .section:not(.section-dark):not(.testimonial-wrap) h6 {
  color: var(--text-heading);
}

.section-light .section-text,
.section-light .section-title p,
.section-light p,
.section-light li,
main > .section:not(.section-dark):not(.testimonial-wrap) .section-text,
main > .section:not(.section-dark):not(.testimonial-wrap) .section-title p,
main > .section:not(.section-dark):not(.testimonial-wrap) p,
main > .section:not(.section-dark):not(.testimonial-wrap) li {
  color: var(--text-body);
}

.section-title,
.section-title h1,
.section-title h2,
.section-title h3 {
  color: var(--text-heading);
}

.section-title p,
.section-text,
.lead {
  color: var(--text-body);
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, #071a35 0%, #0b2248 58%, #082f63 100%);
}

.section-dark .section-title,
.section-dark .section-title h1,
.section-dark .section-title h2,
.section-dark .section-title h3,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #ffffff;
}

.section-dark .section-text,
.section-dark .section-title p,
.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .eyebrow {
  color: #73e8ff;
}

.service-card,
.product-card,
.value-card,
.team-card,
.opening-card,
.client-card,
.contact-panel,
.service-intro-card,
.service-long-card,
.service-faq-mini,
.service-sidebar,
.process-step,
.accordion-item,
.counter-card,
.logo-item,
.cert-card,
.floating-card,
.product-spec-table div,
.service-info-grid > div {
  background-color: #ffffff;
  color: var(--text-heading);
}

.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4,
.service-card h5,
.product-card h1,
.product-card h2,
.product-card h3,
.product-card h4,
.product-card h5,
.value-card h1,
.value-card h2,
.value-card h3,
.value-card h4,
.value-card h5,
.team-card h1,
.team-card h2,
.team-card h3,
.team-card h4,
.team-card h5,
.opening-card h1,
.opening-card h2,
.opening-card h3,
.opening-card h4,
.opening-card h5,
.client-card h1,
.client-card h2,
.client-card h3,
.client-card h4,
.client-card h5,
.contact-panel h1,
.contact-panel h2,
.contact-panel h3,
.contact-panel h4,
.contact-panel h5,
.service-intro-card h1,
.service-intro-card h2,
.service-intro-card h3,
.service-intro-card h4,
.service-intro-card h5,
.service-long-card h1,
.service-long-card h2,
.service-long-card h3,
.service-long-card h4,
.service-long-card h5,
.service-faq-mini h1,
.service-faq-mini h2,
.service-faq-mini h3,
.service-faq-mini h4,
.service-faq-mini h5,
.service-sidebar h1,
.service-sidebar h2,
.service-sidebar h3,
.service-sidebar h4,
.service-sidebar h5,
.process-step h1,
.process-step h2,
.process-step h3,
.process-step h4,
.process-step h5,
.accordion-item h1,
.accordion-item h2,
.accordion-item h3,
.accordion-item h4,
.accordion-item h5,
.counter-card h1,
.counter-card h2,
.counter-card h3,
.counter-card h4,
.counter-card h5,
.cert-card h1,
.cert-card h2,
.cert-card h3,
.cert-card h4,
.cert-card h5,
.floating-card h1,
.floating-card h2,
.floating-card h3,
.floating-card h4,
.floating-card h5 {
  color: var(--text-heading);
}

.service-card p,
.service-card li,
.product-card p,
.product-card li,
.value-card p,
.value-card li,
.team-card p,
.team-card li,
.opening-card p,
.opening-card li,
.client-card p,
.client-card li,
.contact-panel p,
.contact-panel li,
.service-intro-card p,
.service-intro-card li,
.service-long-card p,
.service-long-card li,
.service-faq-mini p,
.service-faq-mini li,
.service-sidebar p,
.service-sidebar li,
.process-step p,
.process-step li,
.accordion-item p,
.accordion-item li,
.counter-card p,
.counter-card li,
.cert-card p,
.cert-card li,
.floating-card p,
.floating-card li,
.product-spec-table div,
.service-info-grid > div {
  color: var(--text-body);
}

.service-card span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.product-card span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.value-card span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.client-card span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.contact-panel span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.service-long-card span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.service-sidebar span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.process-step span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip),
.accordion-item span:not(.icon-box):not(.service-label):not(.product-tag):not(.spec-chip) {
  color: var(--text-muted);
}

.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.section-dark .feature-card h1,
.section-dark .feature-card h2,
.section-dark .feature-card h3,
.section-dark .feature-card h4,
.section-dark .feature-card h5,
.section-dark .feature-card h6 {
  color: #ffffff;
}

.section-dark .feature-card p,
.section-dark .feature-card li {
  color: rgba(255, 255, 255, 0.8);
}

main > section:has(.industry-card) {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.98), rgba(11, 34, 72, 0.96)),
    radial-gradient(circle at 12% 18%, rgba(0, 174, 239, 0.22), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(0, 194, 168, 0.18), transparent 32%);
}

main > section:has(.industry-card) .section-title,
main > section:has(.industry-card) .section-title h2,
main > section:has(.industry-card) h2 {
  color: #ffffff;
}

main > section:has(.industry-card) .section-title p,
main > section:has(.industry-card) p {
  color: rgba(255, 255, 255, 0.85);
}

main > section:has(.industry-card) .eyebrow {
  color: #73e8ff;
}

.industry-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.industry-card::before {
  background:
    linear-gradient(180deg, rgba(7, 26, 53, 0.18), rgba(7, 26, 53, 0.78)),
    linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(0, 194, 168, 0.14));
}

.industry-card i,
.industry-card h3 {
  color: #ffffff;
}

.testimonial-wrap {
  color: var(--text-heading);
  background:
    linear-gradient(135deg, rgba(245, 249, 255, 0.97), rgba(238, 247, 255, 0.96)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.testimonial-wrap .text-white,
.testimonial-wrap .section-title,
.testimonial-wrap .section-title h2,
.testimonial-wrap h1,
.testimonial-wrap h2,
.testimonial-wrap h3 {
  color: var(--text-heading);
}

.testimonial-wrap .eyebrow {
  color: var(--primary);
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.12);
  color: var(--text-heading);
  box-shadow: 0 24px 70px rgba(7, 26, 53, 0.12);
}

.testimonial-card p {
  color: var(--text-body);
}

.testimonial-card strong {
  color: var(--text-heading);
}

.testimonial-card span {
  color: var(--text-muted);
}

.testimonial-card .text-white-50 {
  color: var(--text-muted) !important;
}

.hero,
.page-hero,
.cta-banner,
.product-overlay,
.gallery-overlay {
  color: #ffffff;
}

.hero h1,
.hero h2,
.hero h3,
.hero .hero-badge,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero .breadcrumb-modern,
.cta-banner h1,
.cta-banner h2,
.cta-banner h3,
.product-overlay h1,
.product-overlay h2,
.product-overlay h3,
.gallery-overlay h1,
.gallery-overlay h2,
.gallery-overlay h3 {
  color: #ffffff;
}

.hero p,
.page-hero p,
.page-hero .lead,
.cta-banner p,
.product-overlay p,
.gallery-overlay p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.74), rgba(7, 26, 53, 0.48) 54%, rgba(7, 26, 53, 0.24)),
    linear-gradient(0deg, rgba(7, 26, 53, 0.62), rgba(7, 26, 53, 0.08) 46%);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.72), rgba(7, 26, 53, 0.46), rgba(7, 26, 53, 0.36)),
    var(--page-bg, url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.gallery-overlay {
  background: linear-gradient(180deg, transparent 22%, rgba(7, 26, 53, 0.72));
}

.product-overlay {
  background: linear-gradient(135deg, rgba(7, 26, 53, 0.48), rgba(0, 102, 255, 0.42));
}

.service-detail-page,
.product-detail-page {
  background: #f5f9ff;
  color: var(--text-heading);
}

.service-detail-page h1,
.service-detail-page h2,
.service-detail-page h3,
.service-detail-page h4,
.service-detail-page h5,
.product-detail-page h1,
.product-detail-page h2,
.product-detail-page h3,
.product-detail-page h4,
.product-detail-page h5 {
  color: var(--text-heading);
}

.service-detail-page p,
.service-detail-page li,
.product-detail-page p,
.product-detail-page li {
  color: var(--text-body);
}

.service-detail-page .page-hero h1,
.service-detail-page .page-hero h2,
.service-detail-page .page-hero h3,
.service-detail-page .page-hero p,
.service-detail-page .page-hero li,
.product-detail-page .page-hero h1,
.product-detail-page .page-hero h2,
.product-detail-page .page-hero h3,
.product-detail-page .page-hero p,
.product-detail-page .page-hero li {
  color: #ffffff;
}

.accordion-button {
  color: var(--text-heading);
}

.accordion-button:not(.collapsed) {
  color: var(--text-heading);
  background: #eef7ff;
}

.form-control,
.form-select {
  color: var(--text-heading);
  background-color: #ffffff;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.footer {
  color: #ffffff;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #ffffff;
}

.footer p,
.footer li,
.footer-link,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.68) !important;
}

/* Premium engineering UI polish layer */
:root {
  --primary: #0066d6;
  --secondary: #f58220;
  --accent: #f58220;
  --navy: #071a35;
  --body-text: #5d708c;
  --subtle-text: #4a5d78;
  --soft-bg: #f7fbff;
  --section-blue: #eef7ff;
  --card-shadow: 0 20px 54px rgba(7, 26, 53, 0.09);
  --card-shadow-hover: 0 28px 70px rgba(7, 26, 53, 0.16);
}

.eyebrow,
.section-light .eyebrow,
main > .section:not(.section-dark) .eyebrow {
  color: var(--accent);
}

main > section:has(.feature-card) {
  background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
  color: var(--navy);
}

main > section:has(.feature-card)::before {
  display: none;
}

main > section:has(.feature-card) .section-title,
main > section:has(.feature-card) .section-title h2,
main > section:has(.feature-card) h2 {
  color: var(--navy);
}

main > section:has(.feature-card) .eyebrow {
  color: var(--accent);
}

main > section:has(.feature-card) .feature-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 24px;
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--card-shadow);
}

main > section:has(.feature-card) .feature-card h3 {
  color: var(--navy);
}

main > section:has(.feature-card) .feature-card p {
  color: var(--body-text);
}

main > section:has(.feature-card) .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

main > section:has(.feature-card) .feature-card .icon-box {
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #0066d6 0%, #1e88e5 100%);
  box-shadow: 0 16px 34px rgba(0, 102, 255, 0.24);
}

main > section:has(.industry-card) {
  background: linear-gradient(135deg, #031b4e 0%, #003c7a 100%);
  color: #ffffff;
}

main > section:has(.industry-card)::before {
  display: none;
}

main > section:has(.industry-card) .section-title,
main > section:has(.industry-card) .section-title h2 {
  color: #ffffff;
}

main > section:has(.industry-card) .eyebrow {
  color: #4de1ff;
}

.industry-card {
  min-height: 280px;
  height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.industry-card::before {
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: brightness(95%);
  transition: transform 0.32s ease;
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 26px 72px rgba(0, 198, 255, 0.24);
}

.industry-card:hover::after {
  transform: scale(1.06);
}

.industry-card i,
.industry-card h3 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  opacity: 1;
}

.industry-card i {
  font-size: 1.85rem;
  margin-bottom: 18px;
}

.industry-card h3,
.industry-card .h5 {
  max-width: 92%;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.testimonial-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--navy);
}

.testimonial-wrap .section-title,
.testimonial-wrap .section-title h2 {
  color: var(--navy);
}

.testimonial-wrap .eyebrow {
  color: var(--accent);
}

.quote-icon {
  display: none;
}

.testimonial-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(7, 26, 53, 0.08);
  border-radius: 24px;
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--card-shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card::before,
.testimonial-card::after {
  content: none;
}

.testimonial-card p {
  margin-top: 0 !important;
  color: var(--subtle-text);
  line-height: 1.8;
}

.testimonial-card strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
}

.testimonial-card span {
  color: var(--body-text);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.testimonial-card .avatar {
  border: 3px solid #eef7ff;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.12);
}

.testimonial-card > p::after {
  content: "★★★★★";
  display: block;
  margin-top: 20px;
  color: #f6b800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #c9d9ee;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

main > section:has([data-gallery-grid]) {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

main > section:has([data-gallery-grid]) .section-title,
main > section:has([data-gallery-grid]) .section-title h2 {
  color: var(--navy);
}

main > section:has([data-gallery-grid]) .eyebrow {
  color: var(--accent);
}

.filter-bar {
  gap: 12px;
}

.filter-btn {
  border: 1px solid rgba(0, 102, 255, 0.1);
  background: #f3f8ff;
  color: var(--navy);
  box-shadow: none;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #0066d6, #1e88e5);
  box-shadow: 0 14px 32px rgba(0, 102, 255, 0.2);
}

.gallery-item {
  border: 1px solid rgba(7, 26, 53, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--card-shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.gallery-img {
  filter: saturate(1.04) contrast(1.02);
}

.gallery-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(7, 26, 53, 0.74), rgba(7, 26, 53, 0.08));
}

.gallery-overlay .eyebrow,
.gallery-overlay h3 {
  color: #ffffff;
}

.cta-banner {
  border-radius: 24px;
  padding: clamp(30px, 4vw, 48px);
  color: #ffffff;
  background: linear-gradient(135deg, #071a35 0%, #123d6a 60%, #0f6b7a 100%);
  box-shadow: 0 25px 60px rgba(7, 26, 53, 0.15);
}

.cta-banner h1,
.cta-banner h2,
.cta-banner h3 {
  color: #ffffff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn-light {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--navy);
  box-shadow: none;
}

.cta-banner .btn-light-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.cta-banner .btn-light:hover,
.cta-banner .btn-light-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.sidebar-cta {
  position: relative;
  padding: 32px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b2341 0%, #123d6a 100%);
  box-shadow: 0 15px 40px rgba(11, 35, 65, 0.18);
  color: #ffffff;
  overflow: hidden;
}

.sidebar-cta::before {
  content: "\f0e7";
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0066d6, #1e88e5);
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.24);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.sidebar-cta h3 {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.sidebar-cta .btn {
  padding: 14px 28px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background: #ffffff;
  color: #0b2341;
  font-weight: 600;
  box-shadow: none;
}

.sidebar-cta .btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #0b2341;
}

.service-sidebar nav a,
.service-sidebar nav a:visited {
  color: var(--navy);
}

.service-sidebar nav a:hover,
.service-sidebar nav a.active-service {
  color: var(--primary);
}

.client-card,
.service-card,
.product-card,
.service-long-card,
.service-faq-mini,
.contact-panel,
.opening-card,
.team-card,
.value-card,
.counter-card,
.logo-item {
  color: var(--navy);
}

.client-card h1,
.client-card h2,
.client-card h3,
.service-card h1,
.service-card h2,
.service-card h3,
.product-card h1,
.product-card h2,
.product-card h3,
.service-long-card h1,
.service-long-card h2,
.service-long-card h3,
.service-faq-mini h1,
.service-faq-mini h2,
.service-faq-mini h3,
.contact-panel h1,
.contact-panel h2,
.contact-panel h3,
.opening-card h1,
.opening-card h2,
.opening-card h3,
.team-card h1,
.team-card h2,
.team-card h3,
.value-card h1,
.value-card h2,
.value-card h3 {
  color: var(--navy);
}

.client-card p,
.service-card p,
.product-card p,
.service-long-card p,
.service-long-card li,
.service-faq-mini p,
.contact-panel p,
.opening-card p,
.team-card p,
.value-card p,
.counter-card span,
.logo-item span {
  color: var(--body-text);
}

/* Hero alignment correction */
.hero-slide {
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 1320px;
  padding-top: 70px;
  padding-left: 100px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-content .hero-badge,
.hero-content h1,
.hero-content p,
.hero-content > .d-flex {
  max-width: 600px;
}

.hero-content h1,
.hero-content p {
  text-align: left;
}

.hero-content h1 {
  max-width: 600px;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}

.hero-content p {
  max-width: 520px;
  font-size: 22px;
}

.hero-content > .d-flex {
  justify-content: flex-start;
  align-items: center;
  gap: 18px !important;
  flex-direction: row;
}

/* Logo-led corporate rebrand system */
:root {
  --primary: #0066d6;
  --primary-rgb: 0, 102, 214;
  --primary-dark: #071a35;
  --primary-light: #eaf5ff;
  --secondary: #f58220;
  --secondary-hover: #d96a00;
  --white: #ffffff;
  --light: #f8fbff;
  --text: #071a35;
  --text-light: #5d708c;
  --border: #dceaf7;
  --navy: #071a35;
  --navy-soft: #123d6a;
  --accent: #f58220;
  --body-text: #5d708c;
  --subtle-text: #4a5d78;
  --soft-bg: #f8fbff;
  --section-blue: #eaf5ff;
  --accent-gradient: linear-gradient(135deg, #0066d6 0%, #1e88e5 100%);
  --shadow: 0 24px 70px rgba(7, 26, 53, 0.13);
  --shadow-soft: 0 15px 40px rgba(7, 26, 53, 0.08);
  --card-shadow: 0 20px 54px rgba(7, 26, 53, 0.09);
  --card-shadow-hover: 0 28px 70px rgba(0, 102, 214, 0.16);
}

body {
  color: var(--text);
  background: var(--white);
}

a {
  color: var(--primary);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title h1,
.section-title h2,
.section-title h3 {
  color: var(--text);
}

p,
li,
.section-text,
.section-title p,
.lead {
  color: var(--text-light);
}

.section-light,
main > .section:not(.section-dark):not(.testimonial-wrap):not(:has(.industry-card)) {
  background: var(--white);
}

main > section:nth-of-type(3),
main > section:has([data-gallery-grid]),
.service-detail-page,
.product-detail-page {
  background: var(--light);
}

.eyebrow,
.section-light .eyebrow,
main > .section:not(.section-dark) .eyebrow,
.testimonial-wrap .eyebrow,
main > section:has([data-gallery-grid]) .eyebrow,
main > section:has(.feature-card) .eyebrow {
  color: var(--secondary);
}

.eyebrow::before,
.section-title::after {
  background: currentColor;
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-primary,
button.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.22);
}

.btn-primary:hover,
.btn-primary:focus,
button.btn-primary:hover,
button.btn-primary:focus {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(7, 26, 53, 0.22);
}

.btn-secondary,
.service-card .btn,
.product-card .btn,
.sidebar-cta .btn,
.contact-panel .btn-primary,
form .btn-primary {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.22);
}

.btn-secondary:hover,
.service-card .btn:hover,
.product-card .btn:hover,
.sidebar-cta .btn:hover,
.contact-panel .btn-primary:hover,
form .btn-primary:hover {
  border-color: var(--secondary-hover);
  background: var(--secondary-hover);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(217, 106, 0, 0.24);
}

.btn-soft,
.btn-outline-primary,
.product-card-action {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-soft:hover,
.btn-outline-primary:hover,
.product-card-action:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.site-navbar .nav-shell {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--border);
  box-shadow: 0 18px 45px rgba(7, 26, 53, 0.1);
}

.site-navbar.scrolled,
.site-navbar.inner {
  background: rgba(255, 255, 255, 0.92);
}

.nav-link,
.site-navbar.scrolled .nav-link,
.site-navbar.inner .nav-link {
  color: var(--primary-dark);
}

.nav-link.active,
.nav-link:focus {
  color: var(--primary) !important;
}

.nav-link:hover,
.mega-link:hover {
  color: var(--secondary) !important;
}

.site-navbar .btn-primary {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.24);
}

.site-navbar .btn-primary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: var(--white);
}

.mega-title {
  color: var(--secondary);
}

.mega-link i,
.mobile-toggle,
.contact-list i {
  color: var(--primary);
}

.mega-link:hover {
  background: rgba(245, 130, 32, 0.09);
}

.hero-badge {
  border-color: rgba(245, 130, 32, 0.36);
}

.hero-badge i {
  color: var(--secondary);
}

.icon-box,
.service-card .icon-box,
.product-card .icon-box,
.feature-card .icon-box,
.value-card .icon-box,
main > section:has(.feature-card) .feature-card .icon-box,
.sidebar-cta::before {
  color: var(--white);
  background: linear-gradient(135deg, #0066d6, #1e88e5);
  box-shadow: 0 16px 34px rgba(var(--primary-rgb), 0.24);
}

.service-card,
.product-card,
.client-card,
.value-card,
.team-card,
.opening-card,
.counter-card,
.logo-item,
.service-long-card,
.service-faq-mini,
.contact-panel,
.service-sidebar,
.floating-card {
  border-color: var(--border);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.service-card:hover,
.product-card:hover,
.client-card:hover,
.value-card:hover,
.team-card:hover,
.opening-card:hover,
.gallery-item:hover {
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: var(--card-shadow-hover);
}

.service-card h1,
.service-card h2,
.service-card h3,
.product-card h1,
.product-card h2,
.product-card h3,
.client-card h1,
.client-card h2,
.client-card h3,
.value-card h1,
.value-card h2,
.value-card h3,
.team-card h1,
.team-card h2,
.team-card h3,
.opening-card h1,
.opening-card h2,
.opening-card h3,
.service-long-card h1,
.service-long-card h2,
.service-long-card h3,
.contact-panel h1,
.contact-panel h2,
.contact-panel h3 {
  color: var(--text);
}

.service-card p,
.product-card p,
.client-card p,
.value-card p,
.team-card p,
.opening-card p,
.service-long-card p,
.service-long-card li,
.contact-panel p {
  color: var(--text-light);
}

.service-label,
.spec-chip,
.service-process-strip span {
  color: var(--primary);
  background: var(--primary-light);
}

.service-long-body h2,
.counter-card strong {
  color: var(--primary);
}

.single-service-footer {
  border-color: var(--border);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.07), rgba(245, 130, 32, 0.07));
}

.service-sidebar a:hover,
.service-sidebar a.active-service {
  color: var(--secondary);
  background: rgba(245, 130, 32, 0.09);
}

.service-sidebar a i {
  color: var(--primary);
}

main > section:has(.feature-card) {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

main > section:has(.feature-card) .feature-card {
  border-color: var(--border);
  background: var(--white);
}

main > section:has(.feature-card) .feature-card h3 {
  color: var(--text);
}

main > section:has(.feature-card) .feature-card p {
  color: var(--text-light);
}

main > section:has(.industry-card) {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d4f8b 100%);
}

main > section:has(.industry-card) .eyebrow {
  color: var(--secondary);
}

main > section:has(.industry-card) .section-title,
main > section:has(.industry-card) .section-title h2,
.industry-card i,
.industry-card h3 {
  color: var(--white);
}

.industry-card:hover {
  box-shadow: 0 28px 78px rgba(var(--primary-rgb), 0.28);
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--primary-light);
  color: var(--text);
}

.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.2);
}

.filter-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: var(--white);
  box-shadow: inset 0 -2px 0 var(--secondary);
}

.filter-btn.active:hover {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(var(--primary-rgb), 0.2);
}

.gallery-item {
  border-color: var(--border);
}

.gallery-overlay .eyebrow {
  color: var(--secondary);
}

.testimonial-wrap {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.testimonial-card {
  border-color: var(--border);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.testimonial-card::before,
.testimonial-card::after,
.quote-icon {
  display: none;
  content: none;
}

.testimonial-card > p::after {
  color: var(--primary);
}

.testimonial-card {
  border-top: 4px solid var(--secondary);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

.cta-banner {
  background: linear-gradient(135deg, #071a35, #0d4f8b);
  box-shadow: 0 25px 60px rgba(7, 26, 53, 0.15);
}

.cta-banner .btn-light,
.cta-banner .btn-primary {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
}

.cta-banner .btn-light:hover,
.cta-banner .btn-primary:hover {
  border-color: var(--secondary-hover);
  background: var(--secondary-hover);
  color: var(--white);
}

.cta-banner .btn-light-outline,
.cta-banner .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.cta-banner .btn-light-outline:hover,
.cta-banner .btn-outline-light:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
}

.sidebar-cta {
  background: linear-gradient(135deg, #071a35 0%, #0d4f8b 100%);
}

.sidebar-cta .btn {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
}

.sidebar-cta .btn:hover {
  border-color: var(--secondary-hover);
  background: var(--secondary-hover);
  color: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.13);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
}

.footer {
  background: #071a35;
  color: var(--white);
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: var(--white);
}

.footer p,
.footer li,
.footer a,
.footer-link {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover,
.footer-link:hover {
  color: var(--secondary);
}

.whatsapp-float {
  box-shadow: 0 16px 36px rgba(var(--primary-rgb), 0.22);
}

/* Premium hero typography refinement */
.hero-content .hero-badge,
.hero-content h1,
.hero-content p,
.hero-content > .d-flex {
  max-width: 720px;
}

.hero-content h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
}

.hero-content p {
  max-width: 600px;
  margin: 0 0 32px;
  font-size: 15px;
}

.hero-content > .d-flex {
  justify-content: flex-start;
  flex-direction: row;
}

@media (min-width: 1600px) {
  .hero-content h1 {
    font-size: 64px;
  }
}

/* Premium enterprise button system */
:root {
  --button-blue: #0057d9;
  --button-blue-2: #008cff;
  --button-blue-hover: #0049b7;
  --button-blue-hover-2: #0074f5;
  --button-orange: #ff8a00;
  --button-orange-hover: #ff7700;
  --button-navy: #071a35;
  --button-border: #d9e9ff;
  --button-gradient: linear-gradient(135deg, #ff8a00 0%, #ff7a00 50%, #f25c05 100%);
  --button-gradient-hover: linear-gradient(135deg, #ff9a1f, #ff7a00, #e95c00);
  --button-shadow: 0 15px 35px rgba(0, 87, 217, 0.22), 0 6px 15px rgba(255, 138, 0, 0.15);
  --button-shadow-hover: 0 20px 46px rgba(0, 87, 217, 0.28), 0 10px 22px rgba(255, 138, 0, 0.2);
  --button-ease: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn,
button.btn,
a.btn,
.product-card-action,
.filter-btn {
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  transition: var(--button-ease);
}

.btn:hover,
.btn:focus-visible,
.product-card-action:hover,
.product-card-action:focus-visible,
.filter-btn:hover,
.filter-btn:focus-visible {
  transform: translateY(-4px) scale(1.02);
}

.btn:focus-visible,
.product-card-action:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.38);
  outline-offset: 3px;
}

.btn-primary,
a.btn-primary,
button.btn-primary,
.product-overlay .btn,
.contact-panel .btn-primary,
form .btn-primary,
.single-service-footer .btn-primary {
  border: 0;
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible,
a.btn-primary:hover,
a.btn-primary:focus-visible,
button.btn-primary:hover,
button.btn-primary:focus-visible,
.product-overlay .btn:hover,
.product-overlay .btn:focus-visible,
.contact-panel .btn-primary:hover,
.contact-panel .btn-primary:focus-visible,
form .btn-primary:hover,
form .btn-primary:focus-visible,
.single-service-footer .btn-primary:hover,
.single-service-footer .btn-primary:focus-visible {
  border: 0;
  background: var(--button-gradient-hover);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

.btn-light,
.btn-outline-primary,
.btn-soft,
.product-card-action {
  border: 2px solid var(--button-border);
  background: #ffffff;
  color: var(--button-blue);
  box-shadow: 0 10px 24px rgba(0, 87, 217, 0.08);
}

.btn-light:hover,
.btn-light:focus-visible,
.btn-outline-primary:hover,
.btn-outline-primary:focus-visible,
.btn-soft:hover,
.btn-soft:focus-visible,
.product-card-action:hover,
.product-card-action:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, #0057d9, #008cff);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.service-card .btn,
.product-card .btn,
.service-body .btn,
.btn-soft,
.product-card-action {
  border: 0;
  background: linear-gradient(135deg, #ff8a00 0%, #ff7a00 50%, #f25c05 100%);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.service-card .btn:hover,
.service-card .btn:focus-visible,
.product-card .btn:hover,
.product-card .btn:focus-visible,
.service-body .btn:hover,
.service-body .btn:focus-visible,
.btn-soft:hover,
.btn-soft:focus-visible,
.product-card-action:hover,
.product-card-action:focus-visible {
  border: 0;
  background: var(--button-gradient-hover);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

.hero .btn,
.page-hero .btn {
  padding: 16px 36px;
  min-height: 54px;
}

.hero .btn-primary {
  border: 0;
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: var(--button-gradient-hover);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

.hero .btn-light-outline,
.btn-light-outline {
  border: 2px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}

.hero .btn-light-outline:hover,
.hero .btn-light-outline:focus-visible,
.btn-light-outline:hover,
.btn-light-outline:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, #0057d9, #008cff);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.site-navbar .btn-primary,
.site-navbar .btn-sm {
  min-height: 48px;
  padding: 13px 28px;
  border: 0;
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.site-navbar .btn-primary:hover,
.site-navbar .btn-primary:focus-visible,
.site-navbar .btn-sm:hover,
.site-navbar .btn-sm:focus-visible {
  background: var(--button-gradient-hover);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

.cta-banner .btn-light,
.cta-banner .btn-primary {
  border: 0;
  background: #ffffff;
  color: var(--button-navy);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.14);
}

.cta-banner .btn-light:hover,
.cta-banner .btn-light:focus-visible,
.cta-banner .btn-primary:hover,
.cta-banner .btn-primary:focus-visible {
  background: linear-gradient(135deg, #0057d9, #008cff);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

.cta-banner .btn-light-outline,
.cta-banner .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.cta-banner .btn-light-outline:hover,
.cta-banner .btn-light-outline:focus-visible,
.cta-banner .btn-outline-light:hover,
.cta-banner .btn-outline-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.08);
}

.sidebar-cta .btn,
.sidebar-cta .btn-primary {
  border: 0;
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.sidebar-cta .btn:hover,
.sidebar-cta .btn:focus-visible,
.sidebar-cta .btn-primary:hover,
.sidebar-cta .btn-primary:focus-visible {
  background: var(--button-gradient-hover);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

.filter-btn {
  min-height: 44px;
  padding: 11px 22px;
  border: 2px solid var(--button-border);
  background: #ffffff;
  color: var(--button-blue);
  box-shadow: 0 8px 18px rgba(0, 87, 217, 0.07);
}

.filter-btn.active {
  border: 0;
  background: linear-gradient(135deg, #0057d9, #008cff);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, #0057d9, #008cff);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.footer .btn,
.footer .btn-primary {
  border: 0;
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: var(--button-shadow);
}

.footer .btn:hover,
.footer .btn:focus-visible,
.footer .btn-primary:hover,
.footer .btn-primary:focus-visible {
  background: var(--button-gradient-hover);
  color: #ffffff;
  box-shadow: var(--button-shadow-hover);
}

/* Final unified blue + orange corporate theme */
:root {
  --brand-blue: #0057d9;
  --brand-blue-rgb: 0, 87, 217;
  --brand-blue-dark: #003c8f;
  --brand-blue-light: #eaf4ff;
  --brand-orange: #ff7a00;
  --brand-orange-light: #ffa733;
  --brand-orange-hover: #e95c00;
  --brand-navy: #071a35;
  --brand-body: #5d708c;
  --brand-white: #ffffff;
  --brand-bg: #f8fbff;
  --brand-border: #d9e9ff;
  --primary: #0057d9;
  --primary-rgb: 0, 87, 217;
  --primary-dark: #003c8f;
  --primary-light: #eaf4ff;
  --secondary: #ff7a00;
  --secondary-hover: #e95c00;
  --secondary-light: #ffa733;
  --accent: #ff7a00;
  --navy: #071a35;
  --text: #071a35;
  --body-text: #5d708c;
  --text-light: #5d708c;
  --light: #f8fbff;
  --border: #d9e9ff;
  --accent-gradient: linear-gradient(135deg, #0057d9 0%, #008cff 100%);
  --cta-gradient: linear-gradient(135deg, #ff8a00 0%, #ff7a00 50%, #f25c05 100%);
  --cta-gradient-hover: linear-gradient(135deg, #ff9a1f, #ff7a00, #e95c00);
  --cta-shadow: 0 15px 35px rgba(255, 122, 0, 0.25);
  --blue-shadow: 0 18px 45px rgba(0, 87, 217, 0.14);
  --card-shadow: 0 18px 48px rgba(7, 26, 53, 0.08);
  --card-shadow-hover: 0 28px 68px rgba(7, 26, 53, 0.14);
}

body {
  color: var(--brand-navy);
  background: var(--brand-white);
}

a {
  color: var(--brand-blue);
}

a:hover {
  color: var(--brand-orange);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title h1,
.section-title h2,
.section-title h3 {
  color: var(--brand-navy);
}

p,
li,
.lead,
.section-text,
.section-title p {
  color: var(--brand-body);
}

.section-light,
main > .section:not(.section-dark):not(.testimonial-wrap):not(:has(.industry-card)) {
  background: var(--brand-white);
}

main > section:nth-of-type(3),
main > section:has([data-gallery-grid]),
.service-detail-page,
.product-detail-page,
.testimonial-wrap {
  background: var(--brand-bg);
}

.eyebrow,
.section-light .eyebrow,
main > .section:not(.section-dark) .eyebrow,
.testimonial-wrap .eyebrow,
main > section:has([data-gallery-grid]) .eyebrow,
main > section:has(.feature-card) .eyebrow,
.mega-title {
  color: var(--brand-blue);
}

.eyebrow::before,
.section-title::after {
  background: var(--brand-orange);
}

.site-navbar .nav-shell,
.site-navbar.scrolled .nav-shell,
.site-navbar.inner .nav-shell {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--brand-border);
  box-shadow: 0 18px 44px rgba(7, 26, 53, 0.1);
}

.site-navbar,
.site-navbar.scrolled,
.site-navbar.inner {
  background: rgba(255, 255, 255, 0.94);
}

.nav-link,
.site-navbar.scrolled .nav-link,
.site-navbar.inner .nav-link {
  color: var(--brand-navy);
}

.nav-link:hover {
  color: var(--brand-blue) !important;
}

.nav-link.active {
  color: var(--brand-blue) !important;
}

.nav-link.active::after {
  background: var(--brand-orange);
}

.mega-link i,
.contact-list i,
.service-sidebar a i {
  color: var(--brand-blue);
}

.mega-link:hover {
  color: var(--brand-blue) !important;
  background: rgba(var(--brand-blue-rgb), 0.07);
}

.btn,
button.btn,
a.btn,
.product-card-action,
.filter-btn {
  border-radius: 50px;
  transition: all 0.35s ease;
}

.btn:hover,
.btn:focus-visible,
.product-card-action:hover,
.product-card-action:focus-visible,
.filter-btn:hover,
.filter-btn:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary,
a.btn-primary,
button.btn-primary,
.site-navbar .btn-primary,
.site-navbar .btn-sm,
.hero .btn-primary,
.contact-panel .btn-primary,
form .btn-primary,
.single-service-footer .btn-primary,
.service-card .btn,
.product-card .btn,
.service-body .btn,
.product-card-action,
.btn-soft,
.product-overlay .btn,
.sidebar-cta .btn,
.sidebar-cta .btn-primary,
.footer .btn,
.footer .btn-primary {
  border: 0;
  background: var(--cta-gradient);
  color: var(--brand-white);
  box-shadow: var(--cta-shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible,
a.btn-primary:hover,
a.btn-primary:focus-visible,
button.btn-primary:hover,
button.btn-primary:focus-visible,
.site-navbar .btn-primary:hover,
.site-navbar .btn-primary:focus-visible,
.site-navbar .btn-sm:hover,
.site-navbar .btn-sm:focus-visible,
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible,
.contact-panel .btn-primary:hover,
.contact-panel .btn-primary:focus-visible,
form .btn-primary:hover,
form .btn-primary:focus-visible,
.single-service-footer .btn-primary:hover,
.single-service-footer .btn-primary:focus-visible,
.service-card .btn:hover,
.service-card .btn:focus-visible,
.product-card .btn:hover,
.product-card .btn:focus-visible,
.service-body .btn:hover,
.service-body .btn:focus-visible,
.product-card-action:hover,
.product-card-action:focus-visible,
.btn-soft:hover,
.btn-soft:focus-visible,
.product-overlay .btn:hover,
.product-overlay .btn:focus-visible,
.sidebar-cta .btn:hover,
.sidebar-cta .btn:focus-visible,
.sidebar-cta .btn-primary:hover,
.sidebar-cta .btn-primary:focus-visible,
.footer .btn:hover,
.footer .btn:focus-visible,
.footer .btn-primary:hover,
.footer .btn-primary:focus-visible {
  border: 0;
  background: var(--cta-gradient-hover);
  color: var(--brand-white);
  box-shadow: 0 18px 42px rgba(255, 122, 0, 0.32);
}

.btn-light,
.btn-outline-primary {
  border: 2px solid var(--brand-blue);
  background: var(--brand-white);
  color: var(--brand-blue);
  box-shadow: 0 10px 24px rgba(var(--brand-blue-rgb), 0.08);
}

.btn-light:hover,
.btn-light:focus-visible,
.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: var(--blue-shadow);
}

.hero .btn-light-outline,
.btn-light-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--brand-white);
  box-shadow: none;
}

.hero .btn-light-outline:hover,
.hero .btn-light-outline:focus-visible,
.btn-light-outline:hover,
.btn-light-outline:focus-visible {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: var(--blue-shadow);
}

.cta-banner {
  background: linear-gradient(135deg, #071a35 0%, #003c8f 100%);
  box-shadow: 0 25px 60px rgba(7, 26, 53, 0.16);
}

.cta-banner .btn-light,
.cta-banner .btn-primary {
  border: 0;
  background: var(--cta-gradient);
  color: var(--brand-white);
  box-shadow: var(--cta-shadow);
}

.cta-banner .btn-light:hover,
.cta-banner .btn-light:focus-visible,
.cta-banner .btn-primary:hover,
.cta-banner .btn-primary:focus-visible {
  background: var(--cta-gradient-hover);
  color: var(--brand-white);
  box-shadow: 0 18px 42px rgba(255, 122, 0, 0.32);
}

.cta-banner .btn-light-outline,
.cta-banner .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--brand-white);
  box-shadow: none;
}

.cta-banner .btn-light-outline:hover,
.cta-banner .btn-light-outline:focus-visible,
.cta-banner .btn-outline-light:hover,
.cta-banner .btn-outline-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand-white);
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 26, 53, 0.46), rgba(0, 60, 143, 0.3) 54%, rgba(0, 87, 217, 0.14)),
    linear-gradient(0deg, rgba(7, 26, 53, 0.38), rgba(7, 26, 53, 0.05) 46%);
}

.hero-badge {
  border-color: rgba(var(--brand-blue-rgb), 0.34);
  background: rgba(0, 87, 217, 0.16);
}

.hero-badge i {
  color: var(--brand-orange);
}

.icon-box,
.service-card .icon-box,
.product-card .icon-box,
.feature-card .icon-box,
.value-card .icon-box,
main > section:has(.feature-card) .feature-card .icon-box,
.sidebar-cta::before {
  color: var(--brand-white);
  background: linear-gradient(135deg, #0057d9, #008cff);
  box-shadow: 0 16px 34px rgba(var(--brand-blue-rgb), 0.24);
}

.service-filter-item:nth-child(n) .service-card,
.service-card:nth-child(n) {
  --card-accent: #0057d9;
}

.service-card,
.product-card,
.client-card,
.value-card,
.team-card,
.opening-card,
.counter-card,
.logo-item,
.service-long-card,
.service-faq-mini,
.contact-panel,
.service-sidebar,
.floating-card,
.testimonial-card,
.gallery-item {
  border-color: var(--brand-border);
  background: var(--brand-white);
  box-shadow: var(--card-shadow);
}

.service-card::before,
.product-card::before,
.client-card::before,
.value-card::before,
.team-card::before,
.opening-card::before,
.gallery-item::before,
.testimonial-card::before {
  background: var(--brand-orange);
}

.service-card:hover,
.product-card:hover,
.client-card:hover,
.value-card:hover,
.team-card:hover,
.opening-card:hover,
.gallery-item:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: var(--card-shadow-hover);
}

.service-card h1,
.service-card h2,
.service-card h3,
.product-card h1,
.product-card h2,
.product-card h3,
.client-card h1,
.client-card h2,
.client-card h3,
.value-card h1,
.value-card h2,
.value-card h3,
.team-card h1,
.team-card h2,
.team-card h3,
.opening-card h1,
.opening-card h2,
.opening-card h3,
.service-long-card h1,
.service-long-card h2,
.service-long-card h3,
.contact-panel h1,
.contact-panel h2,
.contact-panel h3 {
  color: var(--brand-navy);
}

.service-card p,
.product-card p,
.client-card p,
.value-card p,
.team-card p,
.opening-card p,
.service-long-card p,
.service-long-card li,
.contact-panel p {
  color: var(--brand-body);
}

.service-label,
.spec-chip,
.job-meta span,
.service-process-strip span {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

.filter-btn {
  border: 2px solid var(--brand-border);
  background: var(--brand-white);
  color: var(--brand-blue);
  box-shadow: 0 8px 18px rgba(var(--brand-blue-rgb), 0.07);
}

.filter-btn.active {
  border: 0;
  background: var(--cta-gradient);
  color: var(--brand-white);
  box-shadow: var(--cta-shadow);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: var(--blue-shadow);
}

.filter-btn.active:hover,
.filter-btn.active:focus-visible {
  background: var(--cta-gradient-hover);
  color: var(--brand-white);
}

main > section:has(.feature-card) {
  background: linear-gradient(180deg, var(--brand-blue-light) 0%, var(--brand-white) 100%);
}

main > section:has(.industry-card) {
  background: linear-gradient(135deg, #071a35 0%, #003c8f 100%);
}

main > section:has(.industry-card) .eyebrow {
  color: var(--brand-orange);
}

main > section:has(.industry-card) .section-title,
main > section:has(.industry-card) .section-title h2,
.industry-card i,
.industry-card h3 {
  color: var(--brand-white);
}

.industry-card:hover {
  box-shadow: 0 28px 78px rgba(var(--brand-blue-rgb), 0.28);
}

.testimonial-card {
  border-top: 4px solid var(--brand-orange);
}

.testimonial-card > p::after {
  color: var(--brand-blue);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--brand-blue);
}

.sidebar-cta {
  background: linear-gradient(135deg, #071a35 0%, #003c8f 100%);
}

.service-sidebar a:hover,
.service-sidebar a.active-service {
  color: var(--brand-blue);
  background: rgba(var(--brand-blue-rgb), 0.08);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.2rem rgba(var(--brand-blue-rgb), 0.13);
}

.accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

.footer {
  background: var(--brand-navy);
  color: var(--brand-white);
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: var(--brand-white);
}

.footer p,
.footer li,
.footer a,
.footer-link {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover,
.footer-link:hover {
  color: var(--brand-orange);
}

/* Header behavior modes: floating capsule over hero, sticky after hero */
.site-navbar {
  opacity: 1;
  transition:
    opacity 300ms ease,
    transform 300ms ease,
    top 300ms ease,
    width 300ms ease,
    padding 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease;
  will-change: opacity, transform;
}

.site-navbar.nav-floating {
  position: absolute;
  top: 24px;
  left: 50%;
  right: auto;
  bottom: auto;
  width: min(90%, 1320px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-navbar.nav-floating .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.site-navbar.nav-floating .nav-shell {
  width: 100%;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(7, 26, 53, 0.16);
}

.site-navbar.nav-sticky {
  position: fixed;
  top: 10px;
  left: 50%;
  right: 0;
  width: min(1400px, calc(100% - 80px));
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  z-index: 99999;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    opacity 0.3s ease,
    transform 300ms ease;
}

.site-navbar.nav-sticky .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.site-navbar.nav-sticky .nav-shell {
  width: 100%;
  border: 1px solid rgba(0, 87, 217, 0.08);
  border-radius: 9999px;
  background: #ffffff !important;
  opacity: 1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(7, 26, 53, 0.12);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    opacity 0.3s ease;
}

.site-navbar.nav-sticky .nav-link,
.site-navbar.nav-sticky .navbar-nav .nav-link,
.site-navbar.nav-sticky .mobile-toggle {
  color: #071a35;
}

.site-navbar.nav-sticky .nav-link.active {
  color: #0057d9 !important;
}

.site-navbar.nav-sticky .nav-link:hover {
  color: #0057d9 !important;
}

.site-navbar.nav-sticky .btn-primary,
.site-navbar.nav-sticky .btn-sm {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6a00 100%);
  color: #ffffff;
}

.nav-scroll-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(7, 26, 53, 0.05);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.35s ease;
}

body.nav-scrolled .nav-scroll-bg {
  opacity: 1;
}

body.nav-scrolled main,
body.nav-scrolled .page-content,
body.nav-scrolled section:first-of-type {
  scroll-margin-top: 82px;
}

body.nav-scrolled section,
body.nav-scrolled .page-hero,
body.nav-scrolled [id] {
  scroll-margin-top: 82px;
}

.site-navbar.navbar-scrolled {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, calc(100% - 80px));
  background: #ffffff !important;
  opacity: 1 !important;
  border: 1px solid rgba(0, 87, 217, 0.08);
  border-radius: 9999px;
  box-shadow: 0 18px 60px rgba(7, 26, 53, 0.14);
  z-index: 999999;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.site-navbar.navbar-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: inherit;
  z-index: -1;
}

.site-navbar.navbar-scrolled > * {
  position: relative;
  z-index: 2;
}

.site-navbar.navbar-scrolled .nav-shell {
  min-height: 58px;
  background: #ffffff !important;
  opacity: 1 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* Product images: fixed frame, clean crop, clipped hover state */
.product-card .product-media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
}

.product-card .product-img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform-origin: center;
}

.product-card .product-overlay {
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-card .product-card-action {
  display: none !important;
}

.testimonial-swiper {
  overflow: hidden;
  padding: 6px 2px 10px;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-swiper .testimonial-card {
  height: 100%;
}

.product-card .product-tag,
.product-card .spec-chip {
  display: none !important;
}

/* Industries section redesign */
main > section:has(.industry-card) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 87, 217, 0.34), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(255, 122, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #071a35 0%, #062b61 55%, #003c8f 100%) !important;
}

main > section:has(.industry-card)::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

main > section:has(.industry-card) .section-title {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

main > section:has(.industry-card) .eyebrow {
  color: #ff8a00 !important;
  letter-spacing: 0.14em;
}

main > section:has(.industry-card) .section-title h2 {
  color: #ffffff !important;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

main > section:has(.industry-card) .section-title::after {
  background: linear-gradient(90deg, #ff8a00, #0057d9);
}

.industry-card {
  position: relative;
  height: 280px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(7, 26, 53, 0.86) 0%, rgba(7, 26, 53, 0.46) 48%, rgba(7, 26, 53, 0.12) 100%),
    linear-gradient(135deg, rgba(0, 87, 217, 0.14), rgba(255, 122, 0, 0.08));
  transition: opacity 0.32s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.38s ease;
}

.industry-card i {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 18px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 12px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  font-size: 1.45rem;
}

.industry-card h3,
.industry-card .h5 {
  position: relative;
  z-index: 1;
  max-width: 92%;
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 138, 0, 0.38);
  box-shadow: 0 28px 78px rgba(0, 87, 217, 0.25), 0 12px 40px rgba(0, 0, 0, 0.22);
}

.industry-card:hover::before {
  opacity: 0.9;
}

.industry-card:hover::after {
  transform: scale(1.08);
}

/* Gallery section redesign: preserve images, improve framing and readability */
main > section:has([data-gallery-grid]) {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 87, 217, 0.08), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255, 122, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

main > section:has([data-gallery-grid]) .section-title {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

main > section:has([data-gallery-grid]) .filter-bar {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 8px;
  border: 1px solid rgba(0, 87, 217, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(7, 26, 53, 0.08);
}

main > section:has([data-gallery-grid]) .filter-btn {
  min-width: 0;
  border-color: transparent;
  background: transparent;
  color: #071a35;
  box-shadow: none;
}

main > section:has([data-gallery-grid]) .filter-btn.active,
main > section:has([data-gallery-grid]) .filter-btn:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6a00 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.22);
}

main > section:has([data-gallery-grid]) .gallery-filter-item {
  display: flex;
}

.gallery-item {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 217, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(7, 26, 53, 0.1);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 26, 53, 0.02), rgba(7, 26, 53, 0.24));
  pointer-events: none;
}

.gallery-item .gallery-img,
.gallery-item.tall .gallery-img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.gallery-overlay {
  inset: auto 18px 18px 18px;
  z-index: 2;
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(7, 26, 53, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.32s ease, background 0.32s ease;
}

.gallery-overlay .eyebrow {
  margin-bottom: 7px !important;
  color: #ff8a00 !important;
  font-size: 0.74rem;
}

.gallery-overlay h3 {
  color: #ffffff !important;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.26);
  box-shadow: 0 30px 78px rgba(7, 26, 53, 0.16);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.04);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(7, 26, 53, 0.9);
  transform: translateY(-4px);
}

/* Home CTA, FAQ, and shared footer polish */
.cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: clamp(34px, 5vw, 64px);
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 87, 217, 0.36), transparent 32%),
    radial-gradient(circle at 88% 84%, rgba(255, 122, 0, 0.24), transparent 30%),
    linear-gradient(135deg, #071a35 0%, #003c8f 58%, #0057d9 100%) !important;
  box-shadow: 0 28px 80px rgba(7, 26, 53, 0.18);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  opacity: 0.42;
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
}

.cta-banner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82) !important;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 87, 217, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-help-card {
  padding: 30px;
  border: 1px solid rgba(0, 87, 217, 0.1);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(7, 26, 53, 0.1);
}

.faq-help-card .icon-box {
  margin-bottom: 18px;
}

.faq-help-card h3 {
  color: #071a35;
  font-size: 1.35rem;
  font-weight: 750;
}

.faq-help-card p {
  color: #5d708c;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(0, 87, 217, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(7, 26, 53, 0.07);
}

.faq-accordion .accordion-button {
  padding: 20px 24px;
  color: #071a35;
  background: #ffffff;
  box-shadow: none;
  font-weight: 750;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #0057d9;
  background: #f8fbff;
}

.faq-accordion .accordion-button::after {
  filter: invert(27%) sepia(90%) saturate(2544%) hue-rotate(207deg) brightness(91%) contrast(101%);
}

.faq-accordion .accordion-body {
  padding: 0 24px 22px;
  color: #5d708c;
  line-height: 1.8;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 87, 217, 0.28), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(255, 122, 0, 0.13), transparent 28%),
    linear-gradient(135deg, #071a35 0%, #09264f 56%, #031326 100%) !important;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand {
  width: fit-content;
  max-width: 290px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.footer-brand img {
  width: 230px;
  max-width: 100%;
  height: auto;
}

.footer h5 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 750;
}

.footer p,
.footer li,
.footer span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-link {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
  color: #ff8a00;
  transform: translateX(4px);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-list i {
  margin-top: 4px;
  color: #ff8a00;
}

.footer .socials {
  display: flex;
  gap: 12px;
}

.footer .socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer .socials a:hover {
  background: #ff7a00;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

/* Product detail images: keep equipment fully visible inside the frame */
.product-detail-card > img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center;
  background: #ffffff !important;
  border-radius: 24px 24px 0 0 !important;
}

.product-detail-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

/* Detail page hero typography tuning */
.service-page-hero h1,
.product-page-hero h1,
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(1.35rem, 3.2vw, 3rem) !important;
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.service-page-hero p,
.service-page-hero .lead,
.product-page-hero p,
.product-page-hero .lead,
.page-hero p,
.page-hero .lead {
  max-width: 900px;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.65;
}

.service-page-hero .breadcrumb-modern,
.product-page-hero .breadcrumb-modern,
.page-hero .breadcrumb-modern {
  font-size: 15px !important;
  font-weight: 500 !important;
}

/* Product pages: engineered hero without photo background */
.product-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  align-items: center;
  padding: 140px 0 70px;
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 122, 0, 0.2), transparent 24%),
    radial-gradient(circle at 14% 16%, rgba(0, 87, 217, 0.36), transparent 32%),
    linear-gradient(135deg, #071a35 0%, #082b5f 58%, #003c8f 100%) !important;
}

.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  opacity: 0.55;
  pointer-events: none;
}

.product-page-hero::after {
  display: none;
}

.product-page-hero .container {
  position: relative;
  z-index: 1;
}

.product-page-hero .container::after {
  display: none;
}

.product-page-hero .breadcrumb-modern {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.product-page-hero h1,
.product-page-hero p,
.product-page-hero .lead {
  max-width: 760px;
}

/* Product image gallery for detail pages */
.product-gallery-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 87, 217, 0.06), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(255, 122, 0, 0.07), transparent 30%),
    #ffffff;
  padding: 82px 0 96px;
}

.product-gallery-heading {
  margin-bottom: 44px;
}

.product-gallery-heading h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-gallery-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-gallery-divider span {
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.product-gallery-divider i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--primary-dark);
  transform: rotate(6deg);
}

.product-gallery-card {
  position: relative;
  margin: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 217, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(7, 26, 53, 0.11);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-gallery-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: clamp(240px, 17vw, 310px);
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.product-gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.34);
  box-shadow: 0 24px 52px rgba(7, 26, 53, 0.16);
}

.product-gallery-card:hover::after {
  opacity: 1;
}

.product-gallery-card:hover img {
  transform: scale(1.015);
  filter: saturate(1.03) contrast(1.02);
}

@media (max-width: 767.98px) {
  .product-gallery-section {
    padding: 58px 0 70px;
  }

  .product-gallery-heading {
    margin-bottom: 30px;
  }

  .product-gallery-divider span {
    width: 48px;
  }

  .product-gallery-card {
    padding: 9px;
  }
}

/* Clients page redesign */
.clients-page-main {
  background: #ffffff;
}

.clients-trust-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0 74px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.clients-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 22%, rgba(0, 87, 217, 0.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(255, 122, 0, 0.08), transparent 24%);
  pointer-events: none;
}

.clients-trust-section .container,
.clients-sector-section .container,
.clients-promise-section .container {
  position: relative;
  z-index: 1;
}

.clients-trust-section .section-title {
  margin-bottom: 34px;
}

.clients-trust-section .section-title p,
.clients-sector-section .section-title p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
}

.clients-logo-panel {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border: 1px solid rgba(0, 87, 217, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(7, 26, 53, 0.08);
}

.clients-logo-panel::before,
.clients-logo-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.clients-logo-panel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.clients-logo-panel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.clients-logo-track {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.clients-logo-track .logo-item {
  min-width: 260px;
  height: 116px;
  border-radius: 20px;
  border: 1px solid rgba(0, 87, 217, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(7, 26, 53, 0.06);
  filter: none;
  opacity: 1;
}

.clients-logo-track .logo-item img {
  max-height: 58px;
  max-width: 190px;
  opacity: 1;
  filter: none;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.clients-logo-track .logo-item:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.04);
}

.clients-metrics {
  margin-top: 30px;
}

.client-metric {
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(0, 87, 217, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 26, 53, 0.07);
}

.client-metric strong {
  display: block;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.client-metric span {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.clients-sector-section {
  padding: 86px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.clients-sector-card {
  position: relative;
  height: 100%;
  min-height: 270px;
  padding: 34px 30px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 87, 217, 0.14);
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(7, 26, 53, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.clients-sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.clients-sector-card .client-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary-blue, #008cff));
  color: #ffffff;
  font-size: 27px;
  box-shadow: 0 16px 34px rgba(0, 87, 217, 0.2);
}

.clients-sector-card h3 {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.clients-sector-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.clients-sector-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.28);
  box-shadow: 0 28px 68px rgba(7, 26, 53, 0.12);
}

.clients-sector-card:hover::before {
  transform: scaleX(1);
}

.clients-promise-section {
  padding: 84px 0 96px;
  background: #ffffff;
}

.clients-promise-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 122, 0, 0.18), transparent 25%),
    radial-gradient(circle at 16% 82%, rgba(0, 140, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #06162f 0%, #092b5c 54%, #00459c 100%);
  box-shadow: 0 30px 86px rgba(7, 26, 53, 0.2);
}

.clients-promise-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
  pointer-events: none;
}

.clients-promise-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  pointer-events: none;
}

.clients-promise-panel .row {
  position: relative;
  z-index: 1;
}

.clients-promise-panel .eyebrow {
  color: #ffffff;
  opacity: 1;
}

.clients-promise-panel .eyebrow::before {
  background: var(--secondary);
}

.clients-promise-panel h2 {
  color: #ffffff !important;
  max-width: 700px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 14px 0 18px;
}

.clients-promise-panel p {
  color: rgba(255, 255, 255, 0.84) !important;
  max-width: 650px;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.promise-list {
  display: grid;
  gap: 16px;
}

.promise-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.promise-list i {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #eaf4ff);
  color: var(--primary);
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(0, 87, 217, 0.18);
}

.promise-list span {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.promise-list div:hover {
  transform: translateX(8px);
  border-color: rgba(255, 122, 0, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #0057d9 0%, #008cff 100%);
  box-shadow: 0 16px 36px rgba(0, 87, 217, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.94);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6a00 100%);
  box-shadow: 0 20px 42px rgba(255, 122, 0, 0.28);
  transform: translateY(-4px) scale(1.04);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

@media (max-width: 991.98px) {
  .clients-logo-track .logo-item {
    min-width: 220px;
  }

  .clients-promise-panel h2 {
    font-size: clamp(1.8rem, 6vw, 2.7rem);
  }
}

@media (max-width: 767.98px) {
  .clients-trust-section,
  .clients-sector-section,
  .clients-promise-section {
    padding: 58px 0;
  }

  .clients-logo-panel {
    border-radius: 20px;
  }

  .clients-logo-track .logo-item {
    min-width: 190px;
    height: 96px;
  }

  .clients-sector-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .clients-promise-panel {
    border-radius: 24px;
  }
}

.director-message {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 87, 217, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(234, 244, 255, 0.95), rgba(255, 255, 255, 0.96) 54%, rgba(255, 122, 0, 0.06));
  box-shadow: 0 28px 70px rgba(7, 26, 53, 0.1);
}

.director-message::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 87, 217, 0.1);
}

.director-message > * {
  position: relative;
  z-index: 1;
}

.director-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--light);
  box-shadow: 0 24px 54px rgba(7, 26, 53, 0.14);
}

.director-photo::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.director-photo img {
  display: block;
  width: 100%;
  height: clamp(360px, 38vw, 520px);
  object-fit: cover;
  object-position: center top;
}

.director-message h2 {
  max-width: 760px;
  margin: 14px 0 22px;
  color: var(--navy);
}

.director-message p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.director-signature {
  margin-top: 30px;
  padding-left: 22px;
  border-left: 4px solid var(--accent);
}

.director-signature strong,
.director-signature span {
  display: block;
}

.director-signature strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.director-signature span {
  margin-top: 4px;
  color: var(--muted);
}

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.success {
  color: #0f5132;
  background: #e9f8ef;
  border: 1px solid #b7ebc7;
}

.form-status.error {
  color: #842029;
  background: #fff1f1;
  border: 1px solid #f5c2c7;
}
