/* <!-- header css --> */

.nxg-header,
.nxg-header *,
.nxg-header *::before,
.nxg-header *::after {
  box-sizing: border-box;
}

.nxg-header {
  --nxg-primary: #05374c;
  --nxg-primary-dark: #032b3c;
  --nxg-accent: #f5a623;
  --nxg-white: #ffffff;
  --nxg-black: #17232a;
  --nxg-gray: #68777f;
  --nxg-border: #e6ecef;
  --nxg-light: #f5f8f9;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Domine", sans-serif !important;
  position: relative;
  z-index: 999999;
}

/* ================= TOP BAR ================= */

.nxg-topbar {
  width: 100%;
  height: 36px;
  background: var(--nxg-primary-dark);
  color: #fff;
  overflow: hidden;
}

.nxg-topbar-inner {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nxg-marquee-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.nxg-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: nxg-marquee-animation 30s linear infinite;
}

.nxg-marquee-item {
  display: inline-flex;
  align-items: center;
  padding-right: 80px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.nxg-marquee-item strong {
  color: var(--nxg-accent);
  margin-right: 5px;
  font-weight: 600;
}

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

.nxg-top-links {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nxg-top-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
  position: relative;
  padding-bottom: 1px;
}

.nxg-top-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: var(--nxg-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nxg-top-link:hover {
  color: var(--nxg-accent);
}
.nxg-top-link:hover::after {
  transform: scaleX(1);
}

.nxg-top-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nxg-accent);
  font-size: 12px;
}

/* ================= MAIN NAV ================= */

.nxg-mainnav {
  width: 100%;
  height: 78px;
  background: #fff;
  border-bottom: 1px solid var(--nxg-border);
  position: relative;
}

.nxg-nav-inner {
  width: 100%;
  max-width: 1520px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nxg-logo {
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  height: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nxg-logo img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

.nxg-desktop-menu {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
}

.nxg-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nxg-menu-item {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.nxg-menu-link {
  height: 100%;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--nxg-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: 0.25s ease;
}

.nxg-menu-link:hover {
  color: var(--nxg-primary);
}

.nxg-menu-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  background: var(--nxg-accent);
  transform: scaleX(0);
  transition: 0.25s ease;
}

.nxg-menu-item:hover > .nxg-menu-link::after {
  transform: scaleX(1);
}

.nxg-arrow {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  flex-shrink: 0;
  color: var(--nxg-gray);
  transition: 0.25s ease;
}

.nxg-menu-item:hover > .nxg-menu-link .nxg-arrow {
  color: var(--nxg-primary);
  transform: rotate(225deg);
  margin-top: 3px;
}

.nxg-has-children {
  position: relative;
}

.nxg-level1 {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 260px;
  max-width: 340px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--nxg-border);
  border-top: 3px solid var(--nxg-accent);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 9999999;
}

.nxg-has-children::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
}

.nxg-has-children:hover > .nxg-level1,
.nxg-has-children:focus-within > .nxg-level1,
.nxg-has-children.nxg-open > .nxg-level1 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nxg-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nxg-dropdown-item {
  position: relative;
  list-style: none;
}

.nxg-dropdown-link {
  width: 100%;
  min-height: 42px;
  padding: 10px 17px;
  display: flex;
  align-items: center;
  color: var(--nxg-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  background: #fff;
  transition: 0.2s ease;
  white-space: normal;
  word-break: break-word;
}

.nxg-dropdown-link:hover {
  background: #f2f7f8;
  color: var(--nxg-primary);
  padding-left: 21px;
}

/* ================= NAV ACTIONS / LIVE SEARCH ================= */

.nxg-nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nxg-live-search {
  position: relative;
  width: 250px;
}

.nxg-search-form {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  background: var(--nxg-light);
  border: 1px solid var(--nxg-border);
  border-radius: 21px;
  padding: 0 6px 0 16px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nxg-search-form:focus-within {
  background: #fff;
  border-color: var(--nxg-primary);
  box-shadow: 0 0 0 3px rgba(5, 55, 76, 0.08);
}

.nxg-search-icon {
  color: var(--nxg-gray);
  font-size: 13px;
  flex-shrink: 0;
}

.nxg-search-field {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 8px;
  font-family: "Domine", sans-serif;
  font-size: 13px;
  color: var(--nxg-black);
}

.nxg-search-field::placeholder {
  color: var(--nxg-gray);
}

.nxg-search-go {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: var(--nxg-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: 0.25s ease;
}

.nxg-search-go:hover {
  background: var(--nxg-accent);
}

.nxg-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 300px;
  max-height: 340px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--nxg-border);
  border-top: 3px solid var(--nxg-accent);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 9999999;
}

.nxg-search-results.nxg-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nxg-search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--nxg-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--nxg-border);
  transition: 0.2s ease;
}

.nxg-search-result-item:last-child {
  border-bottom: none;
}
.nxg-search-result-item i {
  color: var(--nxg-gray);
  font-size: 12px;
  flex-shrink: 0;
}

.nxg-search-result-item:hover {
  background: var(--nxg-light);
  color: var(--nxg-primary);
  padding-left: 20px;
}

.nxg-search-empty {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--nxg-gray);
}

/* ================= LAPTOP HOVER SEARCH ICON (NEW) ================= */
/* Is range me search ek icon ban jayega, hover karne par tooltip me input khulega */

.nxg-laptop-search-icon {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nxg-border);
  background: var(--nxg-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--nxg-primary);
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: 0.25s ease;
}

.nxg-laptop-search-icon:hover {
  background: var(--nxg-primary);
  color: #fff;
}

.nxg-laptop-search-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid var(--nxg-border);
  border-top: 3px solid var(--nxg-accent);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 9999999;
}

/* Arrow pointer on tooltip */
.nxg-laptop-search-tooltip::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--nxg-border);
  border-top: 1px solid var(--nxg-border);
  transform: rotate(45deg);
}

.nxg-laptop-search-icon:hover .nxg-laptop-search-tooltip,
.nxg-laptop-search-icon:focus-within .nxg-laptop-search-tooltip,
.nxg-laptop-search-tooltip.nxg-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nxg-laptop-search-tooltip .nxg-search-form {
  border-radius: 21px;
}

.nxg-laptop-search-tooltip .nxg-search-results {
  min-width: 0;
  width: 100%;
}

.nxg-quote-button {
  min-height: 41px;
  padding: 0 17px;
  border-radius: 4px;
  background: var(--nxg-primary);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: 0.25s ease;
}

.nxg-quote-button:hover {
  background: var(--nxg-accent);
  color: #fff;
  transform: translateY(-1px);
}

.nxg-mobile-button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--nxg-border);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  position: relative;
}

.nxg-mobile-button span,
.nxg-mobile-button span::before,
.nxg-mobile-button span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--nxg-primary);
  left: 50%;
  transform: translateX(-50%);
  transition: 0.25s ease;
}

.nxg-mobile-button span {
  top: 19px;
}
.nxg-mobile-button span::before {
  top: -7px;
}
.nxg-mobile-button span::after {
  top: 7px;
}

.nxg-mobile-button.nxg-active span {
  background: transparent;
}
.nxg-mobile-button.nxg-active span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.nxg-mobile-button.nxg-active span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* ================= MOBILE DRAWER (opens from LEFT, native-app slide-drill-down) ================= */

.nxg-mobile-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 20, 28, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 99999990;
}

.nxg-mobile-overlay.nxg-active {
  opacity: 1;
  visibility: visible;
}

.nxg-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 99999999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.nxg-mobile-drawer.nxg-active {
  transform: translateX(0);
}

/* ---- Drawer header: company card style ---- */

.nxg-drawer-header {
  min-height: 82px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--nxg-primary);
  flex-shrink: 0;
}

.nxg-drawer-logo {
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nxg-drawer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nxg-drawer-titles {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nxg-drawer-title {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nxg-drawer-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nxg-drawer-close {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.nxg-drawer-close:hover {
  color: var(--nxg-accent);
}

/* ---- Panels wrapper: horizontal slide-drill-down stack ---- */

.nxg-drawer-panels {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.nxg-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s ease;
  visibility: hidden;
  z-index: 1;
}

.nxg-drawer-panel.nxg-panel-root {
  transform: translateX(0);
  visibility: visible;
  z-index: 1;
  box-shadow: none;
}

.nxg-drawer-panel.nxg-panel-active {
  transform: translateX(0);
  visibility: visible;
  z-index: 2;
  box-shadow: -6px 0 18px rgba(0, 0, 0, 0.08);
}

.nxg-drawer-panel.nxg-panel-exit-left {
  transform: translateX(-30%);
  visibility: visible;
  filter: brightness(0.92);
}

.nxg-drawer-search {
  position: relative;
  padding: 14px 16px 4px;
}

.nxg-drawer-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: var(--nxg-light);
  border: 1px solid var(--nxg-border);
  border-radius: 22px;
}

.nxg-drawer-search-form i {
  color: var(--nxg-gray);
  font-size: 13px;
}

.nxg-drawer-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: "Domine", sans-serif;
  font-size: 13px;
  color: var(--nxg-black);
}

.nxg-drawer-search .nxg-search-results {
  position: absolute;
  top: calc(100% - 2px);
  left: 16px;
  right: 16px;
  width: auto;
  min-width: 0;
}

/* ---- Sub-panel header: back arrow + title ---- */

.nxg-panel-subheader {
  min-height: 56px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--nxg-border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 3;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.nxg-panel-back {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: none;
  background: var(--nxg-light);
  color: var(--nxg-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: 50%;
  transition: 0.2s ease;
}

.nxg-panel-back:hover {
  background: #eef3f5;
}

.nxg-panel-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--nxg-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nxg-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nxg-mobile-item {
  list-style: none;
  border-bottom: 1px solid var(--nxg-border);
}

.nxg-mobile-link {
  min-height: 50px;
  width: 100%;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--nxg-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  background: #fff;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
  cursor: pointer;
  border: none;
  text-align: left;
}

.nxg-mobile-link:hover,
.nxg-mobile-link:active {
  background: var(--nxg-light);
  color: var(--nxg-primary);
  padding-left: 22px;
}

.nxg-mobile-link .nxg-mobile-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--nxg-gray);
  border-bottom: 1.5px solid var(--nxg-gray);
  transform: rotate(-45deg);
  transition: 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.nxg-mobile-link:hover .nxg-mobile-arrow {
  border-color: var(--nxg-primary);
  transform: rotate(-45deg) translateX(2px);
}

/* "View All X" row (top link inside a drilled-down panel) stands out slightly */
.nxg-mobile-item:first-child .nxg-mobile-link {
  color: var(--nxg-primary);
  font-weight: 700;
  background: #fbfcfd;
}

.nxg-drawer-quote {
  margin: 16px;
  padding: 13px 20px;
  background: var(--nxg-primary);
  color: #fff;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: block;
  transition: 0.2s ease;
}

.nxg-drawer-quote:hover {
  background: var(--nxg-accent);
}

.nxg-drawer-contact {
  padding: 14px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nxg-drawer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nxg-black);
  text-decoration: none;
  font-size: 12px;
}

.nxg-drawer-contact a i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nxg-light);
  color: var(--nxg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

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

@media (max-width: 1440px) {
  .nxg-live-search {
    display: none !important;
  }
  .nxg-laptop-search-icon {
    display: flex;
  }
  .nxg-nav-inner {
    width: 100%;
    max-width: 1520px;
    height: 100%;
    margin: 0px auto;
    display: flex;
    padding: 0px 10px;
    align-items: center;
    gap: 10px;
  }
  .nxg-menu-link {
    height: 100%;
    padding: 0px 10px;
  }
  .nxg-logo img {
    max-width: 230px;
  }
}

@media (max-width: 1050px) {
  .nxg-nav-inner {
    padding-left: 18px;
    padding-right: 18px;
    gap: 15px;
  }
  .nxg-logo {
    width: 230px;
    min-width: 230px;
    max-width: 230px;
  }
  .nxg-logo img {
    max-width: 230px;
  }
  .nxg-desktop-menu {
    display: none !important;
  }
  .nxg-mobile-button {
    display: block;
  }
  .nxg-quote-button {
    display: none;
  }
  .nxg-laptop-search-icon {
    display: none !important;
  }
  .nxg-nav-actions {
    margin-left: auto;
    gap: 8px;
  }
}

@media (max-width: 991px) {
  .nxg-topbar {
    height: 35px;
  }
  .nxg-topbar-inner {
    padding-left: 15px;
    padding-right: 15px;
    gap: 10px;
  }
  .nxg-marquee-item {
    font-size: 15px;
    padding-right: 55px;
  }
  .nxg-top-links {
    gap: 14px;
  }
  .nxg-top-link {
    font-size: 13px;
  }
  .nxg-mainnav {
    height: 74px;
  }
  .nxg-nav-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    gap: 8px;
  }
  .nxg-logo {
    width: 190px;
    min-width: 190px;
    max-width: 190px;
  }
  .nxg-logo img {
    max-width: 190px;
  }
  .nxg-desktop-menu {
    display: none !important;
  }
  .nxg-nav-actions {
    margin-left: auto;
    gap: 7px;
  }
  .nxg-quote-button {
    display: none;
  }
  .nxg-mobile-button {
    display: block;
  }
  .nxg-live-search {
    display: none;
  }
  .nxg-laptop-search-icon {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .nxg-topbar-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .nxg-top-links {
    display: none;
  }
  .nxg-marquee-wrapper {
    width: 100%;
  }
  .nxg-mainnav {
    height: 70px;
  }
  .nxg-nav-inner {
    padding-left: 11px;
    padding-right: 11px;
  }
  .nxg-logo {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
  }
  .nxg-logo img {
    max-width: 170px;
  }
  .nxg-mobile-button {
    width: 39px;
    height: 39px;
  }
  .nxg-mobile-drawer {
    width: min(300px, 88vw);
  }
  .nxg-drawer-header {
    min-height: 76px;
  }
}

@media (max-width: 380px) {
  .nxg-mainnav {
    height: 66px;
  }
  .nxg-nav-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .nxg-logo {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
  }
  .nxg-logo img {
    max-width: 150px;
  }
  .nxg-mobile-button {
    width: 37px;
    height: 37px;
  }
}

/* <!-- Banner Css --> */

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Domine", sans-serif !important;
}

.nxg-banner-section,
.nxg-banner-section *,
.nxg-banner-section *::before,
.nxg-banner-section *::after {
  box-sizing: border-box;
}

.nxg-banner-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #f4f7f8;
}

.nxg-banner-swiper {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.nxg-banner-swiper .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
}

.nxg-banner-slide {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nxg-banner-link {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nxg-banner-desktop-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 700px;
  object-fit: cover;
  object-position: center center;
}

.nxg-banner-mobile-image {
  display: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.nxg-banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.12),
    transparent 45%,
    rgba(0, 0, 0, 0.03)
  );
  pointer-events: none;
}

.nxg-banner-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  width: min(560px, 45%);
  max-width: 560px;
  z-index: 5;
  color: #fff;
}

.nxg-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  background: rgba(5, 55, 76, 0.92);
  border-left: 3px solid #f5a623;
  color: #fff;
  font-family: "Domine", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.nxg-banner-title {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Domine", sans-serif;
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 1.12;
  font-weight: 700;
}

.nxg-banner-description {
  margin: 0 0 25px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Domine", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.nxg-banner-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nxg-banner-primary-btn,
.nxg-banner-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 20px;
  font-family: "Domine", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-banner-primary-btn {
  background: #f5a623;
  color: #fff;
  border-radius: 4px;
}

.nxg-banner-primary-btn:hover {
  background: #05374c;
  color: #fff;
  transform: translateY(-2px);
}

.nxg-banner-secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.nxg-banner-secondary-btn:hover {
  background: #fff;
  color: #05374c;
}

.nxg-banner-prev,
.nxg-banner-next {
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(5, 55, 76, 0.1);
  color: #05374c !important;
  transition: 0.3s ease;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.12);
}

.nxg-banner-prev {
  left: 22px !important;
}

.nxg-banner-next {
  right: 22px !important;
}

.nxg-banner-prev:hover,
.nxg-banner-next:hover {
  background: #05374c;
  color: #fff !important;
  transform: scale(1.06);
}

.nxg-banner-prev::after,
.nxg-banner-next::after {
  font-size: 14px !important;
  font-weight: 700;
}

.nxg-banner-pagination {
  position: absolute !important;
  bottom: 22px !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 20;
}

.nxg-banner-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 0.55;
  background: #fff;
  transition: 0.3s ease;
}

.nxg-banner-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 10px;
  opacity: 1;
  background: #f5a623;
}

