:root {
  --navy: #0F2545;
  --navy-2: #173A6B;
  --amber: #F0A63B;
  --amber-dark: #C7811C;
  --bg: #FAF9F6;
  --card: #FFFFFF;
  --text: #1B2432;
  --muted: #63707F;
  --border: #E7E5DE;
  --shadow: 0 8px 24px rgba(15, 37, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.display {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
}

.top-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 12px;
  color: #B9C6D8;
}

.top-bar-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar-phone,
.top-bar-email,
.top-bar-hours {
  color: #D9E1EC;
}

/* ============ HEADER / NAV (single clean version) ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 3px solid var(--amber);
}

.nav-row {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 28px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  flex-shrink: 1;
  overflow: hidden;
}

.nav-brand .nav-logo {
  width: auto;
  height: auto;
  max-width: 260px;
  max-height: 70px;
  object-fit: contain;
  flex-shrink: 1;
}

.nav-brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-brand .word {
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-brand .word b {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav-links a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--amber);
  background: rgba(15, 37, 69, 0.06);
}

.nav-links a.cta {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  margin-left: 6px;
}

.nav-links a.cta:hover {
  background: var(--amber-dark);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Off-canvas mobile menu, slides left -> right */

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 78%;
  max-width: 320px;
  background: var(--navy);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.4, 0, .2, 1);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.25);
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mobile-panel a {
  color: #E7EDF5;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel a.cta {
  margin-top: 14px;
  text-align: center;
  background: var(--amber);
  color: var(--navy);
  border-radius: 8px;
  border-bottom: none;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 34, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  z-index: 190;
}

.scrim.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    font-size: 11px;
  }

  .nav-row {
    padding: 10px 16px;
    min-height: 72px;
  }

  .nav-brand .nav-logo {
    width: auto;
    height: auto;
    max-width: 160px;
    max-height: 48px;
  }
}

@media (max-width: 600px) {
  .top-bar-hours {
    display: none;
  }

  .nav-brand .nav-logo {
    max-width: 130px;
    max-height: 42px;
  }
}

/* ============ HERO SLIDER ============ */

.hero-slider {
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 17, 33, 0.92) 0%,
    rgba(8, 17, 33, 0.78) 38%,
    rgba(15, 37, 69, 0.45) 65%,
    rgba(15, 37, 69, 0.25) 100%
  );
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

