/*
 * Virtual Hydromet — Complete Design System
 * newstyle.css  |  All public pages
 */

/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
  --nh-primary:       #075ea8;
  --nh-primary-dark:  #043b6b;
  --nh-primary-light: #e8f1fb;
  --nh-cyan:          #08b6d0;
  --nh-cyan-light:    #e4f8fb;
  --nh-navy:          #061c36;
  --nh-heading:       #0d2137;
  --nh-text:          #4a5c6e;
  --nh-text-light:    #7a8d9e;
  --nh-off-white:     #f4f8fb;
  --nh-border:        #dde6ef;
  --nh-border-dark:   #c4d4e3;
  --nh-white:         #ffffff;
  --nh-success:       #28a745;
  --nh-danger:        #dc3545;
  --nh-warning:       #ffc107;
  --nh-shadow-xs:     0 1px 4px rgba(8,43,73,.07);
  --nh-shadow-sm:     0 4px 16px rgba(8,43,73,.09);
  --nh-shadow-md:     0 8px 32px rgba(8,43,73,.12);
  --nh-shadow-lg:     0 16px 52px rgba(8,43,73,.15);
  --nh-radius-sm:     6px;
  --nh-radius:        10px;
  --nh-radius-lg:     16px;
  --nh-radius-pill:   50px;
  --nh-transition:    all .25s ease;
}

/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nh-text);
  background: var(--nh-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { margin: 0 0 .6em; font-weight: 700; line-height: 1.2; color: var(--nh-heading); letter-spacing: -.3px; }
h1 { font-size: clamp(30px,4vw,52px); }
h2 { font-size: clamp(24px,3vw,38px); }
h3 { font-size: clamp(20px,2.5vw,26px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 14px; font-weight: 700; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--nh-primary); text-decoration: none; transition: var(--nh-transition); }
a:hover { color: var(--nh-primary-dark); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button,input,textarea,select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }
*:focus { outline: none !important; }
ul { list-style: none; margin: 0; padding: 0; }

/* Font Awesome 5 Pro — do not inherit Inter; FA6 CDN was overriding this */
.fa, .fas, .far, .fal, .fad {
  font-family: "Font Awesome 5 Pro" !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  display: inline-block;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.fa, .fas, .fad { font-weight: 900; }
.far { font-weight: 400; }
.fal { font-weight: 300; }
.fab {
  font-family: "Font Awesome 5 Brands" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
}

/* ============================================================
   03. LAYOUT
   ============================================================ */
.container { max-width: 1260px; width: 100%; margin: 0 auto; padding: 0 20px; }
.nh-section    { padding: 35px 0; }
.nh-section-sm { padding: 48px 0; }
.nh-section-lg { padding: 100px 0; }
.nh-bg-white   { background: var(--nh-white); }
.nh-bg-light   { background: var(--nh-off-white); }
.nh-bg-navy    { background: linear-gradient(120deg, var(--nh-navy), #0e4272 55%, #0a7b8e); }

/* ============================================================
   04. PAGE TITLE BANNER
   ============================================================ */
.page-title-section {
  background: linear-gradient(100deg, #032b51 0%, var(--nh-primary) 55%, var(--nh-cyan) 100%);
  padding: 42px 0 !important;
}
.page-title-section .page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-title-section .page-title h3,
.page-title-section .page-title h5 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
}
.page-title-section .page-title h3 i,
.page-title-section .page-title h5 i { color: rgba(255,255,255,.65); }
.section.page-title-section { padding: 0; }

/* ============================================================
   05. SECTION HELPERS
   ============================================================ */
.nh-label, .nh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nh-primary);
  margin-bottom: 10px;
}
.nh-label::before, .nh-label::after,
.nh-kicker::before, .nh-kicker::after {
  content: '';
  width: 18px; height: 2px;
  border-radius: 10px;
  background: var(--nh-cyan);
}
.nh-section-header, .nh-section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.nh-section-header h2, .nh-section-head h2 { margin-bottom: .4em; }
.nh-section-header h2 span, .nh-section-head h2 span { color: var(--nh-primary); }
.nh-section-header p, .nh-section-head p { font-size: 14px; color: var(--nh-text-light); max-width: 680px; margin: 0 auto; }
.nh-divider, .nh-line { width: 48px; height: 3px; margin: 14px auto 0; border-radius: 10px; background: linear-gradient(90deg,var(--nh-primary),var(--nh-cyan)); }

/* ============================================================
   06. UNIFIED SITE HEADER
   ============================================================ */

/* Top bar */
.vh-topbar { background: #061c36; height: 42px; display: flex; align-items: center; }
.vh-topbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; }
.vh-topbar-left, .vh-topbar-right { display: flex; align-items: center; gap: 18px; }
.vh-topbar-left a, .vh-topbar-right a {
  color: rgba(255,255,255,.68); font-size: 11.5px;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: color .22s;
}
.vh-topbar-left a:hover, .vh-topbar-right a:hover { color: #63ddea; }
.vh-topbar-left a i, .vh-topbar-right a i { color: #63ddea; font-size: 11px; }
.vh-topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.vh-topbar-search {
    display: inline-flex;
    align-items: center;
    height: 30px;
    width: 360px;
    max-width: 42vw;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .2s, background .2s;
}

.vh-topbar-search:focus-within {
  background: rgba(255,255,255,.14);
  border-color: rgba(99,221,234,.55);
}
.vh-topbar-search input,
.vh-topbar-search input[type="text"] {
  flex: 1;
  min-width: 0;
  width: auto !important;
  height: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 12px !important;
  outline: none !important;
  padding: 0 0 0 12px !important;
  box-shadow: none !important;
  appearance: none;
}
.vh-topbar-search input::placeholder,
.vh-topbar-search input[type="text"]::placeholder {
  color: rgba(255,255,255,.45) !important;
}
.vh-topbar-search input:focus,
.vh-topbar-search input[type="text"]:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}
.vh-topbar-search button {
  width: 34px;
  height: 100%;
  border: none;
  background: transparent;
  color: #63ddea;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .2s, background .2s;
}
.vh-topbar-search button:hover { color: #fff; background: rgba(255,255,255,.08); }
.vh-topbar-search button i { color: inherit; font-size: 12px; margin: 0; }

/* Main navbar */
.vh-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e8eff6;
  box-shadow: 0 2px 20px rgba(6,28,54,.07);
  position: relative;
  z-index: 200;
}
.vh-navbar-inner {
  display: flex;
  align-items: center;
  height: 68px;
  position: relative;
  gap: 8px;
}
.vh-logo {
  position: static;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 18px;
}
.vh-logo img {
    height: 65px;
    width: auto;
    display: block;
}

.vh-navbar-tools {
  position: static;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 32px;
  /*border-left: 1px solid #e4edf5;*/
}

.vh-nav { flex: 0 1 auto; display: flex; justify-content: flex-start; min-width: 0; }
.vh-nav-list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; height: 68px; justify-content: flex-start; }
.vh-nav-list > li > a,
.vh-nav-list > li > .vh-mega-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0 16px; height: 68px;
  font-size: 15px; font-weight: 600; color: #1a2e47;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .22s, border-color .22s;
  cursor: pointer; background: none;
  border-top: none; border-left: none; border-right: none;
  white-space: nowrap;
  letter-spacing: .1px;
}
.vh-nav-list > li > a:hover,
.vh-nav-list > li > .vh-mega-trigger:hover,
.vh-nav-list > li.vh-has-mega:hover > .vh-mega-trigger {
  color: var(--nh-primary); border-bottom-color: var(--nh-cyan);
}
.vh-nav-list > li > a i, .vh-mega-trigger i { font-size: 10px; opacity: .7; }

/* Navbar tools — handled by position:absolute above */

.vh-tool-login {
  position: relative; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--nh-radius-sm); background: var(--nh-primary-light);
  color: var(--nh-primary) !important; font-size: 16px;
  text-decoration: none; transition: background .22s, color .22s;
}
.vh-tool-login:hover { background: var(--nh-primary); color: #fff !important; }

.vh-tool-user {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; background: var(--nh-primary-light);
  color: var(--nh-primary) !important; border-radius: var(--nh-radius-sm);
  font-size: 12.5px; font-weight: 700; text-decoration: none;
  white-space: nowrap; max-width: 160px;
}
.vh-tool-user-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100px; display: inline-block; }

.vh-tool-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--nh-radius-sm);
  color: #1a2e47 !important;
  font-size: 18px;
  text-decoration: none; transition: background .22s, color .22s;
  border: 1.5px solid transparent;
}
.vh-tool-icon:hover { background: var(--nh-primary-light); color: var(--nh-primary) !important; border-color: var(--nh-border); }

