﻿/* ============================================================
   NEWINDEX â€” SELF-CONTAINED STYLES
   Includes: design tokens, base, header, offcanvas, footer,
   whatsapp float + page (ni-*) styles. Use this file alone.
   ============================================================ */

/* ============================================================
   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 — use CDN (FA6 Free) font families */
.fa, .fas, .far, .fal, .fad, .fab {
  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-family: "Font Awesome 6 Free" !important; font-weight: 900; }
.far { font-family: "Font Awesome 6 Free" !important; font-weight: 400; }
.fab { font-family: "Font Awesome 6 Brands" !important; font-weight: 400; }
/* ============================================================
   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); }

/* ============================================================
   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; }


/* ============================================================
   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); }


/* Minimal grid (so page works without bootstrap if needed) */
.container-fluid { width: 100%; padding: 0 15px; margin: 0 auto; }
.row { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
.row > [class*="col-"] { padding-left: 15px; padding-right: 15px; width: 100%; }
.align-items-start { align-items: flex-start; }
.mb-5 { margin-bottom: 3rem; }
@media (min-width: 992px) {
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .mb-lg-0 { margin-bottom: 0; }
}

@media (max-width: 1199px) {
  .nh-footer-grid { grid-template-columns: 1fr 1fr; }
  .hp-hero-banner { height: 220px; }
}

@media (max-width: 991px) {
  .nh-section-lg { padding: 64px 0; }
  .nh-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 767px) {
  .nh-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nh-section { padding: 40px 0; }
  .nh-offcanvas { width: 100%; max-width: 100%; }
  .brand-item img { max-height: 44px; }
}


/* ============================================================
   20. NEWINDEX PAGE
   ============================================================ */
.ni-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;
}
.ni-hero-banner {
  display: block;
  width: 100%;
  height: 537px;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
}
.ni-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%);
}
.ni-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;
}
.ni-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: 75px;
  width: 100%;
}
.ni-hero-right {
  position: relative;
  z-index: 3;
  background: url('../images/herobanner.png') center / cover no-repeat;
}
.ni-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;
}
.ni-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;
}
.ni-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;
}
.ni-hero-left h1 em {
  font-style: normal;
  color: #075ea8;
}
.ni-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5c6e;
  max-width: 480px;
  margin-bottom: 20px;
}
.ni-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.ni-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);
}
.ni-btn-primary:hover {
  background: #043b6b; color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7,94,168,.38);
}
.ni-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);
}
.ni-btn-ghost:hover {
  border-color: #075ea8; color: #075ea8; background: #fff;
  transform: translateY(-2px);
}
.ni-hero-kpis {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 94, 168, .14);
}
.ni-kpi strong {
  display: block;
  font-size: 28px; font-weight: 900;
  color: #075ea8; line-height: 1;
}
.ni-kpi span {
  font-size: 11px; font-weight: 600;
  color: #7a8d9e; text-transform: uppercase;
  letter-spacing: .5px;
}
.ni-kpi-sep { width: 1px; height: 38px; background: #e0eaf3; }
.ni-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);
}
.ni-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;
}
.ni-hero-dock-item:last-child { border-right: none; }
.ni-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;
}
.ni-hero-dock-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2px;
}
.ni-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;
}
.ni-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;
}
.ni-iso-badge strong { display: block; font-size: 18px; font-weight: 900; }
.ni-iso-badge span {
  font-size: 12px;
  letter-spacing: .8px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}