.nxg-banner-slide .nxg-banner-desktop-image,
.nxg-banner-slide .nxg-banner-mobile-image {
  transform: scale(1.01);
  transition: transform 6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.nxg-banner-slide.swiper-slide-active .nxg-banner-desktop-image,
.nxg-banner-slide.swiper-slide-active .nxg-banner-mobile-image {
  transform: scale(1.06);
}

@media (max-width: 1050px) {
  .nxg-banner-desktop-image {
    min-height: 350px;
    max-height: 550px;
  }

  .nxg-banner-content {
    left: 6%;
    width: 48%;
  }

  .nxg-banner-title {
    font-size: 38px;
  }

  .nxg-banner-description {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .nxg-banner-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nxg-banner-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nxg-banner-swiper .swiper-wrapper {
    width: 100%;
  }

  .nxg-banner-desktop-image {
    display: none;
  }

  .nxg-banner-mobile-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .nxg-banner-content {
    top: auto;
    bottom: 60px;
    left: 20px;
    transform: none;
    width: calc(100% - 40px);
    max-width: 500px;
  }

  .nxg-banner-label {
    margin-bottom: 9px;
    padding: 5px 10px;
    font-size: 9px;
  }

  .nxg-banner-title {
    margin-bottom: 9px;
    font-size: 26px;
    line-height: 1.2;
  }

  .nxg-banner-description {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.6;
  }

  .nxg-banner-buttons {
    gap: 8px;
  }

  .nxg-banner-primary-btn,
  .nxg-banner-secondary-btn {
    min-height: 39px;
    padding: 0 14px;
    font-size: 10px;
  }

  .nxg-banner-prev,
  .nxg-banner-next {
    width: 34px !important;
    height: 34px !important;
    margin-top: -17px !important;
  }

  .nxg-banner-prev {
    left: 10px !important;
  }

  .nxg-banner-next {
    right: 10px !important;
  }

  .nxg-banner-prev::after,
  .nxg-banner-next::after {
    font-size: 11px !important;
  }

  .nxg-banner-pagination {
    bottom: 15px !important;
  }

  .nxg-banner-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .nxg-banner-pagination .swiper-pagination-bullet-active {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .nxg-banner-content {
    left: 16px;
    bottom: 48px;
    width: calc(100% - 32px);
  }

  .nxg-banner-title {
    font-size: 23px;
  }

  .nxg-banner-description {
    font-size: 10px;
  }

  .nxg-banner-primary-btn,
  .nxg-banner-secondary-btn {
    min-height: 36px;
    padding: 0 11px;
    font-size: 9px;
  }

  .nxg-banner-prev,
  .nxg-banner-next {
    display: none;
  }
}

@media (max-width: 360px) {
  .nxg-banner-content {
    bottom: 42px;
  }

  .nxg-banner-title {
    font-size: 20px;
  }

  .nxg-banner-description {
    display: none;
  }
}

/* <!-- About section css --> */

.nxg-about,
.nxg-about *,
.nxg-about *::before,
.nxg-about *::after {
  box-sizing: border-box;
}

.nxg-about {
  --nxg-about-primary: #05374c;
  --nxg-about-primary-dark: #032b3c;
  --nxg-about-accent: #f5a623;
  --nxg-about-orange: #ff681d;
  --nxg-about-text: #17232a;
  --nxg-about-muted: #66757d;
  --nxg-about-border: #e7edef;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
  font-family: "Domine", sans-serif;
}

.nxg-about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(
      90deg,
      transparent 49%,
      var(--nxg-about-primary) 50%,
      transparent 51%
    ),
    linear-gradient(
      0deg,
      transparent 49%,
      var(--nxg-about-primary) 50%,
      transparent 51%
    );
  background-size: 100px 100px;
}

.nxg-about-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.nxg-about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 35px;
}

.nxg-about-visual {
  position: relative;
  min-height: 610px;
  width: 100%;
}

.nxg-about-main-image {
  position: absolute;
  top: 15px;
  left: 5%;
  width: 65%;
  height: 515px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 20px 45px rgba(5, 55, 76, 0.15);
}

.nxg-about-main-image img,
.nxg-about-secondary-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nxg-about-main-image:hover img,
.nxg-about-secondary-image:hover img {
  transform: scale(1.05);
}

.nxg-about-secondary-image {
  position: absolute;
  right: 1%;
  bottom: 5px;
  width: 63%;
  height: 365px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 5px;
  box-shadow: 0 20px 45px rgba(5, 55, 76, 0.18);
  z-index: 3;
}

.nxg-about-badge {
  position: absolute;
  top: 55px;
  right: 3%;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: #fff;
  border: 7px solid var(--nxg-about-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--nxg-about-primary);
  z-index: 4;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.nxg-about-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(5, 55, 76, 0.3);
  border-radius: 50%;
}

.nxg-about-badge-small {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nxg-about-badge strong {
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
}

.nxg-about-badge span:last-child {
  font-size: 10px;
  font-weight: 500;
}

.nxg-about-experience {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 180px;
  min-height: 90px;
  padding: 14px 18px;
  background: var(--nxg-about-primary);
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(5, 55, 76, 0.2);
}

.nxg-about-experience strong {
  font-size: 38px;
  line-height: 1;
  color: var(--nxg-about-accent);
  font-weight: 700;
}

.nxg-about-experience span {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
}

.nxg-about-content {
  padding: 10px 0 10px 25px;
}

.nxg-about-heading {
  margin-bottom: 22px;
}

.nxg-about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--nxg-about-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nxg-about-subtitle i {
  font-size: 13px;
}

.nxg-about-heading h1 {
  margin: 0;
  color: var(--nxg-about-text);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}

.nxg-about-heading h1 span {
  color: var(--nxg-about-primary);
}

.nxg-about-content > p {
  margin: 0 0 16px;
  color: #121314;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.nxg-about-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 55, 76, 0.08);
}

.nxg-about-feature {
  min-height: 92px;
  padding: 14px 12px;
  background: var(--nxg-about-primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nxg-about-feature:last-child {
  border-right: 0;
}

.nxg-about-feature-active {
  background: #f5a623;
}

.nxg-about-feature-icon {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 15px;
}

.nxg-about-feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nxg-about-feature-text strong {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.nxg-about-feature-text span {
  font-size: 10px;
  line-height: 1.4;
  opacity: 0.85;
}

.nxg-about-bottom {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 24px;
}

.nxg-about-btn {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f5a623;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nxg-about-btn i {
  font-size: 11px;
  transition: 0.3s ease;
}

.nxg-about-btn:hover {
  background: var(--nxg-about-primary);
  color: #fff;
  transform: translateY(-2px);
}

.nxg-about-btn:hover i {
  transform: translateX(4px);
}

.nxg-about-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nxg-about-contact-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #eef5f7;
  color: var(--nxg-about-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.nxg-about-contact small {
  display: block;
  color: #000000;
  font-weight: 800;
  font-size: 9px;
  margin-bottom: 2px;
}

.nxg-about-contact a {
  color: var(--nxg-about-primary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .nxg-about {
    padding: 80px 0;
  }

  .nxg-about-grid {
    grid-template-columns: 46% 54%;
    gap: 20px;
  }

  .nxg-about-visual {
    min-height: 540px;
  }

  .nxg-about-main-image {
    height: 450px;
  }

  .nxg-about-secondary-image {
    height: 315px;
  }

  .nxg-about-heading h2 {
    font-size: 32px;
  }

  .nxg-about-feature {
    min-height: 85px;
    padding: 12px 9px;
  }

  .nxg-about-feature-icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .nxg-about {
    padding: 70px 0;
  }

  .nxg-about-container {
    padding: 0 25px;
  }

  .nxg-about-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .nxg-about-visual {
    min-height: 570px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .nxg-about-content {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
  }

  .nxg-about-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .nxg-about {
    padding: 55px 0;
  }

  .nxg-about-container {
    padding: 0 18px;
  }

  .nxg-about-grid {
    gap: 40px;
  }

  .nxg-about-visual {
    min-height: 470px;
  }

  .nxg-about-main-image {
    top: 0;
    left: 0;
    width: 72%;
    height: 350px;
  }

  .nxg-about-secondary-image {
    right: 0;
    bottom: 0;
    width: 68%;
    height: 260px;
    border-width: 4px;
  }

  .nxg-about-badge {
    top: 35px;
    right: 2%;
    width: 105px;
    height: 105px;
    border-width: 5px;
  }

  .nxg-about-badge-small {
    font-size: 8px;
  }

  .nxg-about-badge strong {
    font-size: 14px;
  }

  .nxg-about-badge span:last-child {
    font-size: 8px;
  }

  .nxg-about-experience {
    left: 0;
    bottom: 10px;
    width: 150px;
    min-height: 72px;
    padding: 10px 12px;
    gap: 8px;
  }

  .nxg-about-experience strong {
    font-size: 30px;
  }

  .nxg-about-experience span {
    font-size: 9px;
  }

  .nxg-about-subtitle {
    font-size: 10px;
  }

  .nxg-about-heading h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .nxg-about-content > p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 13px;
  }

  .nxg-about-features {
    grid-template-columns: 1fr;
  }

  .nxg-about-feature {
    min-height: 67px;
    padding: 11px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nxg-about-feature:last-child {
    border-bottom: 0;
  }

  .nxg-about-feature-icon {
    width: 35px;
    height: 35px;
  }

  .nxg-about-feature-text strong {
    font-size: 13px;
  }

  .nxg-about-feature-text span {
    font-size: 10px;
  }

  .nxg-about-bottom {
    align-items: flex-start;
    flex-direction: row;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .nxg-about {
    padding: 45px 0;
  }

  .nxg-about-container {
    padding: 0 14px;
  }

  .nxg-about-visual {
    min-height: 390px;
  }

  .nxg-about-main-image {
    width: 76%;
    height: 290px;
  }

  .nxg-about-secondary-image {
    width: 70%;
    height: 215px;
  }

  .nxg-about-badge {
    width: 85px;
    height: 85px;
    top: 25px;
    right: 0;
    border-width: 4px;
  }

  .nxg-about-badge strong {
    font-size: 11px;
  }

  .nxg-about-badge-small,
  .nxg-about-badge span:last-child {
    font-size: 7px;
  }

  .nxg-about-experience {
    width: 135px;
    min-height: 62px;
    padding: 8px 10px;
  }

  .nxg-about-experience strong {
    font-size: 25px;
  }

  .nxg-about-experience span {
    font-size: 8px;
  }

  .nxg-about-heading h2 {
    font-size: 24px;
  }

  .nxg-about-content > p {
    font-size: 14px;
  }

  .nxg-about-contact a {
    font-size: 11px;
  }
}

/* <!-- Trust css --> */

.nxg-trust-section,
.nxg-trust-section *,
.nxg-trust-section *::before,
.nxg-trust-section *::after {
  box-sizing: border-box;
}

.nxg-trust-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background: #101d5a17;
  font-family: "Domine", sans-serif;
}

.nxg-trust-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  top: -200px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.06);
  pointer-events: none;
}

.nxg-trust-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -170px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.07);
  pointer-events: none;
}

.nxg-trust-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 35px;
  position: relative;
  z-index: 2;
}

.nxg-trust-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.nxg-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nxg-trust-eyebrow::before,
.nxg-trust-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: #f5a623;
}

.nxg-trust-heading h2 {
  margin: 0 0 12px;
  color: #17232a;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
}

.nxg-trust-heading h2 span {
  color: #05374c;
}

.nxg-trust-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #66757d;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 400;
}

.nxg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nxg-trust-card {
  min-height: 285px;
  position: relative;
  overflow: hidden;
  padding: 38px 25px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 55, 76, 0.13);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(5, 55, 76, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.nxg-trust-card-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #f5a623;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.nxg-trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(5, 55, 76, 0.25);
  box-shadow: 0 20px 45px rgba(5, 55, 76, 0.13);
}

.nxg-trust-card:hover .nxg-trust-card-top {
  width: 100%;
}

.nxg-trust-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #05374c;
  background: #eaf2f5;
  border: 1px solid rgba(5, 55, 76, 0.08);
  font-size: 28px;
  position: relative;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.nxg-trust-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(245, 166, 35, 0.45);
  border-radius: 24px;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.35s ease;
}

.nxg-trust-card:hover .nxg-trust-icon {
  background: #05374c;
  color: #fff;
  transform: translateY(-3px);
}

.nxg-trust-card:hover .nxg-trust-icon::after {
  opacity: 1;
  transform: scale(1);
}

.nxg-trust-label {
  display: block;
  margin-bottom: 10px;
  color: #29363d;
  font-size: 13px;
  font-weight: 600;
}

.nxg-trust-card h3 {
  max-width: 260px;
  min-height: 48px;
  margin: 0 auto;
  color: #29488f;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.nxg-trust-number {
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(5, 55, 76, 0.07);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  transition: 0.35s ease;
}

.nxg-trust-card:hover .nxg-trust-number {
  color: rgba(245, 166, 35, 0.16);
}

@media (max-width: 1100px) {
  .nxg-trust-section {
    padding: 70px 0;
  }

  .nxg-trust-container {
    padding: 0 25px;
  }

  .nxg-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .nxg-trust-card {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .nxg-trust-section {
    padding: 55px 0 60px;
  }

  .nxg-trust-container {
    padding: 0 15px;
  }

  .nxg-trust-heading {
    margin-bottom: 30px;
  }

  .nxg-trust-eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .nxg-trust-eyebrow::before,
  .nxg-trust-eyebrow::after {
    width: 15px;
  }

  .nxg-trust-heading h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .nxg-trust-heading p {
    font-size: 11px;
    line-height: 1.7;
  }

  .nxg-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nxg-trust-card {
    min-height: 220px;
    padding: 25px 10px 22px;
    border-radius: 9px;
  }

  .nxg-trust-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 15px;
    font-size: 21px;
  }

  .nxg-trust-icon::after {
    border-radius: 19px;
  }

  .nxg-trust-label {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .nxg-trust-card h3 {
    min-height: 48px;
    font-size: 11px;
    line-height: 1.5;
  }

  .nxg-trust-number {
    right: 10px;
    bottom: 8px;
    font-size: 25px;
  }
}

@media (max-width: 380px) {
  .nxg-trust-container {
    padding: 0 10px;
  }

  .nxg-trust-grid {
    gap: 9px;
  }

  .nxg-trust-card {
    min-height: 205px;
    padding: 22px 7px 20px;
  }

  .nxg-trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    font-size: 19px;
  }

  .nxg-trust-label {
    font-size: 9px;
  }

  .nxg-trust-card h3 {
    font-size: 10px;
  }
}

/* <!-- our product css --> */

.nxg-products,
.nxg-products *,
.nxg-products *::before,
.nxg-products *::after {
  box-sizing: border-box;
}

.nxg-products {
  width: 100%;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background: #fff;
  font-family: "Domine", sans-serif;
}

.nxg-products-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.nxg-products-heading {
  max-width: 750px;
  margin: 0 auto 45px;
  text-align: center;
}

.nxg-products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nxg-products-eyebrow::before,
.nxg-products-eyebrow::after {
  content: "";
  width: 25px;
  height: 1px;
  background: #f5a623;
}

.nxg-products-heading h2 {
  margin: 0 0 12px;
  color: #17232a;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
}

.nxg-products-heading h2 span {
  color: #05374c;
}

.nxg-products-heading p {
  margin: 0 auto;
  color: #6c7b82;
  font-size: 13px;
  line-height: 1.8;
}

/* =========================
   SWIPER
========================= */

.nxg-products-swiper {
  width: 100%;
  overflow: visible;
}

.nxg-product-slide {
  height: auto;
}

/* =========================
   PRODUCT CARD
========================= */

.nxg-product-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(5, 55, 76, 0.09);
  border: 1px solid rgba(5, 55, 76, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.nxg-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(5, 55, 76, 0.18);
}

/* =========================
   PRODUCT IMAGE
========================= */

.nxg-product-image {
  width: 100%;
  height: 330px;
  position: relative;
  overflow: hidden;
  background: #dfe7ea;
}

.nxg-product-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.65s ease;
}

.nxg-product-card:hover .nxg-product-image > img {
  transform: scale(1.08);
}

/* =========================
   OVERLAY
========================= */

.nxg-product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(3, 43, 60, 0.94);
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nxg-product-card:hover .nxg-product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.nxg-product-overlay-content {
  width: 100%;
  max-width: 320px;
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.45s ease 0.08s;
}

.nxg-product-card:hover .nxg-product-overlay-content {
  transform: translateY(0);
}

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

.nxg-product-category {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-left: 2px solid #f5a623;
  color: #f5a623;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================
   OVERLAY CONTENT
========================= */

.nxg-product-overlay h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.nxg-product-overlay p {
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
   READ MORE
========================= */

.nxg-product-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nxg-product-readmore:hover {
  background: #f5a623;
  border-color: #f5a623;
  color: #fff;
}

.nxg-product-readmore i {
  font-size: 9px;
  transition: 0.3s ease;
}

.nxg-product-readmore:hover i {
  transform: translateX(3px);
}

/* =========================
   BOTTOM PRODUCT NAME
========================= */

.nxg-product-bottom {
  min-height: 70px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
}

.nxg-product-bottom h3 {
  flex: 1;
  margin: 0;
  color: #05374c;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.nxg-product-bottom h3 a {
  display: block;
  width: 100%;
  color: #05374c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nxg-product-bottom h3 a:hover {
  color: #f5a623;
}

.nxg-product-bottom span {
  flex-shrink: 0;
  color: #d9e1e4;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

/* =========================
   NAVIGATION
========================= */

.nxg-products-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.nxg-products-prev,
.nxg-products-next {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e2e5;
  border-radius: 50%;
  background: #fff;
  color: #05374c;
  cursor: pointer;
  transition: 0.3s ease;
}

.nxg-products-prev:hover,
.nxg-products-next:hover {
  background: #05374c;
  border-color: #05374c;
  color: #fff;
}

/* =========================
   PAGINATION
========================= */

.nxg-products-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nxg-products-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  opacity: 1;
  background: #c9d4d8;
  transition: 0.3s ease;
}

.nxg-products-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 10px;
  background: #f5a623;
}

/* =========================
   VIEW ALL PRODUCTS
========================= */

.nxg-products-button {
  margin-top: 35px;
  text-align: center;
}

.nxg-products-button a {
  min-height: 44px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  background: #05374c;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nxg-products-button a:hover {
  background: #f5a623;
  transform: translateY(-2px);
}

.nxg-products-button a i {
  font-size: 10px;
  transition: 0.3s ease;
}

.nxg-products-button a:hover i {
  transform: translateX(4px);
}

/* =========================
   1200px - DESKTOP
   4 CARDS
========================= */

@media (max-width: 1199px) {
  .nxg-products {
    padding: 60px 0 70px;
  }

  .nxg-products-container {
    padding: 0 25px;
  }

  .nxg-product-image {
    height: 290px;
  }
}

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

@media (max-width: 991px) {
  .nxg-products {
    padding: 55px 0 65px;
  }

  .nxg-products-heading {
    margin-bottom: 35px;
  }

  .nxg-product-image {
    height: 285px;
  }

  .nxg-product-overlay {
    padding: 25px;
  }

  .nxg-product-overlay h3 {
    font-size: 18px;
  }

  .nxg-product-overlay p {
    font-size: 12px;
  }
}

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

@media (max-width: 767px) {
  .nxg-products {
    padding: 55px 0 60px;
  }

  .nxg-products-container {
    padding: 0 15px;
  }

  .nxg-products-heading {
    margin-bottom: 28px;
  }

  .nxg-products-eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .nxg-products-eyebrow::before,
  .nxg-products-eyebrow::after {
    width: 15px;
  }

  .nxg-products-heading h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .nxg-products-heading p {
    font-size: 11px;
    line-height: 1.7;
  }

  .nxg-products-swiper {
    overflow: hidden;
  }

  .nxg-product-image {
    height: 285px;
  }

  .nxg-product-overlay {
    padding: 22px;
  }

  .nxg-product-overlay h3 {
    font-size: 17px;
  }

  .nxg-product-overlay p {
    font-size: 10px;
    line-height: 1.65;
  }

  .nxg-product-bottom {
    min-height: 62px;
    padding: 0 13px;
  }

  .nxg-product-bottom h3 {
    font-size: 11px;
  }

  .nxg-product-bottom span {
    font-size: 18px;
  }

  .nxg-products-navigation {
    margin-top: 25px;
  }

  .nxg-products-button {
    margin-top: 28px;
  }
}

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

@media (max-width: 480px) {
  .nxg-product-image {
    height: 255px;
  }

  .nxg-product-overlay {
    padding: 18px;
  }

  .nxg-product-category {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .nxg-product-overlay h3 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .nxg-product-overlay p {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .nxg-product-readmore {
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
  }
}

/* <!-- product and service css --> */

.nxg-services,
.nxg-services *,
.nxg-services *::before,
.nxg-services *::after {
  box-sizing: border-box;
}

.nxg-services {
  width: 100%;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background: #101d5a17;
  font-family: "Domine", sans-serif;
}

.nxg-services::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -280px;
  right: -230px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.035);
  pointer-events: none;
}

.nxg-services::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -220px;
  left: -180px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.045);
  pointer-events: none;
}