.vh-tool-cart {
  position: relative; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--nh-radius-sm); background: var(--nh-primary-light);
  color: var(--nh-primary) !important; font-size: 16px;
  text-decoration: none; transition: background .22s;
}
.vh-tool-cart:hover { background: var(--nh-primary); color: #fff !important; }
.vh-cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 50px; background: var(--nh-cyan);
  color: #fff; font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* Navbar search field */
.vh-nav-search {
  display: flex;
  align-items: center;
  height: 40px;
  width: 340px;
  background: #f3f7fb;
  border: 1.5px solid #c5d5e4;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, background .22s;
}
.vh-nav-search:focus-within {
  background: #fff;
  border-color: var(--nh-primary);
  box-shadow: 0 0 0 3px rgba(7,94,168,.14);
}
.vh-nav-search-icon {
  padding: 0 4px 0 12px;
  color: var(--nh-primary);
  font-size: 13px;
  flex-shrink: 0;
}
.vh-nav-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--nh-heading);
  padding: 0 8px 0 6px;
}
.vh-nav-search input::placeholder { color: #8aa0b4; font-weight: 500; }
.vh-nav-search button {
  height: 100%;
  padding: 0 14px;
  border: 0;
  background: var(--nh-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .2px;
  transition: background .22s;
  flex-shrink: 0;
}
.vh-nav-search button:hover { background: var(--nh-primary-dark); }
.vh-nav-search-sm { width: 400px; height: 36px; }
.vh-nav-search-sm button { padding: 0 12px; font-size: 12px; }

.vh-tool-search {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--nh-primary);
  color: #fff !important;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(7,94,168,.28);
  transition: background .22s, transform .22s;
}
.vh-tool-search:hover {
  background: var(--nh-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.ui-autocomplete {
  z-index: 2000 !important;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid #d5e2ee !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 32px rgba(6,28,54,.14) !important;
  padding: 6px 0 !important;
  font-family: inherit !important;
  font-size: 13px !important;
}
.ui-autocomplete .ui-menu-item-wrapper {
  padding: 8px 14px !important;
  color: #1a2e47;
}
.ui-autocomplete .ui-state-focus,
.ui-autocomplete .ui-state-active {
  background: #e8f1fb !important;
  border: none !important;
  margin: 0 !important;
  color: var(--nh-primary) !important;
}

/* Hamburger */
.vh-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  border: 1px solid #e0eaf3; border-radius: var(--nh-radius-sm);
  background: #fff; cursor: pointer; padding: 0;
}
.vh-hamburger span { display: block; width: 20px; height: 2px; background: #1a2e47; border-radius: 2px; transition: .25s; }

/* ── Mega menu ── */
.vh-has-mega { position: static !important; }
.vh-mega-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-top: 3px solid var(--nh-cyan);
  border-bottom: 1px solid #e0eaf3;
  box-shadow: 0 18px 50px rgba(6,28,54,.13);
  z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.vh-has-mega:hover > .vh-mega-panel,
.vh-has-mega:focus-within > .vh-mega-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.vh-mega-inner {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; max-height: 440px; overflow: hidden;
}
.vh-mega-col { padding: 22px 17px; border-right: 1px solid #f0f5fa; }
.vh-mega-col:last-child { border-right: none; }
.vh-mega-col-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid #e8eff6;
}
.vh-mega-col-head img { height: 24px; width: auto; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.vh-mega-col-head span { font-size: 11px; font-weight: 800; color: var(--nh-primary); text-transform: uppercase; letter-spacing: .5px; line-height: 1.2; }
.vh-mega-col ul { list-style: none; margin: 0; padding: 0; }
.vh-mega-col ul li { margin-bottom: 1px; }
.vh-mega-col ul li a {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; font-size: 12.5px; font-weight: 500;
  color: #34516a; text-decoration: none; border-radius: 5px;
  transition: background .18s, color .18s, padding-left .18s;
}
.vh-mega-col ul li a i { color: var(--nh-cyan); font-size: 10px; flex-shrink: 0; }
.vh-mega-col ul li a:hover { background: #eef7fb; color: var(--nh-primary); padding-left: 10px; }
.vh-mega-col-scroll { max-height: 300px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #c4d4e3 transparent; }
.vh-mega-col-scroll::-webkit-scrollbar { width: 4px; }
.vh-mega-col-scroll::-webkit-scrollbar-thumb { background: #c4d4e3; border-radius: 4px; }

/* ── Sticky header ── */
.vh-sticky-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 998;
  background: #fff; box-shadow: 0 4px 24px rgba(6,28,54,.12);
  transform: translateY(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.vh-sticky-header.is-visible { transform: translateY(0); }
.vh-sticky-header .vh-navbar-inner { height: 58px; }
.vh-sticky-header .vh-logo { position: static; transform: none; margin-right: 14px; }
.vh-sticky-header .vh-logo img { height: 51px; }
.vh-sticky-header .vh-nav { flex: 0 1 auto; display: flex; justify-content: flex-start; }
.vh-sticky-header .vh-nav-list { height: 58px; justify-content: flex-start; }
.vh-sticky-header .vh-nav-list > li > a,
.vh-sticky-header .vh-nav-list > li > .vh-mega-trigger { height: 58px; font-size: 15px; }
.vh-sticky-header .vh-navbar-tools { position: static; transform: none; margin-left: auto; padding-left: 28px; }
.vh-sticky-header .vh-mega-panel { top: 100%; }

/* ── Header responsive ── */
@media (max-width: 1199px) {
  .vh-mega-inner { grid-template-columns: repeat(3,1fr); max-height: 60vh; overflow-y: auto; }
  .vh-topbar-search { width: 220px; }
}
@media (max-width: 991px) {
  .vh-topbar { display: none !important; }
  .vh-nav { display: none; }
  .vh-hamburger { display: flex; }
  .vh-navbar-inner { height: 60px; }
  .vh-logo img { height: 30px; }
  .vh-tool-user-name { display: none; }
  .vh-sticky-header { display: none !important; }
  .vh-nav-search { display: none; }
  .vh-tool-search { display: inline-flex; }
}
@media (max-width: 575px) {
  .vh-tool-login { width: 36px; height: 36px; font-size: 13px; }
}

/* ============================================================
   07. OFF-CANVAS PANELS
   ============================================================ */
.nh-offcanvas-overlay {
  position: fixed; inset: 0; background: rgba(8,43,73,.45);
  z-index: 1099; opacity: 0; visibility: hidden; transition: .4s ease;
}
.nh-offcanvas-overlay.active { opacity: 1; visibility: visible; }

.nh-offcanvas {
  position: fixed; top: 0; bottom: 0; width: 360px; max-width: 92vw;
  background: #fff; z-index: 1100;
  display: flex; flex-direction: column;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--nh-shadow-lg);
}
.nh-offcanvas-right { right: 0; transform: translateX(100%); }
.nh-offcanvas-right.active { transform: translateX(0); }
.nh-offcanvas-left { left: 0; transform: translateX(-100%); }
.nh-offcanvas-left.active { transform: translateX(0); }

.nh-offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--nh-border);
  flex-shrink: 0;
  background: #fff;
  position: relative;
  z-index: 2;
}
.nh-offcanvas-head .title { font-size: 15px; font-weight: 700; color: var(--nh-heading); }
.nh-offcanvas-close {
  width: 36px; height: 36px;
  border: 1.5px solid var(--nh-border);
  border-radius: var(--nh-radius-sm);
  background: var(--nh-off-white);
  color: var(--nh-text);
  font-size: 20px;
  cursor: pointer;
  display: flex !important;   /* force visible */
  align-items: center;
  justify-content: center;
  transition: var(--nh-transition);
  line-height: 1;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
.nh-offcanvas-close:hover { background: var(--nh-danger); border-color: var(--nh-danger); color: #fff; }
.nh-offcanvas-body { flex: 1; overflow-y: auto; padding: 16px 20px; scrollbar-width: thin; }
.nh-offcanvas-foot { padding: 16px 20px; border-top: 1px solid var(--nh-border); flex-shrink: 0; }

/* Search panel */
.nh-offcanvas-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 20px;
}
.nh-offcanvas-search-form input {
  flex: 1;
  border: 1.5px solid var(--nh-border);
  border-radius: var(--nh-radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--nh-heading);
  transition: var(--nh-transition);
  height: 46px;
}
.nh-offcanvas-search-form input:focus {
  border-color: var(--nh-primary);
  box-shadow: 0 0 0 3px var(--nh-primary-light);
}
.nh-offcanvas-search-form button {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border: none;
  border-radius: var(--nh-radius-sm);
  background: var(--nh-primary); color: #fff;
  font-size: 17px; cursor: pointer;
  transition: var(--nh-transition);
  display: flex; align-items: center; justify-content: center;
}
.nh-offcanvas-search-form button:hover { background: var(--nh-primary-dark); }

/* Force close button always visible — override any Learts/plugin CSS */
.nh-offcanvas-close,
button.nh-offcanvas-close,
.offcanvas-close.nh-offcanvas-close {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 38px !important;
  height: 38px !important;
  border: 1.5px solid var(--nh-border) !important;
  border-radius: var(--nh-radius-sm) !important;
  background: var(--nh-off-white) !important;
  color: var(--nh-text) !important;
  font-size: 22px !important;
  cursor: pointer !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--nh-transition) !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  position: static !important;
  transform: none !important;
}
.nh-offcanvas-close:hover,
button.nh-offcanvas-close:hover {
  background: var(--nh-danger) !important;
  border-color: var(--nh-danger) !important;
  color: #fff !important;
}

/* Mini-cart */
.nh-minicart-list { display: flex; flex-direction: column; gap: 14px; }
.nh-minicart-item { display: flex; gap: 14px; align-items: flex-start; }
.nh-minicart-img {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: var(--nh-radius-sm); overflow: hidden;
  border: 1px solid var(--nh-border); background: var(--nh-off-white);
}
.nh-minicart-img img { width: 100%; height: 100%; object-fit: contain; }
.nh-minicart-info { flex: 1; }
.nh-minicart-info h6 { margin: 0 0 4px; font-size: 13px; font-weight: 600; color: var(--nh-heading); line-height: 1.3; }
.nh-minicart-info p { font-size: 12px; color: var(--nh-text-light); margin: 0; }
.nh-minicart-remove { border: none; background: none; color: var(--nh-text-light); font-size: 13px; cursor: pointer; padding: 0; transition: var(--nh-transition); }
.nh-minicart-remove:hover { color: var(--nh-danger); }

/* Mobile nav */
.nh-mobile-nav { padding: 10px 0; }
.nh-mobile-nav > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px; font-size: 14px; font-weight: 600; color: var(--nh-heading);
  border-bottom: 1px solid var(--nh-border); transition: var(--nh-transition); text-decoration: none;
}
.nh-mobile-nav > li > a:hover { color: var(--nh-primary); padding-left: 8px; }
.nh-mobile-sub { display: none; padding: 6px 0 6px 14px; border-bottom: 1px solid var(--nh-border); }
.nh-mobile-nav > li.open > .nh-mobile-sub { display: block; }
.nh-mobile-sub li a { display: block; padding: 8px 4px; font-size: 13px; color: var(--nh-text); border-bottom: 1px solid var(--nh-border); transition: var(--nh-transition); text-decoration: none; }
.nh-mobile-sub li:last-child a { border-bottom: none; }
.nh-mobile-sub li a:hover { color: var(--nh-primary); padding-left: 6px; }

/* ============================================================
   08. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--nh-radius-sm);
  font-size: 13px; font-weight: 600; line-height: 1;
  cursor: pointer; transition: var(--nh-transition);
  border: 1px solid transparent; text-align: center; white-space: nowrap;
  text-decoration: none;
  width: auto; /* NEVER full-width by default */
}
/* Only explicit full-width */
.btn.w-100, .w-100.btn { width: 100% !important; justify-content: center !important; }
.btn-primary, .btn-dark, .btn-primary2 {
  background: var(--nh-primary); color: #fff !important; border-color: var(--nh-primary);
}
.btn-primary:hover, .btn-dark:hover, .btn-primary2:hover {
  background: var(--nh-primary-dark); border-color: var(--nh-primary-dark);
  color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(7,94,168,.22);
}
.btn-outline-primary, .btn-outline-dark {
  background: transparent; color: var(--nh-primary) !important; border-color: var(--nh-primary);
}
.btn-outline-primary:hover, .btn-outline-dark:hover {
  background: var(--nh-primary); color: #fff !important; transform: translateY(-2px);
}
.btn-outline-hover-dark:hover { background: var(--nh-primary-dark); color: #fff !important; border-color: var(--nh-primary-dark); }
.btn-cyan { background: var(--nh-cyan); color: #fff !important; border-color: var(--nh-cyan); }
.btn-cyan:hover { background: #069bb2; color: #fff !important; transform: translateY(-2px); }
.btn-light { background: var(--nh-off-white); color: var(--nh-heading) !important; border-color: var(--nh-border); }
.btn-light:hover { background: var(--nh-border); color: var(--nh-heading) !important; }
.btn-sm {
    padding: 10px 14px;
    font-size: 13px;
}
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-hover-dark:hover { background: var(--nh-primary-dark); color: #fff !important; border-color: var(--nh-primary-dark); }

/* Fix Bootstrap w-50 on buttons — make auto in most contexts */
.btn.w-50 { width: auto !important; }
/* Only minicart "View Quote List" should be truly full */
.nh-offcanvas-foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   09. FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 600; color: var(--nh-heading); letter-spacing: .2px; text-transform: uppercase; }
.form-control,
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="tel"], input[type="search"],
select, textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-sm); font-size: 14px; color: var(--nh-heading);
  background: #fff; transition: var(--nh-transition); appearance: none;
}
.form-control:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--nh-primary); box-shadow: 0 0 0 3px var(--nh-primary-light); outline: none;
}
textarea { resize: vertical; min-height: 110px; }
input::placeholder, textarea::placeholder { color: var(--nh-text-light); }
.input-group { display: flex; align-items: stretch; }
.input-group .form-control { border-radius: var(--nh-radius-sm) 0 0 var(--nh-radius-sm); }
.input-group .btn { border-radius: 0 var(--nh-radius-sm) var(--nh-radius-sm) 0; }

/* ============================================================
   10. PRODUCT CARD
   ============================================================ */
.product {
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 24px rgba(6, 28, 54, .06);
}
.product:hover {
  transform: translateY(-6px);
  border-color: #c5d7e8;
  box-shadow: 0 16px 40px rgba(6, 28, 54, .12);
}
.product-img {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img a { display: block; width: 100%; height: 100%; }
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  background: #fff;
  transition: transform .4s ease;
}
.product:hover .product-img img { transform: scale(1.05); }
.product-content {
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid #eef3f8;
}
    .product-title, .product-content h5 {
        font-size: 13px;
        font-weight: 600;
        color: var(--nh-heading);
        margin-bottom: 6px;
        line-height: 1.4;
        text-align: center;
    }
.product-title a, .product-content h5 a { color: var(--nh-heading); transition: var(--nh-transition); }
.product-title a:hover, .product-content h5 a:hover { color: var(--nh-primary); }
.product-action {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.product-action:has(> :only-child) { justify-content: center; }
.product-content > .btn:last-child { display: flex; width: fit-content; margin: 8px auto 0; }

/* Product listing grids — explicit gap (Bootstrap gutters not loaded) */
.nh-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.nh-product-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .nh-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .nh-product-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .nh-product-grid,
  .nh-product-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 575px) {
  .nh-product-grid,
  .nh-product-grid-3 { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   11. PRODUCT DETAIL PAGE
   ============================================================ */
.pd-page { padding: 40px 0 0; }

.pd-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Equal-height gallery card (matches summary panel) */
.pd-gallery-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow-sm);
  padding: 14px 14px 16px;
  overflow: hidden;
}

.pd-gallery { position: relative; }

.pd-gallery-main {
  position: relative;
  flex: 1 1 auto;
  min-height: 420px;
  border: 0;
  border-radius: var(--nh-radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0%, #f7fbfe 55%, #eef5fa 100%);
  box-shadow: none;
}

.pd-gallery-main .product-gallery-slider,
.pd-gallery-main .slick-list,
.pd-gallery-main .slick-track,
.pd-gallery-main .slick-slide,
.pd-gallery-main .product-zoom {
  height: 100%;
}

.pd-gallery-main .product-zoom {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-gallery-main .product-gallery-slider .product-zoom img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  display: block;
  /* Zoom past white padding in product photos */
  transform: scale(1.85);
  transform-origin: center center;
  transition: transform .35s ease;
}

.pd-gallery-main .product-zoom:hover img {
  transform: scale(1.95);
}

.pd-gallery-thumb {
  margin-top: 12px;
  flex: 0 0 auto;
}

.pd-gallery-thumb .product-thumb-slider .item img {
  height: 68px; width: 68px; object-fit: contain;
  border: 2px solid var(--nh-border); border-radius: var(--nh-radius-sm);
  padding: 4px; cursor: pointer; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.pd-gallery-thumb .product-thumb-slider .slick-current img {
  border-color: var(--nh-primary);
  box-shadow: 0 0 0 3px rgba(7,94,168,.12);
}

/* Expand button */
.pd-expand-btn {
  position: absolute; top: 22px; right: 22px; z-index: 10;
  width: 38px; height: 38px; border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-sm); background: rgba(255,255,255,.96);
  color: var(--nh-primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--nh-shadow-xs); transition: var(--nh-transition);
}
.pd-expand-btn:hover { background: var(--nh-primary); color: #fff; }

/* Summary panel — same outer card language as gallery */
.pd-summary {
  background: #fff; border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-lg); padding: 28px 26px;
  box-shadow: var(--nh-shadow-sm);
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.pd-cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 13px; background: var(--nh-cyan-light);
  color: var(--nh-primary); border-radius: var(--nh-radius-pill);
  font-size: 11px; font-weight: 700; margin-bottom: 14px;
  width: fit-content;
}
.pd-title {
  font-size: clamp(20px,2.5vw,27px); font-weight: 800;
  color: var(--nh-heading); line-height: 1.25; margin-bottom: 14px;
}
.pd-description {
  font-size: 14px; line-height: 1.8; color: var(--nh-text); margin-bottom: 18px;
}

.pd-action-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

/* Stock badge */
.pd-stock-in {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; background: #e8f8ee; color: #1a7a3c;
  border-radius: var(--nh-radius-pill); font-size: 12px; font-weight: 700;
}
.pd-stock-out {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; background: #fef1f1; color: #c0392b;
  border-radius: var(--nh-radius-pill); font-size: 12px; font-weight: 700;
}

/* Qty + Add to Quote box */
.pd-atq-box {
  background: var(--nh-off-white); border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius); padding: 18px 20px;
  margin-top: auto;
}
.pd-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.pd-qty-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--nh-heading); }
.pd-qty-control { display: flex; align-items: center; }
.pd-qty-btn {
  width: 36px; height: 36px; border: 1px solid var(--nh-border);
  background: #fff; cursor: pointer; font-size: 15px; font-weight: 700;
  color: var(--nh-heading); display: flex; align-items: center; justify-content: center;
  transition: var(--nh-transition);
}
.pd-qty-btn:first-child { border-radius: var(--nh-radius-sm) 0 0 var(--nh-radius-sm); }
.pd-qty-btn:last-child  { border-radius: 0 var(--nh-radius-sm) var(--nh-radius-sm) 0; }
.pd-qty-btn:hover { background: var(--nh-primary-light); color: var(--nh-primary); }
.pd-qty-input {
  width: 52px !important; height: 36px; text-align: center;
  border: 1px solid var(--nh-border); border-left: none; border-right: none;
  font-size: 15px; font-weight: 700; color: var(--nh-heading); background: #fff;
}
.pd-atq-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; background: var(--nh-primary); color: #fff !important;
  border: none; border-radius: var(--nh-radius-sm); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--nh-transition); text-decoration: none;
  width: auto;
}
.pd-atq-btn:hover { background: var(--nh-primary-dark); color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(7,94,168,.25); }

