﻿/* Netbluez custom: process + footer + global Poppins */
@import url("poppins.css");

:root {
  --nb-ink: #1e293b;
  --nb-muted: #64748b;
  --nb-line: #e2e8f0;
  --nb-accent: #046bd2;
  --nb-accent-2: #045cb4;
  --nb-surface: #f8fafc;
  --nb-footer-bg: #0f172a;
  --nb-footer-text: #cbd5e1;
  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
}

/* Site-wide Poppins */
html,
body,
.site-content,
.elementor-kit-5,
.elementor-kit-5 a,
.elementor-kit-5 h1,
.elementor-kit-5 h2,
.elementor-kit-5 h3,
.elementor-kit-5 h4,
.elementor-kit-5 h5,
.elementor-kit-5 h6,
.elementor-heading-title,
.elementor-widget-text-editor,
.elementor-button-text,
.e-n-menu-title-text,
.nb-services,
.nb-process,
.nb-footer,
.nb-page,
.nb-svc,
h1, h2, h3, h4, h5, h6,
p, a, li, label,
button, input, select, textarea {
  font-family: "Poppins", sans-serif !important;
}
.fa,
.fas,
.far,
.fab,
.fal,
.elementor-icon,
[class^="eicon"],
[class*=" eicon"] {
  font-family: inherit;
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free" !important;
}
.far {
  font-family: "Font Awesome 5 Free" !important;
}
.fab {
  font-family: "Font Awesome 5 Brands" !important;
}
.elementor-kit-5 {
  --e-global-typography-primary-font-family: "Poppins";
  --e-global-typography-secondary-font-family: "Poppins";
  --e-global-typography-text-font-family: "Poppins";
  --e-global-typography-accent-font-family: "Poppins";
}

/* Our Process — vertical timeline (not a carousel) */
.nb-process {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4px;
}
.nb-process__head {
  margin-bottom: 48px;
}
.nb-process__head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0;
  color: var(--nb-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nb-process__head h2 span {
  display: block;
  color: var(--nb-accent);
}
.nb-process__head p {
  margin: 14px 0 0;
  max-width: 40rem;
  color: var(--nb-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.nb-process__track {
  display: grid;
  gap: 0;
  position: relative;
}
.nb-process__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  padding-bottom: 40px;
}
.nb-process__step:last-child {
  padding-bottom: 0;
}
.nb-process__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.nb-process__num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--nb-accent), var(--nb-accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(4, 107, 210, 0.28);
}
.nb-process__rail::after {
  content: "";
  position: absolute;
  top: 56px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--nb-accent), transparent);
  opacity: 0.35;
}
.nb-process__step:last-child .nb-process__rail::after {
  display: none;
}
.nb-process__card {
  background: #fff;
  border: 1px solid var(--nb-line);
  border-radius: 18px;
  padding: 28px 28px 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nb-process__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #bfdbfe;
}
.nb-process__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--nb-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nb-process__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.nb-process__card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--nb-ink);
  font-weight: 650;
}
.nb-process__card p {
  margin: 0;
  color: var(--nb-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .nb-process__step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .nb-process__num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 0.9rem;
  }
  .nb-process__rail::after {
    top: 44px;
  }
  .nb-process__card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Marketing Insights — homepage blog cards */
.nb-insights {
  padding: 96px 24px;
  background: #fff;
}
.nb-insights__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}
.nb-insights__head {
  max-width: 42rem;
  margin: 0 0 40px;
}
.nb-insights__head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0b1220;
}
.nb-insights__head p {
  margin: 0;
  color: #5b6b86;
  font-size: 1.05rem;
  line-height: 1.65;
}
.nb-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nb-insights__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #d8e0ec;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.nb-insights__card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.nb-insights__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.nb-insights__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 24px;
  flex: 1;
}
.nb-insights__body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #0b1220;
}
.nb-insights__body p {
  margin: 0;
  color: #5b6b86;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.nb-insights__body span {
  color: #046bd2;
  font-weight: 700;
  font-size: 0.92rem;
}
.nb-insights__more {
  margin-top: 36px;
  text-align: center;
}
@media (max-width: 1024px) {
  .nb-insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .nb-insights {
    padding: 64px 20px;
  }
  .nb-insights__grid {
    grid-template-columns: 1fr;
  }
  .nb-insights__head {
    margin-bottom: 28px;
  }
}