.nxg-services-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.nxg-services-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.nxg-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nxg-services-eyebrow::before,
.nxg-services-eyebrow::after {
  content: "";
  width: 25px;
  height: 1px;
  background: #f5a623;
}

.nxg-services-heading h2 {
  margin: 0 0 12px;
  color: #17232a;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
}

.nxg-services-heading h2 span {
  color: #05374c;
}

.nxg-services-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #68777f;
  font-size: 13px;
  line-height: 1.8;
}

.nxg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nxg-service-card {
  min-height: 255px;
  padding: 30px 27px 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid #dce4e8;
  border-radius: 15px;
  background: #f4f7fc;
  box-shadow: 0 8px 25px rgba(5, 55, 76, 0.055);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.nxg-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #05374c;
  transition:
    height 0.35s ease,
    background 0.35s ease;
}

.nxg-service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
  transition: 0.4s ease;
}

.nxg-service-card:hover {
  transform: translateY(-7px);
  background: #fff;
  border-color: rgba(5, 55, 76, 0.18);
  box-shadow: 0 20px 45px rgba(5, 55, 76, 0.13);
}

.nxg-service-card:hover::before {
  height: 5px;
  background: #f5a623;
}

.nxg-service-card:hover::after {
  width: 220px;
  height: 220px;
}

.nxg-service-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(5, 55, 76, 0.08);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  transition: 0.35s ease;
}

.nxg-service-card:hover .nxg-service-number {
  color: rgba(245, 166, 35, 0.2);
}

.nxg-service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e4edf4;
  color: #05374c;
  font-size: 20px;
  transition: 0.35s ease;
}

.nxg-service-card:hover .nxg-service-icon {
  background: #05374c;
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}

.nxg-service-card h3 {
  margin: 0 35px 10px 0;
  color: #17232a;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.nxg-service-card p {
  margin: 0;
  color: #343b3e;
  font-size: 13.5px;
  line-height: 1.75;
}

.nxg-service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: #05374c;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s ease;
}

.nxg-service-link i {
  font-size: 9px;
  transition: 0.3s ease;
}

.nxg-service-card:hover .nxg-service-link {
  opacity: 1;
  transform: translateY(0);
}

.nxg-service-link:hover {
  color: #f5a623;
}

.nxg-service-link:hover i {
  transform: translateX(4px);
}

.nxg-services-btn {
  min-height: 45px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  background: #05374c;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nxg-services-btn:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
}

.nxg-services-btn i {
  font-size: 9px;
  transition: 0.3s ease;
}

.nxg-services-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .nxg-services {
    padding: 75px 0 80px;
  }

  .nxg-services-container {
    padding: 0 25px;
  }

  .nxg-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .nxg-services {
    padding: 55px 0 60px;
  }

  .nxg-services-container {
    padding: 0 15px;
  }

  .nxg-services-heading {
    margin-bottom: 30px;
  }

  .nxg-services-eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .nxg-services-eyebrow::before,
  .nxg-services-eyebrow::after {
    width: 15px;
  }

  .nxg-services-heading h2 {
    font-size: 25px;
  }

  .nxg-services-heading p {
    font-size: 11px;
    line-height: 1.7;
  }

  .nxg-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nxg-service-card {
    min-height: 245px;
    padding: 22px 13px 20px;
    border-radius: 10px;
  }

  .nxg-service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 10px;
    font-size: 17px;
  }

  .nxg-service-number {
    top: 13px;
    right: 13px;
    font-size: 22px;
  }

  .nxg-service-card h3 {
    margin-right: 20px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .nxg-service-card p {
    font-size: 9.5px;
    line-height: 1.65;
  }

  .nxg-service-link {
    margin-top: 12px;
    font-size: 9px;
    opacity: 1;
    transform: none;
  }

  .nxg-services-btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .nxg-services-container {
    padding: 0 10px;
  }

  .nxg-services-grid {
    gap: 9px;
  }

  .nxg-service-card {
    min-height: 250px;
    padding: 20px 10px 18px;
  }

  .nxg-service-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .nxg-service-card h3 {
    font-size: 11px;
  }

  .nxg-service-card p {
    font-size: 9px;
  }

  .nxg-service-link {
    font-size: 8px;
  }
}

/* <!-- why choose us css --> */

.nxg-why,
.nxg-why *,
.nxg-why *::before,
.nxg-why *::after {
  box-sizing: border-box;
}

.nxg-why {
  width: 100%;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background: #fff;
  font-family: "Domine", sans-serif;
}

.nxg-why::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -250px;
  left: -250px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.035);
}

.nxg-why::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -250px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.055);
}

.nxg-why-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.nxg-why-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.nxg-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nxg-why-eyebrow::before,
.nxg-why-eyebrow::after {
  content: "";
  width: 25px;
  height: 1px;
  background: #f5a623;
}

.nxg-why-heading h2 {
  margin: 0 0 12px;
  color: #17232a;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
}

.nxg-why-heading h2 span {
  color: #05374c;
}

.nxg-why-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #68777f;
  font-size: 14px;
  line-height: 1.8;
}

.nxg-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.nxg-why-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nxg-why-card {
  min-height: 66px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe6ea;
  border-radius: 9px;
  background: #f8fafb;
  box-shadow: 0 6px 18px rgba(5, 55, 76, 0.055);
  color: #202b31;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nxg-why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: #f5a623;
  transition: height 0.3s ease;
}

.nxg-why-card:hover {
  transform: translateX(5px);
  background: #fff;
  border-color: rgba(5, 55, 76, 0.18);
  box-shadow: 0 12px 28px rgba(5, 55, 76, 0.1);
}

.nxg-why-right .nxg-why-card:hover {
  transform: translateX(-5px);
}

.nxg-why-card:hover::before {
  height: 100%;
}

.nxg-why-card > i {
  flex-shrink: 0;
  color: #05374c;
  font-size: 15px;
  transition: 0.3s ease;
}

.nxg-why-card:hover > i {
  color: #f5a623;
  transform: scale(1.12);
}

.nxg-why-card-number {
  position: absolute;
  right: 13px;
  bottom: -5px;
  color: rgba(5, 55, 76, 0.055);
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s ease;
}

.nxg-why-card:hover .nxg-why-card-number {
  color: rgba(245, 166, 35, 0.15);
}

.nxg-why-image {
  height: 460px;
  position: relative;
  display: flex;
  justify-content: center;
}

.nxg-why-image-frame {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 45px rgba(5, 55, 76, 0.16);
}

.nxg-why-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 55, 76, 0.02),
    rgba(5, 55, 76, 0.16)
  );
  pointer-events: none;
}

.nxg-why-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.nxg-why-image:hover .nxg-why-image-frame img {
  transform: scale(1.045);
}

.nxg-why-image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  right: -15px;
  bottom: -15px;
  border-radius: 15px;
  background: #f9ddad;
  z-index: 1;
}

@media (max-width: 1200px) {
  .nxg-why-container {
    padding: 0 25px;
  }

  .nxg-why-layout {
    grid-template-columns: minmax(0, 1fr) 360px minmax(0, 1fr);
    gap: 20px;
  }

  .nxg-why-image {
    height: 500px;
  }

  .nxg-why-card {
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .nxg-why {
    padding: 65px 0 75px;
  }

  .nxg-why-container {
    padding: 0 20px;
  }

  .nxg-why-heading {
    margin-bottom: 40px;
  }

  .nxg-why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .nxg-why-image {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 430px;
    max-width: 100%;
    height: 500px;
    margin: 0 auto 10px;
  }

  .nxg-why-left {
    grid-column: 1;
    grid-row: 2;
  }

  .nxg-why-right {
    grid-column: 2;
    grid-row: 2;
  }

  .nxg-why-card {
    min-height: 64px;
    font-size: 12px;
  }

  .nxg-why-card:hover,
  .nxg-why-right .nxg-why-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 767px) {
  .nxg-why {
    padding: 50px 0 60px;
  }

  .nxg-why-container {
    padding: 0 14px;
  }

  .nxg-why-heading {
    margin-bottom: 30px;
  }

  .nxg-why-eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .nxg-why-eyebrow::before,
  .nxg-why-eyebrow::after {
    width: 16px;
  }

  .nxg-why-heading h2 {
    font-size: 27px;
    line-height: 1.3;
  }

  .nxg-why-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .nxg-why-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nxg-why-left {
    order: 1;
    width: 100%;
  }

  .nxg-why-image {
    order: 2;
    width: 100%;
    max-width: 500px;
    height: 360px;
    margin: 2px auto 4px;
  }

  .nxg-why-right {
    order: 3;
    width: 100%;
  }

  .nxg-why-column {
    gap: 10px;
  }

  .nxg-why-card {
    width: 100%;
    min-height: 64px;
    padding: 11px 38px 11px 14px;
    gap: 10px;
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.45;
  }

  .nxg-why-card > i {
    font-size: 14px;
  }

  .nxg-why-card-number {
    right: 10px;
    bottom: -4px;
    font-size: 20px;
  }

  .nxg-why-image-frame {
    border-radius: 13px;
  }

  .nxg-why-image-accent {
    right: -7px;
    bottom: -7px;
    border-radius: 13px;
  }

  .nxg-why-card:hover,
  .nxg-why-right .nxg-why-card:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .nxg-why {
    padding: 42px 0 50px;
  }

  .nxg-why-container {
    padding: 0 12px;
  }

  .nxg-why-heading {
    margin-bottom: 27px;
  }

  .nxg-why-heading h2 {
    font-size: 25px;
  }

  .nxg-why-heading p {
    font-size: 12.5px;
  }

  .nxg-why-image {
    height: 325px;
    margin-top: 2px;
    margin-bottom: 3px;
  }

  .nxg-why-card {
    min-height: 62px;
    padding: 10px 34px 10px 13px;
    gap: 9px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .nxg-why-card > i {
    font-size: 13px;
  }

  .nxg-why-card-number {
    right: 8px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .nxg-why-image {
    height: 285px;
  }

  .nxg-why-card {
    min-height: 60px;
    padding: 10px 30px 10px 12px;
    font-size: 12px;
  }
}

/* <!-- featured product section css --> */

.nexgen-featured-products,
.nexgen-featured-products *,
.nexgen-featured-products *::before,
.nexgen-featured-products *::after {
  box-sizing: border-box;
}

.nexgen-featured-products {
  width: 100%;
  padding: 40px 0 40px;
  background: #101d5a17;
  font-family: "Domine", sans-serif;
  position: relative;
  overflow: hidden;
}

.nexgen-featured-products::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -280px;
  right: -220px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.035);
}

.nexgen-featured-products::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -260px;
  left: -220px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.045);
}

.nexgen-featured-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 35px;
  position: relative;
  z-index: 2;
}

.nexgen-featured-heading {
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center;
}

.nexgen-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nexgen-featured-label::before,
.nexgen-featured-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #f5a623;
}

.nexgen-featured-heading h2 {
  margin: 0 0 14px;
  color: #17232a;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
}

.nexgen-featured-heading h2 span {
  color: #05374c;
}

.nexgen-featured-line {
  width: 58px;
  height: 4px;
  margin: 0 auto 17px;
  border-radius: 10px;
  background: #f5a623;
}

.nexgen-featured-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #657680;
  font-size: 15px;
  line-height: 1.8;
}

.nexgen-featured-list {
  display: flex;
  flex-direction: column;
  gap: 85px;
}

.nexgen-featured-item {
  display: grid;
  grid-template-columns: 48% 1fr;
  align-items: center;
  gap: 75px;
  position: relative;
}

.nexgen-featured-item.nexgen-featured-reverse {
  grid-template-columns: 1fr 48%;
}

.nexgen-featured-reverse .nexgen-featured-media {
  grid-column: 2;
  grid-row: 1;
}

.nexgen-featured-reverse .nexgen-featured-content {
  grid-column: 1;
  grid-row: 1;
}

.nexgen-featured-media {
  min-width: 0;
}

.nexgen-featured-image {
  width: 100%;
  height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f5;
  box-shadow: 0 20px 50px rgba(5, 55, 76, 0.14);
}

.nexgen-featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 55, 76, 0) 55%,
    rgba(5, 55, 76, 0.22)
  );
  pointer-events: none;
}

.nexgen-featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.65s ease;
}

.nexgen-featured-item:hover .nexgen-featured-image img {
  transform: scale(1.05);
}

.nexgen-featured-image-tag {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #05374c;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nexgen-featured-content {
  min-width: 0;
}

.nexgen-featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  margin-bottom: 16px;
  border: 1px solid #d9e7f0;
  border-radius: 30px;
  background: #edf6fc;
  color: #05374c;
  font-size: 12px;
  font-weight: 700;
}

.nexgen-featured-content h3 {
  margin: 0 0 16px;
  color: #17232a;
  font-size: 29px;
  line-height: 1.3;
  font-weight: 700;
}

.nexgen-featured-content p {
  margin: 0 0 25px;
  color: #60717a;
  font-size: 15px;
  line-height: 1.85;
}

.nexgen-featured-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 28px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid #dfe7eb;
  border-radius: 13px;
  background: #dfe7eb;
}

.nexgen-featured-spec {
  min-height: 78px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
}

.nexgen-featured-spec i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #edf6fc;
  color: #0875b1;
  font-size: 15px;
}

.nexgen-featured-spec div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nexgen-featured-spec small {
  color: #82919a;
  font-size: 10px;
  font-weight: 500;
}

.nexgen-featured-spec strong {
  color: #263841;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.nexgen-featured-btn {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  background: #05374c;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nexgen-featured-btn i {
  transition: 0.3s ease;
}

.nexgen-featured-btn:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.2);
}

.nexgen-featured-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .nexgen-featured-container {
    padding: 0 25px;
  }

  .nexgen-featured-item,
  .nexgen-featured-item.nexgen-featured-reverse {
    grid-template-columns: 46% 1fr;
    gap: 45px;
  }

  .nexgen-featured-reverse .nexgen-featured-media {
    grid-column: 2;
  }

  .nexgen-featured-reverse .nexgen-featured-content {
    grid-column: 1;
  }

  .nexgen-featured-image {
    height: 350px;
  }

  .nexgen-featured-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .nexgen-featured-products {
    padding: 70px 0 80px;
  }

  .nexgen-featured-heading {
    margin-bottom: 45px;
  }

  .nexgen-featured-list {
    gap: 60px;
  }

  .nexgen-featured-item,
  .nexgen-featured-item.nexgen-featured-reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .nexgen-featured-reverse .nexgen-featured-media,
  .nexgen-featured-reverse .nexgen-featured-content {
    grid-column: auto;
    grid-row: auto;
  }

  .nexgen-featured-image {
    height: 400px;
  }

  .nexgen-featured-content {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
  }

  .nexgen-featured-content h3 {
    font-size: 27px;
  }

  .nexgen-featured-content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .nexgen-featured-products {
    padding: 55px 0 65px;
  }

  .nexgen-featured-container {
    padding: 0 15px;
  }

  .nexgen-featured-heading {
    margin-bottom: 35px;
  }

  .nexgen-featured-label {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .nexgen-featured-label::before,
  .nexgen-featured-label::after {
    width: 18px;
  }

  .nexgen-featured-heading h2 {
    font-size: 29px;
  }

  .nexgen-featured-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .nexgen-featured-list {
    gap: 50px;
  }

  .nexgen-featured-item,
  .nexgen-featured-item.nexgen-featured-reverse {
    gap: 25px;
  }

  .nexgen-featured-image {
    height: 300px;
    border-radius: 13px;
  }

  .nexgen-featured-image-tag {
    right: 13px;
    bottom: 13px;
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .nexgen-featured-badge {
    padding: 6px 13px;
    margin-bottom: 12px;
    font-size: 11px;
  }

  .nexgen-featured-content h3 {
    margin-bottom: 12px;
    font-size: 23px;
  }

  .nexgen-featured-content p {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.75;
  }

  .nexgen-featured-specs {
    margin-bottom: 22px;
    border-radius: 10px;
  }

  .nexgen-featured-spec {
    min-height: 70px;
    padding: 12px 10px;
    gap: 9px;
  }

  .nexgen-featured-spec i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .nexgen-featured-spec small {
    font-size: 9px;
  }

  .nexgen-featured-spec strong {
    font-size: 11px;
  }

  .nexgen-featured-btn {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nexgen-featured-products {
    padding: 45px 0 55px;
  }

  .nexgen-featured-container {
    padding: 0 12px;
  }

  .nexgen-featured-heading h2 {
    font-size: 25px;
  }

  .nexgen-featured-heading p {
    font-size: 12px;
  }

  .nexgen-featured-image {
    height: 250px;
  }

  .nexgen-featured-content h3 {
    font-size: 21px;
  }

  .nexgen-featured-content p {
    font-size: 12.5px;
  }

  .nexgen-featured-spec {
    min-height: 68px;
    padding: 10px 8px;
  }

  .nexgen-featured-spec i {
    width: 27px;
    height: 27px;
    font-size: 11px;
  }

  .nexgen-featured-spec small {
    font-size: 8px;
  }

  .nexgen-featured-spec strong {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .nexgen-featured-specs {
    grid-template-columns: 1fr;
  }

  .nexgen-featured-spec {
    min-height: 60px;
  }

  .nexgen-featured-image {
    height: 230px;
  }
}

/*  <!-- industries we serve --> */

.nexgen-industry-section,
.nexgen-industry-section * {
  box-sizing: border-box;
}

.nexgen-industry-section {
  width: 100%;
  padding: 40px 0 40px;
  background: #fff;
  font-family: "Domine", sans-serif;
  overflow: hidden;
}

.nexgen-industry-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 25px;
}

.nexgen-industry-heading {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.nexgen-industry-heading > span {
  display: inline-block;
  margin-bottom: 9px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nexgen-industry-heading h2 {
  margin: 0;
  color: #071d32;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
}

.nexgen-industry-heading h2 strong {
  color: #05374c;
}

.nexgen-industry-line {
  width: 60px;
  height: 4px;
  margin: 15px auto 16px;
  border-radius: 10px;
  background: #f5a623;
}

.nexgen-industry-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #637381;
  font-size: 14px;
  line-height: 1.8;
}

.nexgen-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nexgen-industry-card {
  height: 230px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 17px;
  text-decoration: none;
  background: #05374c;
  box-shadow: 0 12px 30px rgba(5, 55, 76, 0.12);
}

.nexgen-industry-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nexgen-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 19, 36, 0.96) 0%,
    rgba(3, 25, 45, 0.76) 38%,
    rgba(3, 25, 45, 0.12) 78%,
    rgba(3, 25, 45, 0.03) 100%
  );
  transition: background 0.4s ease;
}

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