.hero-slide-content {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--amber);
  background: rgba(240, 166, 59, 0.14);
  border: 1px solid rgba(240, 166, 59, 0.4);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-slide-content h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-slide-content h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-slide-content p {
  font-size: 16px;
  color: #DCE4EF;
  max-width: 480px;
  margin: 0 0 26px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(240, 166, 59, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.hero-dot.active {
  background: var(--amber);
  border-color: var(--amber);
  width: 26px;
  border-radius: 6px;
}

.hero-stats-bar {
  position: relative;
  z-index: 6;
  background: linear-gradient(165deg, var(--navy), #0B1D38);
  border-top: 1px solid rgba(240, 166, 59, 0.3);
}

.hero-stats-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 28px;
}

.stat-card {
  text-align: center;
}

.stat-card .num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: var(--amber);
  font-weight: 600;
}

.stat-card .lbl {
  font-size: 11.5px;
  color: #B9C6D8;
  margin-top: 3px;
}

@media (max-width: 880px) {
  .hero-slider {
    height: 560px;
  }

  .hero-slide-content {
    max-width: 100%;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .hero-arrow.prev {
    left: 10px;
  }

  .hero-arrow.next {
    right: 10px;
  }

  .hero-stats-bar .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ SECTION HEADS ============ */

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 6px;
  letter-spacing: 0.2px;
}

.section-intro {
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 0 40px;
}

/* ============ PRODUCT SECTION ============ */

.product-section {
  padding: 76px 0;
}

.product-section.alt {
  background: #F3F1EA;
}

.product-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pc-media {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #F7F5F0, #EFEDE5);
}

.pc-media .main-shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.pc-media .sub-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pc-media .sub-shots img {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

.pc-body {
  padding: 40px 40px 40px 8px;
}

.pc-body .kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--amber-dark);
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pc-body h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 12px;
}

.pc-body .desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.feature-grid {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.feature-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.feature-grid li::before {
  content: "✓";
  color: var(--navy);
  background: rgba(15, 37, 69, 0.08);
  width: 18px;
  height: 18px;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 7px;
  background: rgba(15, 37, 69, 0.06);
  color: var(--navy);
}

.tag.amber {
  background: rgba(240, 166, 59, 0.16);
  color: var(--amber-dark);
}

table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin-top: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

table.spec th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 12px;
}

table.spec td {
  padding: 9px 12px;
  border-top: 1px solid var(--border);
  color: var(--text);
}

table.spec tr:nth-child(even) td {
  background: #FAF9F6;
}

table.spec td:first-child {
  font-weight: 700;
  color: var(--navy);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
}

.apps-inline {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apps-inline span {
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 11px;
  border-radius: 20px;
}

@media (max-width: 880px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .pc-body {
    padding: 32px 24px;
  }

  .pc-media {
    padding: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ABOUT ============ */

.about-section {
  padding: 76px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.pillar-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text);
}

.pillar-list b {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.pillar-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-dark);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-panel {
  background: linear-gradient(165deg, var(--navy), #0B1D38);
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(240, 166, 59, 0.16), transparent 60%);
}

.about-panel-inner {
  position: relative;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.about-panel h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin: 0 0 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric:nth-child(-n+2) {
  border-top: none;
}

.metric .num {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: #fff;
  font-weight: 600;
}

.metric .lbl {
  font-size: 12px;
  color: #B9C6D8;
  margin-top: 3px;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ WHY CHOOSE US ============ */

.why-section {
  padding: 76px 0;
  background: #F3F1EA;
}

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

.why-section .section-intro {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 37, 69, 0.12);
}

.why-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(240, 166, 59, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 19px;
  color: var(--amber-dark);
}

.why-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  margin: 0 0 8px;
  color: var(--navy);
}

.why-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ FOOTER ============ */

.footer {
  background: #081426;
  color: #fff;
  padding: 64px 0 0;
  margin-top: 0;
  border-top: 1px solid rgba(240, 166, 59, 0.25);
}

.footer .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin: 0 0 16px;
}

.footer p {
  color: #B9C6D8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li a {
  color: #D9E1EC;
  font-size: 14px;
}

.footer ul li a:hover {
  color: var(--amber);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge-row span {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #C6D2E2;
  padding: 5px 10px;
  border-radius: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 12.5px;
  color: #93A2B8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 880px) {
  .footer .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============ OUR PRODUCTS (SLIDER) ============ */
.products-section{padding:76px 0;}
.products-head-row{
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px;
  margin-bottom:8px;
}
.slider-controls{display:flex; gap:10px; flex-shrink:0; margin-bottom:32px;}
.slider-arrow{
  width:44px; height:44px; border-radius:50%;
  border:1.5px solid var(--navy); background:#fff; color:var(--navy);
  font-size:18px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.slider-arrow:hover{background:var(--navy); color:#fff;}
.slider-arrow:active{transform:scale(0.94);}
.slider-arrow.disabled{opacity:0.35; pointer-events:none;}

.products-slider-wrap{position:relative;}
.products-track{
  display:flex; gap:24px; overflow-x:auto; scroll-behavior:smooth;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  padding:4px 4px 16px; scrollbar-width:none;
}
.products-track::-webkit-scrollbar{display:none;}

.product-tile{
  flex:0 0 300px; scroll-snap-align:start;
  background:var(--card); border:1px solid var(--border); border-radius:16px;
  overflow:hidden; box-shadow:var(--shadow);
  display:flex; flex-direction:column;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.product-tile:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(15,37,69,0.14);}
.product-tile .tile-media{aspect-ratio:4/3; overflow:hidden; background:#EFEDE5;}
.product-tile .tile-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.35s ease;
}
.product-tile:hover .tile-media img{transform:scale(1.06);}
.tile-body{padding:20px 20px 22px; display:flex; flex-direction:column; flex:1;}
.tile-body .kicker{
  font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--amber-dark);
  letter-spacing:1.5px; font-weight:600; margin-bottom:8px;
}
.tile-body h3{font-size:18px; margin:0 0 8px; color:var(--navy);}
.tile-body p{font-size:13px; color:var(--muted); line-height:1.6; margin:0 0 18px; flex:1;}
.tile-cta{
  align-self:flex-start; font-size:13px; font-weight:700; color:var(--navy);
  padding:9px 16px; border-radius:8px; border:1.5px solid var(--navy);
  display:inline-flex; align-items:center; gap:6px;
  transition:background 0.2s ease, color 0.2s ease; text-decoration:none;
}
.tile-cta:hover{background:var(--navy); color:#fff;}
.tile-cta .arrow{transition:transform 0.2s ease;}
.tile-cta:hover .arrow{transform:translateX(3px);}

@media (max-width:880px){
  .product-tile{flex-basis:260px;}
  .products-head-row{flex-direction:column; align-items:flex-start;}
  .slider-controls{margin-bottom:20px;}
}

/* about page style */
.about-hero-copy {
  max-width: 680px;
}

.about-hero-banner {
  background-image:
    linear-gradient(100deg, rgba(8, 17, 33, 0.92) 0%, rgba(8, 17, 33, 0.82) 45%, rgba(15, 37, 69, 0.55) 100%),
    url('../images/banner-img-3.avif');
  background-size: cover;
  background-position: center;
}
 
.about-hero-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}
 
.about-hero-lead {
  color: #DCE4EF;
  font-size: 15.5px;
  line-height: 1.7;
}
 
.mv-title {
  color: var(--navy);
}
 
.mv-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  color: var(--amber-dark);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.value-card-bg {
  background: #F3F1EA;
}
 
.value-title {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--navy);
}
 
.value-text {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
 
.cap-title {
  color: var(--navy);
}
 
.cap-text {
  color: var(--muted);
  font-size: 13.5px;
}
 
.cert-badge {
  background: var(--navy);
  color: var(--amber);
}
 
.cert-title {
  color: var(--navy);
  font-size: 14.5px;
}
 
.cert-text {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
 
.about-cta-title {
  max-width: 440px;
}
 
.about-cta-lead {
  color: #DCE4EF;
  font-size: 14.5px;
  line-height: 1.65;
}

/*services page*/
.services-hero-banner {
  background-image:
    linear-gradient(100deg, rgba(8, 17, 33, 0.92) 0%, rgba(8, 17, 33, 0.82) 45%, rgba(15, 37, 69, 0.55) 100%),
    url('../images/banner-img-2.avif');
  background-size: cover;
  background-position: center;
}
 
.text-navy   {
  color: var(--navy) !important; 
}
.text-amber  {
  color: var(--amber-dark) !important; 
}
.bg-amber-soft {
  background: rgba(240, 166, 59, 0.1) !important; 
}
.border-amber  { 
  border-color: var(--amber) !important; 
}
 
.list-group-numbered > .list-group-item::before {
  color: var(--amber-dark);
  font-weight: 700;
}
.text-warning{
  color: var(--amber) !important;
}

.products-hero-banner {
  background-image:
    linear-gradient(100deg, rgba(8, 17, 33, 0.92) 0%, rgba(8, 17, 33, 0.82) 45%, rgba(15, 37, 69, 0.55) 100%),
    url('../images/banner-img-1.avif');
  background-size: cover;
  background-position: center;
}

.gallery-hero-banner {
  background-image:
    linear-gradient(100deg, rgba(8, 17, 33, 0.92) 0%, rgba(8, 17, 33, 0.82) 45%, rgba(15, 37, 69, 0.55) 100%),
    url('../images/banner-img-3.avif');
  background-size: cover;
  background-position: center;
}
 
.gallery-hero-copy {
  max-width: 680px;
}
 
.gallery-hero-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}
 
.gallery-hero-lead {
  color: #DCE4EF;
  font-size: 15.5px;
  line-height: 1.7;
}
 
/* Filter buttons */
.gallery-filter-btn {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
 
.gallery-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
 
.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
 
/* Gallery tiles */
.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  background: #EFEDE5;
  cursor: pointer;
}
 
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
 
.gallery-tile:hover img {
  transform: scale(1.08);
}
 
.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 37, 69, 0);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}
 
.gallery-tile:hover .gallery-tile-overlay {
  background: rgba(15, 37, 69, 0.45);
  opacity: 1;
}
 
.gallery-tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(0deg, rgba(8, 17, 33, 0.85), transparent);
  text-align: left;
}
 
.gallery-empty-msg {
  color: var(--muted);
  font-size: 14px;
}
 
/* Lightbox modal */
.gallery-modal-content {
  background: #0B1D38;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
 
.gallery-modal-content img {
  display: block;
  max-height: 78vh;
  object-fit: contain;
  background: #081426;
}
 
.gallery-modal-caption {
  padding: 14px 20px;
  color: #DCE4EF;
  font-size: 12.5px;
  letter-spacing: 0.5px;
}
 
.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  opacity: 0.9;
}
 
/* Closing CTA panel copy */
.gallery-cta-copy {
  max-width: 440px;
}
 
.gallery-cta-lead {
  color: #DCE4EF;
  font-size: 14.5px;
  line-height: 1.65;
}


/**** clients page css start **/
/* ==========================================
   CLIENTS PAGE
========================================== */

.client-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 39, 72, 0.10);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(15, 39, 72, 0.06);
}