.pd-meta-strip {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--nh-off-white);
  border-radius: var(--nh-radius-sm);
  border: 1px solid var(--nh-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

/* ── Tabs ── */
.pd-tabs-section { padding: 48px 0; background: var(--nh-off-white); border-top: 1px solid var(--nh-border); border-bottom: 1px solid var(--nh-border); }

.pd-tabs { display: flex; align-items: flex-end; gap: 0; border-bottom: 2px solid var(--nh-border); margin-bottom: 28px; flex-wrap: wrap; }
.pd-tab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 24px; font-size: 13px; font-weight: 600;
  color: var(--nh-text); background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  cursor: pointer; transition: color .2s, border-color .2s; white-space: nowrap;
}
.pd-tab-btn:hover { color: var(--nh-primary); }
.pd-tab-btn.active { color: var(--nh-primary); border-bottom-color: var(--nh-primary); font-weight: 700; }
.pd-tab-btn i { font-size: 13px; }

.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

.pd-tab-content-box {
  background: #fff; border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius); padding: 28px;
  box-shadow: var(--nh-shadow-xs);
}
.pd-tab-content-box p { font-size: 14px; line-height: 1.85; color: var(--nh-text); margin: 0; }

.pd-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pd-info-table tr { border-bottom: 1px solid var(--nh-border); }
.pd-info-table tr:last-child { border-bottom: none; }
.pd-info-table th { padding: 13px 16px; background: var(--nh-off-white); font-weight: 700; color: var(--nh-heading); text-align: left; width: 200px; white-space: nowrap; font-size: 13px; }
.pd-info-table td { padding: 13px 16px; color: var(--nh-text); font-size: 13px; }
.pd-info-table td a { color: var(--nh-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.pd-info-table td a:hover { color: var(--nh-primary-dark); }

/* ── Related products ── */
.pd-related { padding: 60px 0; background: #f4f8fb; }
.pd-related .product-img {
  height: 220px;
}
.pd-related .product-img img {
  padding: 12px;
  object-fit: contain;
  object-position: center center;
}

/* ============================================================
   12. SHOP / CATEGORY PAGE
   ============================================================ */
.shop-sidebar { padding: 20px; border: 1px solid var(--nh-border); border-radius: var(--nh-radius); background: #fff; }
.shop-sidebar .widget-title { font-size: 13px; font-weight: 700; color: var(--nh-heading); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--nh-primary-light); text-transform: uppercase; letter-spacing: .5px; }
.shop-sidebar .widget-list li { padding: 6px 0; border-bottom: 1px solid var(--nh-border); font-size: 13px; }
.shop-sidebar .widget-list li:last-child { border-bottom: none; }
.shop-sidebar .widget-list li a { color: var(--nh-text); display: flex; align-items: center; gap: 6px; transition: var(--nh-transition); text-decoration: none; }
.shop-sidebar .widget-list li a:hover { color: var(--nh-primary); padding-left: 4px; }

/* Pagination */
.nh-pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 36px; }
.nh-pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--nh-border); border-radius: var(--nh-radius-sm);
  font-size: 13px; font-weight: 600; color: var(--nh-text) !important; text-decoration: none !important;
  transition: var(--nh-transition); background: #fff;
}
.nh-pagination a:hover { background: var(--nh-primary-light); border-color: var(--nh-primary); color: var(--nh-primary) !important; }
.nh-pagination a.active,
.nh-pagination a[aria-current="page"] {
  background: var(--nh-primary) !important;
  border-color: var(--nh-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(7, 94, 168, .28);
  pointer-events: none;
}

/* ============================================================
   13. SLICK / SWIPER HOOKS
   ============================================================ */

/* Carousel wrapper — gives room for absolute arrows */
.product-carousel {
  position: relative;
  padding: 0 44px;
}
.brand-carousel {
  position: relative;
  padding: 0 44px;
}
.testimonial-carousel,
.testimonial-slider {
  position: relative;
  padding: 0 44px;
}

/* Slick arrow base */
.slick-prev,
.slick-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--nh-border) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--nh-primary) !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: var(--nh-transition) !important;
  box-shadow: 0 4px 14px rgba(8,43,73,.1) !important;
  /* reset Slick defaults */
  line-height: 1 !important;
  padding: 0 !important;
}
.slick-prev { left: 0 !important; right: auto !important; }
.slick-next { right: 0 !important; left: auto !important; }