.nexgen-industry-card:hover .nexgen-industry-overlay {
  background: linear-gradient(
    to top,
    rgba(3, 35, 60, 0.98) 0%,
    rgba(3, 55, 76, 0.82) 52%,
    rgba(3, 55, 76, 0.2) 100%
  );
}

.nexgen-industry-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
}

.nexgen-industry-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(245, 166, 35, 0.95);
  color: #fff;
  font-size: 20px;
  transition: 0.35s ease;
}

.nexgen-industry-card:hover .nexgen-industry-icon {
  background: #fff;
  color: #05374c;
  transform: translateY(-4px);
}

.nexgen-industry-content h3 {
  margin: 0 0 9px;
  padding-right: 35px;
  color: #fff;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
}

.nexgen-industry-content p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.65;
}

.nexgen-industry-arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  transition: 0.35s ease;
}

.nexgen-industry-card:hover .nexgen-industry-arrow {
  background: #f5a623;
  border-color: #f5a623;
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .nexgen-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nexgen-industry-card {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .nexgen-industry-section {
    padding: 55px 0 60px;
  }

  .nexgen-industry-container {
    padding: 0 15px;
  }

  .nexgen-industry-heading {
    margin-bottom: 32px;
  }

  .nexgen-industry-heading > span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .nexgen-industry-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .nexgen-industry-heading p {
    font-size: 12px;
    line-height: 1.7;
  }

  .nexgen-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nexgen-industry-card {
    height: 270px;
    border-radius: 12px;
  }

  .nexgen-industry-content {
    padding: 16px;
  }

  .nexgen-industry-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 11px;
    border-radius: 8px;
    font-size: 16px;
  }

  .nexgen-industry-content h3 {
    margin-bottom: 7px;
    padding-right: 25px;
    font-size: 14px;
    line-height: 1.4;
  }

  .nexgen-industry-content p {
    font-size: 10px;
    line-height: 1.55;
  }

  .nexgen-industry-arrow {
    right: 13px;
    bottom: 15px;
    width: 28px;
    height: 28px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .nexgen-industry-section {
    padding: 45px 0 50px;
  }

  .nexgen-industry-container {
    padding: 0 12px;
  }

  .nexgen-industry-heading h2 {
    font-size: 25px;
  }

  .nexgen-industry-heading p {
    font-size: 11.5px;
  }

  .nexgen-industry-grid {
    gap: 10px;
  }

  .nexgen-industry-card {
    height: 250px;
  }

  .nexgen-industry-content {
    padding: 14px;
  }

  .nexgen-industry-icon {
    width: 37px;
    height: 37px;
    margin-bottom: 9px;
    font-size: 14px;
  }

  .nexgen-industry-content h3 {
    font-size: 13px;
  }

  .nexgen-industry-content p {
    font-size: 9.5px;
  }

  .nexgen-industry-arrow {
    right: 11px;
    bottom: 12px;
    width: 26px;
    height: 26px;
  }
}

/* <!-- seo section css --> */

.nxg-seo-content,
.nxg-seo-content * {
  box-sizing: border-box;
}

.nxg-seo-content {
  width: 100%;
  padding: 40px 0;
  background: #101d5a17;
  font-family: "Domine", sans-serif;
}

.nxg-seo-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 25px;
}

.nxg-seo-heading {
  margin-bottom: 35px;
  text-align: center;
}

.nxg-seo-heading span {
  display: inline-block;
  margin-bottom: 9px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.nxg-seo-heading h2 {
  margin: 0;
  color: #05374c;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 700;
}

.nxg-seo-body {
  color: #292f32;
  font-size: 15px;
  line-height: 1.85;
}

.nxg-seo-body h3 {
  margin: 30px 0 10px;
  color: #17232a;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.nxg-seo-body h3:first-child {
  margin-top: 0;
}

.nxg-seo-body p {
  margin: 0 0 18px;
}

.nxg-seo-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .nxg-seo-content {
    padding: 50px 0 55px;
  }

  .nxg-seo-container {
    padding: 0 18px;
  }

  .nxg-seo-heading {
    margin-bottom: 27px;
  }

  .nxg-seo-heading span {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .nxg-seo-heading h2 {
    font-size: 26px;
  }

  .nxg-seo-body {
    font-size: 13px;
    line-height: 1.8;
  }

  .nxg-seo-body h3 {
    margin: 25px 0 9px;
    font-size: 18px;
  }

  .nxg-seo-body p {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .nxg-seo-content {
    padding: 42px 0 48px;
  }

  .nxg-seo-container {
    padding: 0 14px;
  }

  .nxg-seo-heading h2 {
    font-size: 23px;
  }

  .nxg-seo-body {
    font-size: 12.5px;
    line-height: 1.75;
  }

  .nxg-seo-body h3 {
    font-size: 17px;
  }
}

/* <!-- distributor css --> */

.nexgen-distributor-section,
.nexgen-distributor-section * {
  box-sizing: border-box;
}

.nexgen-distributor-section {
  width: 100%;
  padding: 40px 0 40px;
  background: #fff;
  font-family: "Domine", sans-serif;
  overflow: hidden;
}

.nexgen-distributor-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 25px;
}

.nexgen-distributor-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.nexgen-distributor-heading > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nexgen-distributor-heading h2 {
  margin: 0;
  color: #17232a;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
}

.nexgen-distributor-heading h2 strong {
  color: #05374c;
}

.nexgen-distributor-line {
  width: 58px;
  height: 4px;
  margin: 14px auto 16px;
  border-radius: 20px;
  background: #f5a623;
}

.nexgen-distributor-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #68777f;
  font-size: 14px;
  line-height: 1.8;
}

.nexgen-distributor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nexgen-distributor-card {
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #dce2e5;
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(5, 55, 76, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.nexgen-distributor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #f5a623;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.nexgen-distributor-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.035);
  transition: 0.4s ease;
}

.nexgen-distributor-card:hover {
  transform: translateY(-7px);
  border-color: rgba(5, 55, 76, 0.25);
  box-shadow: 0 18px 40px rgba(5, 55, 76, 0.13);
}

.nexgen-distributor-card:hover::before {
  width: 70%;
}

.nexgen-distributor-card:hover::after {
  width: 160px;
  height: 160px;
  background: rgba(245, 166, 35, 0.08);
}

.nexgen-distributor-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nexgen-distributor-logo img {
  display: block;
  width: auto;
  max-width: 82%;
  max-height: 65px;
  object-fit: contain;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.nexgen-distributor-card:hover .nexgen-distributor-logo img {
  transform: scale(1.06);
}

@media (max-width: 1100px) {
  .nexgen-distributor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .nexgen-distributor-card {
    height: 135px;
  }
}

@media (max-width: 767px) {
  .nexgen-distributor-section {
    padding: 55px 0 65px;
  }

  .nexgen-distributor-container {
    padding: 0 15px;
  }

  .nexgen-distributor-heading {
    margin-bottom: 32px;
  }

  .nexgen-distributor-heading > span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .nexgen-distributor-heading h2 {
    font-size: 28px;
  }

  .nexgen-distributor-heading p {
    font-size: 12px;
    line-height: 1.7;
  }

  .nexgen-distributor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nexgen-distributor-card {
    height: 115px;
    padding: 15px;
    border-radius: 11px;
  }

  .nexgen-distributor-logo img {
    max-width: 88%;
    max-height: 52px;
  }

  .nexgen-distributor-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .nexgen-distributor-section {
    padding: 45px 0 55px;
  }

  .nexgen-distributor-container {
    padding: 0 12px;
  }

  .nexgen-distributor-heading h2 {
    font-size: 25px;
  }

  .nexgen-distributor-heading p {
    font-size: 11.5px;
  }

  .nexgen-distributor-grid {
    gap: 10px;
  }

  .nexgen-distributor-card {
    height: 100px;
    padding: 12px;
    border-radius: 10px;
  }

  .nexgen-distributor-logo img {
    max-width: 90%;
    max-height: 45px;
  }

  .nexgen-distributor-card::before {
    height: 2px;
  }
}

@media (max-width: 350px) {
  .nexgen-distributor-card {
    height: 90px;
  }

  .nexgen-distributor-logo img {
    max-height: 40px;
  }
}

/* <!-- testimonial css --> */

.nxg-google-review,
.nxg-google-review *,
.nxg-google-review *::before,
.nxg-google-review *::after {
  box-sizing: border-box;
}

.nxg-google-review {
  width: 100%;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background: #101d5a17;
  font-family: "Domine", sans-serif;
}

.nxg-google-review::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -250px;
  left: -180px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.045);
}

.nxg-google-review::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -200px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.055);
}

.nxg-google-review-container {
  width: 100%;
  max-width: 1380px;
  margin: auto;
  padding: 0 25px;
  position: relative;
  z-index: 2;
}

.nxg-google-review-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.nxg-google-review-label {
  display: inline-block;
  margin-bottom: 9px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nxg-google-review-heading h2 {
  margin: 0;
  color: #17232a;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
}

.nxg-google-review-heading h2 strong {
  color: #05374c;
}

.nxg-google-review-line {
  width: 60px;
  height: 4px;
  margin: 14px auto 16px;
  border-radius: 20px;
  background: #f5a623;
}

.nxg-google-review-heading p {
  max-width: 700px;
  margin: auto;
  color: #68777f;
  font-size: 15px;
  line-height: 1.8;
}

.nxg-google-review-top {
  margin-bottom: 30px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #dfe7eb;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(5, 55, 76, 0.06);
}

.nxg-google-review-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nxg-google-logo {
  width: 52px;
  height: 52px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #f5f7f8;
}

.nxg-google-logo svg {
  width: 100%;
  height: 100%;
}

.nxg-google-rating-info > strong {
  display: block;
  margin-bottom: 4px;
  color: #17232a;
  font-size: 15px;
  font-weight: 600;
}

.nxg-google-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nxg-google-rating-row b {
  color: #17232a;
  font-size: 15px;
}

.nxg-google-stars,
.nxg-review-stars span {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 1px;
}

.nxg-google-rating-row small {
  color: #7a878d;
  font-size: 12px;
}

.nxg-google-review-btn {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  background: #05374c;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nxg-google-review-btn svg {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.nxg-google-review-btn:hover {
  background: #f5a623;
  transform: translateY(-2px);
}

.nxg-google-review-btn i {
  font-size: 10px;
}

.nxg-google-review-swiper {
  width: 100%;
  padding: 5px 3px 38px;
  overflow: hidden;
}

.nxg-google-review-swiper .swiper-wrapper {
  align-items: stretch;
}

.nxg-google-review-swiper .swiper-slide {
  height: auto;
}

.nxg-google-review-card {
  min-height: 305px;
  height: 100%;
  padding: 26px;
  position: relative;
  border: 1px solid #dfe6ea;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(5, 55, 76, 0.07);
  transition: 0.3s ease;
}

.nxg-google-review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(5, 55, 76, 0.22);
  box-shadow: 0 20px 40px rgba(5, 55, 76, 0.13);
}

.nxg-google-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.nxg-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nxg-reviewer-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #05374c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.nxg-reviewer h3 {
  margin: 0 0 3px;
  color: #17232a;
  font-size: 15px;
  font-weight: 600;
}

.nxg-reviewer span {
  color: #87949a;
  font-size: 11px;
}

.nxg-review-google {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nxg-review-google svg {
  width: 100%;
  height: 100%;
}

.nxg-review-stars {
  margin: 22px 0 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.nxg-review-stars small {
  padding: 4px 8px;
  border-radius: 20px;
  background: #f0f7f3;
  color: #3d805f;
  font-size: 10px;
  font-weight: 500;
}

.nxg-google-review-card > p {
  margin: 0;
  color: #2c3032;
  font-size: 14px;
  line-height: 1.85;
}

.nxg-review-footer {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #edf1f3;
  color: #89959a;
  font-size: 13px;
}

.nxg-review-footer i {
  margin-right: 4px;
  color: #3d805f;
}

.nxg-google-review-pagination {
  bottom: 0 !important;
}

.nxg-google-review-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #cbd5da;
  transition: 0.3s ease;
}

.nxg-google-review-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 10px;
  background: #f5a623;
}

.nxg-google-review-controls {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 3px;
}

.nxg-google-review-controls button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5e0e4;
  border-radius: 50%;
  background: #fff;
  color: #05374c;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s ease;
}

.nxg-google-review-controls button:hover {
  background: #05374c;
  border-color: #05374c;
  color: #fff;
}

@media (max-width: 1100px) {
  .nxg-google-review-swiper .swiper-slide {
    width: auto;
  }

  .nxg-google-review-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .nxg-google-review {
    padding: 60px 0 70px;
  }

  .nxg-google-review-container {
    padding: 0 15px;
  }

  .nxg-google-review-heading {
    margin-bottom: 30px;
  }

  .nxg-google-review-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .nxg-google-review-heading h2 {
    font-size: 29px;
  }

  .nxg-google-review-heading p {
    font-size: 13px;
    line-height: 1.75;
  }

  .nxg-google-review-top {
    padding: 15px;
    margin-bottom: 22px;
  }

  .nxg-google-logo {
    width: 46px;
    height: 46px;
    padding: 8px;
  }

  .nxg-google-rating-info > strong {
    font-size: 13px;
  }

  .nxg-google-rating-row {
    flex-wrap: wrap;
    gap: 7px;
  }

  .nxg-google-rating-row b {
    font-size: 14px;
  }

  .nxg-google-stars {
    font-size: 15px;
  }

  .nxg-google-rating-row small {
    width: 100%;
    font-size: 10px;
  }

  .nxg-google-review-btn {
    min-height: 43px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nxg-google-review-card {
    min-height: 295px;
    padding: 22px;
    border-radius: 13px;
  }

  .nxg-reviewer-avatar {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .nxg-reviewer h3 {
    font-size: 14px;
  }

  .nxg-reviewer span {
    font-size: 10px;
  }

  .nxg-review-stars {
    margin: 19px 0 15px;
  }

  .nxg-review-stars span {
    font-size: 16px;
  }

  .nxg-review-stars small {
    font-size: 9px;
  }

  .nxg-google-review-card > p {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .nxg-review-footer {
    left: 22px;
    right: 22px;
    bottom: 18px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .nxg-google-review {
    padding: 48px 0 58px;
  }

  .nxg-google-review-container {
    padding: 0 12px;
  }

  .nxg-google-review-heading h2 {
    font-size: 26px;
  }

  .nxg-google-review-heading p {
    font-size: 12px;
  }

  .nxg-google-review-top {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nxg-google-review-btn {
    width: 100%;
  }

  .nxg-google-review-card {
    min-height: 300px;
    padding: 20px;
  }

  .nxg-google-review-card > p {
    font-size: 12px;
  }

  .nxg-review-footer {
    left: 20px;
    right: 20px;
  }
}

/* <!-- cta+faqs --> */
.nxgfq2-faqcta,
.nxgfq2-faqcta * {
  box-sizing: border-box;
}

.nxgfq2-faqcta {
  width: 100%;
  padding: 40px 0;
  background: #101d5a17;
  font-family: "Domine", sans-serif;
  overflow: hidden;
}

.nxgfq2-faqcta-wrap {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 30px;
}

.nxgfq2-faqcta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: stretch;
}

.nxgfq2-faqcta-cta {
  position: relative;
  padding: 50px 45px;
  border-radius: 20px;
  background: #05374c;
  overflow: hidden;
  isolation: isolate;
}

.nxgfq2-faqcta-cta:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
  z-index: -1;
}

.nxgfq2-faqcta-cta:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -120px;
  bottom: -120px;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.04);
  z-index: -1;
}

.nxgfq2-faqcta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.nxgfq2-faqcta-cta h2 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: 37px;
  line-height: 1.25;
  font-weight: 700;
}

.nxgfq2-faqcta-cta h2 span {
  color: #f5a623;
}

.nxgfq2-faqcta-cta > p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
}

.nxgfq2-faqcta-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin: 28px 0;
}

.nxgfq2-faqcta-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nxgfq2-faqcta-points i {
  color: #f5a623;
  font-size: 15px;
}

.nxgfq2-faqcta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.nxgfq2-faqcta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 5px;
  background: #f5a623;
  color: #17232a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.nxgfq2-faqcta-btn:hover {
  background: #fff;
  color: #05374c;
  transform: translateY(-2px);
}

.nxgfq2-faqcta-call {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
}

.nxgfq2-faqcta-call > i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #f5a623;
  font-size: 14px;
}

.nxgfq2-faqcta-call span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.nxgfq2-faqcta-call small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 500;
}