.ni-strip { background: #075ea8; padding: 0; }
.ni-strip .container-fluid { padding: 0; }
.ni-strip-inner { display: grid; grid-template-columns: repeat(5, 1fr); }
.ni-strip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .25s;
}
.ni-strip-item:last-child { border-right: none; }
.ni-strip-item:hover { background: rgba(255,255,255,.08); }
.ni-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;
}
.ni-strip-item h6 { margin: 0 0 2px; color: #fff; font-size: 13px; font-weight: 700; }
.ni-strip-item p { margin: 0; color: rgba(255,255,255,.6); font-size: 11px; }

.ni-about {
  padding: 64px 0;
  background: #fff;
}
.ni-about-media {
  position: relative;
  padding: 0 0 18px 18px;
  margin-top: 36px;
}
.ni-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;
}
.ni-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;
}
.ni-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);
}
.ni-about-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #63ddea;
}
.ni-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);
}
.ni-about-text { padding-left: 32px; }
.ni-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;
}
.ni-about-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: #3db8e8;
  border-radius: 2px;
}
.ni-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;
}
.ni-eyebrow::before, .ni-eyebrow::after {
  content: ''; width: 18px; height: 2px;
  background: #08b6d0; border-radius: 2px;
}
.ni-about-text h2 {
    font-size: 30px;
    font-weight: 900;
    color: #0d2137;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.18;
}
.ni-about-text h2 span { color: #075ea8; }
.ni-about-text > p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5a6b7c;
  margin-bottom: 12px;
  text-align: left;
  max-width: 540px;
}
.ni-about-text > p + p { margin-bottom: 22px; }
.ni-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 28px;
}
.ni-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;
}
.ni-check:hover {
  transform: none;
  background: #eef6fb;
  border-color: #c9dcec;
  box-shadow: none;
}
.ni-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;
}
.ni-about-img-wrap { display: none; }

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

.ni-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;
}
.ni-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%);
}
.ni-features .container { position: relative; z-index: 2; }
.ni-features-head { text-align: center; margin-bottom: 48px; }
.ni-features-head .ni-eyebrow { justify-content: center; color: white; }
.ni-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);
}
.ni-features-head h2 span { color: #63ddea; }
.ni-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);
}
.ni-feat-row { margin-left: -12px; margin-right: -12px; }
.ni-feat-row > [class*="col-"] { padding-left: 12px; padding-right: 12px; margin-bottom: 24px; }
.ni-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;
}
.ni-feat-card:hover {
  transform: translateY(-8px);
  border-color: #9ec3df;
  box-shadow: 0 18px 40px rgba(3,43,81,.22);
}
.ni-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;
}
.ni-feat-card h4 {
  font-size: 17px; font-weight: 800; color: #0d2137;
  margin: 0 0 10px; letter-spacing: -.2px;
}
.ni-feat-card p {
  margin: 0; font-size: 13px; line-height: 1.7;
  color: #4a5c6e;
}

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

.ni-mid-banner {
  width: 100%;
  height: 680px;
  margin: 0;
  padding: 0;
  background: url('../images/bg1.png') center / cover no-repeat;
  border: none;
}
.ni-sol-tabs {
  display: flex; gap: 8px;
  flex-wrap: wrap; margin-bottom: 36px;
  border-bottom: 2px solid #e8eff6;
  padding-bottom: 0;
  position: relative;
}
.ni-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;
}
.ni-sol-tab i { font-size: 14px; }
.ni-sol-tab:hover { color: #075ea8; background: #e8f1fb; border-radius: 6px; }
.ni-sol-tab.active {
  color: #fff;
  background: #075ea8;
  border-bottom-color: #075ea8;
  border-radius: 6px;
  font-weight: 700;
}
.ni-sol-panel { display: none; }
.ni-sol-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.ni-sol-content h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800; color: #0d2137;
  letter-spacing: -.8px; margin-bottom: 16px;
}
.ni-sol-content p { font-size: 15px; line-height: 1.85; color: #4a5c6e; margin-bottom: 24px; }
.ni-sol-list { list-style: none; margin: 0; padding: 0; }
.ni-sol-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid #f0f5fa;
  font-size: 15px; color: #34516a;
}
.ni-sol-list li:last-child { border-bottom: none; }
.ni-sol-list li i { color: #08b6d0; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.ni-sol-cta { margin-top: 28px; }
.ni-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;
}
.ni-sol-visual-icon {
  font-size: 120px;
  opacity: .07;
  color: #075ea8;
  position: absolute;
  right: -10px; bottom: -10px;
}
.ni-sol-card-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; padding: 24px;
  width: 100%;
}
.ni-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;
}
.ni-sol-mini-card i {
  font-size: 24px;
  color: #075ea8;
  display: block;
  margin-bottom: 24px;
}
.ni-sol-mini-card p { font-size: 14px; font-weight: 700; color: #0d2137; margin: 0; }

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

.ni-all-products {
  padding: 0 0 40px;
  background: #f4f8fb;
}
.ni-all-products .ni-products-head {
  margin-bottom: 32px;
}
.ni-prod-grid-wrap { position: relative; padding: 0 52px; }
.ni-prod-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-behavior: auto;
  scrollbar-width: none; padding: 8px 2px 28px;
}
.ni-prod-track::-webkit-scrollbar { display: none; }
.ni-prod-item { flex: 0 0 calc(25% - 15px); }
.ni-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%;
}
.ni-prod-card:hover {
  transform: translateY(-6px);
  border-color: #c5d7e8;
  box-shadow: 0 16px 40px rgba(6,28,54,.12);
}
.ni-prod-img {
  position: relative;
  height: 210px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ni-prod-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  background: #fff;
  transition: transform .4s ease;
}
.ni-prod-card:hover .ni-prod-img img { transform: scale(1.05); }
.ni-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;
}
.ni-prod-card:hover .ni-prod-overlay { opacity: 1; }
.ni-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);
}
.ni-prod-body {
  padding: 14px 16px 16px;
  min-height: 72px;
  background: #fff;
  border-top: 1px solid #eef3f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ni-prod-name {
  font-size: 13px;
  font-weight: 700;
  color: #0d2137;
  line-height: 1.4;
  text-align: center;
  transition: color .2s;
}
.ni-prod-card:hover .ni-prod-name { color: #075ea8; }
.ni-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;
}
.ni-prod-arrow:hover {
  background: #075ea8; color: #fff; border-color: #075ea8;
  transform: translateY(-50%) scale(1.08);
}
.ni-prod-prev { left: 0; }
.ni-prod-next { right: 0; }

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