.slick-prev:hover,
.slick-next:hover {
  background: var(--nh-primary) !important;
  border-color: var(--nh-primary) !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 18px rgba(7,94,168,.22) !important;
}

/* Hide Slick's default pseudo-content arrow glyphs */
.slick-prev::before,
.slick-next::before {
  display: none !important;
  content: '' !important;
}

/* Slick dots */
.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 16px;
  list-style: none;
  margin: 0; padding: 0;
  padding-top: 14px;
}
.slick-dots li button {
  width: 8px; height: 8px; padding: 0;
  border-radius: 50%;
  background: var(--nh-border-dark);
  border: none; font-size: 0;
  cursor: pointer; transition: var(--nh-transition);
}
.slick-dots li.slick-active button {
  background: var(--nh-primary); width: 22px; border-radius: 4px;
}

/* Brand carousel track alignment */
.brand-carousel .slick-track { display: flex; align-items: center; }
.brand-item {
  display: flex !important;
  align-items: center; justify-content: center;
  padding: 10px 20px;
}
.brand-item img {
  max-height: 70px; max-width: 140px; object-fit: contain;
  filter: grayscale(30%); opacity: .75;
  transition: var(--nh-transition); margin: auto;
}
.brand-item:hover img { filter: grayscale(0); opacity: 1; }

/* Product gallery slider in product detail */
.pd-gallery-main .product-gallery-slider { position: relative; }
.pd-gallery-main .slick-prev { left: 10px !important; }
.pd-gallery-main .slick-next { right: 10px !important; }
.pd-gallery-main .slick-prev,
.pd-gallery-main .slick-next {
  width: 36px !important; height: 36px !important;
  background: rgba(255,255,255,.9) !important;
  border-color: transparent !important;
  box-shadow: 0 2px 10px rgba(8,43,73,.15) !important;
}

/* Thumb slider */
.pd-gallery-thumb .product-thumb-slider {
  position: relative;
  padding: 0 36px;
}
.pd-gallery-thumb .slick-prev { left: 0 !important; }
.pd-gallery-thumb .slick-next { right: 0 !important; }
.pd-gallery-thumb .slick-prev,
.pd-gallery-thumb .slick-next {
  width: 28px !important; height: 28px !important;
  font-size: 12px !important;
}


/* ============================================================
   14. CART / QUOTE PAGE
   ============================================================ */
.cart-img { width: 64px; height: 64px; object-fit: contain; border-radius: var(--nh-radius-sm); border: 1px solid var(--nh-border); padding: 4px; }

/* ============================================================
   15. INFO CARDS / STAT CARDS
   ============================================================ */