.nxgfq2-faqcta-faq {
  padding: 10px 0;
}

.nxgfq2-faqcta-heading {
  margin-bottom: 28px;
}

.nxgfq2-faqcta-heading h2 {
  margin: 9px 0 8px;
  color: #17232a;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
}

.nxgfq2-faqcta-heading h2 span {
  color: #05374c;
}

.nxgfq2-faqcta-heading p {
  margin: 0;
  color: #68777f;
  font-size: 14px;
  line-height: 1.7;
}

.nxgfq2-faq-list {
  width: 100%;
}

.nxgfq2-faq-item {
  margin-bottom: 12px;
  border: 1px solid #dfe5e8;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.nxgfq2-faq-item:hover {
  border-color: #bfcbd0;
  box-shadow: 0 8px 25px rgba(5, 55, 76, 0.06);
}

.nxgfq2-faq-item.nxgfq2-faq-active {
  border-color: #05374c;
}

.nxgfq2-faq-question {
  width: 100%;
  min-height: 45px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  outline: 0;
  background: #fff;
  color: #17232a;
  text-align: left;
  font-family: "Domine", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.nxgfq2-faq-question i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef3f5;
  color: #05374c;
  font-size: 11px;
  transition: 0.3s ease;
}

.nxgfq2-faq-active .nxgfq2-faq-question i {
  background: #05374c;
  color: #fff;
  transform: rotate(45deg);
}

/* Answer expand/collapse - max-height method (reliable, no grid-rows dependency) */
.nxgfq2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nxgfq2-faq-answer p {
  margin: 0;
  padding: 0 21px 20px;
  color: #68777f;
  font-size: 14px;
  line-height: 1.8;
}

.nxgfq2-faq-active .nxgfq2-faq-answer {
  max-height: 500px;
}

@media (max-width: 1100px) {
  .nxgfq2-faqcta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .nxgfq2-faqcta-cta {
    padding: 40px 32px;
  }

  .nxgfq2-faqcta-cta h2 {
    font-size: 32px;
  }

  .nxgfq2-faqcta-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .nxgfq2-faqcta {
    padding: 65px 0;
  }

  .nxgfq2-faqcta-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .nxgfq2-faqcta-cta {
    padding: 45px 40px;
  }

  .nxgfq2-faqcta-cta h2 {
    font-size: 35px;
  }

  .nxgfq2-faqcta-faq {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .nxgfq2-faqcta {
    padding: 50px 0;
  }

  .nxgfq2-faqcta-wrap {
    padding: 0 15px;
  }

  .nxgfq2-faqcta-grid {
    gap: 35px;
  }

  .nxgfq2-faqcta-cta {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .nxgfq2-faqcta-cta h2 {
    font-size: 28px;
    margin: 11px 0 15px;
  }

  .nxgfq2-faqcta-cta > p {
    font-size: 13px;
    line-height: 1.75;
  }

  .nxgfq2-faqcta-points {
    margin: 23px 0;
    gap: 11px;
  }

  .nxgfq2-faqcta-points div {
    font-size: 13px;
  }

  .nxgfq2-faqcta-actions {
    margin-top: 25px;
    gap: 15px;
  }

  .nxgfq2-faqcta-btn {
    width: 100%;
    min-height: 49px;
  }

  .nxgfq2-faqcta-call {
    width: 100%;
  }

  .nxgfq2-faqcta-heading {
    margin-bottom: 22px;
  }

  .nxgfq2-faqcta-heading h2 {
    font-size: 26px;
  }

  .nxgfq2-faqcta-heading p {
    font-size: 13px;
  }

  .nxgfq2-faq-item {
    margin-bottom: 9px;
  }

  .nxgfq2-faq-question {
    min-height: 62px;
    padding: 15px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .nxgfq2-faq-question i {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .nxgfq2-faq-answer p {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (max-width: 380px) {
  .nxgfq2-faqcta-cta {
    padding: 28px 20px;
  }

  .nxgfq2-faqcta-cta h2 {
    font-size: 25px;
  }

  .nxgfq2-faqcta-heading h2 {
    font-size: 24px;
  }

  .nxgfq2-faq-question {
    font-size: 13px;
    padding: 14px;
  }
}


/* <!-- footer css --> */

.nxg-footer,
.nxg-footer *,
.nxg-footer *::before,
.nxg-footer *::after {
  box-sizing: border-box;
}

.nxg-footer {
  position: relative;
  width: 100%;
  background: #07131c;
  color: #fff;
  font-family: "Domine", sans-serif;
  overflow: hidden;
}

.nxg-footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("image/footerbg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

.nxg-footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #06141d 0%,
    rgba(5, 30, 43, 0.97) 45%,
    rgba(3, 25, 36, 0.94) 100%
  );
}

.nxg-footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1450px;
  margin: auto;
  padding: 70px 35px 0;
}

.nxg-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 55px;
  padding-bottom: 55px;
}

.nxg-footer-about {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(145deg, #06445d, #032c3e);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.nxg-footer-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 65px;
  height: 4px;
  background: #f5a623;
  border-radius: 0 0 5px 5px;
}

.nxg-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 7px;
}

.nxg-footer-logo img {
  display: block;
  width: 250px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.nxg-footer-about h3 {
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

.nxg-footer-about p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.nxg-footer-read {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #f5a623;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-footer-read:hover {
  color: #fff;
  gap: 13px;
}

.nxg-footer-column h3,
.nxg-footer-contact h3 {
  position: relative;
  margin: 8px 0 27px;
  padding-bottom: 13px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.nxg-footer-column h3:after,
.nxg-footer-contact h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 5px;
  background: #f5a623;
}

.nxg-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nxg-footer-column li {
  margin-bottom: 14px;
}

.nxg-footer-column a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s ease;
}

.nxg-footer-column a i {
  color: #f5a623;
  font-size: 10px;
  transition: 0.25s ease;
}

.nxg-footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.nxg-footer-column a:hover i {
  color: #fff;
}

.nxg-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.nxg-footer-contact-item > span {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: #f5a623;
  font-size: 13px;
}

.nxg-footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  line-height: 1.7;
}

.nxg-footer-contact-item p small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nxg-footer-contact-item a {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.nxg-footer-contact-item a:hover {
  color: #f5a623;
}

.nxg-footer-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
  padding: 12px 20px;
  border-radius: 5px;
  background: #f5a623;
  color: #17232a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-footer-quote:hover {
  background: #fff;
  color: #05374c;
  transform: translateY(-2px);
}

.nxg-footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nxg-footer-copy {
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.nxg-footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nxg-footer-social a {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-footer-social a:hover {
  background: #f5a623;
  border-color: #f5a623;
  color: #17232a;
  transform: translateY(-3px);
}

.nxg-floating-actions {
  position: fixed;
  left: 20px;
  bottom: 60px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nxg-floating-actions a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
}

.nxg-floating-actions a span {
  display: none;
}

.nxg-float-call {
  background: #f5a623;
}

.nxg-float-whatsapp {
  background: #20c76a;
}

.nxg-floating-actions a:hover {
  transform: translateY(-4px) scale(1.04);
}

.nxg-mobile-bottom-nav {
  display: none;
}

@media (max-width: 1150px) {
  .nxg-footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }

  .nxg-footer-contact {
    grid-column: 2 / 4;
  }

  .nxg-footer-about {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .nxg-footer-container {
    padding: 55px 25px 0;
  }

  .nxg-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .nxg-footer-about {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .nxg-footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .nxg-footer {
    padding-bottom: 70px;
  }

  .nxg-footer-container {
    padding: 45px 15px 0;
  }

  .nxg-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 35px;
  }

  .nxg-footer-about {
    grid-column: auto;
    padding: 28px 23px;
    border-radius: 15px;
  }

  .nxg-footer-logo img {
    width: 260px;
  }

  .nxg-footer-about h3 {
    font-size: 18px;
  }

  .nxg-footer-about p {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .nxg-footer-column,
  .nxg-footer-contact {
    width: 100%;
  }

  .nxg-footer-column h3,
  .nxg-footer-contact h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .nxg-footer-column li {
    margin-bottom: 12px;
  }

  .nxg-footer-column a {
    font-size: 13px;
  }

  .nxg-footer-contact-item p {
    font-size: 12px;
  }

  .nxg-footer-bottom {
    min-height: auto;
    padding: 25px 0 5px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .nxg-footer-copy {
    font-size: 10.5px;
  }

  .nxg-footer-social a {
    width: 36px;
    height: 36px;
  }

  .nxg-floating-actions {
    left: auto;
    right: 15px;
    bottom: 85px;
    gap: 8px;
  }

  .nxg-floating-actions a {
    width: 49px;
    height: 49px;
    font-size: 19px;
  }

  .nxg-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65px;
    z-index: 99998;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-top: 1px solid #e1e7ea;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
  }

  .nxg-mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #68777f;
    font-family: "Domine", sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
  }

  .nxg-mobile-bottom-item i {
    font-size: 16px;
  }

  .nxg-mobile-bottom-item:hover,
  .nxg-mobile-bottom-item:focus,
  .nxg-mobile-bottom-item.nxg-mobile-products {
    color: #05374c;
  }

  .nxg-mobile-products i {
    color: #f5a623;
  }
}

@media (max-width: 380px) {
  .nxg-footer-about {
    padding: 25px 19px;
  }

  .nxg-footer-about h3 {
    font-size: 17px;
  }

  .nxg-footer-about p {
    font-size: 12px;
  }

  .nxg-mobile-bottom-nav {
    height: 61px;
  }

  .nxg-mobile-bottom-item {
    font-size: 9px;
  }

  .nxg-mobile-bottom-item i {
    font-size: 15px;
  }
}

/* =========================
   CONTACT SOCIAL ICONS
========================= */

.nxg-footer-contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.nxg-footer-contact-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-footer-contact-social a:hover {
  background: #f5a623;
  border-color: #f5a623;
  color: #17232a;
  transform: translateY(-3px);
}

/* clients css */

.nxg-client-section,
.nxg-client-section *,
.nxg-client-section *::before,
.nxg-client-section *::after {
  box-sizing: border-box;
}

.nxg-client-section {
  width: 100%;
  padding: 40px 0 40px;
  background: #fff;
  overflow: hidden;
  font-family: "Domine", sans-serif;
}

.nxg-client-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 35px;
}

.nxg-client-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.nxg-client-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nxg-client-heading h2 {
  margin: 0;
  color: #17232a;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
}

.nxg-client-heading h2 strong {
  color: #05374c;
}

.nxg-client-line {
  width: 60px;
  height: 4px;
  display: block;
  margin: 13px auto 16px;
  border-radius: 10px;
  background: #f5a623;
}

.nxg-client-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #68777f;
  font-size: 15px;
  line-height: 1.8;
}

.nxg-client-swiper {
  width: 100%;
  padding: 5px 3px 48px;
  overflow: hidden;
}

.nxg-client-swiper .swiper-wrapper {
  align-items: stretch;
}

.nxg-client-swiper .swiper-slide {
  height: auto;
}

.nxg-client-card {
  height: 140px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9dfe3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.nxg-client-card:hover {
  transform: translateY(-6px);
  border-color: #05374c;
  box-shadow: 0 18px 38px rgba(5, 55, 76, 0.13);
}

.nxg-client-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nxg-client-card:hover img {
  transform: scale(1.04);
}

.nxg-client-pagination {
  bottom: 3px !important;
}

.nxg-client-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  opacity: 1;
  background: #dce1e4;
  transition: all 0.3s ease;
}

.nxg-client-pagination .swiper-pagination-bullet-active {
  width: 27px;
  border-radius: 10px;
  background: #05374c;
}

.nxg-client-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.nxg-client-navigation button {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e1e5;
  border-radius: 50%;
  background: #fff;
  color: #05374c;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.nxg-client-navigation button:hover {
  border-color: #05374c;
  background: #05374c;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .nxg-client-container {
    padding: 0 25px;
  }

  .nxg-client-card {
    height: 160px;
  }

  .nxg-client-card img {
    max-width: 175px;
    height: 90px;
  }
}

@media (max-width: 991px) {
  .nxg-client-section {
    padding: 65px 0 70px;
  }

  .nxg-client-heading {
    margin-bottom: 35px;
  }

  .nxg-client-heading h2 {
    font-size: 34px;
  }

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

  .nxg-client-card {
    height: 155px;
    padding: 20px;
    border-radius: 14px;
  }

  .nxg-client-card img {
    max-width: 165px;
    height: 85px;
  }
}

@media (max-width: 767px) {
  .nxg-client-section {
    padding: 55px 0 60px;
  }

  .nxg-client-container {
    padding: 0 15px;
  }

  .nxg-client-heading {
    margin-bottom: 28px;
  }

  .nxg-client-eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .nxg-client-heading h2 {
    font-size: 29px;
  }

  .nxg-client-line {
    width: 50px;
    height: 3px;
    margin: 11px auto 13px;
  }

  .nxg-client-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .nxg-client-swiper {
    padding: 4px 2px 42px;
  }

  .nxg-client-card {
    height: 145px;
    padding: 15px;
    border-radius: 12px;
  }

  .nxg-client-card img {
    max-width: 145px;
    height: 80px;
  }

  .nxg-client-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
  }

  .nxg-client-pagination .swiper-pagination-bullet-active {
    width: 22px;
  }

  .nxg-client-navigation {
    display: none;
  }
}

@media (max-width: 480px) {
  .nxg-client-section {
    padding: 48px 0 55px;
  }

  .nxg-client-container {
    padding: 0 12px;
  }

  .nxg-client-heading {
    margin-bottom: 25px;
  }

  .nxg-client-heading h2 {
    font-size: 26px;
  }

  .nxg-client-heading p {
    padding: 0 8px;
    font-size: 12px;
  }

  .nxg-client-card {
    height: 135px;
    padding: 12px;
  }

  .nxg-client-card img {
    max-width: 125px;
    height: 70px;
  }

  .nxg-client-swiper {
    padding-bottom: 38px;
  }
}

@media (max-width: 360px) {
  .nxg-client-card {
    height: 125px;
  }

  .nxg-client-card img {
    max-width: 110px;
    height: 65px;
  }
}

/* breadcrumb css */

.nxg-breadcrumb-section,
.nxg-breadcrumb-section * {
  box-sizing: border-box;
}

.nxg-breadcrumb-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f4f7f8;
  border-bottom: 1px solid #e5eaed;
}

.nxg-breadcrumb-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: -150px;
  border-radius: 50%;
  background: rgba(5, 55, 76, 0.05);
}

.nxg-breadcrumb-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
}

.nxg-breadcrumb-container {
  width: min(1280px, calc(100% - 50px));
  min-height: 245px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nxg-breadcrumb-content {
  width: 100%;
  text-align: center;
}

.nxg-breadcrumb-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 7px 14px;
  background: #05374c;
  color: #fff;
  border-left: 3px solid #f5a623;
  font:
    600 11px/1.2 "Domine",
    sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nxg-breadcrumb-content h1 {
  margin: 0 0 13px;
  color: #05374c;
  font:
    700 clamp(32px, 4vw, 48px)/1.2 "Domine",
    sans-serif;
}

.nxg-breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6f7d83;
  font:
    500 13px/1.5 "Domine",
    sans-serif;
}

.nxg-breadcrumb-nav a {
  color: #05374c;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-breadcrumb-nav a:hover {
  color: #f5a623;
}

.nxg-breadcrumb-nav i {
  color: #f5a623;
  font-size: 10px;
}

.nxg-breadcrumb-nav span {
  color: #77858b;
}

@media (max-width: 767px) {
  .nxg-breadcrumb-container {
    width: calc(100% - 30px);
    min-height: 190px;
  }

  .nxg-breadcrumb-label {
    margin-bottom: 8px;
    padding: 6px 11px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .nxg-breadcrumb-content h1 {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .nxg-breadcrumb-nav {
    gap: 8px;
    font-size: 11px;
  }

  .nxg-breadcrumb-section::before {
    width: 180px;
    height: 180px;
    right: -100px;
    top: -100px;
  }

  .nxg-breadcrumb-section::after {
    width: 130px;
    height: 130px;
    left: -70px;
    bottom: -90px;
  }
}

@media (max-width: 400px) {
  .nxg-breadcrumb-container {
    width: calc(100% - 22px);
    min-height: 175px;
  }

  .nxg-breadcrumb-content h1 {
    font-size: 27px;
  }

  .nxg-breadcrumb-nav {
    font-size: 10px;
  }
}

/* about page css */

.nxg-about-hero,
.nxg-about-hero *,
.nxg-about-intro,
.nxg-about-intro *,
.nxg-mission-section,
.nxg-mission-section *,
.nxg-company-profile,
.nxg-company-profile * {
  box-sizing: border-box;
}

.nxg-about-hero {
  width: 100%;
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("/images/about/about-banner.webp") center/cover no-repeat;
  overflow: hidden;
}

.nxg-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 43, 60, 0.94),
    rgba(5, 55, 76, 0.72),
    rgba(3, 43, 60, 0.45)
  );
}

.nxg-about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 80px 30px;
  color: #fff;
}

.nxg-about-hero-tag {
  display: inline-flex;
  padding: 7px 14px;
  border-left: 3px solid #f5a623;
  background: rgba(255, 255, 255, 0.1);
  font:
    600 11px "Domine",
    sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nxg-about-hero h1 {
  margin: 15px 0 13px;
  font:
    700 clamp(38px, 5vw, 64px)/1.1 "Domine",
    sans-serif;
  color: #fff;
}

.nxg-about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    400 14px "Domine",
    sans-serif;
}

.nxg-about-breadcrumb a {
  color: #f5a623;
  text-decoration: none;
}

.nxg-about-breadcrumb i {
  font-size: 10px;
  color: #ddd;
}

.nxg-about-breadcrumb span {
  color: #fff;
}

.nxg-about-intro {
  padding: 40px 0;
  background: #fff;
}

.nxg-about-container {
  width: min(1380px, calc(100% - 50px));
  margin: auto;
}

.nxg-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.nxg-about-image-wrap {
  position: relative;
  padding: 0 20px 20px 0;
}

.nxg-about-image-wrap img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(3, 43, 60, 0.18);
}

.nxg-about-image-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 75%;
  background: #f5a623;
  border-radius: 8px;
  opacity: 0.18;
}