/* 4-box footer — full width + white text */
.elementor-element-8438ce4.custom-footer,
.elementor-element-8438ce4.footer-credentials,
.elementor-852 .elementor-element.elementor-element-8438ce4 {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  --padding-top: 0px !important;
  --padding-bottom: 0px !important;
  --padding-left: 0px !important;
  --padding-right: 0px !important;
  --content-width: 100% !important;
  --gap: 0px !important;
  --row-gap: 0px !important;
  --column-gap: 0px !important;
  --container-widget-height: auto !important;
  --container-widget-flex-grow: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
  background-color: transparent !important;
}
.elementor-element-8438ce4 > .e-con-inner,
.elementor-852 .elementor-element-8438ce4 > .e-con-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-location-footer.elementor-852 {
  margin: 0 !important;
  padding: 0 !important;
}
/* Kill leftover Astra / Elementor space below footer */
#page {
  min-height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-below-footer-wrap,
.ast-footer-copyright,
.ast-footer-overlay,
footer.site-footer:not(.nb-footer) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body {
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
html {
  margin: 0 !important;
  padding: 0 !important;
}

/* Footer Elementor shell must hug .nb-footer — no white band under it */
.elementor-location-footer.elementor-852,
.elementor-852.elementor-location-footer {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  background: transparent !important;
}
.elementor-element-8438ce4.custom-footer,
.elementor-element-8438ce4.footer-credentials,
.elementor-852 .elementor-element.elementor-element-8438ce4 {
  display: block !important;
  flex: none !important;
  align-items: stretch !important;
  --display: block !important;
  --flex-direction: column !important;
  --align-items: stretch !important;
  --container-widget-height: auto !important;
  --container-widget-flex-grow: 0 !important;
  --gap: 0px !important;
  --row-gap: 0px !important;
  --column-gap: 0px !important;
  --min-height: 0px !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
}
.elementor-element-8438ce4 .nb-footer,
.footer-credentials .nb-footer {
  margin: 0 !important;
  width: 100% !important;
}

/* Back to top — ripple button */
.nb-backtop,
#ast-scroll-top.nb-backtop {
  --nb-backtop: #046bd2;
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  appearance: none;
  display: grid !important;
  place-items: center;
  border-radius: 50% !important;
  background: transparent !important;
  color: #fff !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}
.nb-backtop.ast-scroll-top-show,
.nb-backtop.is-visible,
#ast-scroll-top.nb-backtop.ast-scroll-top-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  display: grid !important;
}
.nb-backtop__core {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a86ef 0%, #046bd2 55%, #0357ad 100%);
  box-shadow:
    0 10px 24px rgba(4, 107, 210, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nb-backtop__core svg {
  display: block;
  color: #fff;
}
.nb-backtop__ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(4, 107, 210, 0.45);
  opacity: 0;
  transform: scale(0.7);
  animation: nb-backtop-ripple 2.4s ease-out infinite;
  pointer-events: none;
}
.nb-backtop__ripple--2 {
  animation-delay: 0.8s;
  border-color: rgba(56, 189, 248, 0.4);
}
.nb-backtop__ripple--3 {
  animation-delay: 1.6s;
  border-color: rgba(4, 107, 210, 0.28);
}
.nb-backtop:hover .nb-backtop__core,
.nb-backtop:focus-visible .nb-backtop__core {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 14px 30px rgba(4, 107, 210, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.nb-backtop:focus-visible {
  outline: none;
}
.nb-backtop:focus-visible .nb-backtop__core {
  outline: 2px solid #7dd3fc;
  outline-offset: 3px;
}
.nb-backtop:active .nb-backtop__core {
  transform: scale(0.96);
}
.nb-backtop.is-clicked .nb-backtop__ripple {
  animation-duration: 1.2s;
}

@keyframes nb-backtop-ripple {
  0% {
    transform: scale(0.72);
    opacity: 0.7;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nb-backtop,
  .nb-backtop__core {
    transition: none;
  }
  .nb-backtop__ripple {
    animation: none;
    opacity: 0.35;
    transform: scale(1.15);
  }
  .nb-backtop__ripple--2,
  .nb-backtop__ripple--3 {
    display: none;
  }
}

@media (max-width: 640px) {
  .nb-backtop,
  #ast-scroll-top.nb-backtop {
    right: 16px !important;
    bottom: 16px !important;
    width: 50px !important;
    height: 50px !important;
  }
  .nb-backtop__core {
    width: 44px;
    height: 44px;
  }
}

/* Remove white gap under topbar / above first section (all pages) */
header.elementor-location-header,
.elementor-33.elementor-location-header,
.elementor-sticky__spacer,
.elementor-location-header .elementor-sticky__spacer {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.nb-topbar {
  margin: 0 !important;
}
#page,
#content.site-content,
.site-content,
.ast-container,
#primary.content-area,
.site-main,
.entry-content.clear,
.entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.elementor-852 .elementor-element.elementor-element-3556a8c {
  margin-bottom: 0 !important;
}

/* No extra page bottom padding under last section / above footer */
.nb-page {
  padding-bottom: 0 !important;
}
.nb-svc-cta {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
#content.site-content,
.site-content,
.ast-container,
#primary.content-area,
.entry-content.clear,
.entry-content {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.home-wrapper.elementor-element-926d6e5,
.elementor-13 .elementor-element.elementor-element-926d6e5 {
  margin-top: 0 !important;
  --padding-top: 0px !important;
}

.nb-footer {
  background: var(--nb-footer-bg);
  color: #fff;
  padding: 64px clamp(20px, 4vw, 64px) 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 !important;
}
.nb-footer__inner {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.3fr 1.8fr 1.2fr;
  gap: 40px;
}
.nb-footer__menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  align-items: start;
}
.nb-footer__menu h4 {
  margin: 0 0 18px;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nb-footer,
.nb-footer p,
.nb-footer h4,
.nb-footer li,
.nb-footer span,
.nb-footer__desc,
.nb-footer__contact p,
.nb-footer__bottom {
  color: #fff !important;
}
.nb-footer a,
.nb-footer__links a,
.nb-footer__contact a,
.nb-footer__social a,
.footer-credentials .nb-footer a,
.footer-credentials a {
  color: #fff !important;
  text-decoration: none;
}
.nb-footer a:hover,
.nb-footer__links a:hover,
.nb-footer__contact a:hover,
.footer-credentials .nb-footer a:hover {
  color: #fff !important;
  opacity: 0.85;
}
.nb-footer__box h4 {
  margin: 0 0 18px;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nb-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.nb-footer__logo img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.nb-footer__desc {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #fff !important;
  max-width: 320px;
}
.nb-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.nb-footer__links a {
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}
.nb-footer__contact p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.nb-footer__contact p i {
  margin-right: 8px;
  width: 1em;
  text-align: center;
  opacity: 0.9;
}
.nb-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.nb-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.nb-footer__social a:hover {
  background: var(--nb-accent);
  border-color: var(--nb-accent);
  opacity: 1;
}
.nb-footer__bottom {
  max-width: 100%;
  width: 100%;
  margin: 40px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #fff !important;
  text-align: center;
}
.nb-footer__bottom a {
  color: #e2e8f0 !important;
  text-decoration: none;
}
.nb-footer__bottom a:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* Legal pages */
.nb-legal-page .nb-page-hero {
  padding: 100px 0 52px;
  background: linear-gradient(180deg, #eaf2fb 0%, #fff 100%);
  border-bottom: 1px solid #d8e0ec;
}
.nb-legal-page .nb-page-hero .wrap,
.nb-legal-page .nb-section .wrap {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}
.nb-legal-page .nb-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #0f172a;
  max-width: 18ch;
}
.nb-legal-page .nb-page-hero p {
  max-width: 42rem;
  color: #64748b;
  font-size: 1.05rem;
  margin: 0;
}
.nb-legal-page .nb-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #046bd2;
  margin-bottom: 10px;
}
.nb-legal-page .nb-section {
  padding: 80px 0;
}
.nb-legal {
  max-width: 760px;
}
.nb-legal__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 32px;
}
.nb-legal h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: #0f172a;
}
.nb-legal p,
.nb-legal li {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
}
.nb-legal ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}
.nb-legal li {
  margin-bottom: 8px;
}
.nb-legal a {
  color: #046bd2;
  text-decoration: none;
}
.nb-legal a:hover {
  text-decoration: underline;
}
.nb-legal__next {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
@media (max-width: 1024px) {
  .nb-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .nb-footer__box:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .nb-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nb-footer__box:first-child {
    grid-column: auto;
  }
  .nb-footer__menus {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
}

/* Homepage hero: logo-matching navy / cyan digital abstract */
.elementor-13 .elementor-element.elementor-element-926d6e5:not(.elementor-motion-effects-element-type-background),
.elementor-13 .elementor-element.elementor-element-926d6e5 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
  background-color: #011a3a !important;
  background-image:
    linear-gradient(155deg, rgba(1, 26, 58, 0.72) 0%, rgba(4, 86, 168, 0.45) 42%, rgba(2, 20, 45, 0.82) 100%),
    radial-gradient(ellipse 70% 55% at 78% 28%, rgba(56, 189, 248, 0.22), transparent 58%),
    url("../images/hero-digital-blue.png") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.elementor-13 .elementor-element.elementor-element-926d6e5 > .e-con-inner {
  display: block !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 120px 24px 88px !important;
}
.nb-home-hero {
  color: #fff;
  max-width: 920px;
  animation: nbHeroIn 0.8s ease both;
}
@keyframes nbHeroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.nb-home-hero__brand {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.nb-home-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: #fff;
}
.nb-home-hero__lead {
  margin: 0 0 36px;
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.nb-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 36px;
  max-width: 820px;
}
.nb-home-hero__stat {
  padding: 18px 16px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 14px;
  background: rgba(4, 107, 210, 0.14);
  backdrop-filter: blur(6px);
  animation: nbHeroIn 0.75s ease both;
}
.nb-home-hero__stat:nth-child(1) { animation-delay: 0.08s; }
.nb-home-hero__stat:nth-child(2) { animation-delay: 0.16s; }
.nb-home-hero__stat:nth-child(3) { animation-delay: 0.24s; }
.nb-home-hero__stat:nth-child(4) { animation-delay: 0.32s; }
.nb-home-hero__stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin-bottom: 6px;
  color: #fff;
}
.nb-home-hero__stat span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(226, 242, 254, 0.82);
}
.nb-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nb-home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.nb-home-hero__btn--primary {
  background: #fff;
  color: #023e8a;
  box-shadow: 0 10px 28px rgba(1, 26, 58, 0.28);
}
.nb-home-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(1, 26, 58, 0.36);
  color: #011a3a;
}
.nb-home-hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(125, 211, 252, 0.55);
}
.nb-home-hero__btn--ghost:hover {
  background: rgba(56, 189, 248, 0.14);
  transform: translateY(-2px);
  color: #fff;
}
.nb-blog-excerpt {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}
.nb-contact-intro {
  max-width: 40rem;
  margin: 0 0 28px;
}
.nb-contact-intro p {
  margin: 0 0 12px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}
.nb-contact-intro__lead {
  font-weight: 500;
  color: #334155 !important;
}
@media (max-width: 900px) {
  .nb-home-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .elementor-13 .elementor-element.elementor-element-926d6e5 > .e-con-inner {
    padding: 100px 20px 64px !important;
  }
}
@media (max-width: 520px) {
  .nb-home-hero__stats {
    grid-template-columns: 1fr;
  }
  .nb-home-hero h1 {
    max-width: none;
  }
}

/* Hide about-section review/client counters */
.nb-hide-about-counters,
.elementor-element-fcde97b,
.elementor-element-b513a54,
.elementor-element-a97e11b,
.elementor-element-0e9a8ae,
.elementor-element-fa94b94,
.elementor-element-9db7b5b,
.elementor-element-0502b25,
.elementor-element-69d724e {
  display: none !important;
}

/* About section spacing */
.elementor-13 .elementor-element.elementor-element-06fb1d8.about-section {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  --padding-top: 72px !important;
  --padding-bottom: 72px !important;
  --padding-left: 20px !important;
  --padding-right: 20px !important;
}

/* Our Services — stage mosaic */
.elementor-13 .elementor-element.elementor-element-cb70b49 {
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(4, 107, 210, 0.14), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 88%, rgba(13, 148, 136, 0.12), transparent 55%),
    linear-gradient(180deg, #eef4fb 0%, #f8fafc 48%, #eef6f4 100%) !important;
  padding: 10px 0 !important;
  --padding-top: 96px !important;
  --padding-bottom: 40px !important;
  overflow: hidden !important;
}
.elementor-13 .elementor-element.elementor-element-cb70b49 > .e-con-inner {
  display: block !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding-inline: 24px !important;
}

/* Process + Blog + Contact CTA spacing */
.elementor-13 .elementor-element.elementor-element-138d21d.process-slider {
  padding-top: 96px !important;
  padding-bottom: 48px !important;
  --padding-top: 96px !important;
  --padding-bottom: 48px !important;
  --padding-left: 20px !important;
  --padding-right: 20px !important;
}
.elementor-13 .elementor-element.elementor-element-36143e3,
.elementor-13 .elementor-element.elementor-element-c6867f5 {
  --padding-left: 20px !important;
  --padding-right: 20px !important;
}
.elementor-13 .elementor-element.elementor-element-36143e3 {
  padding-top: 96px !important;
  padding-bottom: 40px !important;
  --padding-top: 96px !important;
  --padding-bottom: 40px !important;
}
.elementor-13 .elementor-element.elementor-element-c6867f5 {
  padding-top: 24px !important;
  padding-bottom: 96px !important;
  --padding-top: 24px !important;
  --padding-bottom: 96px !important;
}
.elementor-852 .elementor-element.elementor-element-3556a8c.footer_new {
  padding-top: 96px !important;
  padding-bottom: 72px !important;
  --padding-top: 96px !important;
  --padding-bottom: 72px !important;
  --padding-left: 24px !important;
  --padding-right: 24px !important;
}

.nb-services {
  font-family: "Poppins", sans-serif;
  color: #0b1220;
  width: 100%;
}
.nb-services__head {
  margin-bottom: 48px;
  max-width: 46rem;
}
.nb-services__eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #046bd2;
}
.nb-services__head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  color: #0b1220;
  max-width: 20ch;
}
.nb-services__head h2 span {
  background: linear-gradient(120deg, #046bd2, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nb-services__lead {
  margin: 16px 0 0;
  color: #5b6b86;
  font-size: 1.08rem;
  line-height: 1.6;
}

.nb-services__mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: minmax(280px, auto) minmax(280px, auto);
  gap: 18px;
}