.nh-info-card { padding: 26px 22px; border: 1px solid var(--nh-border); border-radius: var(--nh-radius-lg); background: #fff; transition: var(--nh-transition); height: 100%; }
.nh-info-card:hover { box-shadow: var(--nh-shadow-md); border-color: var(--nh-border-dark); transform: translateY(-4px); }
.nh-info-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: var(--nh-radius); background: var(--nh-cyan-light); color: var(--nh-primary); font-size: 20px; margin-bottom: 12px; }
.nh-info-icon i { margin: 0; line-height: 1; color: inherit; }
.nh-info-card h6 { font-size: 13px; font-weight: 700; color: var(--nh-heading); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 8px; }
.nh-info-card p { font-size: 13px; color: var(--nh-text); line-height: 1.75; margin: 0; }
.nh-info-lines {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--nh-text); line-height: 1.4;
}
.nh-info-lines a,
.nh-info-lines span,
.nh-info-lines strong {
  display: flex !important; align-items: flex-start; gap: 8px;
  margin: 0 !important; padding: 0 !important;
  color: var(--nh-text); text-decoration: none; line-height: 1.4;
}
.nh-info-lines a:hover { color: var(--nh-primary); }
.nh-info-lines i {
  width: 14px; flex-shrink: 0; margin-top: 2px;
  color: var(--nh-cyan); font-size: 13px; line-height: 1;
}
.nh-info-lines .fab { color: #25d366; }

.nh-stat-card { text-align: center; padding: 28px 20px; border-radius: var(--nh-radius-lg); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); transition: var(--nh-transition); }
.nh-stat-card:hover { background: rgba(255,255,255,.13); transform: translateY(-5px); }
.nh-stat-icon { width: 50px; height: 50px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: var(--nh-cyan); font-size: 18px; }
.nh-stat-card h3 { color: #fff; font-size: 34px; font-weight: 800; margin-bottom: 4px; }
.nh-stat-card p { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin: 0; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.nh-footer {
  background: linear-gradient(180deg, #07233f 0%, #05182c 100%);
  padding: 0;
  color: rgba(255,255,255,.7);
  position: relative;
}
.nh-footer-bar {
  height: 2px;
  background: linear-gradient(90deg, #075ea8, #08b6d0 50%, #075ea8);
}
.nh-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}
.nh-footer-logo {
  display: inline-block;
  color: #fff !important;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.4px;
  text-decoration: none;
  margin-bottom: 12px;
}
.nh-footer-logo:hover { color: var(--nh-cyan) !important; }
.nh-footer-tagline {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 340px;
}
.nh-footer-contact { list-style: none; margin: 0; padding: 0; }
.nh-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
}
.nh-footer-contact li i {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(8,182,208,.12);
  color: var(--nh-cyan);
  font-size: 13px;
  margin-top: 1px;
}
.nh-footer-contact span { display: flex; flex-direction: column; gap: 2px; }
.nh-footer-contact a { color: rgba(255,255,255,.78); text-decoration: none; }
.nh-footer-contact a:hover { color: var(--nh-cyan); }

.nh-footer-col h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.nh-footer-col h6::after {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 36px; height: 2px;
  background: var(--nh-cyan);
}
.nh-footer-col ul { list-style: none; margin: 0; padding: 0; }
.nh-footer-col ul li { margin-bottom: 10px; }
.nh-footer-col ul li a {
  color: rgba(255,255,255,.62);
  font-size: 13.5px;
  text-decoration: none;
  display: inline-block;
  transition: var(--nh-transition);
  position: relative;
  padding-left: 12px;
}
.nh-footer-col ul li a::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--nh-cyan);
  opacity: .7;
}
.nh-footer-col ul li a:hover { color: #fff; padding-left: 16px; }

.nh-footer-social { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.nh-footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: #fff !important;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, filter .22s;
}
.nh-footer-social a svg { width: 16px; height: 16px; fill: #fff; display: block; }
.nh-footer-social a svg path { fill: #fff; }
.nh-footer-social a.nh-soc-fb { background: #1877f2; }
.nh-footer-social a.nh-soc-in { background: #0a66c2; }
.nh-footer-social a.nh-soc-yt { background: #e11d2e; }
.nh-footer-social a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  color: #fff !important;
}

.nh-working-hours {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 16px;
}
.nh-hours-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
}
.nh-hours-row + .nh-hours-row { border-top: 1px solid rgba(255,255,255,.08); }
.nh-hours-row span { color: rgba(255,255,255,.5); font-size: 12px; }
.nh-hours-row strong { color: #fff; font-size: 13px; font-weight: 700; }

.nh-footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--nh-cyan);
  color: #042433 !important;
  font-size: 13px; font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  transition: background .22s, transform .22s;
}
.nh-footer-cta:hover { background: #2ad0e6; color: #042433 !important; transform: translateY(-1px); }

.nh-footer-bottom {
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.nh-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.nh-footer-bottom p { color: rgba(255,255,255,.45); font-size: 12.5px; margin: 0; }
.nh-footer-bottom a { color: var(--nh-cyan); text-decoration: none; }
.nh-footer-bottom a:hover { color: #fff; }
.widget-list li a { color: rgba(255,255,255,.62); font-size: 13px; transition: var(--nh-transition); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.widget-list li a:hover { color: var(--nh-cyan); }
.widget-contact h6 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.copyright,.copyright1 { font-size: 13px; color: rgba(255,255,255,.5); }
.copyright a:hover,.copyright1 a:hover { color: var(--nh-cyan); }
.footer-detail { font-size: 13px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.footer-detail a:hover { color: var(--nh-cyan); }

/* ============================================================
   17. WHATSAPP FLOAT & SCROLL-UP
   ============================================================ */
.whatsapp_float {
  position: fixed; bottom: 28px; left: 20px; z-index: 9999;
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #25d366;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); transition: var(--nh-transition);
}
.whatsapp_float:hover { background: #20b858; transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.whatsapp-icon { color: #fff; font-size: 26px; }
#scrollUp {
  width: 40px; height: 40px; bottom: 28px; right: 20px;
  border-radius: var(--nh-radius-sm); background: var(--nh-primary); color: #fff;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--nh-shadow-sm); transition: var(--nh-transition); border: none; cursor: pointer;
}
#scrollUp:hover { background: var(--nh-primary-dark); transform: translateY(-3px); }

/* ============================================================
   18. UTILITY CLASSES
   ============================================================ */
.color-red   { color: var(--nh-danger) !important; }
.color-blue  { color: var(--nh-primary) !important; }
.color-cyan  { color: var(--nh-cyan) !important; }
.text-center { text-align: center !important; }
.text-right  { text-align: right !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 32px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 16px !important; }
.mt-4 { margin-top: 24px !important; }
.mt-5 { margin-top: 32px !important; }
.pt-2 { padding-top: 8px !important; }
.pt-3 { padding-top: 16px !important; }
.pb-2 { padding-bottom: 8px !important; }
.pb-3 { padding-bottom: 16px !important; }
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.w-100 { width: 100% !important; }
.rounded { border-radius: var(--nh-radius) !important; }
.shadow  { box-shadow: var(--nh-shadow-md) !important; }
.bg-blue { background: var(--nh-navy) !important; }

/* contact/about page helpers */
.portfolio-overview p { font-size: 15px; line-height: 1.85; color: var(--nh-text); text-align: justify; }
.section-padding { padding: 70px 0; }
.contact-section { border: 1px solid var(--nh-border); border-radius: var(--nh-radius); padding: 28px; box-shadow: var(--nh-shadow-xs); }
.contact-info { border: 1px solid var(--nh-border); border-radius: var(--nh-radius); padding: 20px; height: 100%; box-shadow: var(--nh-shadow-xs); }
.download { border: 1px solid var(--nh-border); border-radius: var(--nh-radius); padding: 20px; transition: var(--nh-transition); }
.download:hover { border-color: var(--nh-primary); box-shadow: var(--nh-shadow-sm); }

/* ============================================================
   DOWNLOADS PAGE
   ============================================================ */
.dl-page { padding-top: 36px; }

.dl-catalog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
  padding: 26px 28px;
  border-radius: var(--nh-radius-lg);
  background: linear-gradient(105deg, var(--nh-primary-dark) 0%, var(--nh-primary) 55%, var(--nh-cyan) 100%);
  box-shadow: var(--nh-shadow-md);
}
.dl-catalog-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.dl-catalog-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: var(--nh-radius-sm);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 20px;
}
.dl-catalog-copy h5 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.dl-catalog-copy p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.dl-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--nh-radius-sm);
  background: #fff;
  color: var(--nh-primary-dark) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--nh-transition);
  flex-shrink: 0;
}
.dl-catalog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  color: var(--nh-primary) !important;
}

.dl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.dl-section-head h2 {
  margin: 0;
  color: var(--nh-heading);
  font-size: clamp(22px, 2.6vw, 30px);
}
.dl-section-head h2 span { color: var(--nh-primary); }
.dl-section-note {
  margin: 0;
  font-size: 13px;
  color: var(--nh-text-light);
  font-weight: 600;
}

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

.dl-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius);
  box-shadow: var(--nh-shadow-xs);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dl-card:hover {
  transform: translateY(-3px);
  border-color: #c9dbeb;
  box-shadow: var(--nh-shadow-sm);
}

.dl-card-media {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: var(--nh-radius-sm);
  border: 1px solid var(--nh-border);
  background:white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.dl-card-placeholder {
  color: var(--nh-text-light);
  font-size: 22px;
}

.dl-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.dl-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--nh-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dl-card-cat {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--nh-cyan-light);
  color: var(--nh-primary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dl-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  padding: 8px 14px;
  border: 1px solid var(--nh-primary);
  border-radius: var(--nh-radius-sm);
  background: #fff;
  color: var(--nh-primary) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--nh-transition);
}
.dl-card-btn:hover {
  background: var(--nh-primary);
  color: #fff !important;
}
.dl-card-btn-disabled {
  border-color: var(--nh-border);
  color: var(--nh-text-light) !important;
  cursor: default;
  opacity: .7;
}

.dl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
}
.dl-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-sm);
  background: #fff;
  color: var(--nh-text);
  font-size: 13px;
  text-decoration: none !important;
  transition: var(--nh-transition);
}
.dl-page-btn:hover {
  border-color: var(--nh-primary);
  color: var(--nh-primary);
}
.dl-page-btn.active,
.dl-page-btn[aria-current="page"] {
  background: var(--nh-primary) !important;
  border-color: var(--nh-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(7, 94, 168, .28);
  pointer-events: none;
}

@media (max-width: 991px) {
  .dl-grid { gap: 14px; }
  .dl-card { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; padding: 12px; }
  .dl-card-media { width: 78px; height: 78px; }
}
@media (max-width: 767px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-catalog { padding: 22px 18px; }
  .dl-section-head { align-items: flex-start; }
}

/* title helpers */
h2.title { font-size: clamp(22px,3vw,34px); font-weight: 700; color: var(--nh-heading); letter-spacing: -.3px; }
.title-icon-both { position: relative; display: inline-block; }
.title-icon-both::before,.title-icon-both::after { content: ''; position: absolute; top: 50%; width: 32px; height: 3px; border-radius: 10px; background: linear-gradient(90deg,var(--nh-primary),var(--nh-cyan)); transform: translateY(-50%); }
.title-icon-both::before { right: 100%; margin-right: 12px; }
.title-icon-both::after  { left: 100%; margin-left: 12px; }
.bead-icon { padding: 10px 0 24px; }

/* payment/title heading */
.title-heading { background: var(--nh-primary); border-radius: var(--nh-radius-sm) var(--nh-radius-sm) 0 0; padding: 12px 16px; }
.title-heading h4,.title-heading i,.title-heading { color: #fff; }
.payment-form { padding: 24px; background: #fff; border: 1px solid var(--nh-border); border-radius: 0 0 var(--nh-radius-sm) var(--nh-radius-sm); box-shadow: var(--nh-shadow-xs); }
.payment-form table { border: 1px solid var(--nh-border); width: 100%; font-size: 14px; }
.payment-form .table td,.payment-form .table th { padding: 10px; border-bottom: 1px solid var(--nh-border); }

/* hint tooltips */
[data-hint] { position: relative; }
[data-hint]::after { content: attr(data-hint); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: var(--nh-heading); color: #fff; font-size: 11px; white-space: nowrap; padding: 4px 9px; border-radius: var(--nh-radius-sm); opacity: 0; pointer-events: none; transition: var(--nh-transition); z-index: 900; }
[data-hint]:hover::after { opacity: 1; }

/* header tools (legacy nh-tool-btn compatibility) */
.header-tools { display: flex; align-items: center; gap: 6px; }
.header-cart a,.header-login a,.header-search a { display: flex; align-items: center; gap: 5px; padding: 6px 9px; border-radius: var(--nh-radius-sm); color: var(--nh-heading); font-size: 14px; transition: var(--nh-transition); text-decoration: none; }
.header-cart a:hover,.header-login a:hover,.header-search a:hover { color: var(--nh-primary); background: var(--nh-primary-light); }
.cart-count,.wishlist-count { display: inline-flex; align-items: center; justify-content: center; min-width: 17px; height: 17px; border-radius: 50px; background: var(--nh-cyan); color: #fff; font-size: 9px; font-weight: 700; padding: 0 3px; margin-right: 1px; }

/* icon-box5 */
.icon-box5 { display: flex; align-items: flex-start; gap: 16px; padding: 18px; border: 1px solid var(--nh-border); border-radius: var(--nh-radius); transition: var(--nh-transition); }
.icon-box5:hover { box-shadow: var(--nh-shadow-sm); border-color: var(--nh-border-dark); }
.icon-box5 .icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: var(--nh-radius-sm); background: var(--nh-cyan-light); color: var(--nh-primary); font-size: 18px; }
.icon-box5 .content h4 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.icon-box5 .content p { font-size: 13px; color: var(--nh-text); margin: 0; }

/* ps scrollbar */
.ps__thumb-y { background: var(--nh-border-dark); }

/* ============================================================
   20. HOMEPAGE
   ============================================================ */
.hp-hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #032b51;
  line-height: 0;
}
.hp-hero-banner {
  display: block;
  width: 100%;
  height: 537px;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
}
.hp-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  width: auto;
  height: 100%;
  padding: 28px 40px 32px 36px;
  background:
    radial-gradient(ellipse 90% 70% at 12% 18%, rgba(8, 182, 208, .14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 88% 88%, rgba(7, 94, 168, .12) 0%, transparent 50%),
    linear-gradient(155deg, #eef5fb 0%, #e4eef8 42%, #d9e8f4 100%);
}
.hp-hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 94, 168, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 94, 168, .035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hp-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: 75px;
  width: 100%;
}
.hp-hero-right {
  position: relative;
  z-index: 3;
  background: url('../images/herobanner.png') center / cover no-repeat;
}
.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 94, 168, .14);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #075ea8;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.hp-hero-eyebrow span.dot {
  width: 26px; height: 26px;
  background: #075ea8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px;
  flex-shrink: 0;
}
.hp-hero-left h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900;
  color: #0d2137;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.hp-hero-left h1 em {
  font-style: normal;
  color: #075ea8;
}
.hp-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5c6e;
  max-width: 480px;
  margin-bottom: 20px;
}
.hp-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hp-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; background: #075ea8; color: #fff;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all .28s;
  box-shadow: 0 8px 24px rgba(7,94,168,.28);
}
.hp-btn-primary:hover {
  background: #043b6b; color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7,94,168,.38);
}
.hp-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border: 2px solid rgba(7, 94, 168, .22);
  color: #0d2137; border-radius: 8px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all .28s; background: rgba(255, 255, 255, .55);
}
.hp-btn-ghost:hover {
  border-color: #075ea8; color: #075ea8; background: #fff;
  transform: translateY(-2px);
}
.hp-hero-kpis {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 94, 168, .14);
}
.hp-kpi strong {
  display: block;
  font-size: 28px; font-weight: 900;
  color: #075ea8; line-height: 1;
}
.hp-kpi span {
  font-size: 11px; font-weight: 600;
  color: #7a8d9e; text-transform: uppercase;
  letter-spacing: .5px;
}
.hp-kpi-sep { width: 1px; height: 38px; background: #e0eaf3; }
.hp-hero-dock {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #043b6b;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hp-hero-dock-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  min-width: 0;
}
.hp-hero-dock-item:last-child { border-right: none; }
.hp-hero-dock-item > i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(8, 182, 208, .18);
  color: #9de8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hp-hero-dock-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2px;
}
.hp-hero-dock-item span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-iso-badge {
  position: absolute; z-index: 5;
  top: 20px; right: 28px;
  background: #075ea8;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  color: #fff;
}
.hp-iso-badge strong { display: block; font-size: 18px; font-weight: 900; }
.hp-iso-badge span {
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}