.nxg-about-experience {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 24px;
  background: #05374c;
  color: #fff;
  border-left: 4px solid #f5a623;
  border-radius: 5px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  font-family: "Domine", sans-serif;
}

.nxg-about-experience strong {
  font-size: 18px;
}

.nxg-about-experience span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.nxg-section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5a623;
  font:
    700 12px "Domine",
    sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nxg-about-intro-content h2,
.nxg-about-description-heading h2,
.nxg-common-heading h2 {
  margin: 0 0 18px;
  color: #17232a;
  font:
    700 clamp(28px, 3vw, 38px)/1.2 "Domine",
    sans-serif;
}

.nxg-about-intro-content h2 span,
.nxg-about-description-heading h2 span,
.nxg-common-heading h2 span {
  color: #05374c;
}

.nxg-about-intro-content > p {
  margin: 0 0 15px;
  color: #3e4346;
  font:
    400 15px/1.9 "Domine",
    sans-serif;
}

.nxg-about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 27px 0;
}

.nxg-about-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  background: #f5f8f9;
  border: 1px solid #e4eaed;
  border-radius: 6px;
}

.nxg-about-highlight i {
  color: #f5a623;
  font-size: 20px;
  margin-top: 3px;
}

.nxg-about-highlight strong,
.nxg-about-highlight span {
  display: block;
  font-family: "Domine", sans-serif;
}

.nxg-about-highlight strong {
  color: #05374c;
  font-size: 13px;
  margin-bottom: 3px;
}

.nxg-about-highlight span {
  color: #68777f;
  font-size: 11px;
  line-height: 1.5;
}

.nxg-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 21px;
  background: #05374c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font:
    600 13px "Domine",
    sans-serif;
  transition: 0.3s;
}

.nxg-about-btn:hover {
  background: #f5a623;
  transform: translateY(-2px);
}

.nxg-about-description {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-top: 50px;
  padding: 55px 60px;
  background: #f5f8f9;
  border-left: 4px solid #f5a623;
  border-radius: 8px;
}

.nxg-about-description-heading h2 {
  font-size: 32px;
}

.nxg-about-description-text p {
  margin: 0 0 15px;
  color: #3e4346;
  font:
    400 15px / 1.9 "Domine",
    sans-serif;
}

.nxg-about-description-text p:last-child {
  margin-bottom: 0;
}

.nxg-mission-section {
  padding: 40px 0;
  background: #f5f8f9;
}

.nxg-common-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.nxg-common-heading p {
  margin: 0;
  color: #68777f;
  font:
    400 14px/1.8 "Domine",
    sans-serif;
}

.nxg-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.nxg-mission-card {
  position: relative;
  display: flex;
  gap: 25px;
  padding: 40px;
  background: #fff;
  border: 1px solid #e0e7ea;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(3, 43, 60, 0.07);
}

.nxg-mission-card-dark {
  background: #05374c;
  border-color: #05374c;
  color: #fff;
}

.nxg-mission-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff2df;
  color: #f5a623;
  border-radius: 50%;
  font-size: 22px;
}

.nxg-mission-card-dark .nxg-mission-icon {
  background: rgba(245, 166, 35, 0.15);
}

.nxg-mission-card-content > span {
  display: block;
  margin-bottom: 4px;
  color: #f5a623;
  font:
    600 11px "Domine",
    sans-serif;
}

.nxg-mission-card-content h3 {
  margin: 0 0 12px;
  color: #05374c;
  font:
    700 23px "Domine",
    sans-serif;
}

.nxg-mission-card-dark .nxg-mission-card-content h3 {
  color: #fff;
}

.nxg-mission-card-content p {
  margin: 0;
  color: #68777f;
  font:
    400 13px/1.8 "Domine",
    sans-serif;
}

.nxg-mission-card-dark .nxg-mission-card-content p {
  color: rgba(255, 255, 255, 0.78);
}

.nxg-company-profile {
  padding: 40px 0;
  background: #fff;
}

.nxg-profile-heading {
  margin-bottom: 45px;
}

.nxg-profile-card {
  margin: auto;
  background: #fff;
  border: 1px solid #e1e7e9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(3, 43, 60, 0.1);
}

.nxg-profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
  background: #05374c;
  color: #fff;
}

.nxg-profile-top > div:first-child span {
  font:
    600 10px "Domine",
    sans-serif;
  letter-spacing: 1.4px;
  color: #f5a623;
}

.nxg-profile-top h3 {
  margin: 5px 0 0;
  color: #fff;
  font:
    700 21px "Domine",
    sans-serif;
}

.nxg-profile-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #f5a623;
  font-size: 21px;
}

.nxg-profile-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #e7ecee;
}

.nxg-profile-row:last-child {
  border-bottom: 0;
}

.nxg-profile-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 25px;
  background: #f5f8f9;
  color: #05374c;
  font:
    600 13px "Domine",
    sans-serif;
}

.nxg-profile-label i {
  width: 18px;
  color: #f5a623;
  text-align: center;
}

.nxg-profile-value {
  display: flex;
  align-items: center;
  padding: 22px 28px;
  color: #4e5c63;
  font:
    400 15px/1.7 "Domine",
    sans-serif;
}

.nxg-profile-value a {
  color: #05374c;
  text-decoration: none;
  font-weight: 600;
}

.nxg-profile-value a:hover {
  color: #f5a623;
}

@media (max-width: 991px) {
  .nxg-about-hero {
    min-height: 330px;
  }

  .nxg-about-hero-content {
    padding: 70px 25px;
  }

  .nxg-about-intro {
    padding: 75px 0;
  }

  .nxg-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .nxg-about-image-wrap {
    max-width: 700px;
    margin: auto;
    width: 100%;
  }

  .nxg-about-image-wrap img {
    height: 450px;
  }

  .nxg-about-intro-content {
    max-width: 800px;
    margin: auto;
  }

  .nxg-about-description {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 70px;
    padding: 40px;
  }

  .nxg-mission-section,
  .nxg-company-profile {
    padding: 75px 0;
  }

  .nxg-mission-grid {
    grid-template-columns: 1fr;
  }

  .nxg-profile-row {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 767px) {
  .nxg-about-container {
    width: min(100% - 30px, 1380px);
  }

  .nxg-about-hero {
    min-height: 280px;
  }

  .nxg-about-hero-content {
    padding: 55px 15px;
  }

  .nxg-about-hero-tag {
    font-size: 9px;
  }

  .nxg-about-hero h1 {
    font-size: 38px;
  }

  .nxg-about-breadcrumb {
    font-size: 12px;
  }

  .nxg-about-intro {
    padding: 55px 0;
  }

  .nxg-about-intro-grid {
    gap: 40px;
  }

  .nxg-about-image-wrap {
    padding: 0 10px 10px 0;
  }

  .nxg-about-image-wrap img {
    height: 350px;
    border-radius: 6px;
  }

  .nxg-about-experience {
    left: -5px;
    bottom: 25px;
    padding: 13px 16px;
  }

  .nxg-about-experience strong {
    font-size: 15px;
  }

  .nxg-about-experience span {
    font-size: 9px;
  }

  .nxg-about-intro-content h2,
  .nxg-about-description-heading h2,
  .nxg-common-heading h2 {
    font-size: 28px;
  }

  .nxg-about-intro-content > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .nxg-about-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nxg-about-description {
    margin-top: 50px;
    padding: 28px 22px;
    border-left-width: 3px;
  }

  .nxg-about-description-heading h2 {
    font-size: 26px;
  }

  .nxg-about-description-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .nxg-mission-section,
  .nxg-company-profile {
    padding: 60px 0;
  }

  .nxg-common-heading {
    margin-bottom: 35px;
  }

  .nxg-common-heading p {
    font-size: 13px;
  }

  .nxg-mission-grid {
    gap: 15px;
  }

  .nxg-mission-card {
    padding: 25px 20px;
    gap: 16px;
  }

  .nxg-mission-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
  }

  .nxg-mission-card-content h3 {
    font-size: 20px;
  }

  .nxg-mission-card-content p {
    font-size: 12px;
    line-height: 1.75;
  }

  .nxg-profile-top {
    padding: 23px 20px;
  }

  .nxg-profile-top h3 {
    font-size: 17px;
  }

  .nxg-profile-icon {
    width: 45px;
    height: 45px;
    font-size: 17px;
  }

  .nxg-profile-row {
    display: block;
  }

  .nxg-profile-label {
    padding: 13px 18px;
    font-size: 12px;
  }

  .nxg-profile-value {
    padding: 14px 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nxg-about-hero {
    min-height: 250px;
  }

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

  .nxg-about-image-wrap img {
    height: 300px;
  }

  .nxg-about-description-heading h2 {
    font-size: 24px;
  }

  .nxg-mission-card {
    display: block;
  }

  .nxg-mission-icon {
    margin-bottom: 15px;
  }

  .nxg-profile-top {
    align-items: flex-start;
    gap: 15px;
  }

  .nxg-profile-top h3 {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* blog page css */

.nxg-blog-breadcrumb,
.nxg-blog-breadcrumb *,
.nxg-blog-section,
.nxg-blog-section * {
  box-sizing: border-box;
}

.nxg-blog-breadcrumb {
  width: 100%;
  padding: 58px 0;
  background: #f4f7f8;
  border-bottom: 1px solid #e2e8ea;
}

.nxg-blog-breadcrumb-container {
  width: min(1280px, calc(100% - 50px));
  margin: 0 auto;
}

.nxg-blog-breadcrumb-content {
  text-align: center;
}

.nxg-blog-breadcrumb-label {
  display: inline-block;
  margin-bottom: 9px;
  color: #f5a623;
  font:
    700 12px/1.2 "Domine",
    sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nxg-blog-breadcrumb-content h1 {
  margin: 0 0 13px;
  color: #05374c;
  font:
    700 clamp(32px, 4vw, 46px)/1.2 "Domine",
    sans-serif;
}

.nxg-blog-breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #75838a;
  font:
    500 13px/1.5 "Domine",
    sans-serif;
}

.nxg-blog-breadcrumb-nav a {
  color: #05374c;
  text-decoration: none;
  transition: 0.25s ease;
}

.nxg-blog-breadcrumb-nav a:hover {
  color: #f5a623;
}

.nxg-blog-breadcrumb-nav i {
  color: #f5a623;
  font-size: 10px;
}

.nxg-blog-section {
  width: 100%;
  padding: 85px 0 100px;
  background: #f7f9fa;
}

.nxg-blog-container {
  width: min(1280px, calc(100% - 50px));
  margin: 0 auto;
}

.nxg-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nxg-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8ea;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(5, 55, 76, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.nxg-blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(5, 55, 76, 0.14);
}

.nxg-blog-image {
  display: block;
  width: 100%;
  height: 245px;
  position: relative;
  overflow: hidden;
  background: #e9eef0;
  text-decoration: none;
}

.nxg-blog-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nxg-blog-card:hover .nxg-blog-image img {
  transform: scale(1.07);
}

.nxg-blog-category {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 36px);
  padding: 7px 13px;
  overflow: hidden;
  border-radius: 5px;
  background: #05374c;
  color: #fff;
  font:
    600 11px/1.3 "Domine",
    sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nxg-blog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 24px 27px;
}

.nxg-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 13px;
  color: #78858b;
  font:
    500 11px/1.5 "Domine",
    sans-serif;
}

.nxg-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nxg-blog-meta i {
  color: #f5a623;
  font-size: 12px;
}

.nxg-blog-content h2 {
  margin: 0 0 12px;
}

.nxg-blog-content h2 a {
  color: #05374c;
  font:
    700 20px/1.45 "Domine",
    sans-serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-blog-content h2 a:hover {
  color: #f5a623;
}

.nxg-blog-content p {
  margin: 0 0 21px;
  color: #68777e;
  font:
    400 15px/1.75 "Domine",
    sans-serif;
}

.nxg-blog-read {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: auto;
  color: #05374c;
  font:
    700 16px/1.4 "Domine",
    sans-serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-blog-read i {
  color: #f5a623;
  font-size: 11px;
  transition: 0.3s ease;
}

.nxg-blog-read:hover {
  color: #f5a623;
}

.nxg-blog-read:hover i {
  transform: translateX(5px);
}

@media (max-width: 1050px) {
  .nxg-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nxg-blog-breadcrumb {
    padding: 48px 0;
  }

  .nxg-blog-breadcrumb-container,
  .nxg-blog-container {
    width: calc(100% - 30px);
  }

  .nxg-blog-breadcrumb-content h1 {
    font-size: 32px;
  }

  .nxg-blog-breadcrumb-nav {
    font-size: 13px;
  }

  .nxg-blog-section {
    padding: 60px 0 70px;
  }

  .nxg-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nxg-blog-image {
    height: 230px;
  }

  .nxg-blog-content {
    padding: 23px 21px 25px;
  }

  .nxg-blog-content h2 a {
    font-size: 20px;
  }

  .nxg-blog-content p {
    font-size: 16px;
  }

  .nxg-blog-meta {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .nxg-blog-breadcrumb {
    padding: 42px 0;
  }

  .nxg-blog-breadcrumb-container,
  .nxg-blog-container {
    width: calc(100% - 22px);
  }

  .nxg-blog-breadcrumb-content h1 {
    font-size: 29px;
  }

  .nxg-blog-section {
    padding: 50px 0 60px;
  }

  .nxg-blog-image {
    height: 205px;
  }

  .nxg-blog-content {
    padding: 20px 18px 22px;
  }

  .nxg-blog-content h2 a {
    font-size: 18px;
  }

  .nxg-blog-content p {
    font-size: 15px;
  }

  .nxg-blog-meta {
    gap: 10px;
    font-size: 10px;
  }
}

/* contact page css */

/* =========================================================
       GLOBAL BOX SIZING + FONT
       ========================================================= */

/* Apply Domine everywhere */
.nxg-contact-hero,
.nxg-contact-section,
.nxg-map-section,
.nxg-success-overlay {
  font-family: "Domine", sans-serif !important;
}

/* All text elements */
.nxg-contact-hero h1,
.nxg-contact-hero h2,
.nxg-contact-hero h3,
.nxg-contact-hero p,
.nxg-contact-hero span,
.nxg-contact-hero a,
.nxg-contact-section h1,
.nxg-contact-section h2,
.nxg-contact-section h3,
.nxg-contact-section p,
.nxg-contact-section span,
.nxg-contact-section a,
.nxg-contact-section label,
.nxg-contact-section input,
.nxg-contact-section textarea,
.nxg-contact-section select,
.nxg-contact-section button,
.nxg-map-section h1,
.nxg-map-section h2,
.nxg-map-section h3,
.nxg-map-section p,
.nxg-map-section span,
.nxg-map-section strong,
.nxg-success-overlay h1,
.nxg-success-overlay h2,
.nxg-success-overlay h3,
.nxg-success-overlay p,
.nxg-success-overlay span,
.nxg-success-overlay a,
.nxg-success-overlay button {
  box-sizing: border-box;
  font-family: "Domine", sans-serif !important;
}

/* ==========================
   FONT AWESOME ICON FIX
   ========================== */

/* Solid Icons */
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Regular Icons */
.fa-regular,
.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

/* Brand Icons */
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* =========================================================
       HERO SECTION
       ========================================================= */

.nxg-contact-hero {
  width: 100%;
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("/images/contact/contact-banner.webp") center/cover no-repeat;
  overflow: hidden;
}

.nxg-contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 43, 60, 0.95),
    rgba(5, 55, 76, 0.75),
    rgba(3, 43, 60, 0.45)
  );
}

.nxg-contact-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 80px 30px;
  color: #fff;
}

.nxg-contact-hero-tag {
  display: inline-flex;
  padding: 7px 14px;
  border-left: 3px solid #f5a623;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nxg-contact-hero h1 {
  margin: 15px 0 13px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px) !important;
  line-height: 1.15;
  font-weight: 700;
}

.nxg-contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px !important;
  font-weight: 400;
}

.nxg-contact-breadcrumb a {
  color: #f5a623;
  text-decoration: none;
}

.nxg-contact-breadcrumb i {
  color: #ddd;
  font-size: 10px !important;
}

.nxg-contact-breadcrumb span {
  color: #fff;
}

/* =========================================================
       CONTACT SECTION
       ========================================================= */

.nxg-contact-section {
  padding: 100px 0;
  background: #fff;
}

.nxg-contact-container {
  width: min(1280px, calc(100% - 50px));
  margin: auto;
}

.nxg-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

/* =========================================================
       LEFT CONTENT
       ========================================================= */

.nxg-contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5a623;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nxg-contact-info h2 {
  margin: 0 0 18px;
  color: #17232a;
  font-size: clamp(30px, 3vw, 40px) !important;
  line-height: 1.3;
  font-weight: 700;
}

.nxg-contact-info h2 span {
  color: #05374c;
}

.nxg-contact-intro {
  margin: 0 0 32px;
  color: #68777f;
  font-size: 15px !important;
  line-height: 1.8;
  font-weight: 400;
}

/* =========================================================
       CONTACT CARDS
       ========================================================= */

.nxg-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.nxg-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 20px;
  background: #f5f8f9;
  border: 1px solid #e2e8ea;
  border-radius: 7px;
  transition: 0.3s ease;
}

.nxg-contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 10px 25px rgba(3, 43, 60, 0.08);
}

.nxg-contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05374c;
  color: #f5a623;
  border-radius: 5px;
  font-size: 18px !important;
}

.nxg-contact-card-content {
  min-width: 0;
}

.nxg-contact-card span {
  display: block;
  margin-bottom: 3px;
  color: #8a969b;
  font-size: 12px !important;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1px;
}

.nxg-contact-card h3 {
  margin: 0 0 5px;
  color: #05374c;
  font-size: 15px !important;
  line-height: 1.4;
  font-weight: 700;
}

.nxg-contact-card p,
.nxg-contact-card a {
  margin: 0;
  color: #65737a;
  font-size: 14px !important;
  line-height: 1.7;
  font-weight: 400;
  text-decoration: none;
  word-break: break-word;
}

.nxg-contact-card a:hover {
  color: #f5a623;
}

/* =========================================================
       QUICK SUPPORT
       ========================================================= */