.nb-services__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 280px;
  padding: 32px 28px 30px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 22px;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  animation: nb-tile-in 0.75s ease both;
  box-sizing: border-box;
}
.nb-services__tile:nth-child(1) { animation-delay: 0.04s; }
.nb-services__tile:nth-child(2) { animation-delay: 0.12s; }
.nb-services__tile:nth-child(3) { animation-delay: 0.2s; }
.nb-services__tile:nth-child(4) { animation-delay: 0.28s; }

.nb-services__tile:hover,
.nb-services__tile:focus-visible {
  transform: translateY(-8px) scale(1.01);
  outline: none;
  z-index: 2;
}

.nb-services__orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.nb-services__tile:hover .nb-services__orb,
.nb-services__tile:focus-visible .nb-services__orb {
  transform: scale(1.25) translate(12px, -10px);
  opacity: 0.85;
}

.nb-services__top,
.nb-services__title,
.nb-services__copy,
.nb-services__tags,
.nb-services__cta {
  position: relative;
  z-index: 1;
}

.nb-services__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
}
.nb-services__num {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  opacity: 0.35;
}
.nb-services__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 11px;
  border: 1px solid currentColor;
  opacity: 0.7;
}
.nb-services__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}
.nb-services__copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 28rem;
  opacity: 0.88;
}
.nb-services__tags {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.nb-services__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  width: fit-content;
  transition: gap 0.3s ease;
}
.nb-services__tile:hover .nb-services__cta,
.nb-services__tile:focus-visible .nb-services__cta {
  gap: 14px;
}