.hp-strip { background: #075ea8; padding: 0; }
.hp-strip .container-fluid { padding: 0; }
.hp-strip-inner { display: grid; grid-template-columns: repeat(5, 1fr); }
.hp-strip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .25s;
}
.hp-strip-item:last-child { border-right: none; }
.hp-strip-item:hover { background: rgba(255,255,255,.08); }
.hp-strip-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #63ddea;
}
.hp-strip-item h6 { margin: 0 0 2px; color: #fff; font-size: 13px; font-weight: 700; }
.hp-strip-item p { margin: 0; color: rgba(255,255,255,.6); font-size: 11px; }

.hp-about {
  padding: 64px 0;
  background: #fff;
}
.hp-about-media {
  position: relative;
  padding: 0 0 18px 18px;
  margin-top: 36px;
}
.hp-about-img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(6,28,54,.12);
  background: #e8eef4;
}
.hp-about-corner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 110px;
  border-left: 3px solid #3db8e8;
  border-bottom: 3px solid #3db8e8;
  border-radius: 0 0 0 16px;
  z-index: 1;
  pointer-events: none;
}
.hp-about-badge {
  position: absolute;
  right: 16px;
  bottom: 0;
  z-index: 3;
  background: #032b51;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px 14px;
  min-width: 124px;
  text-align: left;
  box-shadow: 0 14px 32px rgba(3,43,81,.28);
}
.hp-about-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #63ddea;
}
.hp-about-badge span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}
.hp-about-text { padding-left: 32px; }
.hp-about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3db8e8;
  margin-bottom: 12px;
}
.hp-about-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: #3db8e8;
  border-radius: 2px;
}
.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #075ea8; margin-bottom: 12px;
}
.hp-eyebrow::before, .hp-eyebrow::after {
  content: ''; width: 18px; height: 2px;
  background: #08b6d0; border-radius: 2px;
}
.hp-about-text h2 {
    font-size: 30px;
    font-weight: 900;
    color: #0d2137;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.18;
}
.hp-about-text h2 span { color: #075ea8; }
.hp-about-text > p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5a6b7c;
  margin-bottom: 12px;
  text-align: left;
  max-width: 540px;
}
.hp-about-text > p + p { margin-bottom: 22px; }
.hp-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 28px;
}
.hp-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f4f8fb;
  border: 1px solid #e4eef6;
  border-radius: 12px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  color: #0d2137;
  transition: border-color .2s, background .2s;
}
.hp-check:hover {
  transform: none;
  background: #eef6fb;
  border-color: #c9dcec;
  box-shadow: none;
}
.hp-check i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3db8e8;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hp-about-img-wrap { display: none; }

.hp-section-head { text-align: center; margin-bottom: 40px; }
.hp-section-head .hp-eyebrow,
.hp-products-head .hp-eyebrow,
.hp-clients-head .hp-eyebrow { justify-content: center; }
.hp-section-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: #0d2137;
  letter-spacing: -1px; margin: 0;
}
.hp-section-head h2 span { color: #075ea8; }

.hp-features {
    position: relative;
    padding: 64px 0;
    background: url('../images/bg2.png') center / cover no-repeat fixed !important;
    overflow: hidden;
    border-top: 1px solid #d7e3ef;
    border-bottom: 1px solid #d7e3ef;
    margin-top: 0;
}
.hp-features::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(125deg, rgba(3,43,81,.38) 0%, rgba(6,54,92,.32) 52%, rgba(8,88,126,.28) 100%);
}
.hp-features .container { position: relative; z-index: 2; }
.hp-features-head { text-align: center; margin-bottom: 48px; }
.hp-features-head .hp-eyebrow { justify-content: center; color: white; }
.hp-features-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: #fff;
  letter-spacing: -1px; margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(3,43,81,.45);
}
.hp-features-head h2 span { color: #63ddea; }
.hp-features-head p {
  max-width: 680px; margin: 14px auto 0;
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 8px rgba(3,43,81,.4);
}
.hp-feat-row { margin-left: -12px; margin-right: -12px; }
.hp-feat-row > [class*="col-"] { padding-left: 12px; padding-right: 12px; margin-bottom: 24px; }
.hp-feat-card {
  height: 100%;
  padding: 30px 26px 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(207,221,235,.9);
  border-radius: 16px;
  transition: transform .28s, border-color .28s, box-shadow .28s;
}
.hp-feat-card:hover {
  transform: translateY(-8px);
  border-color: #9ec3df;
  box-shadow: 0 18px 40px rgba(3,43,81,.22);
}
.hp-feat-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(7, 94, 168);
    color: white;
    font-size: 20px;
    margin-bottom: 18px;
}
.hp-feat-card h4 {
  font-size: 17px; font-weight: 800; color: #0d2137;
  margin: 0 0 10px; letter-spacing: -.2px;
}
.hp-feat-card p {
  margin: 0; font-size: 13px; line-height: 1.7;
  color: #4a5c6e;
}