.nxg-contact-support {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  padding: 17px 20px;
  background: #05374c;
  border-radius: 6px;
}

.nxg-contact-support-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5a623;
  color: #05374c;
  border-radius: 50%;
  font-size: 16px !important;
}

.nxg-contact-support strong,
.nxg-contact-support span {
  display: block;
}

.nxg-contact-support strong {
  color: #fff;
  font-size: 15px !important;
  line-height: 1.5;
  font-weight: 700;
}

.nxg-contact-support span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px !important;
  line-height: 1.6;
  font-weight: 400;
}

/* =========================================================
       FORM WRAPPER
       ========================================================= */

.nxg-contact-form-wrap {
  position: relative;
  padding: 38px;
  background: #fff;
  border: 1px solid #e1e7e9;
  border-radius: 10px;
  box-shadow: 0 20px 55px rgba(3, 43, 60, 0.1);
  overflow: visible;
}

.nxg-contact-form-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e7ecee;
}

.nxg-contact-form-header span {
  color: #f5a623;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.nxg-contact-form-header h2 {
  margin: 5px 0 7px;
  color: #05374c;
  font-size: 28px !important;
  line-height: 1.35;
  font-weight: 700;
}

.nxg-contact-form-header p {
  margin: 0;
  color: #7b878c;
  font-size: 14px !important;
  line-height: 1.7;
  font-weight: 400;
}

/* =========================================================
       FORM ROW
       ========================================================= */

.nxg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}

.nxg-form-group {
  position: relative;
  margin-bottom: 20px;
}

.nxg-form-group label {
  display: block;
  margin-bottom: 7px;
  color: #27363d;
  font-size: 14px !important;
  line-height: 1.5;
  font-weight: 600;
}

.nxg-form-group label span {
  color: #f5a623;
}

/* =========================================================
       INPUT BOX
       ========================================================= */

.nxg-input-box {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 49px;
  padding: 0 14px;
  background: #f7f9fa;
  border: 1px solid #dfe6e8;
  border-radius: 5px;
  transition: 0.25s ease;
}

.nxg-input-box:focus-within {
  background: #fff;
  border-color: #05374c;
  box-shadow: 0 0 0 3px rgba(5, 55, 76, 0.07);
}

.nxg-input-box i {
  flex-shrink: 0;
  color: #f5a623;
  font-size: 15px !important;
}

.nxg-input-box input,
.nxg-input-box textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #25343b;
  font-size: 15px !important;
  line-height: 1.6;
  font-weight: 400;
}

.nxg-input-box input {
  height: 47px;
}

.nxg-input-box textarea {
  resize: vertical;
  min-height: 135px;
  padding: 13px 0;
  line-height: 1.7;
}

.nxg-input-box input::placeholder,
.nxg-input-box textarea::placeholder {
  color: #a1abad;
  font-size: 14px !important;
}

/* =========================================================
       PHONE INPUT
       ========================================================= */

.nxg-phone-box {
  position: relative;
  width: 100%;
  min-height: 49px;
  background: #f7f9fa;
  border: 1px solid #dfe6e8;
  border-radius: 5px;
  transition: 0.25s ease;
  z-index: 20;
}

.nxg-phone-box:focus-within {
  background: #fff;
  border-color: #05374c;
  box-shadow: 0 0 0 3px rgba(5, 55, 76, 0.07);
}

.nxg-phone-box .iti {
  width: 100%;
  display: block;
}

.nxg-phone-box .iti__tel-input {
  width: 100% !important;
  height: 47px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 12px !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  color: #25343b !important;
  font-size: 15px !important;
  font-weight: 400;
  box-shadow: none !important;
}

.nxg-phone-box .iti__selected-country {
  height: 47px !important;
  min-width: 82px;
  padding: 0 10px !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid #dfe6e8 !important;
  cursor: pointer;
  transition: 0.2s ease;
}

.nxg-phone-box .iti__selected-country:hover {
  background: rgba(5, 55, 76, 0.035) !important;
}

.nxg-phone-box .iti__selected-country-primary {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nxg-phone-box .iti__flag {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.nxg-phone-box .iti__selected-dial-code {
  color: #34444b;
  font-size: 14px !important;
  font-weight: 500;
}

.nxg-phone-box .iti__arrow {
  margin-left: auto;
  border-top-color: #05374c;
}

/* =========================================================
       COUNTRY DROPDOWN
       ========================================================= */

.iti__country-list {
  z-index: 999999 !important;
  min-width: 225px;
  max-width: 330px;
  max-height: 280px;
  margin-top: 5px !important;
  padding: 5px 0;
  background: #fff;
  border: 1px solid #dfe6e8;
  border-radius: 7px;
  box-shadow: 0 15px 40px rgba(3, 43, 60, 0.16);
  overflow-y: auto;
}

.iti__country {
  min-height: 40px;
  padding: 8px 12px !important;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #25343b;
  font-size: 14px !important;
  line-height: 1.5;
  font-weight: 400;
  transition: 0.15s ease;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: #f3f7f8 !important;
}

.iti__country-name {
  color: #25343b;
}

.iti__dial-code {
  margin-left: auto;
  color: #8b969b;
  font-size: 13px !important;
}

/* =========================================================
       PRODUCT SELECT
       ========================================================= */

.nxg-select-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 49px;
  padding: 0 42px 0 14px;
  background: #f7f9fa;
  border: 1px solid #dfe6e8;
  border-radius: 5px;
  transition: 0.25s ease;
}

.nxg-select-box:focus-within {
  background: #fff;
  border-color: #05374c;
  box-shadow: 0 0 0 3px rgba(5, 55, 76, 0.07);
}

.nxg-select-box > i:first-child {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5a623;
  font-size: 15px !important;
  pointer-events: none;
}

.nxg-select-box select {
  width: 100%;
  height: 47px;
  padding: 0 0 0 25px;
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #25343b;
  cursor: pointer;
  font-size: 15px !important;
  line-height: 1.5;
  font-weight: 400;
}

.nxg-select-box select:invalid {
  color: #a1abad;
}

.nxg-select-box select option {
  color: #25343b;
  background: #fff;
  font-size: 15px !important;
}

.nxg-select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #05374c !important;
  font-size: 12px !important;
  pointer-events: none;
}

/* =========================================================
       TEXTAREA
       ========================================================= */

.nxg-textarea-box {
  align-items: flex-start;
  padding-top: 0;
}

.nxg-textarea-box i {
  margin-top: 17px;
}

/* =========================================================
       SUBMIT BUTTON
       ========================================================= */

.nxg-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 49px;
  padding: 0 25px;
  border: 0;
  border-radius: 5px;
  background: #05374c;
  color: #fff;
  cursor: pointer;
  font-size: 15px !important;
  line-height: 1.5;
  font-weight: 600;
  transition: 0.3s ease;
}

.nxg-contact-submit:hover {
  background: #f5a623;
  color: #05374c;
  transform: translateY(-2px);
}

.nxg-contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.nxg-contact-submit i {
  transition: 0.25s ease;
}

.nxg-contact-submit:hover i {
  transform: translateX(4px);
}

/* =========================================================
       SPINNER
       ========================================================= */

.nxg-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: nxgSpin 0.6s linear infinite;
  display: none;
}

.nxg-spinner.active {
  display: inline-block;
}

@keyframes nxgSpin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
       SUCCESS OVERLAY
       ========================================================= */

.nxg-success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(3, 43, 60, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nxg-success-overlay.active {
  display: flex;
}

.nxg-success-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 10px;
  padding: 38px 30px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  animation: nxgPopIn 0.25s ease;
}

@keyframes nxgPopIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.nxg-success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f5f8f9;
  color: #05374c;
  cursor: pointer;
  font-size: 14px !important;
}

.nxg-success-icon {
  font-size: 52px !important;
  color: #1fb15a;
  margin-bottom: 12px;
}

.nxg-success-modal h3 {
  margin: 0 0 8px;
  color: #05374c;
  font-size: 22px !important;
  line-height: 1.4;
  font-weight: 700;
}

.nxg-success-modal p {
  margin: 0 0 22px;
  color: #68777f;
  font-size: 14px !important;
  line-height: 1.7;
  font-weight: 400;
}

.nxg-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: #128c7e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px !important;
  line-height: 1.5;
  font-weight: 600;
  transition: 0.25s ease;
}

.nxg-whatsapp-btn:hover {
  background: #0e6d63;
  color: #fff;
}

.nxg-whatsapp-btn i {
  font-size: 18px !important;
}

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

@media (max-width: 991px) {
  .nxg-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nxg-contact-info {
    max-width: 800px;
  }

  .nxg-contact-form-wrap {
    max-width: 800px;
  }

  .nxg-contact-section {
    padding: 75px 0;
  }
}

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

@media (max-width: 767px) {
  .nxg-contact-container {
    width: min(100% - 30px, 1280px);
  }

  .nxg-contact-hero {
    min-height: 280px;
  }

  .nxg-contact-hero-content {
    padding: 55px 15px;
  }

  .nxg-contact-hero-tag {
    font-size: 12px !important;
  }

  .nxg-contact-hero h1 {
    font-size: 38px !important;
  }

  .nxg-contact-breadcrumb {
    font-size: 14px !important;
  }

  .nxg-contact-section {
    padding: 55px 0;
  }

  .nxg-contact-grid {
    gap: 40px;
  }

  .nxg-contact-info h2 {
    font-size: 30px !important;
  }

  .nxg-contact-intro {
    font-size: 15px !important;
    line-height: 1.8;
  }

  .nxg-contact-card {
    padding: 16px;
  }

  .nxg-contact-card span {
    font-size: 12px !important;
  }

  .nxg-contact-card h3 {
    font-size: 15px !important;
  }

  .nxg-contact-card p,
  .nxg-contact-card a {
    font-size: 14px !important;
  }

  .nxg-contact-form-wrap {
    padding: 25px 20px;
  }

  .nxg-contact-form-header h2 {
    font-size: 24px !important;
  }

  .nxg-contact-form-header p {
    font-size: 14px !important;
  }

  .nxg-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nxg-form-group label {
    font-size: 14px !important;
  }

  .nxg-input-box input,
  .nxg-input-box textarea {
    font-size: 15px !important;
  }

  .nxg-phone-box .iti__tel-input {
    font-size: 15px !important;
  }

  .nxg-select-box select {
    font-size: 15px !important;
  }

  .iti__country-list {
    min-width: 260px;
    max-width: calc(100vw - 45px);
    max-height: 260px;
  }
}

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

@media (max-width: 480px) {
  .nxg-contact-hero {
    min-height: 250px;
  }

  .nxg-contact-hero h1 {
    font-size: 34px !important;
  }

  .nxg-contact-card-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
  }

  .nxg-contact-card h3 {
    font-size: 15px !important;
  }

  .nxg-contact-card p,
  .nxg-contact-card a {
    font-size: 14px !important;
  }

  .nxg-contact-support {
    align-items: flex-start;
  }

  .nxg-contact-support strong {
    font-size: 15px !important;
  }

  .nxg-contact-support span {
    font-size: 13px !important;
  }

  .nxg-contact-form-wrap {
    padding: 22px 16px;
  }

  .nxg-form-group {
    margin-bottom: 16px;
  }

  .nxg-input-box {
    min-height: 48px;
  }

  .nxg-input-box input,
  .nxg-input-box textarea {
    font-size: 15px !important;
  }

  .nxg-phone-box .iti__selected-country {
    min-width: 78px;
    padding: 0 8px !important;
  }

  .nxg-phone-box .iti__selected-dial-code {
    font-size: 13px !important;
  }

  .nxg-phone-box .iti__tel-input {
    font-size: 15px !important;
  }

  .nxg-select-box select {
    font-size: 15px !important;
  }

  .nxg-contact-submit {
    width: 100%;
    font-size: 15px !important;
  }
}

/* =========================================================
       MAP SECTION
       ========================================================= */

.nxg-map-section {
  padding: 90px 0 100px;
  background: #f5f8f9;
}

.nxg-map-container {
  width: min(1280px, calc(100% - 50px));
  margin: auto;
}

.nxg-map-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.nxg-map-heading h2 {
  margin: 0 0 10px;
  color: #17232a;
  font-size: 36px !important;
  line-height: 1.3;
  font-weight: 700;
}

.nxg-map-heading p {
  margin: 0;
  color: #68777f;
  font-size: 14px !important;
  line-height: 1.8;
  font-weight: 400;
}

.nxg-map-wrapper {
  position: relative;
  height: 470px;
  overflow: hidden;
  background: #ddd;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(3, 43, 60, 0.12);
}

.nxg-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.8);
}

.nxg-map-card {
  position: absolute;
  left: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 390px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.nxg-map-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05374c;
  color: #f5a623;
  border-radius: 50%;
  font-size: 15px !important;
}

.nxg-map-card strong,
.nxg-map-card span {
  display: block;
}

.nxg-map-card strong {
  margin-bottom: 3px;
  color: #05374c;
  font-size: 14px !important;
  line-height: 1.5;
  font-weight: 700;
}

.nxg-map-card span {
  color: #6d797e;
  font-size: 13px !important;
  line-height: 1.6;
  font-weight: 400;
}

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

@media (max-width: 767px) {
  .nxg-map-section {
    padding: 60px 0 70px;
  }

  .nxg-map-container {
    width: min(100% - 30px, 1280px);
  }

  .nxg-map-heading {
    margin-bottom: 30px;
  }

  .nxg-map-heading h2 {
    font-size: 30px !important;
  }

  .nxg-map-heading p {
    font-size: 14px !important;
  }

  .nxg-map-wrapper {
    height: 400px;
  }

  .nxg-map-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none;
    padding: 15px;
  }

  .nxg-map-card strong {
    font-size: 14px !important;
  }

  .nxg-map-card span {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .nxg-map-wrapper {
    height: 350px;
  }

  .nxg-map-card {
    gap: 10px;
    padding: 13px;
  }

  .nxg-map-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .nxg-map-card strong {
    font-size: 13px !important;
  }

  .nxg-map-card span {
    font-size: 12px !important;
  }
}

/* blog detail section */
.nxg-blog-detail-section,
.nxg-blog-detail-section * {
  box-sizing: border-box;
}

.nxg-blog-detail-section {
  width: 100%;
  padding: 75px 0 100px;
  background: #f7f9fa;
}

.nxg-blog-detail-container {
  width: min(1280px, calc(100% - 50px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 35px;
  align-items: start;
}

.nxg-blog-detail-article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8eb;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(5, 55, 76, 0.06);
}

.nxg-blog-detail-image {
  width: 100%;
  height: 440px;
  overflow: hidden;
  background: #e8edef;
}

.nxg-blog-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.nxg-blog-detail-header {
  padding: 30px 38px 26px;
  border-bottom: 1px solid #edf0f1;
}

.nxg-blog-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 15px;
}

.nxg-blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #748187;
  font:
    500 11px/1.4 "Domine",
    sans-serif;
}

.nxg-blog-detail-meta i {
  color: #f5a623;
}

.nxg-blog-detail-header h1 {
  margin: 0 0 14px;
  color: #05374c;
  font:
    700 clamp(30px, 3.2vw, 30px)/1.3 "Domine",
    sans-serif;
}

.nxg-blog-detail-intro {
  margin: 0;
  color: #6d7c82;
  font:
    400 15px/1.8 "Domine",
    sans-serif;
}

.nxg-blog-detail-content {
  padding: 30px 38px 45px;
  color: #46565d;
}

.nxg-blog-detail-content p {
  margin: 0 0 20px;
  color: #4e5e65;
  font:
    400 15px/1.9 "Domine",
    sans-serif;
}

.nxg-blog-detail-content strong,
.nxg-blog-detail-content b {
  color: #05374c;
  font-weight: 700;
}

.nxg-blog-detail-content h2 {
  margin: 35px 0 15px;
  color: #05374c;
  font:
    700 25px/1.4 "Domine",
    sans-serif;
}

.nxg-blog-detail-content h3 {
  margin: 28px 0 13px;
  color: #05374c;
  font:
    700 20px/1.4 "Domine",
    sans-serif;
}

.nxg-blog-detail-content ul,
.nxg-blog-detail-content ol {
  margin: 0 0 24px;
  padding-left: 25px;
}

.nxg-blog-detail-content li {
  margin-bottom: 9px;
  padding-left: 5px;
  color: #4e5e65;
  font:
    400 14px/1.75 "Domine",
    sans-serif;
}

.nxg-blog-detail-content ul li::marker {
  color: #f5a623;
}

.nxg-blog-detail-content ol li::marker {
  color: #05374c;
  font-weight: 700;
}

.nxg-blog-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 25px 0 30px;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
}

.nxg-blog-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
}

.nxg-blog-table th {
  padding: 14px 16px;
  background: #05374c;
  color: #fff;
  text-align: left;
  font:
    600 13px/1.4 "Domine",
    sans-serif;
}

.nxg-blog-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #e6ebed;
  color: #536168;
  font:
    400 13px/1.5 "Domine",
    sans-serif;
}

.nxg-blog-table tr:last-child td {
  border-bottom: 0;
}

.nxg-blog-table tbody tr:nth-child(even) {
  background: #f7f9fa;
}

.nxg-blog-detail-content blockquote {
  position: relative;
  margin: 30px 0;
  padding: 22px 25px 22px 28px;
  background: #f3f7f8;
  border-left: 4px solid #f5a623;
  border-radius: 0 8px 8px 0;
  color: #05374c;
  font:
    600 15px/1.8 "Domine",
    sans-serif;
}

.nxg-blog-sidebar {
  position: sticky;
  top: 25px;
}

.nxg-related-box {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8eb;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(5, 55, 76, 0.07);
}

.nxg-related-heading {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6ebed;
}

.nxg-related-heading span {
  display: block;
  margin-bottom: 5px;
  color: #f5a623;
  font:
    700 10px/1.3 "Domine",
    sans-serif;
  letter-spacing: 1.4px;
}

.nxg-related-heading h2 {
  margin: 0;
  color: #05374c;
  font:
    700 24px/1.3 "Domine",
    sans-serif;
}

.nxg-related-card {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8edef;
}

.nxg-related-card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.nxg-related-image {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 9px;
  background: #e8edef;
}

.nxg-related-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.nxg-related-card:hover .nxg-related-image img {
  transform: scale(1.06);
}