.client-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(15, 39, 72, 0.13);
    border-color: rgba(244, 180, 0, 0.45);
}


/* Client Logo */

.client-logo-box {
    height: 210px;
    padding: 30px;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(15, 39, 72, 0.08);
}

.client-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-card:hover .client-logo-box img {
    transform: scale(1.05);
}


/* Client Content */

.client-card-body {
    padding: 28px;
}

.client-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #d49400;
    margin-bottom: 10px;
}

.client-card-body h3 {
    color: #0f2748;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 13px;
}

.client-card-body p {
    color: #667585;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* Client Type */

.client-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(15, 39, 72, 0.05);
    color: #0f2748;
    font-size: 12px;
    font-weight: 600;
}

.client-type i {
    color: #e4a900;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .client-logo-box {
        height: 180px;
        padding: 25px;
    }

    .client-card-body {
        padding: 23px;
    }

    .client-card-body h3 {
        font-size: 19px;
    }

}




/* =========================================
   CLIENT SECTION
========================================= */

.clients-section {
    padding: 90px 0;
    background: #f7f9fb;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-subtitle {
    color: #f4a900;
}

.section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #102b43;
    margin-bottom: 15px;
}

.section-heading p {
    color: #687887;
    font-size: 16px;
    line-height: 1.7;
}