.hp-solutions { padding: 64px 0; background: #fff; }

.hp-mid-banner {
  width: 100%;
  height: 680px;
  margin: 0;
  padding: 0;
  background: url('../images/bg1.png') center / cover no-repeat;
  border: none;
}
.hp-sol-tabs {
  display: flex; gap: 8px;
  flex-wrap: wrap; margin-bottom: 36px;
  border-bottom: 2px solid #e8eff6;
  padding-bottom: 0;
  position: relative;
}
.hp-sol-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border: none; border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: #4a5c6e;
  transition: all .22s; border-radius: 0;
}
.hp-sol-tab i { font-size: 14px; }
.hp-sol-tab:hover { color: #075ea8; background: #e8f1fb; border-radius: 6px; }
.hp-sol-tab.active {
  color: #fff;
  background: #075ea8;
  border-bottom-color: #075ea8;
  border-radius: 6px;
  font-weight: 700;
}
.hp-sol-panel { display: none; }
.hp-sol-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.hp-sol-content h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800; color: #0d2137;
  letter-spacing: -.8px; margin-bottom: 16px;
}
.hp-sol-content p { font-size: 15px; line-height: 1.85; color: #4a5c6e; margin-bottom: 24px; }
.hp-sol-list { list-style: none; margin: 0; padding: 0; }
.hp-sol-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid #f0f5fa;
  font-size: 15px; color: #34516a;
}
.hp-sol-list li:last-child { border-bottom: none; }
.hp-sol-list li i { color: #08b6d0; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.hp-sol-cta { margin-top: 28px; }
.hp-sol-visual {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f1fb, #e4f8fb);
  display: flex; align-items: center; justify-content: center;
}
.hp-sol-visual-icon {
  font-size: 120px;
  opacity: .07;
  color: #075ea8;
  position: absolute;
  right: -10px; bottom: -10px;
}
.hp-sol-card-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; padding: 24px;
  width: 100%;
}
.hp-sol-mini-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(6,28,54,.08);
  text-align: center;
  height: 115px;
}
.hp-sol-mini-card i {
  font-size: 24px;
  color: #075ea8;
  display: block;
  margin-bottom: 24px;
}
.hp-sol-mini-card p { font-size: 14px; font-weight: 700; color: #0d2137; margin: 0; }

.hp-products {
    padding: 64px 0;
    background: #f4f8fb;
}
.hp-products-head { text-align: center; margin-bottom: 36px; }
.hp-products-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hp-products-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: #0d2137;
  letter-spacing: -1px; margin: 0;
}
.hp-products-head h2 span { color: #075ea8; }
.hp-prod-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #075ea8;
  text-decoration: none;
  padding: 10px 16px;
  border: 1.5px solid #c5d7e8;
  border-radius: 8px;
  background: #fff;
  transition: all .25s;
}
.hp-prod-all:hover {
  background: #075ea8;
  border-color: #075ea8;
  color: #fff;
}
.hp-prod-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.hp-prod-feature {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  min-height: 520px;
  transition: border-color .25s, box-shadow .25s;
}
.hp-prod-feature:hover {
  border-color: #b7cce0;
  box-shadow: 0 18px 40px rgba(6, 28, 54, .08);
}
.hp-prod-feature-img {
  flex: 1;
  min-height: 320px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
/*  padding: 36px;*/
}
.hp-prod-feature-img img {
  width: 100%;
  height: 100%;
/*  max-height: 340px;*/
  max-height: 700px;
  object-fit: contain;
  background: #fff;
}
.hp-prod-feature-info {
  padding: 22px 26px 26px;
  border-top: 1px solid #eef3f8;
  background: linear-gradient(180deg, #f8fbfe 0%, #fff 100%);
}
.hp-prod-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #075ea8;
  background: #e8f1fb;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.hp-prod-feature-info h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: #0d2137;
  line-height: 1.25;
  letter-spacing: -.3px;
}
.hp-prod-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #075ea8;
}
.hp-prod-feature:hover .hp-prod-link { gap: 12px; }
.hp-prod-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hp-prod-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s, transform .25s;
}
.hp-prod-tile:hover {
  border-color: #b7cce0;
  transform: translateY(-3px);
}
.hp-prod-tile-img {
    height: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /*  padding: 14px;*/
}
.hp-prod-tile-img img {
  width: 100%;
  height: 100%;
 /* object-fit: contain;*/
  background: #fff;
}
.hp-prod-tile-body {
  padding: 12px 14px 14px;
  border-top: 1px solid #eef3f8;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 78px;
}
.hp-prod-tile-body h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0d2137;
  line-height: 1.35;
}
.hp-prod-tile-body span {
  font-size: 13px;
  font-weight: 700;
  color: #075ea8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hp-all-products {
  padding: 0 0 40px;
  background: #f4f8fb;
}
.hp-all-products .hp-products-head {
  margin-bottom: 32px;
}
.hp-prod-grid-wrap { position: relative; padding: 0 52px; }
.hp-prod-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-behavior: auto;
  scrollbar-width: none; padding: 8px 2px 28px;
}
.hp-prod-track::-webkit-scrollbar { display: none; }
.hp-prod-item { flex: 0 0 calc(25% - 15px); }
.hp-prod-card {
  display: block;
  background: #fff; border-radius: 14px;
  border: 1px solid #e6eef5;
  overflow: hidden;
  text-decoration: none;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  box-shadow: 0 8px 24px rgba(6,28,54,.06);
  height: 100%;
}
.hp-prod-card:hover {
  transform: translateY(-6px);
  border-color: #c5d7e8;
  box-shadow: 0 16px 40px rgba(6,28,54,.12);
}
.hp-prod-img {
  position: relative;
  height: 210px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hp-prod-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  background: #fff;
  transition: transform .4s ease;
}
.hp-prod-card:hover .hp-prod-img img { transform: scale(1.05); }
.hp-prod-overlay {
  position: absolute; inset: 0;
  background: rgba(3,43,81,.62);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.hp-prod-card:hover .hp-prod-overlay { opacity: 1; }
.hp-prod-overlay span {
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 6px; background: rgba(7,94,168,.35);
}
.hp-prod-body {
  padding: 14px 16px 16px;
  min-height: 72px;
  background: #fff;
  border-top: 1px solid #eef3f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-prod-name {
  font-size: 13px;
  font-weight: 700;
  color: #0d2137;
  line-height: 1.4;
  text-align: center;
  transition: color .2s;
}
.hp-prod-card:hover .hp-prod-name { color: #075ea8; }
.hp-prod-arrow {
  position: absolute; top: 50%; z-index: 10;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #dde6ef; border-radius: 50%;
  background: #fff; color: #075ea8;
  box-shadow: 0 6px 20px rgba(6,28,54,.1);
  cursor: pointer; transform: translateY(-50%);
  transition: all .25s; font-size: 14px;
}
.hp-prod-arrow:hover {
  background: #075ea8; color: #fff; border-color: #075ea8;
  transform: translateY(-50%) scale(1.08);
}
.hp-prod-prev { left: 0; }
.hp-prod-next { right: 0; }

.hp-clients {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid #e8eff6;
  border-bottom: 1px solid #e8eff6;
  overflow: hidden;
}
.hp-clients-head { text-align: center; margin-bottom: 36px; }
.hp-clients-head h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900; color: #0d2137; margin-bottom: 6px; letter-spacing: -.8px;
}
.hp-clients-head h2 span { color: #075ea8; }
.hp-clients-head p { font-size: 15px; color: #7a8d9e; margin: 0; }
.hp-marquee-wrap { position: relative; overflow: hidden; }
.hp-marquee-wrap::before,
.hp-marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.hp-marquee-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.hp-marquee-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.hp-marquee-track {
  display: flex; gap: 20px;
  width: max-content; will-change: transform;
}
.hp-marquee-item { flex: 0 0 170px; }
.hp-marquee-logo {
    height: 204px;
    background: white;
    border: 1px solid #e8eff6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: all .25s;
    margin-top: 5px;
}
.hp-marquee-logo:hover {
  background: #fff; border-color: #08b6d0;
  box-shadow: 0 6px 20px rgba(6,28,54,.08);
  transform: translateY(-4px);
}
.hp-marquee-logo img {
  max-height: 200px;
  max-width: 195px;
  object-fit: contain;
/*  filter: grayscale(35%);*/
 /* opacity: .75;*/
  transition: all .25s;
}
.hp-marquee-logo:hover img { filter: none; opacity: 1; }

.hp-stats {
  background: linear-gradient(110deg, #032b51 0%, #065b8d 55%, #07849c 100%);
  padding: 32px 0;
  position: relative; overflow: hidden;
}
.hp-stats::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -300px; right: -200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 0 0 80px rgba(255,255,255,.015), 0 0 0 160px rgba(255,255,255,.01);
}
.hp-stats-head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.hp-stats-head .hp-eyebrow { justify-content: center; color: #68deeb; }
.hp-stats-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: #fff;
  margin: 0; letter-spacing: -1px;
}
.hp-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}
.hp-stat-block {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.hp-stat-block:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
}
.hp-stat-block .ico {
  width: 54px; height: 54px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px; color: #63ddea;
}
.hp-stat-block h3 {
  font-size: 25px; font-weight: 900;
  color: #fff; margin: 0 0 6px; line-height: 1;
}
.hp-stat-block p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 12px 0 0;
}

/* ============================================================
   21. ABOUT PAGE
   ============================================================ */
.hp-stats-band {
  position: relative;
  padding: 64px 0;
  margin: 0;
  background: url('../images/bg2.png') center / cover no-repeat;
  overflow: hidden;
}
.hp-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 28, 54, .38);
  z-index: 1;
}
.hp-stats-band .container {
  position: relative;
  z-index: 2;
}
.ap-about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  background: none;
}
.ap-intro-stat {
  text-align: center;
  padding: 28px 16px 22px;
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(6,28,54,.10);
  transition: transform .25s, box-shadow .25s;
}
.ap-intro-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(6,28,54,.14);
}
.ap-intro-ico {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: #e8f9fc;
  color: #08b6d0;
  font-size: 18px;
}
.ap-intro-stat strong {
  display: block; font-size: 26px; font-weight: 900;
  color: #032b51; line-height: 1; margin-bottom: 6px;
}
.ap-intro-stat span {
  font-size: 13px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: #7a8d9e;
}

.ap-story { padding: 88px 0; background: #fff; }
.ap-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 2.2px;
  text-transform: uppercase; color: #08b6d0; margin-bottom: 10px;
}
.ap-kicker-center { display: flex; justify-content: center; margin-bottom: 12px; }
.ap-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600; color: #0d2137;
  letter-spacing: -1px; margin: 0 0 18px; line-height: 1.2;
}
.ap-heading span { color: #075ea8; }
.ap-about-copy p { text-align: justify; color: #5a7184; line-height: 1.85; font-size: 14px; margin-bottom: 14px; }
.ap-about-copy p:last-child { margin-bottom: 0; }

.ap-story-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6,28,54,.12);
}
.ap-story-visual::before {
  content: '';
  position: absolute; top: -10px; left: -10px;
  width: 70px; height: 70px;
  border-top: 3px solid #08b6d0;
  border-left: 3px solid #08b6d0;
  z-index: 2;
}
.ap-story-visual img {
 width: 100%;
  height: auto;
  display: block;
}