/* Tile themes */
.nb-services__tile--startup {
  background: linear-gradient(145deg, #0356a8 0%, #046bd2 48%, #0ea5e9 120%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(4, 107, 210, 0.22);
}
.nb-services__tile--startup .nb-services__orb {
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 68%);
}
.nb-services__tile--startup:hover,
.nb-services__tile--startup:focus-visible {
  box-shadow: 0 26px 50px rgba(4, 107, 210, 0.32);
  color: #fff;
}
.nb-services__tile--startup:hover .nb-services__num,
.nb-services__tile--startup:hover .nb-services__badge,
.nb-services__tile--startup:hover .nb-services__title,
.nb-services__tile--startup:hover .nb-services__copy,
.nb-services__tile--startup:hover .nb-services__tags,
.nb-services__tile--startup:hover .nb-services__cta,
.nb-services__tile--startup:focus-visible .nb-services__num,
.nb-services__tile--startup:focus-visible .nb-services__badge,
.nb-services__tile--startup:focus-visible .nb-services__title,
.nb-services__tile--startup:focus-visible .nb-services__copy,
.nb-services__tile--startup:focus-visible .nb-services__tags,
.nb-services__tile--startup:focus-visible .nb-services__cta {
  color: #fff;
  opacity: 1;
}
.nb-services__tile--startup:hover .nb-services__badge,
.nb-services__tile--startup:focus-visible .nb-services__badge {
  border-color: rgba(255, 255, 255, 0.55);
}