.nxg-related-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  color: #7a878c;
  font:
    500 10px/1.4 "Domine",
    sans-serif;
}

.nxg-related-date i {
  color: #f5a623;
}

.nxg-related-content h3 {
  margin: 0 0 10px;
}

.nxg-related-content h3 a {
  color: #05374c;
  font:
    600 15px/1.5 "Domine",
    sans-serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-related-content h3 a:hover {
  color: #f5a623;
}

.nxg-related-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #05374c;
  font:
    700 11px/1.4 "Domine",
    sans-serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.nxg-related-link i {
  color: #f5a623;
  transition: 0.3s ease;
}

.nxg-related-link:hover {
  color: #f5a623;
}

.nxg-related-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 1050px) {
  .nxg-blog-detail-container {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 25px;
  }

  .nxg-blog-detail-image {
    height: 380px;
  }

  .nxg-blog-detail-header,
  .nxg-blog-detail-content {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 767px) {
  .nxg-blog-detail-section {
    padding: 55px 0 70px;
  }

  .nxg-blog-detail-container {
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .nxg-blog-detail-main {
    width: 100%;
  }

  .nxg-blog-detail-image {
    height: 250px;
  }

  .nxg-blog-detail-header {
    padding: 23px 20px 21px;
  }

  .nxg-blog-detail-meta {
    gap: 10px 14px;
    margin-bottom: 12px;
  }

  .nxg-blog-detail-meta span {
    font-size: 10px;
  }

  .nxg-blog-detail-header h1 {
    font-size: 27px;
    line-height: 1.35;
  }

  .nxg-blog-detail-intro {
    font-size: 13px;
    line-height: 1.75;
  }

  .nxg-blog-detail-content {
    padding: 24px 20px 32px;
  }

  .nxg-blog-detail-content p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 18px;
  }

  .nxg-blog-detail-content h2 {
    margin-top: 30px;
    font-size: 22px;
  }

  .nxg-blog-detail-content h3 {
    margin-top: 25px;
    font-size: 18px;
  }

  .nxg-blog-detail-content li {
    font-size: 13px;
    line-height: 1.7;
  }

  .nxg-blog-detail-content blockquote {
    padding: 18px 18px 18px 20px;
    font-size: 13px;
  }

  .nxg-blog-sidebar {
    width: 100%;
    position: static;
  }

  .nxg-related-box {
    padding: 20px;
  }

  .nxg-related-heading h2 {
    font-size: 22px;
  }

  .nxg-related-image {
    height: 190px;
  }

  .nxg-related-content h3 a {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .nxg-blog-detail-container {
    width: calc(100% - 22px);
  }

  .nxg-blog-detail-image {
    height: 210px;
  }

  .nxg-blog-detail-header h1 {
    font-size: 24px;
  }

  .nxg-blog-detail-content {
    padding-left: 17px;
    padding-right: 17px;
  }

  .nxg-blog-detail-content p {
    font-size: 13px;
  }

  .nxg-blog-detail-content h2 {
    font-size: 20px;
  }
}

/* dealers, manufacturer, supplier, exporters listing css */

.nxg-manufacturer-section {
  width: 100%;
  padding: 40px 0 40px;
  background: #f7f9fa;
}

.nxg-manufacturer-container {
  width: min(1380px, calc(100% - 50px));
  margin: 0 auto;
}

.nxg-manufacturer-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.nxg-manufacturer-heading > span {
  display: inline-block;

  margin-bottom: 10px;

  color: #f5a623;

  font:
    700 12px/1.2 "Domine",
    sans-serif;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.nxg-manufacturer-heading h2 {
  margin: 0 0 13px;

  color: #05374c;

  font:
    700 clamp(28px, 3.2vw, 40px)/1.25 "Domine",
    sans-serif;
}

.nxg-manufacturer-heading p {
  max-width: 680px;

  margin: 0 auto;

  color: #718087;

  font:
    400 14px/1.8 "Domine",
    sans-serif;
}

.nxg-manufacturer-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px 18px;
}

.nxg-manufacturer-card {
  min-height: 45px;

  padding: 10px 17px;

  display: flex;

  align-items: center;

  position: relative;

  background: #ffffff;

  border: 1px solid #dfe6e8;

  border-radius: 10px;

  color: #05374c;

  text-decoration: none;

  box-shadow: 0 4px 15px rgba(5, 55, 76, 0.025);

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

.nxg-dealer-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 13px;

  background: #e3f6f3;

  border-radius: 50%;

  color: #05374c;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.nxg-dealer-icon i {
  font-size: 14px;
}

.nxg-dealer-name {
  padding-right: 28px;

  color: #092f43;

  font:
    500 13px/1.45 "Domine",
    sans-serif;

  transition: color 0.3s ease;
}

.nxg-dealer-arrow {
  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  right: 12px;

  color: #aab7bc;

  font-size: 11px;

  opacity: 0;

  transform: translateX(-5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.nxg-manufacturer-card:hover {
  background: #ffffff;

  border-color: #b8e7e2;

  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(5, 55, 76, 0.09);
}

.nxg-manufacturer-card:hover .nxg-dealer-icon {
  background: #00aa9d;

  color: #ffffff;

  transform: scale(1.05);
}

.nxg-manufacturer-card:hover .nxg-dealer-name {
  color: #05374c;
}

.nxg-manufacturer-card:hover .nxg-dealer-arrow {
  opacity: 1;

  transform: translateX(0);

  color: #00aa9d;
}

.nxg-no-dealers {
  grid-column: 1 / -1;

  margin: 0;

  padding: 30px;

  text-align: center;

  color: #718087;

  font:
    400 14px/1.6 "Domine",
    sans-serif;

  background: #ffffff;

  border: 1px solid #e1e7e9;

  border-radius: 10px;
}

@media (max-width: 1100px) {
  .nxg-manufacturer-container {
    width: min(960px, calc(100% - 40px));
  }

  .nxg-manufacturer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 13px 16px;
  }
}

@media (max-width: 800px) {
  .nxg-manufacturer-section {
    padding: 65px 0 75px;
  }

  .nxg-manufacturer-container {
    width: calc(100% - 34px);
  }

  .nxg-manufacturer-heading {
    margin-bottom: 34px;
  }

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

  .nxg-manufacturer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
  }

  .nxg-manufacturer-card {
    min-height: 62px;
  }

  .nxg-dealer-name {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .nxg-manufacturer-section {
    padding: 55px 0 65px;
  }

  .nxg-manufacturer-container {
    width: calc(100% - 30px);
  }

  .nxg-manufacturer-heading {
    margin-bottom: 28px;
  }

  .nxg-manufacturer-heading > span {
    font-size: 11px;

    letter-spacing: 1.5px;
  }

  .nxg-manufacturer-heading h2 {
    margin-bottom: 10px;

    font-size: 27px;

    line-height: 1.3;
  }

  .nxg-manufacturer-heading p {
    font-size: 13px;

    line-height: 1.7;
  }

  .nxg-manufacturer-grid {
    grid-template-columns: 1fr;

    gap: 9px;
  }

  .nxg-manufacturer-card {
    min-height: 60px;

    padding: 9px 14px;

    border-radius: 9px;
  }

  .nxg-dealer-icon {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    margin-right: 12px;
  }

  .nxg-dealer-icon i {
    font-size: 14px;
  }

  .nxg-dealer-name {
    font-size: 13px;
  }

  .nxg-dealer-arrow {
    opacity: 1;

    transform: translateX(0);

    right: 10px;

    color: #b0bdc1;
  }
}

@media (max-width: 400px) {
  .nxg-manufacturer-container {
    width: calc(100% - 22px);
  }

  .nxg-manufacturer-section {
    padding: 48px 0 58px;
  }

  .nxg-manufacturer-heading h2 {
    font-size: 24px;
  }

  .nxg-manufacturer-heading p {
    font-size: 12px;
  }

  .nxg-manufacturer-card {
    min-height: 57px;

    padding: 8px 12px;
  }

  .nxg-dealer-icon {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    margin-right: 11px;
  }

  .nxg-dealer-name {
    font-size: 12px;
  }
}

/* deales , manufacture, supplier, exporter distributo detail css */

.nxg-detail-section,
.nxg-detail-section * {
  box-sizing: border-box;
}

.nxg-detail-container {
  width: min(1380px, calc(100% - 50px));
  margin: 0 auto;
}

.nxg-detail-section {
  width: 100%;
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #f6f8f9 0%, #eef2f4 100%);
}

/* =========================================
       TOP CARD
    ========================================= */
.nxg-detail-card {
  padding: 45px;
  background: #fff;
  border: 1px solid #e8ecee;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(5, 55, 76, 0.08);
  position: relative;
  overflow: hidden;
}

/* .nxg-detail-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #05374c, #f5a623);
    } */

.nxg-detail-top {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
  gap: 55px;
  align-items: start;
}

/* IMAGE + HOVER ZOOM */
.nxg-detail-image {
  position: sticky;
  top: 30px;
}

.nxg-image-box {
  width: 100%;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(145deg, #f7f9fa, #eef2f4);
  border: 1px solid #e2e8ea;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.nxg-image-box img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
}

.nxg-image-box:hover img {
  transform: scale(1.35);
}

.nxg-zoom-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid #e2e8ea;
  border-radius: 8px;
  color: #05374c;
  font:
    600 12px/1.2 "Domine",
    sans-serif;
  box-shadow: 0 8px 20px rgba(5, 55, 76, 0.12);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nxg-zoom-badge i {
  color: #05374c;
  font-size: 12px;
}

.nxg-image-box:hover .nxg-zoom-badge {
  opacity: 0;
}

/* RIGHT CONTENT */
.nxg-detail-content {
  padding-top: 5px;
}

.nxg-detail-small-title {
  display: inline-block;
  margin-bottom: 9px;
  color: #f5a623;
  font:
    700 12px/1.2 "Domine",
    sans-serif;
  letter-spacing: 2.2px;
}

.nxg-detail-content h2 {
  margin: 0 0 18px;
  color: #05374c;
  font:
    700 clamp(28px, 3vw, 27px)/1.25 "Domine",
    sans-serif;
}

.nxg-detail-content p {
  margin: 0 0 15px;
  color: #3d474b;
  font:
    400 15px/1.9 "Domine",
    sans-serif;
}

/* CHAT / CALL BUTTONS */
.nxg-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.nxg-chat-btn,
.nxg-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 8px;
  font:
    600 13px/1.2 "Domine",
    sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nxg-chat-btn {
  background: linear-gradient(135deg, #f5a623, #f2910a);
  color: #05374c;
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.35);
}

.nxg-chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.45);
}

.nxg-call-btn {
  background: #fff;
  color: #05374c;
  border: 1.5px solid #05374c;
}

.nxg-call-btn:hover {
  background: #05374c;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================================
       DESCRIPTION BOX
    ========================================= */
.nxg-description-box {
  margin-top: 40px;
  padding: 45px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecee;
  box-shadow: 0 14px 40px rgba(5, 55, 76, 0.06);
}

.nxg-description-text {
  color: #414b4f;
  font:
    400 15px / 1.95 "Domine",
    sans-serif;
}

.nxg-description-text p {
  margin: 0 0 15px;
}

/* =========================================
       PRODUCT RANGE / FULL CONTENT
    ========================================= */
.nxg-detail-full-content {
  margin-top: 40px;
  padding: 45px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecee;
  box-shadow: 0 14px 40px rgba(5, 55, 76, 0.06);
}

.nxg-content-heading {
  margin-bottom: 25px;
}

.nxg-content-heading > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #f5a623;
  font:
    700 11px/1.2 "Domine",
    sans-serif;
  letter-spacing: 2.2px;
}

.nxg-content-heading h2 {
  margin: 0;
  color: #05374c;
  font:
    700 30px/1.3 "Domine",
    sans-serif;
}

/* CENTERED HEADING (applications) */
.nxg-heading-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.nxg-heading-sub {
  margin: 14px 0 0;
  color: #718087;
  font:
    400 13px/1.8 "Domine",
    sans-serif;
}

.nxg-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.nxg-product-item {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f7f9fa;
  border: 1px solid #e2e7e9;
  border-radius: 7px;
  color: #05374c;
  text-decoration: none;
  font:
    600 12px/1.4 "Domine",
    sans-serif;
  transition: all 0.3s ease;
}

.nxg-product-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e1f7f2;
  color: #12ad91;
  border-radius: 50%;
  font-size: 11px;
}

.nxg-product-item > i {
  margin-left: auto;
  color: #f5a623;
  font-size: 10px;
}

.nxg-product-item:hover {
  background: #05374c;
  border-color: #05374c;
  color: #fff;
  transform: translateY(-2px);
}

.nxg-product-item:hover .nxg-product-icon {
  background: #f5a623;
  color: #05374c;
}

/* =========================================
       FAQ SECTION
    ========================================= */
.nxg-faq-section {
  margin-top: 40px;
  padding: 45px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecee;
  box-shadow: 0 14px 40px rgba(5, 55, 76, 0.06);
}

.nxg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nxg-faq-item {
  border: 1px solid #e2e7e9;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f9fa;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nxg-faq-item.active {
  border-color: #f5a623;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.1);
}

.nxg-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #05374c;
  font:
    600 14px/1.5 "Domine",
    sans-serif;
}

.nxg-faq-question i {
  color: #f5a623;
  font-size: 13px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nxg-faq-item.active .nxg-faq-question i {
  transform: rotate(180deg);
}

.nxg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.nxg-faq-item.active .nxg-faq-answer {
  max-height: 500px;
  padding: 0 22px 20px;
}

.nxg-faq-answer p {
  margin: 0;
  color: #65757b;
  font:
    400 13px/1.8 "Domine",
    sans-serif;
}

/* =========================================
       APPLICATIONS
    ========================================= */
.nxg-application-section {
  margin-top: 40px;
  /* padding: 40px 40px; */
  /* background: #fff;
        border-radius: 16px;
        border: 1px solid #e8ecee;
        box-shadow: 0 14px 40px rgba(5, 55, 76, .06); */
}

.nxg-application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nxg-application-card {
  padding: 30px 22px;
  text-align: center;
  background: #f7f9fa;
  border: 1px solid #e1e7e9;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.nxg-application-card > i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #e1f7f2, #d1f0e9);
  color: #12ad91;
  border-radius: 50%;
  font-size: 17px;
  transition: all 0.35s ease;
}

.nxg-application-card h3 {
  margin: 0 0 8px;
  color: #05374c;
  font:
    600 14.5px/1.4 "Domine",
    sans-serif;
}

.nxg-application-card p {
  margin: 0;
  color: #718087;
  font:
    400 13.5px/1.6 "Domine",
    sans-serif;
}

.nxg-application-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(5, 55, 76, 0.12);
  border-color: #05374c;
}

.nxg-application-card:hover > i {
  background: linear-gradient(135deg, #f5a623, #f2910a);
  color: #05374c;
  transform: scale(1.08);
}

/* =========================================
       CTA
    ========================================= */
.nxg-detail-cta {
  margin-top: 40px;
  padding: 40px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #05374c, #072f40);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(5, 55, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.nxg-detail-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.18),
    transparent 70%
  );
  border-radius: 50%;
}

.nxg-detail-cta span {
  color: #f5a623;
  font:
    700 11px/1.2 "Domine",
    sans-serif;
  letter-spacing: 1.8px;
}

.nxg-detail-cta h2 {
  margin: 8px 0;
  color: #fff;
  font:
    700 25px/1.3 "Domine",
    sans-serif;
}

.nxg-detail-cta p {
  margin: 0;
  color: #d3e0e4;
  font:
    400 12px/1.6 "Domine",
    sans-serif;
}

.nxg-detail-cta > a {
  min-width: 155px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #f5a623;
  border-radius: 8px;
  color: #05374c;
  text-decoration: none;
  font:
    600 13px/1.3 "Domine",
    sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.nxg-detail-cta > a:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* =========================================
       TABLET
    ========================================= */
@media (max-width: 1050px) {
  .nxg-detail-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .nxg-product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .nxg-application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
       MOBILE
    ========================================= */
@media (max-width: 767px) {
  .nxg-detail-container {
    width: calc(100% - 30px);
  }

  .nxg-detail-section {
    padding: 55px 0 65px;
  }

  .nxg-detail-card {
    padding: 22px 18px;
  }

  .nxg-detail-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .nxg-detail-image {
    position: relative;
    top: auto;
    width: 100%;
  }

  .nxg-image-box {
    min-height: 280px;
    padding: 20px;
  }

  .nxg-image-box img {
    max-height: 280px;
  }

  .nxg-detail-content h2 {
    font-size: 28px;
  }

  .nxg-detail-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  .nxg-detail-actions {
    flex-direction: column;
  }

  .nxg-chat-btn,
  .nxg-call-btn {
    width: 100%;
    justify-content: center;
  }

  .nxg-description-box,
  .nxg-detail-full-content,
  .nxg-faq-section,
  .nxg-application-section {
    margin-top: 25px;
    padding: 25px 18px;
  }

  .nxg-content-heading h2 {
    font-size: 25px;
  }

  .nxg-product-list {
    grid-template-columns: 1fr;
  }

  .nxg-application-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nxg-application-card {
    padding: 22px 14px;
  }

  .nxg-detail-cta {
    margin-top: 25px;
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nxg-detail-cta > a {
    width: 100%;
  }

  .nxg-faq-question {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* =========================================
       SMALL MOBILE
    ========================================= */
@media (max-width: 400px) {
  .nxg-detail-container {
    width: calc(100% - 22px);
  }

  .nxg-application-grid {
    grid-template-columns: 1fr;
  }
}




    /* =====================================================
   BREADCRUMB
===================================================== */

    .nxg-detail-breadcrumb {
        padding: 15px 0;
        background: #fff;
        border-bottom: 1px solid #e5eaed;
    }

    .nxg-breadcrumb-content {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nxg-breadcrumb-content a,
    .nxg-breadcrumb-content span {
        color: #718087;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
    }

    .nxg-breadcrumb-content a:hover {
        color: #05374c;
    }

    .nxg-breadcrumb-content span:last-child {
        color: #05374c;
        font-weight: 600;
    }

    .nxg-breadcrumb-content i {
        color: #f5a623;
        font-size: 9px;
    }