/* =========================================
   TRUSTED PARTNERS SECTION
========================================= */

.trusted-partners {
    width: 100%;
    padding: 90px 0 100px;

    background: #ffffff;
}

.trusted-container {
    width: 88%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.trusted-heading {
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}

.trusted-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #f0a63b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.trusted-heading h2 {
    margin: 0 0 15px;
    color: #182235;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.trusted-heading p {
    margin: 0;
    color: #737b88;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   CLIENT GALLERY
========================================= */

.clients-gallery {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    column-gap: 30px;
    row-gap: 70px;
    align-items: start;
}


/* =========================================
   CLIENT ITEM
========================================= */

.client-item {
    position: relative;
    min-width: 0;
    text-align: center;
}


/* =========================================
   NUMBER
========================================= */

.client-number {
    margin-bottom: 15px;
    color: #c7ccd4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =========================================
   LOGO AREA
========================================= */

.client-logo {
    width: 100%;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/*
   Every logo gets the same maximum area.
   The image itself is NOT stretched.
*/

.client-logo img {
    display: block;
    max-width: 145px;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.client-item:hover .client-logo img {
    transform: scale(1.06);
}


/* =========================================
   COMPANY NAME
========================================= */

.client-item h3 {
    min-height: 45px;
    margin: 0 0 8px;
    color: #1b2638;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================
   CATEGORY
========================================= */

.client-item p {
    margin: 0;
    color: #8a919d;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   SUBTLE DIVIDER
========================================= */

/*
   Adds a very light vertical separation
   without creating cards.
*/

.client-item:not(:last-child)::after {

    content: "";
    position: absolute;
    top: 35px;
    right: -15px;
    width: 1px;
    height: 110px;
    background: #edf0f3;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {
    .clients-gallery {
        grid-template-columns:
            repeat(3, 1fr);
        column-gap: 35px;
        row-gap: 60px;
    }

    .client-item:nth-child(3)::after {
        display: none;
    }

    .client-item:nth-child(5)::after {
        display: none;
    }

    .trusted-heading h2 {
        font-size: 36px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .trusted-partners {
        padding: 65px 0 75px;
    }

    .trusted-container {
        width: 88%;
    }

    .trusted-heading {
        margin-bottom: 45px;
    }

    .trusted-heading h2 {
        font-size: 30px;
    }

    .trusted-heading p {
        font-size: 14px;
    }

    .clients-gallery {

        grid-template-columns:
            repeat(2, 1fr);

        column-gap: 25px;
        row-gap: 50px;
    }

    .client-item::after {
        display: none !important;
    }

    .client-logo {
        height: 90px;
    }

    .client-logo img {
        max-width: 120px;
        max-height: 70px;
    }

    .client-item h3 {
        min-height: auto;

        font-size: 14px;
    }

    .client-item p {
        font-size: 10px;
    }
}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 400px) {

    .clients-gallery {
        column-gap: 15px;
    }

    .client-logo img {
        max-width: 105px;
    }

    .client-item h3 {
        font-size: 13px;
    }
}

/* =========================================
   TRUST SECTION
========================================= */

.client-trust-section {
    padding: 90px 0;
    background: #fff;
}

.trust-card {
    height: 100%;
    text-align: center;
    padding: 35px 25px;
    border: 1px solid #e8edf1;
    border-radius: 10px;
    transition: all .3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: #f0a500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.trust-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #102b43;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.trust-card h4 {
    color: #102b43;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-card p {
    color: #687887;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .clients-hero {
        padding: 80px 0;
    }

    .clients-hero h1 {
        font-size: 42px;
    }

    .clients-section,
    .client-trust-section {
        padding: 70px 0;
    }

    .clients-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .clients-hero {
        padding: 65px 0;
    }

    .clients-hero h1 {
        font-size: 34px;
    }

    .clients-hero p {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .client-image {
        height: 180px;
    }

    .clients-cta h2 {
        font-size: 28px;
    }

}
/**** clients page css end **/