.ni-stats {
  background: linear-gradient(110deg, #032b51 0%, #065b8d 55%, #07849c 100%);
  padding: 32px 0;
  position: relative; overflow: hidden;
}
.ni-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);
}
.ni-stats-head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.ni-stats-head .ni-eyebrow { justify-content: center; color: #68deeb; }
.ni-stats-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: #fff;
  margin: 0; letter-spacing: -1px;
}
.ni-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}
.ni-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;
}
.ni-stat-block:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
}
.ni-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;
}
.ni-stat-block h3 {
  font-size: 25px; font-weight: 900;
  color: #fff; margin: 0 0 6px; line-height: 1;
}
.ni-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;
}


@media (max-width: 1199px) {
  .nh-footer-grid { grid-template-columns: 1fr 1fr; }
  .ni-hero-banner { height: 220px; }
  .ni-about-text { padding-left: 0; margin-top: 12px; }
  .ni-about-img { height: 340px; }
  .ni-mid-banner { height: 240px; }
  .ni-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .ni-sol-panel.active { grid-template-columns: 1fr; }
  .ni-sol-visual { height: 220px; }
  .ni-features { background-attachment: scroll; padding: 64px 0; }
  .ni-prod-showcase { grid-template-columns: 1fr; }
  .ni-prod-feature { min-height: 0; }
  .ni-prod-feature-img { min-height: 240px; max-height: 280px; }
  .ni-prod-mosaic { grid-template-columns: repeat(3, 1fr); }
  .ni-prod-item { flex: 0 0 calc(33.333% - 14px); }
  .cp-hero-grid { gap: 32px; }
}

@media (max-width: 479px) {
  .container { padding: 0 14px; }
  .btn { padding: 9px 14px; font-size: 12px; }
  .ni-hero-btns { flex-direction: column; align-items: stretch; }
  .ni-btn-primary, .ni-btn-ghost { justify-content: center; }
  .ni-hero-kpis { flex-wrap: wrap; gap: 16px; }
  .ni-kpi-sep { display: none; }
  .ni-stats-grid { grid-template-columns: 1fr 1fr; }
  .ni-stat-block h3 { font-size: 36px; }
  .ni-strip-inner { grid-template-columns: 1fr; }
}

/* Main website CTA on banner */
.ni-hero { position: relative; }
.ni-hero-cta-wrap {
    position: absolute;
    left: 13%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    width: max-content;
    max-width: calc(100% - 32px);
}
.ni-main-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #fff;
  color: #075ea8 !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(6,28,54,.28);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.ni-main-site-btn:hover {
  transform: translateY(-2px);
  background: #075ea8;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(7,94,168,.35);
}
.ni-main-site-btn i { font-size: 13px; }
@media (max-width: 767px) {
  .ni-hero-cta-wrap { bottom: 16px; }
  .ni-main-site-btn { padding: 12px 18px; font-size: 13px; }
}