.ap-section { padding: 50px 0; background: #fff; }
.ap-section-light { background: #f4f8fb; }
.ap-block-head { text-align: center; margin-bottom: 40px; }
.ap-block-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: #0d2137;
  letter-spacing: -1px; margin: 0; line-height: 1.2;
}
.ap-block-head h2 span { color: #075ea8; }

.ap-spec {
    height: 100%;
    padding: 28px 24px;
    background: #fff;
    border-top: 3px solid #08b6d0;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 10px 28px rgba(6,28,54,.06);
    transition: transform .25s, box-shadow .25s;
}
.ap-spec:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(6,28,54,.1); }
.ap-spec-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #e8f9fc; color: #08b6d0;
  border-radius: 10px; font-size: 18px; margin-bottom: 16px;
}
.ap-spec h4 { font-size: 16px; font-weight: 800; color: #0d2137; margin: 0 0 8px; }
.ap-spec p { font-size: 13px; line-height: 1.7; color: #5a7184; margin: 0; }

.ap-box {
    height: 100%;
    padding: 36px 30px 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(6,28,54,.08);
    transition: transform .28s, box-shadow .28s;
    height: 260px;
}
.ap-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(6,28,54,.14);
}
.ap-box-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: transparent; color: #08b6d0;
  border: 1.5px solid rgba(8,182,208,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.ap-box-icon i { color: inherit; font-size: inherit; margin: 0; display: block; }
.ap-box h4 { font-size: 18px; font-weight: 800; color: #0d2137; margin: 0 0 12px; }
.ap-box p { font-size: 15px; color: #7a8d9e; margin: 0; line-height: 1.8; }

.ap-footprint-section { padding-top: 20px; }
.ap-map-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; padding: 28px;
  background: #fff; border-radius: 18px;
  box-shadow: 0 16px 48px rgba(6,28,54,.10);
}
.ap-footprint { max-width: 920px; width: 100%; margin: 0 auto; display: block; }

/* ============================================================
   22. CONTACT PAGE
   ============================================================ */
.cp-hero {
  position: relative;
  padding: 72px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 88% 18%, rgba(8,182,208,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 8% 88%, rgba(7,94,168,.35) 0%, transparent 50%),
    linear-gradient(118deg, #041628 0%, #062a4d 48%, #075ea8 100%);
}
.cp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 48px;
  align-items: center;
}
.cp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #63ddea;
  margin-bottom: 14px;
}
.cp-kicker-dark { color: #08b6d0; }
.cp-hero-copy h1 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin: 0 0 14px;
  max-width: 620px;
}
.cp-hero-copy p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 28px;
}
.cp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all .22s;
}
.cp-chip i { color: #63ddea; font-size: 13px; }
.cp-chip:hover {
  background: rgba(255,255,255,.16);
  color: #fff !important;
  transform: translateY(-2px);
}
.cp-chip-wa i { color: #25d366; }
.cp-chip-solid {
  background: #08b6d0;
  border-color: #08b6d0;
}
.cp-chip-solid i { color: #fff; }
.cp-chip-solid:hover { background: #069bb2; border-color: #069bb2; }
.cp-hero-note {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(12px);
}
.cp-hero-note-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cp-hero-note-row + .cp-hero-note-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cp-hero-note-row i {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(8,182,208,.18);
  color: #63ddea;
  font-size: 14px;
}
.cp-hero-note-row strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.cp-hero-note-row span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12.5px;
  margin-top: 2px;
}

.cp-desk {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding: 0 0 28px;
  background: linear-gradient(180deg, transparent 80px, var(--nh-off-white) 80px);
}
.cp-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.cp-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 60px rgba(6,28,54,.14);
  scroll-margin-top: 110px;
}
.cp-form-head { margin-bottom: 26px; }
.cp-form-head h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 8px;
}
.cp-form-head p {
  font-size: 14px;
  color: var(--nh-text-light);
  margin: 0;
}
.cp-flash {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}
.cp-flash.is-ok { background: #eefaf1; color: #1e7a3a; border: 1px solid #c8ecd2; }
.cp-flash.is-err { background: #fef1f1; color: #c0392b; border: 1px solid #f5c6cb; }
.cp-flash i { margin-top: 2px; }
.cp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.cp-field-full { grid-column: 1 / -1; }
.cp-field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--nh-heading);
  margin-bottom: 7px;
}
.cp-form .form-control {
  background: #f4f8fb;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  min-height: 48px;
}
.cp-form textarea.form-control,
.cp-form textarea {
  min-height: 140px;
  resize: vertical;
}
.cp-form .form-control:focus {
  background: #fff;
  border-color: var(--nh-primary);
  box-shadow: 0 0 0 4px rgba(7,94,168,.1);
}
.cp-form-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cp-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--nh-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(7,94,168,.28);
  transition: all .22s;
}
.cp-submit:hover {
  background: var(--nh-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7,94,168,.36);
}
.cp-form-hint {
  font-size: 12.5px;
  color: var(--nh-text-light);
}

.cp-offices-sec {
  padding: 8px 0 40px;
  background: var(--nh-off-white);
}
.cp-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.cp-office {
  background: #fff;
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 44px rgba(6,28,54,.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cp-office-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--nh-border);
}
.cp-flag {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: #e8f1fb;
  color: var(--nh-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
}
.cp-flag-ae {
  background: #e4f8fb;
  color: #0a7b8e;
}
.cp-office-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--nh-cyan);
  margin-bottom: 2px;
}
.cp-office-top h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.2px;
}
.cp-office-list { margin: 0; padding: 0; }
.cp-office-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.cp-office-list li + li { border-top: 1px dashed var(--nh-border); }
.cp-office-list i {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--nh-cyan-light);
  color: var(--nh-primary);
  font-size: 12px;
  margin-top: 2px;
}
.cp-office-list strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--nh-text-light);
  margin-bottom: 3px;
}
.cp-office-list span,
.cp-office-list a {
  display: block;
  font-size: 13.5px;
  color: var(--nh-heading);
  line-height: 1.45;
  text-decoration: none;
}
.cp-office-list a:hover { color: var(--nh-primary); }
.cp-dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nh-primary);
  text-decoration: none;
}
.cp-dir:hover { color: var(--nh-cyan); }

.cp-maps {
  padding: 8px 0 80px;
  background: var(--nh-off-white);
}
.cp-maps-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cp-maps-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 0;
}
.cp-map-tabs {
  display: inline-flex;
  padding: 4px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(6,28,54,.08);
}
.cp-map-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--nh-text);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .2s;
}
.cp-map-tab.is-active {
  background: var(--nh-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(7,94,168,.28);
}
.cp-map-stage {
  position: relative;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6,28,54,.12);
  background: #d9e6f2;
}
.cp-map-pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cp-map-pane.is-active {
  opacity: 1;
  pointer-events: auto;
}
.cp-map-pane iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .nh-footer-grid { grid-template-columns: 1fr 1fr; }
  .hp-hero-banner { height: 220px; }
  .hp-about-text { padding-left: 0; margin-top: 12px; }
  .hp-about-img { height: 340px; }
  .hp-mid-banner { height: 240px; }
  .hp-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .hp-sol-panel.active { grid-template-columns: 1fr; }
  .hp-sol-visual { height: 220px; }
  .hp-features { background-attachment: scroll; padding: 64px 0; }
  .hp-prod-showcase { grid-template-columns: 1fr; }
  .hp-prod-feature { min-height: 0; }
  .hp-prod-feature-img { min-height: 240px; max-height: 280px; }
  .hp-prod-mosaic { grid-template-columns: repeat(3, 1fr); }
  .hp-prod-item { flex: 0 0 calc(33.333% - 14px); }
  .cp-hero-grid { gap: 32px; }
}
@media (max-width: 991px) {
  .nh-section { padding: 56px 0; }
  .ap-section, .ap-story { padding: 56px 0; }
  .ap-about-stats { grid-template-columns: 1fr 1fr; }
  .ap-story-visual img { height: 300px; }
  .nh-section-lg { padding: 64px 0; }
  .nh-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  h2.title { font-size: 22px; }
  .pd-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pd-summary { padding: 24px 20px; }
  .pd-gallery-main { min-height: 340px; }
  .pd-gallery-main .product-gallery-slider .product-zoom img {
    min-height: 340px;
    max-height: 420px;
    transform: scale(1.55);
  }
  .hp-about-badge { right: 10px; bottom: 0; }
  .hp-checks { grid-template-columns: 1fr; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-hero-kpis { gap: 18px; }
  .hp-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hp-prod-mosaic { grid-template-columns: 1fr 1fr; }
  .hp-products-head-row { align-items: flex-start; }
  .hp-prod-item { flex: 0 0 calc(50% - 10px); }
  .cp-hero { padding: 56px 0 96px; }
  .cp-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .cp-form { padding: 28px 22px; }
  .cp-map-stage { height: 360px; }
}
@media (max-width: 767px) {
  .nh-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nh-section { padding: 40px 0; }
  .nh-section-sm { padding: 28px 0; }
  h2 { font-size: clamp(20px,5vw,28px); }
  h2.title { font-size: 20px !important; }
  .page-title-section .page-title h3,
  .page-title-section .page-title h5 { font-size: 18px; }
  .nh-offcanvas { width: 100%; max-width: 100%; }
  .brand-item img { max-height: 44px; }
  .cart-img { width: 48px; height: 48px; }
  .title-heading h4 { font-size: 16px; }
  .payment-form { overflow-x: auto; }
  .pd-gallery-main { min-height: 280px; }
  .pd-gallery-main .product-gallery-slider .product-zoom img {
    min-height: 280px;
    max-height: 340px;
    transform: scale(1.35);
  }
  .pd-atq-btn { width: 100%; justify-content: center; }
  .hp-hero-left { padding: 24px 16px 32px; }
  .hp-hero-left h1 { font-size: 34px; letter-spacing: -1px; }
  .hp-hero-banner { height: 160px; }
  .hp-about { padding: 48px 0; }
  .hp-features { padding: 48px 0; }
  .hp-solutions { padding: 48px 0; }
  .hp-products { padding: 48px 0; }
  .hp-clients { padding: 48px 0; }
  .hp-stats-band { padding: 48px 0; }
  .hp-about-img { height: 260px; }
  .hp-about-media { padding: 0 0 14px 12px; margin-top: 0; }
  .hp-about-corner { width: 84px; height: 84px; }
  .hp-mid-banner { height: 180px; }
  .ap-story-visual img { height: 240px; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hp-strip-inner { grid-template-columns: 1fr 1fr; }
  .hp-sol-tabs { gap: 4px; }
  .hp-sol-tab { padding: 8px 13px; font-size: 12px; }
  .hp-prod-mosaic { grid-template-columns: 1fr; }
  .hp-prod-all { width: 100%; justify-content: center; }
  .hp-prod-item { flex: 0 0 78%; }
  .hp-prod-grid-wrap { padding: 0 8px; }
  .hp-prod-arrow { display: none; }
  .cp-hero { padding: 44px 0 88px; }
  .cp-desk { margin-top: -56px; padding-bottom: 48px; }
  .cp-form-grid { grid-template-columns: 1fr; }
  .cp-maps { padding-bottom: 56px; }
  .cp-maps-head { align-items: flex-start; }
  .cp-map-stage { height: 300px; border-radius: 14px; }
  .cp-form, .cp-office { border-radius: 16px; }
  .cp-offices { grid-template-columns: 1fr; }
  .cp-desk { padding-bottom: 20px; }
  .cp-map-tabs { width: 100%; }
  .cp-map-tab { flex: 1; }
  .cp-submit { width: 100%; justify-content: center; }
  .cp-form-foot { flex-direction: column; align-items: stretch; }
  .cp-form-hint { text-align: center; }
}
@media (max-width: 479px) {
  .container { padding: 0 14px; }
  .btn { padding: 9px 14px; font-size: 12px; }
  .hp-hero-btns { flex-direction: column; align-items: stretch; }
  .hp-btn-primary, .hp-btn-ghost { justify-content: center; }
  .hp-hero-kpis { flex-wrap: wrap; gap: 16px; }
  .hp-kpi-sep { display: none; }
  .hp-stats-grid { grid-template-columns: 1fr 1fr; }
  .hp-stat-block h3 { font-size: 36px; }
  .hp-strip-inner { grid-template-columns: 1fr; }
}
.bg-hero-banner {
    display: block;
    width: 100%;
    height: 644px;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}