.nb-services__tile--business {
  background: #fff;
  color: #0b1220;
  border-color: #d8e0ec;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.nb-services__tile--business .nb-services__orb {
  bottom: -70px;
  right: -30px;
  background: radial-gradient(circle, rgba(4, 107, 210, 0.18), transparent 70%);
}
.nb-services__tile--business .nb-services__num { color: #046bd2; opacity: 0.45; }
.nb-services__tile--business .nb-services__badge { color: #046bd2; border-color: #93c5fd; }
.nb-services__tile--business .nb-services__copy { color: #5b6b86; opacity: 1; }
.nb-services__tile--business .nb-services__tags,
.nb-services__tile--business .nb-services__cta { color: #046bd2; }
.nb-services__tile--business:hover {
  border-color: #93c5fd;
  box-shadow: 0 22px 44px rgba(4, 107, 210, 0.12);
}

.nb-services__tile--enterprise {
  background: #fff;
  color: #0b1220;
  border-color: #d8e0ec;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.nb-services__tile--enterprise .nb-services__orb {
  top: -50px;
  left: -40px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2), transparent 70%);
}
.nb-services__tile--enterprise .nb-services__num { color: #0d9488; opacity: 0.45; }
.nb-services__tile--enterprise .nb-services__badge { color: #0f766e; border-color: #99f6e4; }
.nb-services__tile--enterprise .nb-services__copy { color: #5b6b86; opacity: 1; }
.nb-services__tile--enterprise .nb-services__tags,
.nb-services__tile--enterprise .nb-services__cta { color: #0d9488; }
.nb-services__tile--enterprise:hover {
  border-color: #5eead4;
  box-shadow: 0 22px 44px rgba(13, 148, 136, 0.12);
}

.nb-services__tile--ai {
  background: linear-gradient(155deg, #0b1220 0%, #12304f 55%, #0d4f6c 120%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.28);
}
.nb-services__tile--ai .nb-services__orb {
  bottom: -80px;
  right: -50px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.55), transparent 68%);
}
.nb-services__tile--ai .nb-services__badge { border-color: rgba(255,255,255,0.35); }
.nb-services__tile--ai .nb-services__tags { color: #67e8f9; }
.nb-services__tile--ai:hover,
.nb-services__tile--ai:focus-visible {
  box-shadow: 0 26px 50px rgba(8, 145, 178, 0.25);
  color: #fff;
}
.nb-services__tile--ai:hover .nb-services__num,
.nb-services__tile--ai:hover .nb-services__badge,
.nb-services__tile--ai:hover .nb-services__title,
.nb-services__tile--ai:hover .nb-services__copy,
.nb-services__tile--ai:hover .nb-services__tags,
.nb-services__tile--ai:hover .nb-services__cta,
.nb-services__tile--ai:focus-visible .nb-services__num,
.nb-services__tile--ai:focus-visible .nb-services__badge,
.nb-services__tile--ai:focus-visible .nb-services__title,
.nb-services__tile--ai:focus-visible .nb-services__copy,
.nb-services__tile--ai:focus-visible .nb-services__tags,
.nb-services__tile--ai:focus-visible .nb-services__cta {
  color: #fff;
  opacity: 1;
}
.nb-services__tile--ai:hover .nb-services__badge,
.nb-services__tile--ai:focus-visible .nb-services__badge {
  border-color: rgba(255, 255, 255, 0.55);
}

@keyframes nb-tile-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nb-services__tile {
    animation: none;
  }
  .nb-services__tile,
  .nb-services__orb,
  .nb-services__cta {
    transition: none;
  }
}

@media (max-width: 900px) {
  .elementor-13 .elementor-element.elementor-element-06fb1d8.about-section,
  .elementor-13 .elementor-element.elementor-element-cb70b49,
  .elementor-13 .elementor-element.elementor-element-138d21d.process-slider,
  .elementor-13 .elementor-element.elementor-element-36143e3,
  .elementor-852 .elementor-element.elementor-element-3556a8c.footer_new {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
    --padding-top: 72px !important;
    --padding-bottom: 72px !important;
  }
  .elementor-13 .elementor-element.elementor-element-138d21d.process-slider {
    padding-bottom: 36px !important;
    --padding-bottom: 36px !important;
  }
  .elementor-13 .elementor-element.elementor-element-36143e3 {
    padding-bottom: 28px !important;
    --padding-bottom: 28px !important;
  }
  .elementor-13 .elementor-element.elementor-element-c6867f5 {
    padding-top: 16px !important;
    padding-bottom: 72px !important;
    --padding-top: 16px !important;
    --padding-bottom: 72px !important;
  }
  .nb-services__mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .nb-services__head {
    margin-bottom: 36px;
  }
  .nb-services__tile {
    min-height: 250px;
    padding: 26px 24px;
  }
  .nb-services__num {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .elementor-13 .elementor-element.elementor-element-06fb1d8.about-section,
  .elementor-13 .elementor-element.elementor-element-cb70b49,
  .elementor-13 .elementor-element.elementor-element-138d21d.process-slider,
  .elementor-13 .elementor-element.elementor-element-36143e3,
  .elementor-852 .elementor-element.elementor-element-3556a8c.footer_new {
    padding-top: 2px !important;
    padding-bottom: 1px !important;
    --padding-top: 64px !important;
    --padding-bottom: 64px !important;
    --padding-left: 20px !important;
    --padding-right: 20px !important;
  }
  .elementor-13 .elementor-element.elementor-element-cb70b49 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .elementor-13 .elementor-element.elementor-element-cb70b49 > .e-con-inner {
    padding-inline: 20px !important;
  }
  .elementor-13 .elementor-element.elementor-element-36143e3 {
    padding-bottom: 24px !important;
    --padding-bottom: 24px !important;
  }
  .elementor-13 .elementor-element.elementor-element-c6867f5 {
    padding-top: 12px !important;
    padding-bottom: 64px !important;
    --padding-top: 12px !important;
    --padding-bottom: 64px !important;
    --padding-left: 20px !important;
    --padding-right: 20px !important;
  }
  .nb-services__head {
    margin-bottom: 28px;
  }
  .nb-services__lead {
    margin-top: 14px;
  }
  .nb-services__mosaic {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nb-services__tile {
    min-height: 240px;
    padding: 28px 22px 26px;
    gap: 12px;
  }
  .nb-services__title {
    font-size: 1.45rem;
  }
  .nb-services__badge {
    font-size: 0.68rem;
    padding: 6px 9px;
  }
}

/* nb-hide-awards */
#awards,
.elementor-element-5c6a94f1 {
  display: none !important;
}

/* nb-hide-happy-clients */
.elementor-element-6d3c22db {
  display: none !important;
}

/* Global content section padding — all pages */
.nb-svc-block,
.nb-svc-cta,
.nb-section,
.section,
.article {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}
.nb-page-hero {
  padding-top: 120px !important;
  padding-bottom: 64px !important;
}
.nb-page-hero .wrap,
.nb-page .wrap,
.nb-section .wrap {
  width: min(100% - 48px, 1180px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.nb-aside {
  padding: 32px !important;
}
.nb-grid-2 {
  gap: 32px !important;
}

@media (max-width: 900px) {
  .nb-svc-block,
  .nb-svc-cta,
  .nb-section,
  .section,
  .article {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .nb-page-hero {
    padding-top: 100px !important;
    padding-bottom: 48px !important;
  }
  .nb-page-hero .wrap,
  .nb-page .wrap,
  .nb-section .wrap,
  .nb-svc .wrap,
  .nb-legal-page .wrap {
    width: min(100% - 40px, 1120px) !important;
  }
  .nb-process__head {
    margin-bottom: 36px;
  }
  .nb-contact-intro {
    margin-bottom: 24px;
  }
  .nb-grid-2 {
    gap: 24px !important;
  }
}

@media (max-width: 640px) {
  .nb-svc-block,
  .nb-svc-cta,
  .nb-section,
  .section,
  .article {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .nb-page-hero {
    padding-top: 96px !important;
    padding-bottom: 40px !important;
  }
  .nb-svc-hero {
    min-height: auto;
    padding-top: 110px !important;
    padding-bottom: 64px !important;
  }
  .nb-page-hero .wrap,
  .nb-page .wrap,
  .nb-section .wrap,
  .nb-svc .wrap,
  .nb-legal-page .wrap {
    width: min(100% - 40px, 1120px) !important;
  }
  .nb-aside {
    padding: 28px 22px !important;
  }
  .nb-footer {
    padding: 56px 20px 24px !important;
  }
  .nb-home-hero__lead {
    margin-bottom: 28px;
  }
  .nb-home-hero__stats {
    margin-bottom: 28px;
    gap: 12px;
  }
  .elementor-13 .elementor-element.elementor-element-926d6e5 > .e-con-inner {
    padding: 96px 20px 56px !important;
  }
  .elementor-13 .about-section .elementor-heading-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }
  .nb-process__card {
    padding: 22px 18px !important;
  }
}
