:root {
  --ink: #202429;
  --ink-2: #33404a;
  --muted: #667982;
  --line: rgba(32, 36, 41, 0.12);
  --surface: #f4fafb;
  --primary: #36b6e7;
  --cyan: #78d3e4;
  --green: #4cb6c6;
  --gold: #39a3b7;
  --shadow: 0 22px 55px rgba(32, 36, 41, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: #fff;
}
html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}

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

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

.site-header {
  background: rgb(1 0 6);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(7, 17, 31, .1);
}

.navbar {
  min-height: 78px;
  padding: 0;
}

.brand img {
  width: auto;
  max-width: 277px;
  /* max-height: 110px; */
  height: auto;
  object-fit: contain;
}

.nav-link {
  color: white;
  font-size: 15px;
  font-weight: normal;
  padding: 1.6rem .50rem !important;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: #fff !important;
  background: #2d73ff;
  border-radius: var(--radius);
  padding: 5px 10px !important;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--primary);
  transform: translateY(-1px);
}

.navbar .dropdown-menu.nav-dropdown {
  min-width: 300px;
  max-width: 360px;
  padding: 8px;
  margin-top: 0;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.navbar .dropdown-menu.nav-dropdown-scroll {
  /* max-height: min(70vh, 520px); */
  overflow-y: auto;
}

.navbar .dropdown-item {
  padding: 4px 12px;
  color: var(--ink-2);
  border-radius: 6px;
  font-size: .91rem;
  font-weight: 500;
  white-space: normal;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  color: var(--primary);
  background: #eef9fb;
}

@media (min-width: 1200px) {

  .navbar .dropdown:hover>.dropdown-menu,
  .navbar .dropdown:focus-within>.dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar .dropdown.show>.dropdown-menu,
.navbar .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: #fff;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 29, 35, .94), rgba(26, 44, 52, .78), rgba(47, 154, 174, .18)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1900&q=82") center/cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto -10% -20% 45%;
  height: 320px;
  content: "";
  background: radial-gradient(circle, rgba(120, 211, 228, .28), transparent 65%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .min-vh-100 {
  padding-top: 150px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero .eyebrow,
.dark .eyebrow {
  color: #a7edf5;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: #fff;
       font-size: 52px;
}

h2 {
  margin: 0 0 18px;
  font-size: 40px;
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
}

.btn-primary {
  color: #fff;
  border: 0;
  background: #36b6e7;
  box-shadow: 0 18px 34px rgba(47, 154, 174, .26);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  color: var(--ink);
  background: #fff;
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border: 0;
}

.hero-panel {
  padding: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .82);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.city-grid span {
  padding: 10px 8px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  font-weight: 750;
}

.section {
  padding: 60px 0;
}

.surface {
  background: #ffffff;
}

.dark {
  color: rgba(255, 255, 255, .78);
  background: var(--ink);
}

.dark h2,
.dark h3 {
  color: #fff;
}

.section-head {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.quote {
  padding: 10px 20px;
  color: var(--ink);
  background: #f1f7ff;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 850;
}

.text-link {
  color: var(--primary);
  font-weight: 850;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  /* aspect-ratio: 5/4; */
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 380px;
  padding: 18px;
  color: #fff;
  background: rgba(7, 17, 31, .84);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.image-stack strong,
.image-stack span {
  display: block;
}

.feature-grid,
.service-grid,
.case-grid,
.testimonial-row,
.card-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid,
.testimonial-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.product-card,
.case-card,
blockquote,
.form-card,
.contact-list a,
.contact-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(7, 17, 31, .07);
}

.feature-card,
.service-card,
.case-card,
blockquote {
  padding: 24px;
}

.feature-card,
.service-card,
.product-card,
.case-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover,
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(8, 106, 216, .26);
}

.feature-card i,
.service-card i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: #36b6e7;
  border-radius: var(--radius);
  font-size: 1.35rem;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25/1;
  object-fit: cover;
}

.product-card h3,
.product-card p,
.product-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.product-card h3 {
  margin-top: 18px;
}

.product-card a {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 850;
}

.stats {
  padding: 42px 0;
  background: linear-gradient(135deg, var(--ink), var(--primary));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.stat-grid div {
  min-height: 128px;
  padding: 18px 12px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
}

.stat-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.15;
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
}

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

.industry-grid a {
  min-height: 92px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  font-weight: 800;
}

.industry-grid a:hover {
  background: rgba(23, 183, 207, .18);
  transform: translateY(-4px);
}

.industry-grid i {
  color: #a7edf5;
  font-size: 1.25rem;
}

.brand-marquee {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.brand-marquee span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}


.brand-marquee span:hover {
 
  border: 1px solid #041c37;
 
}


.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.benefit-list,
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefit-list span,
.commitment-grid span {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.commitment-grid span {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .14);
}

.case-card span {
  color: var(--primary);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .78rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline div {
  padding: 24px;
  border-top: 4px solid var(--primary);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(7, 17, 31, .07);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 8px;
  color: var(--muted);
}

blockquote {
  margin: 0;
}

blockquote::before {
  content: "\F6B0";
  font-family: "bootstrap-icons";
  color: var(--gold);
  font-size: 2rem;
}

blockquote span {
  display: block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 850;
}

.cta {
  padding: 86px 0;
  text-align: center;
  color: #fff;
 
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
}

.center {
  justify-content: center;
  text-align: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
}

.contact-list i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.contact-list strong {
  display: block;
  color: var(--ink);
}

.form-card {
  padding: 28px;
}

.form-card label {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 850;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: var(--line);
  border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(8, 106, 216, .14);
}

.footer {
  padding: 56px 0 26px;
  color: rgba(255, 255, 255, .72);
  background: #050b14;
}

.footer img {
  width: 142px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: var(--radius);
}

.footer h2 {
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #a7edf5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  background-color: 2f9aae24;
}

.page-hero {
  position: relative;
  padding: 160px 0 56px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 36, 41, .94), rgba(47, 154, 174, .84)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1900&q=80") center/cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 3vw, 4.2rem);
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.08rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(7, 17, 31, .07);
}

.detail-card ul {
  margin: 12px 0 0;
  padding-left: 1.1rem;
}

.meta-list {
  display: grid;
  gap: 12px;
}

.meta-list a,
.meta-list span {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.map-frame {
  min-height: 340px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #eaf1f7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 1199.98px) {
  .nav-link {
    padding: .7rem .55rem !important;
  }

  .navbar-collapse {
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 10px 0 18px;
  }

  .navbar .dropdown-menu.nav-dropdown {
    max-width: none;
    margin: 0 0 8px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card-grid.four,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid,
  .service-grid,
  .feature-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-marquee {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: .98rem;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 90px;
  }

  .min-vh-100 {
    min-height: auto !important;
    padding: 90px 0 64px;
  }

  .actions,
  .cta .actions {
    display: grid;
  }

  .city-grid,
  .feature-grid,
  .service-grid,
  .case-grid,
  .testimonial-row,
  .card-grid.four,
  .industry-grid,
  .stat-grid,
  .split,
  .benefit-list,
  .commitment-grid,
  .timeline,
  .detail-grid,
  .brand-marquee {
    grid-template-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }

  .image-stack div {
    position: static;
    margin-top: 12px;
  }

  .form-card {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}



.nx-feature-wrap{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:6px;
    margin-top:15px;
}

.nx-feature-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
    background: #f5f7fa;
    border: 1px solid #e3e8ef;
    border-radius: 0px;
    font-size: 10px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all .3s ease;
    cursor: default;
    text-align: center;
    min-height: 25px;
}

.nx-feature-btn:hover{
    background:#0d6efd;
    color:#fff;
    border-color:#0d6efd;
    transform:translateY(-2px);
}

@media(max-width:767px){
    .nx-feature-wrap{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .nx-feature-wrap{
        grid-template-columns:1fr;
    }
}



.nx-service-tags{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:6px;
    margin-top:15px;
}

.nx-service-tag{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0px 0px;
    background:#f8f9fc;
    border:1px solid #e5e7eb;
     font-size:10px;
    font-weight:600;
    color:#1f2937;
    min-height:20px;
    transition:all .3s ease;
}

.nx-service-tag:hover{
    background:#0d6efd;
    border-color:#0d6efd;
    color:#fff;
    transform:translateY(-3px);
}

@media(max-width:767px){
    .nx-service-tags{
        grid-template-columns:1fr;
    }
}









.nxr-compare-section{
    padding:60px 0;
    background:#3e96b34d;
    overflow:hidden;
}

.nxr-compare-wrapper{
    /* display:grid; */
    grid-template-columns:0.95fr 1.05fr;
    gap:60px;
    align-items:center;
}

.nxr-compare-image{
    position:relative;
}

.nxr-compare-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.nxr-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#eaf2ff;
    color:#0d6efd;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.nxr-compare-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:30px;
    font-weight:700;
    color:#111827;
}

.nxr-compare-table{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.nxr-head{
    padding:20px;
    font-size:20px;
    font-weight:700;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.nxr-head-left{
    background:#111827;
}

.nxr-head-right{
    background:#36b6e7;
}

.nxr-item{
    padding:10px 20px;
    display:flex;
    align-items:center;
    gap:12px;
    border-bottom:1px solid #edf2f7;
    transition:.3s;
}

.nxr-item:hover{
    background:#fafafa;
}

.nxr-negative{
    color:#4b5563;
}

.nxr-negative i{
    color:#ef4444;
    font-size:16px;
    flex-shrink:0;
}

.nxr-positive{
    background:#f8fbff;
    color:#000000;
    font-weight:600;
}

.nxr-positive i{
    color:#10b981;
    font-size:16px;
    flex-shrink:0;
}

/* Mobile */
@media(max-width:991px){

    .nxr-compare-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .nxr-compare-content h2{
        font-size:32px;
    }
}

@media(max-width:767px){

    .nxr-compare-table{
        grid-template-columns:2, 1fr;
    }

    .nxr-head{
        font-size:18px;
    }

    .nxr-item{
        font-size:15px;
    }
}






.nx-industry-reach{
    position:relative;
    overflow:hidden;
    padding:60px 0;
    background:#3e97b11f;
}

/* Background Circles */
.nx-industry-reach:before{
    content:"";
    position:absolute;
    left:-250px;
    bottom:-250px;
    width:700px;
    height:700px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
        box-shadow: 0 0 0 120px rgb(65 148 177 / 9%), 0 0 0 240px rgba(255, 255, 255, .02), 0 0 0 360px rgb(65 148 177 / 10%);
}

.nx-industry-wrap{
    /* display:grid; */
    grid-template-columns:500px 1fr;
    gap:80px;
    align-items:center;
}

.nx-tag{
    color:#fff;
    font-size:18px;
    display:block;
    margin-bottom:20px;
}

.nx-industry-left h2{
    color:#000000;
    font-size:70px;
    line-height:.95;
    font-weight:800;
    margin-bottom:25px;
}

.nx-industry-left p{
    color:rgba(0, 0, 0, 0.75);
    font-size:18px;
    line-height:1.8;
    max-width:420px;
}

.nx-industry-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:24px;
}

.nx-industry-box{
    min-height:130px;
    border-radius:28px;
    padding:20px 15px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;

    background:#36b6e7;

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    transition:.4s;
}

.nx-industry-box:hover{
    transform:translateY(-8px);
    border-color:#000000;
    box-shadow:0 15px 40px rgba(104, 104, 104, 0.414);
}

.nx-industry-box i{
    font-size:42px;
    color:#ffffff;
    margin-bottom:20px;
}

.nx-industry-box h4{
    color:#fff;
    font-size:15px;
    line-height:1.4;
    margin:0;
}

.nx-featured{
    background:
    linear-gradient(
    135deg,
    #3d0078,
    #8b005d);

    border-color:rgba(255,255,255,.15);
}

.nx-featured i{
    color:#fff;
}

/* Responsive */

@media(max-width:1200px){

    .nx-industry-wrap{
        grid-template-columns:1fr;
    }

    .nx-industry-left h2{
        font-size:70px;
    }
}

@media(max-width:768px){

    .nx-industry-grid{
        grid-template-columns:1fr;
    }

    .nx-industry-left h2{
        font-size:55px;
    }

    .nx-industry-box{
        min-height:160px;
    }
}








.nx-services-section{
    padding:60px 0;
    background:#2f9aae12;
}

.nx-services-heading{
    text-align:center;
    margin-bottom:60px;
}

.nx-services-heading span{
    display:inline-block;
    padding:8px 20px;
    background:#eef5ff;
    color:#3f96b1;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.nx-services-heading h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
    color:#111827;
}

.nx-services-heading p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
}

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

.nx-service-card{
    position:relative;
    height:420px;
    border-radius:24px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.nx-service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.nx-service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.15)
    );
}

.nx-service-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    color:#fff;
    z-index:2;
    transition:.5s;
}

.nx-service-content i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:28px;
    margin-bottom:20px;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
}

.nx-service-content h3{
    font-size:28px;
    margin-bottom:12px;
    color: white;
}

.nx-service-content p{
    opacity:.85;
    line-height:1.7;
}

.nx-service-card:hover img{
    transform:scale(1.12);
}

.nx-service-card:hover .nx-service-content{
    transform:translateY(-12px);
}

.nx-service-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(13,110,253,.18);
    border-radius:50%;
    top:-120px;
    right:-120px;
    transition:.6s;
    z-index:1;
}

.nx-service-card:hover::before{
    transform:scale(2);
}

@media(max-width:992px){

    .nx-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .nx-services-heading h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .nx-services-grid{
        grid-template-columns:1fr;
    }

    .nx-service-card{
        height:380px;
    }

    .nx-services-heading h2{
        font-size:32px;
    }
}






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

.nexora-footer{
    position:relative;
    background:#010006;
    color:#fff;
    overflow:hidden;
    padding-top:70px;
}

/* Background Design */

.nexora-footer::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border:1px solid rgba(255,255,255,0.08);
    transform:rotate(45deg);
    right:-250px;
    top:-250px;
    z-index: -1;
}

.nexora-footer::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border:1px solid rgba(255,255,255,0.05);
    left:-180px;
    bottom:-180px;
    transform:rotate(45deg);
    z-index: -1;
}

.nexora-footer-wrap{
    max-width:1400px;
    margin:auto;
    padding:0 20px 60px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:50px;
    position:relative;
    z-index:2;
}

.nexora-footer-logo img{
    max-width:210px;
    margin-bottom:20px;
}

.nexora-footer-col p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:25px;
}

.nexora-footer-col h4{
    font-size:22px;
    margin-bottom:25px;
    color:#36b6e7;
    position:relative;
}

.nexora-footer-col h4::after{
    content:"";
    width:50px;
    height:3px;
    background:#36b6e7;
    position:absolute;
    left:0;
    bottom:-10px;
}

.nexora-footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.nexora-footer-col ul li{
    margin-bottom:8px;
}

.nexora-footer-col ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.nexora-footer-col ul li a:hover{
    color:#36b6e7;
    padding-left:8px;
}

.nexora-social-links{
    display:flex;
    gap:12px;
}

.nexora-social-links a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.nexora-social-links a:hover{
    background:#36b6e7;
    color:#073b3a;
    transform:translateY(-5px);
}

.nexora-contact-item{
    margin-bottom:18px;
    color:rgba(255,255,255,.75);
}

.nexora-footer-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 28px;
    background:#36b6e7;
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.nexora-footer-btn:hover{
    transform:translateY(-4px);
}

.nexora-footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:7px;
    color:rgba(255,255,255,.7);
}

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

@media(max-width:991px){

    .nexora-footer-wrap{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media(max-width:576px){

    .nexora-footer{
        padding-top:50px;
    }

    .nexora-footer-wrap{
        grid-template-columns:1fr;
        gap:35px;
    }

    .nexora-footer-col h4{
        font-size:20px;
    }

}


 
.nexora-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:rgba(255,255,255,.85);
    line-height:1.6;
}

.nexora-contact-item i{
    min-width:18px;
    color:#36b6e7;
    font-size:16px;
    margin-top:4px;
}

.nexora-contact-item i{
    width:38px;
    height:38px;
        background: rgb(47 154 174 / 17%);
    border: 1px solid #36b6e7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#36b6e7;
    font-size:14px;
}








.nxsrv-section{
    padding:60px 20px;
    background:linear-gradient(135deg,#031527,#041f3d,#02101d);
}

.nxsrv-container{
    max-width:1300px;
    margin:auto;
}

.nxsrv-title{
    color:#fff;
    font-size:50px;
    text-align:center;
    margin-bottom:10px;
    font-weight:700;
}

.nxsrv-subtitle{
    text-align:center;
    color:#d8d8d8;
    font-size:16px;
    margin-bottom:50px;
}

.nxsrv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.nxsrv-card{
    background:#071a2d;
    border:1px solid rgb(55 120 255);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 0 20px rgba(0,0,0,.25);
    transition:.3s;
}

.nxsrv-card:hover{
    transform:translateY(-8px);
}

.nxsrv-image{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.nxsrv-content{
    display:flex;
    gap:18px;
    padding:15px;
    align-items:flex-start;
}

.nxsrv-icon
 {
    min-width: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #0b74ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

.nxsrv-text h3{
    color:#fff;
    font-size:16px;
    line-height:1.99;
    margin-bottom:0px;
    font-weight:normal;
}

.nxsrv-text p{
    color:#d0d7df;
    font-size:16px;
    line-height:1.7;
}

/* Tablet */
@media(max-width:1024px){
    .nxsrv-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:768px){
    .nxsrv-grid{
        grid-template-columns:1fr;
    }

    .nxsrv-title{
        font-size:36px;
    }

    .nxsrv-subtitle{
        font-size:16px;
    }

    .nxsrv-content{
        flex-direction:column;
    }
}







 
.nxdc-hero-section{
    position:relative;
    min-height:100vh;
    font-family:Arial,sans-serif;
    color:#fff;
}

.nxdc-overlay{
    position:absolute;
    inset:0;
    background:rgba(2,10,25,0.75);
}

.nxdc-container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
    padding:160px 70px 60px;
    display:grid;
    grid-template-columns:1.3fr 0.9fr;
    gap:40px;
    align-items:center;
}

.nxdc-topline{
    color:#2cc7ff;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.nxdc-heading{
    font-size:55px;
    line-height:65px;
    font-weight:800;
}

.nxdc-heading span{
    color:#11bfff;
}

.nxdc-line{
    width:50px;
    height:3px;
    background:#11bfff;
    margin:30px 0;
}

.nxdc-desc{
    font-size:16px;
    line-height:1.7;
    max-width:800px;
    color:#d8e5ff;
}

.nxdc-btn-wrap{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:40px;
}

.nxdc-btn{
    padding:7px 12px;
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    font-size: 16px;
}

.nxdc-btn.primary{
    background:#13bfff;
    border:none;
}

.nxdc-card{
    background:rgba(5,17,40,0.9);
    border:1px solid rgba(17,191,255,.3);
    padding:5px;
    border-radius:16px;
    backdrop-filter:blur(8px);
}

.nxdc-card h3{
    display:flex;
    gap:12px;
    font-size:22px;
    margin-bottom:30px;
    color: white;
}

.nxdc-card h3 i{
    color:#11bfff;
    margin-top: 6px;
}

.nxdc-locations{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:30px;
}

.nxdc-locations span{
    border:1px solid rgba(255,255,255,.2);
    padding:4px 8px;
    border-radius:8px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
}

.nxdc-locations i{
    color:#11bfff;
}

.nxdc-services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    border-top:1px solid rgba(255,255,255,.15);
    border-bottom:1px solid rgba(255,255,255,.15);
    padding:25px 0 10px;
    margin-bottom:20px;
}

.nxdc-services div{
    text-align:left;
}

.nxdc-services i{
    font-size:32px;
    color:#11bfff;
    margin-bottom:10px;
}

.nxdc-bottom-text{
    color:#d8e5ff;
    line-height:1.7;
    font-size:18px;
}

@media(max-width:1200px){
    .nxdc-heading{
        font-size:52px;
    }

    .nxdc-desc{
        font-size:18px;
    }
}

@media(max-width:991px){
    .nxdc-container{
        grid-template-columns:1fr;
    }

    .nxdc-card{
        margin-top:20px;
    }
}

@media(max-width:768px){
    .nxdc-heading{
        font-size:38px;
        line-height:1.2;
    }

    .nxdc-locations{
        grid-template-columns:repeat(2,1fr);
    }

    .nxdc-services{
        grid-template-columns:1fr;
    }

    .nxdc-btn{
        width:100%;
        justify-content:center;
    }
}

@media(max-width:480px){
    .nxdc-locations{
        grid-template-columns:1fr;
    }
}









.mvx-section{
    padding:60px 20px;
    background:#0f172a;
    overflow:hidden;
}

.mvx-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
}

.mvx-image{
    position:relative;
}

.mvx-image img{
    width:100%;
    display:block;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.mvx-content{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.mvx-card{
    position:relative;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.15);
    overflow:hidden;
    transition:.4s ease;
}

.mvx-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#4195ae;
}

.mvx-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(5, 5, 5, 0.25);
}

.mvx-icon{
    width:70px;
    height:70px;
    background:#4195ae;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.mvx-icon i{
    font-size:28px;
    color:#fff;
}

.mvx-card h2{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}

.mvx-card p{
    color:#d1d5db;
    line-height:1.8;
    font-size:16px;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .mvx-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .mvx-image{
        order:1;
    }

    .mvx-content{
        order:2;
    }
}

@media(max-width:576px){

    .mvx-section{
        padding:70px 15px;
    }

    .mvx-card{
        padding:25px;
    }

    .mvx-card h2{
        font-size:24px;
    }

    .mvx-icon{
        width:60px;
        height:60px;
    }

    .mvx-icon i{
        font-size:24px;
    }
}










.nxt-closing-section{
    position:relative;
    padding:60px 20px;
    background:white;
    overflow:hidden;
}

.nxt-closing-container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

.nxt-closing-bg-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:120px;
    font-weight:800;
    color:rgba(255,255,255,0.03);
    text-transform:uppercase;
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

.nxt-closing-content{
    max-width:100%;
    margin:auto;
    text-align:center;
    background:#4195ae;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.08);
    padding:50px 60px;
    border-radius:30px;
}

.nxt-closing-tag{
    display:inline-block;
    padding:10px 22px;
    background:#0f172a;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    letter-spacing:.5px;
}

.nxt-closing-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.nxt-closing-content p{
    color:#ffffff;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

.nxt-closing-highlight{
    margin-top:35px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 28px;
    border-radius:60px;
    background: rgb(15 23 42);
    border:1px solid rgba(208,53,64,0.3);
}

.nxt-closing-highlight i{
    color:#4195ae;
    font-size:22px;
}

.nxt-closing-highlight span{
    color:#fff;
    font-weight:600;
}

@media(max-width:991px){

    .nxt-closing-bg-text{
        font-size:70px;
    }

    .nxt-closing-content{
        padding:50px 30px;
    }

    .nxt-closing-content h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .nxt-closing-section{
        padding:80px 15px;
    }

    .nxt-closing-bg-text{
        display:none;
    }

    .nxt-closing-content h2{
        font-size:30px;
    }

    .nxt-closing-content p{
        font-size:16px;
    }

    .nxt-closing-highlight{
        flex-direction:column;
        border-radius:20px;
        text-align:center;
    }
}







.dv-career-section{
    padding:100px 20px;
    background:#f7f8fa;
}

.dv-career-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.dv-career-content h2{
    font-size:48px;
    line-height:1.2;
    margin:15px 0;
    color:#111;
}

.dv-career-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.dv-career-tag{
    display:inline-block;
    background:#041c37;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.dv-career-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.dv-point{
    background:#fff;
    padding:18px 20px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.dv-point i{
    width:45px;
    height:45px;
    background:#041c37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dv-point span{
    font-weight:600;
    color:#222;
}

.dv-career-form-wrap{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.dv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.dv-career-form input,
.dv-career-form textarea{
    width:100%;
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:15px;
    font-size:15px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.dv-career-form input:focus,
.dv-career-form textarea:focus{
    border-color:#041c37;
}

.dv-file-upload label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#222;
}

.dv-career-form button{
    width:100%;
    border:none;
    background:#041c37;
    color:#fff;
    padding:18px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.dv-career-form button:hover{
    transform:translateY(-3px);
}

@media(max-width:991px){

    .dv-career-container{
        grid-template-columns:1fr;
    }

    .dv-career-content h2{
        font-size:36px;
    }
}

@media(max-width:600px){

    .dv-grid,
    .dv-career-points{
        grid-template-columns:1fr;
    }

    .dv-career-form-wrap{
        padding:25px;
    }

    .dv-career-content h2{
        font-size:30px;
    }
}



 


.dropdown-menu {
    overflow: visible !important;
    width: 100%;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
    z-index: 1050;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Mobile */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        width: 100%;
        margin-left: 15px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: none;
    }

    .dropdown-submenu > .dropdown-menu.show {
        display: block;
    }
}







.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

/* Desktop */
@media (min-width:992px){
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* Mobile */
@media (max-width:991px){

    .dropdown-submenu > .dropdown-menu{
        position: static !important;
        width: 100%;
        display: none;
        padding-left: 10px;
        border: 0;
        box-shadow: none;
    }

    .dropdown-submenu > .dropdown-menu.show{
        display:block;
    }
}




/* ===== Section ===== */
.nexro-network-section{
    background:#ffffff;
    padding:60px 0;
}

/* ===== Left Content ===== */
.nexro-network-content{
    padding-right:0px;
}

.nexro-network-title{
    font-size:45px;
    line-height:1.1;
    font-weight:800;
    color:#132738;
    margin-bottom:30px;
}

.nexro-network-desc{
    font-size:16px;
    line-height:1.7;
    color:#000000;
    margin-bottom:20px;
}

.nexro-network-highlight{
    background:#eef2f3;
    border-left:6px solid #2aa99d;
    padding:10px 18px;
    font-size:16px;
    font-weight:700;
    color:#22333f;
    margin-bottom:25px;
}

.nexro-network-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:250px;
    height:50px;
    background:#2ba89e;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
    transition:.3s;
}

.nexro-network-btn:hover{
    background:#17867f;
    color:#fff;
}

/* ===== Right Side ===== */
.nexro-network-card{
    text-align:center;
}

.nexro-network-card img{
    width:100%;
    border-radius:10px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.nexro-card-footer{
    margin-top:25px;
    color:#1da69f;
    font-size:15px;
    letter-spacing:4px;
    font-weight:600;
}

/* ===== Laptop ===== */
@media(max-width:1400px){

    .nexro-network-title{
        font-size:35px;
    }

    .nexro-network-highlight{
        font-size:16px;
    }

}

/* ===== Tablet ===== */
@media(max-width:991px){

    .nexro-network-section{
        padding:60px 0;
    }
    .page-hero {
   
    padding: 100px 0 56px;
     }

    .nexro-network-content{
        padding-right:0;
        margin-bottom:50px;
    }

    .nexro-network-title{
        font-size:48px;
    }

    .nexro-network-desc{
        font-size:18px;
    }

    .nexro-network-highlight{
        font-size:24px;
        padding:20px;
    }

    .nexro-network-btn{
        min-width:260px;
        height:70px;
        font-size:22px;
    }

}

/* ===== Mobile ===== */
@media(max-width:576px){

    .nexro-network-title{
        font-size:36px;
    }

    .nexro-network-desc{
        font-size:16px;
    }

    .nexro-network-highlight{
        font-size:18px;
    }

    .nexro-network-btn{
        width:100%;
        min-width:100%;
    }

    .nexro-card-footer{
        font-size:12px;
        letter-spacing:2px;
    }

}





/*======================
STRUCTURED CABLING
======================*/

.nx-cabling-section{
    background:#dbe4e7;
    padding:90px 0;
}

.nx-cabling-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:15px;
}

.nx-cabling-badge{
    background:#25a79d;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:10px 16px;
    border-radius:4px;
}

.nx-cabling-heading h2{
    margin:0;
    color:#1d313e;
    font-size:35px;
    font-weight:800;
}

.nx-cabling-item{
    display:flex;
    gap:20px;
    padding:25px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.nx-arrow{
    color:#21a69d;
    font-size:28px;
    font-weight:300;
    min-width:20px;
    margin-top: -14px;
}

.nx-cabling-item h3{
    color:#203341;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.nx-cabling-item p{
    color:#000000;
    font-size:16px;
    line-height:1.5;
    margin:0;
    text-align: justify;
}

.nx-cabling-image{
    position:sticky;
    top:100px;
    padding-left:0px;
}

.nx-cabling-image img{
    width:100%;
    border-radius:8px;
}

.nx-cabling-outcome{
    margin-top:50px;
    background:#36b6e7;
    border-left:5px solid #010006;
    padding:28px;
}

.nx-cabling-outcome span{
    display:block;
    color:#ffffff;
    letter-spacing:4px;
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
}

.nx-cabling-outcome h4{
    color:#1e313f;
    font-size:22px;
    font-weight:800;
    margin-bottom:8px;
}

.nx-cabling-outcome p{
    margin:0;
    color:#000000;
    font-size:16px;
}

/*===============
Responsive
================*/

@media(max-width:1199px){

    .nx-cabling-item h3{
        font-size:28px;
    }

    .nx-cabling-item p{
        font-size:20px;
    }

    .nx-cabling-outcome h4{
        font-size:30px;
    }

}

@media(max-width:991px){

    .nx-cabling-image{
        padding-left:0;
        /* margin-top:50px; */
    }

    .nx-cabling-heading h2{
        font-size:34px;
    }

    .nx-cabling-item h3{
        font-size:24px;
    }

    .nx-cabling-item p{
        font-size:18px;
    }

    .nx-cabling-outcome h4{
        font-size:24px;
    }

    .nx-cabling-outcome p{
        font-size:18px;
    }

}

@media(max-width:767px){

    .nx-cabling-section{
        padding:60px 0;
    }

    .nx-cabling-heading{
        gap:12px;
    }

    .nx-cabling-heading h2{
        font-size:28px;
    }

    .nx-cabling-item{
        gap:15px;
    }

    .nx-cabling-item h3{
        font-size:20px;
    }

    .nx-cabling-item p{
        font-size:16px;
    }

    .nx-cabling-outcome h4{
        font-size:20px;
    }

}









/* ==========================
   NEXRO SUSTAINABILITY
========================== */

.nxr-sustainability-section {
    position: relative;
    overflow: hidden;
    background: #000000;
    padding: 170px 6% 60px;
    color: #fff;
}

/* Grid Background */
.nxr-sustainability-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,170,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,170,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.nxr-sustainability-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -150px;
    width: 45%;
    height: 100%;
   background: linear-gradient(180deg, rgb(40 164 221 / 22%), rgba(25, 255, 170, 0.02));
    transform: skewX(-8deg);
}

.nxr-sustainability-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side */

.nxr-tagline {
    display: inline-block;
    background: #1bb1f8;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 16px;
    margin-bottom: 30px;
}

.nxr-main-title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #28a4dd;
}

.nxr-main-title span {
    color: #ffffff;
}

.nxr-subtitle {
    font-size: 25px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 35px;
}

.nxr-description {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.8;
    max-width: 750px;
}

.nxr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.nxr-badges span {
    border: 1px solid #1bb1f8;
    padding: 14px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nxr-badges span {
    background: #1bb1f8;
    border-color: #010006;
    color: #fff;
}

/* Right Cards */

.nxr-sustainability-cards {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.02);
}

.nxr-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.nxr-card h3
{
    color: white;
}

.nxr-card:last-child {
    border-bottom: none;
}

.nxr-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(23 23 23 / 27%);
    color: #21c76f;
    border-radius: 10px;
    font-size: 24px;
}

.nxr-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.nxr-card p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 16px;
}

/* Tablet */

@media (max-width: 991px) {

    .nxr-sustainability-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .nxr-main-title {
        font-size: 60px;
    }

    .nxr-subtitle {
        font-size: 28px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .nxr-sustainability-section {
        padding: 70px 20px;
    }

    .nxr-main-title {
        font-size: 42px;
    }

    .nxr-subtitle {
        font-size: 24px;
    }

    .nxr-description {
        font-size: 16px;
    }

    .nxr-card {
        padding: 20px;
    }

    .nxr-card h3 {
        font-size: 18px;
    }

    .nxr-card p {
        font-size: 14px;
    }

    .nxr-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}




/*==================================
    NEXRO LEED SECTION
===================================*/

.nxr-leed-section{
    padding:60px 0;
    background:#f6f7f5;
    overflow:hidden;
}

.nxr-leed-content{
    padding-right:40px;
}

.nxr-leed-tag{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:5px;
    color:#30b0e3;
    margin-bottom:20px;
    text-transform:uppercase;
}

.nxr-leed-title{
    font-size:50px;
    line-height:1.05;
    font-weight:900;
    color:#021d16;
    margin-bottom:20px;
    max-width:700px;
}

.nxr-leed-line{
    width:70px;
    height:4px;
    background:#0d7b47;
    margin-bottom:35px;
}

.nxr-leed-highlight-box{
    background:#36b6e717;
    border-left:5px solid #30b0e3;
    padding:20px;
    border-radius:0 18px 18px 0;
    margin-bottom:40px;
    position:relative;
}

.nxr-leed-highlight-box p{
    margin:0;
    color:#14342c;
    line-height:1.9;
    font-size:16px;
}

.nxr-leed-highlight-box strong{
    color:#30b0e3;
}

.nxr-leed-description{
    color:#000000;
    font-size:16px;
    line-height:1.9;
}

/* Right Side */

.nxr-leed-image-wrapper{
    position:relative;
    padding:30px;
}

.nxr-leed-image-shape{
    position:absolute;
    top:-30px;
    right:-30px;
    width:250px;
    height:250px;
    background:#36b6e717;
    border-radius:40px;
    z-index:1;
}

.nxr-leed-image{
    position:relative;
    z-index:2;
    border-radius:25px;
    width:100%;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.nxr-leed-floating-card{
    position:absolute;
    left:0;
    bottom:60px;
    background:#fff;
    z-index:3;
    padding:18px 25px;
    border-radius:15px;
    font-weight:700;
    color:#30b0e3;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.nxr-leed-floating-card span{
    margin-right:8px;
}

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

@media(max-width:991px){

    .nxr-leed-section{
        padding:80px 0;
    }

    .nxr-leed-content{
        padding-right:0;
        margin-bottom:50px;
    }

    .nxr-leed-title{
        font-size:48px;
    }

    .nxr-leed-highlight-box p,
    .nxr-leed-description{
        font-size:18px;
    }

    .nxr-leed-image-wrapper{
        max-width:650px;
        margin:auto;
    }
}

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

@media(max-width:767px){

    .nxr-leed-section{
        padding:60px 0;
    }

    .nxr-leed-title{
        font-size:34px;
    }

    .nxr-leed-highlight-box{
        padding:25px;
    }

    .nxr-leed-highlight-box p,
    .nxr-leed-description{
        font-size:16px;
        line-height:1.8;
    }

    .nxr-leed-floating-card{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }
}






/* LEED Feature Row */

.nxr-leed-features-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:70px;
}

.nxr-leed-feature-item{
    background:#ffffff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid #e6ece8;
}

.nxr-leed-feature-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.nxr-leed-feature-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:#e7f4ec;
}

.nxr-leed-feature-item h4{
    font-size:22px;
    font-weight:700;
    color:#06261d;
    margin-bottom:12px;
}

.nxr-leed-feature-item p{
    margin:0;
    color:#6a7d77;
    line-height:1.7;
}

/* Tablet */

@media(max-width:991px){

    .nxr-leed-features-row{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .nxr-leed-features-row{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:50px;
    }

    .nxr-leed-feature-item{
        padding:25px;
    }

}.nxr-green-features{
    padding:60px 0;
    background:#ffffff;
}

.nxr-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.nxr-feature-card{
    background:#fff;
    border:1px solid #d8e7dc;
    border-top:4px solid #30b0e3;
    border-radius:16px;
    padding:35px;
    transition:.4s ease;
    height:100%;
}

.nxr-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.nxr-feature-icon{
    width:55px;
    height:55px;
    background:#edf4ef;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.nxr-feature-icon i{
    color:#30b0e3;
    font-size:24px;
}

.nxr-feature-card h3{
    font-size:28px;
    font-weight:700;
    color:#031f18;
    margin-bottom:20px;
    line-height:1.3;
}

.nxr-feature-card ul{
    margin:0;
    padding-left:22px;
}

.nxr-feature-card ul li{
    color:#000000;
    font-size:18px;
    line-height:1.8;
    margin-bottom:8px;
}

/* Tablet */
@media(max-width:991px){

    .nxr-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .nxr-feature-card h3{
        font-size:24px;
    }

}

/* Mobile */
@media(max-width:767px){

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

    .nxr-feature-card{
        padding:25px;
    }

    .nxr-feature-card h3{
        font-size:22px;
    }

    .nxr-feature-card ul li{
        font-size:16px;
    }

}





/*=========================
 HSE / OSHA SECTION
==========================*/

.hsex-section{
    background:#36b6e7;
    padding:60px 0;
    position:relative;
}

.hsex-header{
    margin-bottom:40px;
}

.hsex-subtitle{
    display:block;
    color:#ffffff;
    font-size:12px;
    letter-spacing:4px;
    font-weight:700;
    margin-bottom:15px;
}

.hsex-header h2{
    color:#fff;
    font-size:50px;
    font-weight:800;
    margin-bottom:10px;
}

.hsex-line{
    width:60px;
    height:3px;
    background:#ffffff;
}

/* Banner */

.hsex-banner{
    background:#000000;
    border-radius:16px;
    padding:45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:50px;
}

.hsex-banner-content{
    max-width:650px;
}

.hsex-banner-content h3{
    color:#fff;
    font-size:48px;
    margin-bottom:15px;
}

.hsex-banner-content p{
    color:#d7efe1;
    line-height:1.8;
    font-size:18px;
}

.hsex-stats{
    display:flex;
    gap:70px;
}

.hsex-stat h4{
    color:#fff;
    font-size:70px;
    margin:0;
    line-height:1;
}

.hsex-stat span{
    color:#cbe8d8;
    font-size:12px;
    letter-spacing:2px;
}

/* Description */

.hsex-description{
    max-width:900px;
    margin-bottom:50px;
}

.hsex-description p{
    color:#ffffff;
    line-height:2;
    font-size:18px;
}

/* Cards */

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

.hsex-card{
    background:#fff;
    border-radius:8px;
    padding:25px;
    border-left:4px solid #000000;
    transition:.4s;
}

.hsex-card:hover{
    transform:translateY(-8px);
}

.hsex-icon{
    width:45px;
    height:45px;
    background:#edf3ff;
    color:#1e88ff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:20px;
}

.hsex-card h3{
    font-size:16px;
    color:#111;
    margin-bottom:15px;
    line-height:1.4;
}

.hsex-card ul{
    padding-left:18px;
    margin:0;
}

.hsex-card ul li{
    color:#000000;
    line-height:1.8;
    margin-bottom:6px;
}

/* Tablet */

@media(max-width:1199px){

    .hsex-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hsex-banner{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* Mobile */

@media(max-width:767px){

    .hsex-section{
        padding:70px 0;
    }

    .hsex-header h2{
        font-size:38px;
    }

    .hsex-banner{
        padding:30px;
    }

    .hsex-banner-content h3{
        font-size:30px;
    }

    .hsex-stats{
        gap:30px;
    }

    .hsex-stat h4{
        font-size:42px;
    }

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

    .hsex-card h3{
        font-size:18px;
    }
}







/* ==========================
   HSE FRAMEWORK SECTION
========================== */

.hcf-framework-section{
    padding:60px 0;
    background:#f7f9f7;
}

.hcf-header{
    max-width:950px;
    margin-bottom:30px;
}

.hcf-subtitle{
    display:block;
    color:#36b6e7;
    font-size:13px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hcf-title{
    font-size: 50px;
    font-weight:900;
    color:#031d17;
    line-height:1.1;
    margin-bottom:20px;
}

.hcf-line{
    width:65px;
    height:4px;
    background:#36b6e7;
    margin-bottom:40px;
}

.hcf-description{
    font-size:16px;
    line-height:1.9;
    color:#000000;
    max-width:1100px;
}

/* Grid */

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

.hcf-card{
    background:#eaf2ed;
    border:1px solid #b9dcca;
    border-radius:14px;
    padding: 15px;
    display:flex;
    align-items:flex-start;
    gap:16px;
    /* min-height:120px; */
    transition:.4s;
}

.hcf-card:hover{
    transform:translateY(-6px);
    background:#ffffff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.hcf-icon{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:50%;
    background:#36b6e7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}

.hcf-card h3{
    font-size:15px;
    line-height:1.6;
    color:#143129;
    margin:0;
    font-weight:500;
}

/* Tablet */

@media(max-width:1199px){

    .hcf-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hcf-description{
        font-size:19px;
    }
}

/* Mobile */

@media(max-width:767px){

    .hcf-framework-section{
        padding:70px 0;
    }

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

    .hcf-title{
        font-size:38px;
    }

    .hcf-description{
        font-size:16px;
        line-height:1.8;
    }

    .hcf-card{
        padding:22px;
        min-height:auto;
    }

    .hcf-card h3{
        font-size:16px;
    }
}




.nx-career-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#02111f,#04192d,#02111f);
    padding:170px 6% 70px;
    min-height:100vh;
}

.nx-grid-overlay{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:75px 75px;
    pointer-events:none;
}

.nx-career-container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
}

.nx-career-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2f7bff;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    margin-bottom:30px;
}

.nx-career-tag::before{
    content:"";
    width:30px;
    height:2px;
    background:#2f7bff;
}

.nx-career-title{
    font-size:50px;
    line-height:1.05;
    font-weight:800;
    color:#fff;
    margin-bottom:30px;
}

.nx-career-title span{
    display:block;
    color:#2f7bff;
}

.nx-career-subtitle{
    font-size: 16px;
    line-height:1.6;
    font-weight:400;
    color:#8e97a5;
    margin-bottom:35px;
    max-width:850px;
}

.nx-career-text{
    font-size:16px;
    line-height:1.8;
    color:#9ca7b6;
    max-width:800px;
    margin-bottom:40px;
}

.nx-career-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2f7bff;
    color:#fff;
    text-decoration:none;
    padding:10px 15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    border-radius:6px;
    transition:.4s;
    font-size: 13px;
}

.nx-career-btn:hover{
    background:#1d63db;
    transform:translateY(-3px);
}

.nx-feature-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:rgba(18,35,58,0.85);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    overflow:hidden;
    backdrop-filter:blur(10px);
}

.nx-feature-item{
    padding:10px 15px;
    color:#fff;
    font-size:16px;
    line-height:1.6;
    border-right:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nx-feature-item:nth-child(3n){
    border-right:none;
}

.nx-feature-item:nth-last-child(-n+3){
    border-bottom:none;
}

/* Responsive */

@media(max-width:1200px){

    .nx-career-title{
        font-size:60px;
    }

    .nx-career-subtitle{
        font-size:26px;
    }

    .nx-career-container{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .nx-career-hero{
        padding:70px 20px;
    }

    .nx-career-title{
        font-size:42px;
    }

    .nx-career-subtitle{
        font-size:22px;
        line-height:1.5;
    }

    .nx-career-text{
        font-size:16px;
    }

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

    .nx-feature-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .nx-feature-item:last-child{
        border-bottom:none;
    }
}











/* ==========================
   BENEFITS SECTION
========================== */

.nxb-benefits-section{
    padding:60px 5%;
    background:#f5f7fb;
}

.nxb-benefits-header{
    margin-bottom:50px;
}

.nxb-benefits-tag{
    display:block;
    color:#2c6cff;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.nxb-benefits-title{
    font-size:50px;
    line-height:1.1;
    font-weight:800;
    color:#0b1324;
    margin:0;
}

.nxb-benefits-line{
    width:55px;
    height:4px;
    background:#2c6cff;
    margin-top:18px;
}

.nxb-benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.nxb-benefit-card{
    background:#dfe5ef;
    border:1px solid #a9c7ff;
    border-top:3px solid #2c6cff;
    border-radius:12px;
    padding:28px;
    transition:.35s ease;
    min-height:320px;
}

.nxb-benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.nxb-benefit-icon{
    width:48px;
    height:48px;
    background:#d2dbeb;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#2c6cff;
    margin-bottom:25px;
}

.nxb-benefit-card h3{
    font-size:28px;
    font-weight:700;
    color:#0b1324;
    margin-bottom:18px;
}

.nxb-benefit-card ul{
    margin:0;
    padding-left:18px;
}

.nxb-benefit-card ul li{
    color:#4c5970;
    font-size:16px;
    line-height:1.9;
    margin-bottom:2px;
}

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

@media(max-width:991px){

    .nxb-benefits-grid{
        grid-template-columns:1fr;
    }

    .nxb-benefit-card{
        min-height:auto;
    }

    .nxb-benefits-title{
        font-size:42px;
    }
}

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

@media(max-width:576px){

    .nxb-benefits-section{
        padding:70px 20px;
    }

    .nxb-benefits-title{
        font-size:32px;
    }

    .nxb-benefit-card{
        padding:22px;
    }

    .nxb-benefit-card h3{
        font-size:24px;
    }

    .nxb-benefit-card ul li{
        font-size:15px;
        line-height:1.8;
    }
}











/* ===========================
   NEXRO LIFE SECTION
=========================== */

.nxlife-section{
    position:relative;
    padding:60px 5%;
    background:linear-gradient(
        90deg,
        #011223 0%,
        #02172a 50%,
        #011223 100%
    );
    overflow:hidden;
}

/* Grid Background */

.nxlife-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:80px 80px;
    pointer-events:none;
}

.nxlife-container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
}

.nxlife-heading{
    margin-bottom:40px;
}

.nxlife-tag{
    display:block;
    color:#2f7bff;
    font-size:12px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.nxlife-heading h2{
    color:#fff;
    font-size:50px;
    font-weight:800;
    line-height:1.1;
    margin:0;
}

.nxlife-line{
    width:45px;
    height:4px;
    background:#2f7bff;
    margin-top:18px;
}

/* Grid */

.nxlife-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* Cards */

.nxlife-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 22px;
    min-height:72px;

    background:rgba(28,42,58,0.85);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:10px;

    transition:.35s ease;
}

.nxlife-card:hover{
    transform:translateY(-5px);
    border-color:#2f7bff;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.nxlife-icon{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#173764;
    color:#2f7bff;

    border-radius:8px;
    font-size:20px;
    flex-shrink:0;
}

.nxlife-card span{
    color:#ffffff;
    font-size:18px;
    font-weight:500;
    line-height:1.4;
}

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

@media(max-width:991px){

    .nxlife-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .nxlife-heading h2{
        font-size:48px;
    }
}

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

@media(max-width:767px){

    .nxlife-section{
        padding:70px 20px;
    }

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

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

    .nxlife-card{
        min-height:auto;
        padding:16px;
    }

    .nxlife-card span{
        font-size:16px;
    }

    .nxlife-icon{
        width:38px;
        height:38px;
        font-size:18px;
    }
}










/*=========================
 CURRENT OPENINGS
==========================*/

.nx-openings-section{
    padding:90px 5%;
    background:#f7faff;
}

.nx-openings-heading{
    margin-bottom:40px;
}

.nx-openings-tag{
    display:block;
    color:#2563eb;
    font-size:12px;
    letter-spacing:4px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}

.nx-openings-heading h2{
    font-size:52px;
    color:#0f172a;
    margin:0;
    font-weight:800;
}

.nx-openings-line{
    width:60px;
    height:4px;
    background:#2563eb;
    margin-top:15px;
}

.nx-job-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* Card */

.nx-job-card{
    background:#fff;
    border:1px solid #dbe6f5;
    border-left:4px solid #2563eb;
    border-radius:12px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    transition:.35s;
}

.nx-job-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(37,99,235,.08);
}

.nx-job-content h3{
    margin:0 0 15px;
    color:#0f172a;
    font-size:24px;
    font-weight:700;
}

.nx-job-meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.nx-job-meta span{
    background:#eef4ff;
    color:#2563eb;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.nx-job-content ul{
    margin:0;
    padding-left:18px;
}

.nx-job-content ul li{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}

.nx-apply-btn{
    min-width:140px;
    text-align:center;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
    align-self:center;
}

.nx-apply-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .nx-openings-heading h2{
        font-size:42px;
    }

    .nx-job-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .nx-apply-btn{
        width:100%;
    }
}

/* Mobile */

@media(max-width:767px){

    .nx-openings-section{
        padding:70px 20px;
    }

    .nx-openings-heading h2{
        font-size:32px;
    }

    .nx-job-card{
        padding:22px;
    }

    .nx-job-content h3{
        font-size:20px;
    }

    .nx-job-content ul li{
        font-size:14px;
    }
}










/*==========================
 Employee Benefits Section
==========================*/

.nvx-benefits-section{
    background:#091521;
    padding:90px 70px;
    font-family:Arial,Helvetica,sans-serif;
}

.nvx-benefits-container{
    max-width:1400px;
    margin:auto;
}

.nvx-benefits-heading{
    margin-bottom:55px;
}

.nvx-benefits-subtitle{
    display:inline-block;
    color:#2d73ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.nvx-benefits-heading h2{
    color:#fff;
    font-size:50px;
    font-weight:800;
    line-height:1.1;
    margin:0;
}

.nvx-benefits-line{
    width:55px;
    height:4px;
    background:#2d73ff;
    margin-top:20px;
    border-radius:10px;
}

.nvx-benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.nvx-benefit-card{
    background:#1b2633;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.35s;
    min-height:110px;
}

.nvx-benefit-card:hover{
    transform:translateY(-8px);
    border-color:#2d73ff;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.nvx-benefit-icon{
    width:54px;
    height:54px;
    background:#1d3f75;
    color:#2d73ff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    font-size:28px;
    flex-shrink:0;
    font-weight:700;
}

.nvx-benefit-card h3{
    color:#f2f2f2;
    font-size:18px;
    font-weight:500;
    line-height:1.5;
    margin:0;
}

/*==========================
 Responsive
==========================*/

@media(max-width:1400px){

    .nvx-benefits-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:1100px){

    .nvx-benefits-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .nvx-benefits-heading h2{
        font-size:50px;
    }

}

@media(max-width:768px){

    .nvx-benefits-section{
        padding:70px 15px;
    }

    .nvx-benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .nvx-benefits-heading h2{
        font-size:40px;
    }

}

@media(max-width:576px){

    .nvx-benefits-grid{
        grid-template-columns:1fr;
    }

    .nvx-benefits-heading h2{
        font-size:32px;
    }

    .nvx-benefit-card{
        padding:22px;
        min-height:auto;
    }

    .nvx-benefit-icon{
        width:48px;
        height:48px;
        font-size:22px;
    }

    .nvx-benefit-card h3{
        font-size:16px;
    }

}







/*==========================
Hiring Process
==========================*/

.nx-hiring-section{
    padding:60px 70px;
    background:#fff;
    font-family:Arial,Helvetica,sans-serif;
}

.nx-hiring-container{
    max-width:1400px;
    margin:auto;
}

.nx-title-wrap{
    margin-bottom:70px;
}

.nx-subtitle{
    display:block;
    color:#2b66d9;
    font-size:13px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.nx-title-wrap h2,
.nx-program-section h2{
    font-size:50px;
    line-height:1.1;
    font-weight:800;
    color:#081321;
    margin:0;
}

.nx-line{
    width:55px;
    height:4px;
    background:#2b66d9;
    margin-top:20px;
    border-radius:30px;
}

/* Timeline */

.nx-process-wrapper{
    position:relative;
    display:flex;
    justify-content:space-between;
    margin:70px 0 120px;
}

.nx-process-line{
    position:absolute;
    left:0;
    right:0;
    top:27px;
    height:3px;
    background:#d7e5ff;
    z-index:1;
}

.nx-process-step{
    position:relative;
    z-index:2;
    width:20%;
    text-align:center;
}

.nx-step-circle{
    width:56px;
    height:56px;
    margin:auto;
    border-radius:50%;
    background:#2b66d9;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
}

.nx-process-step h4{
    margin-top:22px;
    font-size:18px;
    color:#081321;
    line-height:1.5;
    font-weight:700;
}

/* Internship */

.nx-program-section{
    /* max-width:900px; */
}

.nx-program-section p{
    font-size:20px;
    color:#4d5d76;
    line-height:1.8;
    margin:40px 0;
}

.nx-tags{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.nx-tags span{
    padding:15px 28px;
    border-radius:40px;
    background:#edf9f7;
    border:1px solid #b9e4df;
    color:#11796b;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.nx-tags span:hover{
    background:#2b66d9;
    color:#fff;
    border-color:#2b66d9;
}

/*=============
Responsive
=============*/

@media(max-width:992px){

.nx-title-wrap h2,
.nx-program-section h2{
    font-size:46px;
}

.nx-process-step h4{
    font-size:16px;
}

.nx-program-section p{
    font-size:18px;
}

}

@media(max-width:768px){

.nx-process-wrapper{
    flex-direction:column;
    gap:45px;
    margin-bottom:80px;
}

.nx-process-line{
    left:27px;
    top:0;
    width:3px;
    height:100%;
}

.nx-process-step{
    width:100%;
    display:flex;
    align-items:center;
    text-align:left;
    gap:20px;
}

.nx-process-step h4{
    margin-top:0;
}

.nx-title-wrap h2,
.nx-program-section h2{
    font-size:38px;
}

.nx-program-section p{
    font-size:16px;
}

.nx-tags span{
    font-size:15px;
    padding:12px 20px;
}

}

@media(max-width:576px){

.nx-hiring-section{
    padding:70px 15px;
}

.nx-title-wrap h2,
.nx-program-section h2{
    font-size:30px;
}

.nx-step-circle{
    width:48px;
    height:48px;
    font-size:20px;
}

.nx-process-line{
    left:23px;
}

.nx-tags{
    gap:12px;
}

.nx-tags span{
    width:100%;
    text-align:center;
}

}











/*=========================
 CTA Section
==========================*/

.nxr-cta-section{
    position:relative;
    overflow:hidden;
    background:#255bb7;
    padding:60px 20px;
}

/* Diagonal Pattern */

.nxr-cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.05) 0px,
        rgba(255,255,255,.05) 2px,
        transparent 2px,
        transparent 34px
    );
    pointer-events:none;
}

.nxr-cta-container{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.nxr-cta-title{
    font-size:50px;
    line-height:1.05;
    color:#fff;
    font-weight:800;
    margin:0;
}

.nxr-cta-text{
    max-width:720px;
    margin:30px auto 45px;
    font-size:16px;
    color:rgba(255,255,255,.88);
    line-height:1.8;
}

.nxr-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:10px 2%;
    background:#fff;
    color:#18489f;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    border-radius:8px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.nxr-cta-btn i{
    font-size:24px;
}

.nxr-cta-btn:hover{
    background:#0f2d66;
    color:#fff;
    transform:translateY(-5px);
}

/*====================
Responsive
====================*/

@media(max-width:992px){

.nxr-cta-title{
    font-size:52px;
}

.nxr-cta-text{
    font-size:19px;
}

}

@media(max-width:768px){

.nxr-cta-section{
    padding:80px 20px;
}

.nxr-cta-title{
    font-size:42px;
}

.nxr-cta-text{
    font-size:16px;
    line-height:1.7;
}

.nxr-cta-btn{
    width:100%;
    max-width:430px;
    font-size:18px;
    padding:18px 20px;
}

}

@media(max-width:480px){

.nxr-cta-title{
    font-size:34px;
}

.nxr-cta-text{
    font-size:16px;
}

.nxr-cta-btn{
    font-size:15px;
    gap:10px;
    padding:16px;
    word-break:break-word;
}

.nxr-cta-btn i{
    font-size:18px;
}

}








/*==========================
 Industries Section
==========================*/

.nx-industry-section{
    background:#081522;
    padding:170px 60px 60px;
    position:relative;
    overflow:hidden;
    font-family:Arial,Helvetica,sans-serif;
}

/* Background Grid */

.nx-industry-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(45,115,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,115,255,.06) 1px, transparent 1px);

    background-size:100px 100px;

    pointer-events:none;
}

.nx-industry-container{
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.nx-industry-heading{
    max-width:760px;
}

.nx-industry-subtitle{
    display:flex;
    align-items:center;
    gap:12px;
    color:#2d73ff;
    font-size:13px;
    letter-spacing:5px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:25px;
}

.nx-industry-line{
    width:40px;
    height:3px;
    background:#2d73ff;
    display:block;
}

.nx-industry-heading h2{
    color:#fff;
    font-size:50px;
    line-height:1;
    font-weight:900;
    margin:0;
}

.nx-industry-heading h2 span{
    color:#2d73ff;
}

.nx-industry-heading p{
    color:#9ca8b8;
    font-size:16px;
    line-height:1.9;
    margin-top:30px;
}

/*======================
Tags
=======================*/

.nx-industry-tags{

    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-top:55px;

}

.nx-industry-tags a{

    text-decoration:none;
    color:#cfd8e5;
    border:1px solid #18478d;

    padding:8px 10px;

    font-size:15px;
    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

}

.nx-industry-tags a:hover{

    background:#2d73ff;
    color:#fff;
    border-color:#2d73ff;

}

.nx-industry-tags a.active{

    border:1px solid #2d73ff;
    color:#2d73ff;
    background:rgba(45,115,255,.08);

}

/*=====================
Responsive
======================*/

@media(max-width:992px){

.nx-industry-heading h2{

font-size:60px;

}

.nx-industry-heading p{

font-size:18px;

}

}

@media(max-width:768px){

.nx-industry-section{

padding:70px 15px;

}

.nx-industry-heading h2{

font-size:46px;

}

.nx-industry-heading p{

font-size:16px;
line-height:1.8;

}

.nx-industry-tags{

gap:12px;

}

.nx-industry-tags a{

padding:12px 18px;
font-size:14px;

}

}

@media(max-width:480px){

.nx-industry-heading h2{

font-size:36px;

}

.nx-industry-heading p{

font-size:16px;

}

.nx-industry-tags a{

width:100%;
text-align:center;

}

}











*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#f7f8fb;
color:#0f1d35;
}

.vx-sector-wrapper{
padding:60px 60px 20px;
}

.vx-sector-container{
max-width:1300px;
margin:auto;
background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.vx-sector-subtitle{
font-size:12px;
letter-spacing:4px;
font-weight:700;
color:#2b63ff;
display:block;
margin-bottom:18px;
}

.vx-sector-title{
font-size:40px;
font-weight:800;
line-height:1.1;
max-width:900px;
}

.vx-sector-line{
width:70px;
height:4px;
background:#2b63ff;
margin:25px 0 45px;
}

.vx-sector-card{
background:#fff;
border:1px solid #e5e9f2;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.vx-sector-top{
display:flex;
align-items:center;
gap:22px;
padding:20px 30px;
border-bottom:1px solid #edf1f7;
}

.vx-sector-icon{
width:56px;
height:56px;
border-radius:15px;
background:#eef4ff;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#2b63ff;
flex-shrink:0;
}

.vx-sector-info h3{
font-size:20px;
font-weight:800;
margin-bottom:8px;
}

.vx-sector-info p{
font-size:13px;
color:#5f6783;
line-height:1.7;
}

.vx-sector-content{
display:grid;
grid-template-columns:2fr 1fr 1fr;
}

.vx-sector-column{
padding:35px;
border-right:1px solid #edf1f7;
}

.vx-sector-column:last-child{
border-right:none;
}

.vx-sector-column h5{
font-size:12px;
letter-spacing:3px;
color:#2b63ff;
margin-bottom:25px;
font-weight:700;
}

.vx-sector-column ul{
list-style:none;
}

.vx-sector-column li{
margin-bottom:16px;
font-size:16px;
color:#4e5773;
position:relative;
padding-left:18px;
line-height:1.5;
}

.vx-sector-column li::before{
content:"›";
position:absolute;
left:0;
top:-4px;
color:#2b63ff;
font-size:20px;
font-weight:bold;
}

.vx-sector-brands{
padding:28px 35px;
border-top:1px solid #edf1f7;
background:#fbfcff;
}

.vx-sector-brands h5{
font-size:12px;
letter-spacing:3px;
margin-bottom:28px;
color:#999;
font-weight:700;
}

.vx-brand-list{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:25px;
}

.vx-brand-list span{
font-size:18px;
font-weight:700;
color:#b3b3b3;
}

/* Tablet */

@media(max-width:992px){

.vx-sector-title{
font-size:42px;
}

.vx-sector-content{
grid-template-columns:1fr;
}

.vx-sector-column{
border-right:none;
border-bottom:1px solid #edf1f7;
}

.vx-sector-column:last-child{
border-bottom:none;
}

.vx-brand-list{
justify-content:center;
}

}

/* Mobile */

@media(max-width:768px){

.vx-sector-wrapper{
padding:60px 15px;
}

.vx-sector-title{
font-size:32px;
}

.vx-sector-top{
flex-direction:column;
align-items:flex-start;
}

.vx-sector-info h3{
font-size:26px;
}

.vx-sector-info p{
font-size:15px;
}

.vx-sector-column{
padding:25px;
}

.vx-sector-column li{
font-size:15px;
}

.vx-brand-list{
gap:18px;
justify-content:flex-start;
}

.vx-brand-list span{
font-size:15px;
}

}



/*==============================
 NETWORK SECTION
===============================*/

.nxr-network-section{
    background:#071226;
    padding:150px 0 60px;
    position:relative;
    overflow:hidden;
}

/* Grid Background */

.nxr-network-section:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size:64px 64px;
    pointer-events:none;
}

.nxr-container{
    width:100%;
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

.nxr-content{
    width:100%;
}

 

.nxr-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

/* Subtitle */

.nxr-subtitle{
    display:flex;
    align-items:center;
    gap:12px;
    color:#42e8ff;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:25px;
}

.nxr-subtitle span{
    width:35px;
    height:2px;
    background:#42e8ff;
}

/* Title */

.nxr-title{
    color:#fff;
    font-size:35px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:30px;
}

/* Description */

.nxr-description{
    color:#93a3bd;
    font-size:15px;
    line-height:1.9;
    margin-bottom:22px;
}

/* Highlight */

.nxr-highlight{
    border-left:4px solid #3e7cff;
    padding-left:22px;
    color:#b8c4d7;
    font-size:16px;
    line-height:1.7;
    font-style:italic;
    margin:45px 0;
}

/* Button */

.nxr-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:10px 22px;
    background:#3f7bf4;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.nxr-btn:hover{
    background:#2b64d5;
    transform:translateY(-4px);
}

.nxr-btn span{
    transition:.3s;
}

.nxr-btn:hover span{
    transform:translateX(6px);
}

/* Responsive */

@media(max-width:1200px){

.nxr-title{
    font-size:48px;
}

.nxr-description{
    font-size:18px;
}

.nxr-highlight{
    font-size:22px;
}

}

@media(max-width:991px){

.nxr-container{
    flex-direction:column;
}

.nxr-content,
.nxr-image{
    width:100%;
}

.nxr-title{
    font-size:42px;
}

.nxr-description{
    font-size:16px;
}

.nxr-highlight{
    font-size:20px;
}

}

@media(max-width:600px){

.nxr-network-section{
    padding:150px 20px;
}

.nxr-title{
    font-size:34px;
}

.nxr-description{
    font-size:16px;
}

.nxr-highlight{
    font-size:18px;
}

.nxr-btn{
    width:100%;
    justify-content:center;
    font-size:18px;
    padding:18px;
}

}
















.nxsol-section{
    background:#ffffff;
    padding:60px 0;
    position:relative;
    overflow:hidden;
}
.fa-check-circle{
    color:#5d72ff;
}

.nxsol-section:before{
    content:"";
    position:absolute;
    inset:0;
     border-top:1px solid #1e3a6e;
}

.nxsol-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.nxsol-left{
    flex:1;
}

.nxsol-left img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.nxsol-right{
    flex:1;
}

.nxsol-count{
    color:#75839d;
    letter-spacing:4px;
    font-size:14px;
    display:block;
    margin-bottom:25px;
}

.nxsol-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.nxsol-icon{
    width:62px;
    height:62px;
    border-radius:12px;
    background:#0b2146;
    border:1px solid #2f62ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#4f8cff;
    font-size:28px;
}

.nxsol-heading h2{
    color:#000000;
     padding:6px 12px;
    font-size:26px;
    line-height:1.2;
    font-weight:700;
    margin:0;
}

.nxsol-text{
    color:#000000;
    font-size:16px;
    line-height:1.8;
    margin-bottom:40px;
}

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

.nxsol-box{
    background:#122342;
    border:1px solid #234e94;
    border-radius:12px;
    padding:16px 15px;
    color:#fff;
    font-size:13px;
    font-weight:500;
    transition:.3s;
}

.nxsol-box:hover{
    background:#1b3564;
    transform:translateY(-5px);
    border-color:#3d7cff;
}

@media(max-width:991px){

.nxsol-container{
    flex-direction:column;
}

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

.nxsol-text{
    font-size:18px;
}

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

}

@media(max-width:600px){

.nxsol-heading{
    flex-direction:column;
    align-items:flex-start;
}

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

.nxsol-box{
    font-size:16px;
    padding:18px;
}

.nxsol-text{
    font-size:16px;
}

}









.nxdc-services-wrapper{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    background:#fff;
 }

.nxdc-service-item{
    padding:35px 30px;
    border-right:1px solid #e6e6e6;
}

.nxdc-service-item:last-child{
    border-right:0;
}

.nxdc-service-item h5{
    font-size:12px;
    color:#1d5cff;
    text-transform:uppercase;
    letter-spacing:3px;
    margin:0 0 22px;
    font-weight:700;
}

.nxdc-subtitle{
    margin-top:30px !important;
}

.nxdc-service-item ul{
    margin:0;
    padding:0;
    list-style:none;
}

.nxdc-service-item ul li{
    position:relative;
    padding-left:16px;
    margin-bottom:12px;
    font-size:16px;
    color:#49566d;
    line-height:1.6;
}

.nxdc-service-item ul li:before{
    content:"›";
    position:absolute;
    left:0;
    top:0;
    color:#1d5cff;
    font-size:18px;
    font-weight:700;
}

.nxdc-service-item ul li:last-child{
    margin-bottom:0;
}

/* Tablet */

@media(max-width:1200px){

.nxdc-services-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:767px){

.nxdc-services-wrapper{
    grid-template-columns:1fr;
}

.nxdc-service-item{
    border-right:0;
    border-bottom:1px solid #e6e6e6;
}

.nxdc-service-item:last-child{
    border-bottom:0;
}

}











.nxrv-benefit-section{
    background:#071320;
    padding:90px 0;
}

.nxrv-container{
    width:90%;
    max-width:1500px;
    margin:auto;
}

.nxrv-subtitle{
    display:block;
    color:#2b6dff;
    font-size:12px;
    letter-spacing:6px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:20px;
}

.nxrv-title{
    color:#fff;
    font-size:45px;
    line-height:1.1;
    font-weight:800;
    margin:0;
}

.nxrv-line{
    display:block;
    width:48px;
    height:3px;
    background:#2b6dff;
    margin:20px 0 35px;
}

.nxrv-desc{
    max-width:760px;
    color:#a6b0bd;
    font-size:16px;
    line-height:1.9;
    margin-bottom:55px;
}

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

.nxrv-card{
    background:#17232f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    padding:22px 25px;
    display:flex;
    align-items:center;
    gap:14px;
    transition:.35s;
    min-height:82px;
}

.nxrv-card:hover{
    transform:translateY(-6px);
    border-color:#2b6dff;
    background:#1d2c3d;
}

.nxrv-check{
    width:24px;
    height:24px;
    min-width:24px;
    border-radius:50%;
    background:#2b6dff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:11px;
}

.nxrv-card h4{
    color:#fff;
    font-size:15px;
    line-height:1.5;
    font-weight:500;
    margin:0;
}

/* Laptop */

@media(max-width:1400px){

.nxrv-grid{
    grid-template-columns:repeat(4,1fr);
}

}

/* Tablet */

@media(max-width:992px){

.nxrv-grid{
    grid-template-columns:repeat(2,1fr);
}

.nxrv-title{
    font-size:42px;
}

}

/* Mobile */

@media(max-width:576px){

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

.nxrv-title{
    font-size:34px;
}

.nxrv-desc{
    font-size:16px;
}

.nxrv-card h4{
    font-size:16px;
}

.brand img {
    width: auto;
    max-width: 200px;
     height: auto;
    object-fit: contain;
}

.navbar {
    min-height: 64px;
    padding: 0;
}

.nxdc-container
 
 {
    padding: 100px 42px 60px;
}

.nx-cabling-content{
    margin-top: 30px;
}
}


.navbar-toggler{
    color: rgb(255 255 255);
    background-color: #188fe2;
}


.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(255 255 255);
}













.vx-brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.vx-brand-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    gap: 30px;
}

.vx-brand-track span {
    flex-shrink: 0;
    border: 1px solid #2b63ff;
}

.vx-brand-track img {
    height: 45px; 
    width: auto;
    display: block;
    object-fit: contain;
}

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

/* Hover par stop */
.vx-brand-track:hover {
    animation-play-state: paused;
}


























:root{
    --nxr-navy:#0a2240;
    --nxr-navy-dark:#081a32;
    --nxr-blue:#4f95ff;
    --nxr-white:#ffffff;
    --nxr-text:#d5dfef;
    --nxr-border:rgba(255,255,255,0.12);
}

/* SECTION */
.nxr-presence-section{
    background:
    radial-gradient(circle at top right,
    rgba(79,149,255,.20),
    transparent 40%),
    linear-gradient(
    90deg,
    #071b37 0%,
    #0c2b56 100%);
    overflow:hidden;
}

/* HERO */
.nxr-presence-hero{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    padding:120px 7%;
}

/* DOTS */
.nxr-presence-dots{
    position:absolute;
    left:80px;
    top:60px;
    width:140px;
    height:120px;
    opacity:.25;
    background-image:
    radial-gradient(
    rgba(255,255,255,.8) 1px,
    transparent 1px);
    background-size:16px 16px;
}

/* CONTENT */
.nxr-presence-content{
    max-width:700px;
    position:relative;
    z-index:2;
}

.nxr-presence-eyebrow{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--nxr-blue);
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.nxr-presence-eyebrow::before{
    content:"";
    width:40px;
    height:2px;
    background:var(--nxr-blue);
}

.nxr-presence-title{
    margin-top:25px;
    color:var(--nxr-white);
    font-size:63px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
}

.nxr-presence-title span{
    color:var(--nxr-blue);
}

.nxr-presence-desc{
    margin-top:30px;
    max-width:620px;
    color:var(--nxr-text);
    font-size:16px;
    line-height:1.9;
}

/* STATS */
.nxr-presence-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--nxr-border);
    background:rgba(255,255,255,.02);
}

.nxr-presence-stat-box{
    padding:50px 20px;
    text-align:center;
    border-right:1px solid var(--nxr-border);
}

.nxr-presence-stat-box:last-child{
    border-right:none;
}

.nxr-presence-stat-box h3{
    color:#fff;
    font-size:36px;
    font-weight:800;
    margin-bottom:12px;
    line-height:1;
}

.nxr-presence-stat-box p{
    color:#c4d3e8;
    font-size:15px;
    letter-spacing:.5px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .nxr-presence-title{
        font-size:55px;
    }

    .nxr-presence-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .nxr-presence-stat-box:nth-child(2){
        border-right:none;
    }
}

@media(max-width:767px){

    .nxr-presence-hero{
        min-height:auto;
        padding:90px 25px;
    }

    .nxr-presence-title{
        font-size:42px;
    }

    .nxr-presence-desc{
        font-size:16px;
    }

    .nxr-presence-stats{
        grid-template-columns:1fr;
    }

    .nxr-presence-stat-box{
        border-right:none;
        border-bottom:1px solid var(--nxr-border);
    }

    .nxr-presence-stat-box:last-child{
        border-bottom:none;
    }

    .nxr-presence-dots{
        left:20px;
        top:20px;
    }
}


/* =========================
   NETWORK SECTION
========================= */

.nxr-network-section{
    background:#f4f8ff;
    position:relative;
    overflow:hidden;
    padding:60px 0;
}

/* Dotted Background */

.nxr-network-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(
        rgba(60,120,220,.12) 1px,
        transparent 1px
    );
    background-size:16px 16px;
    pointer-events:none;
}

.nxr-network-container{
    width:min(1200px);
    margin:auto;
    position:relative;
    z-index:2;
}

/* Header */

.nxr-network-header{
    max-width:700px;
    margin-bottom:50px;
}

.nxr-network-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#4a8cff;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.nxr-network-tag::before{
    content:"";
    width:35px;
    height:2px;
    background:#4a8cff;
}

.nxr-network-title{
    font-size:44px;
    line-height:1.15;
    font-weight:800;
    color:#071c3f;
    margin-top:18px;
    margin-bottom:18px;
}

.nxr-network-description{
    max-width:620px;
    color:#5f7290;
    font-size:17px;
    line-height:1.9;
}

/* Card */

.nxr-network-card{
    background:#ffffff;
    border:1px solid #d9e4f3;
    border-radius:18px;
    padding:20px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.06);
}

/* Map Area */

.nxr-network-map{
    border-radius:14px;
    overflow:hidden;
    background:#eef4fc;
}

.nxr-network-map img{
    width:100%;
    display:block;
}

/* Responsive */

@media(max-width:991px){

    .nxr-network-title{
        font-size:46px;
    }

}

@media(max-width:767px){

    .nxr-network-section{
        padding:40px 0;
    }

    .nxr-network-title{
        font-size:34px;
        line-height:1.25;
    }

    .nxr-network-description{
        font-size:15px;
    }

     

}
 


/*=========================
 LOCATION SECTION
=========================*/

.nxr-location-section{
    padding:60px 0;
    background:#f7f9fc;
}

.nxr-location-heading{
    max-width:760px;
    margin-bottom:70px;
}

.nxr-location-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#2f6fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.nxr-location-tag::before{
    content:"";
    width:30px;
    height:2px;
    background:#2f6fff;
}

.nxr-location-title{
    font-size:46px;
    line-height:1.1;
    color:#08244d;
    font-weight:800;
    margin:22px 0;
}

.nxr-location-text{
    font-size:18px;
    line-height:1.9;
    color:#546987;
    max-width:700px;
}

/* GRID */

.nxr-location-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* CARD */

.nxr-location-card{
    background:#eef4fc;
    border:1px solid #d8e2f0;
    border-radius:22px;
    padding:24px;
    transition:.35s ease;
}

.nxr-location-card:hover{
    transform:translateY(-6px);
}

.nxr-location-card-active{
    background:linear-gradient(
        135deg,
        #071c3f,
        #12345f
    );
    border:none;
}

.nxr-location-card-active h3,
.nxr-location-card-active p{
    color:#fff;
}

.nxr-location-card-active .nxr-location-badge{
    background:rgba(255,255,255,.12);
    color:#61a3ff;
}

.nxr-location-badge{
    display:inline-block;
    background:#dfe8f5;
    color:#256cff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    padding:12px 16px;
    border-radius:12px;
    margin-bottom:22px;
    line-height:1.4;
}

.nxr-location-card h3{
    font-size:18px;
    color:#08244d;
    font-weight:800;
    margin-bottom:14px;
}

.nxr-location-card p{
    color:#5b6f89;
    font-size:13px;
    line-height:1.8;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .nxr-location-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .nxr-location-section{
        padding:40px 0;
    }

    .nxr-location-title{
        font-size:42px;
    }

    .nxr-location-grid{
        grid-template-columns:1fr;
    }

    .nxr-location-card{
        padding:20px;
    }

}



















/*=====================================
 RELIABILITY SECTION
=====================================*/

.nxr-reliability-section{
    background:linear-gradient(
        180deg,
        #041a3a 0%,
        #06214a 100%
    );
    padding:60px 0;
    position:relative;
    overflow:hidden;
}

.nxr-reliability-section::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(
        circle,
        rgba(47,111,255,.12),
        transparent 70%
    );
    pointer-events:none;
}

.nxr-reliability-header{
    max-width:650px;
    margin-bottom:70px;
}

.nxr-reliability-tag{
    display:flex;
    align-items:center;
    gap:14px;
    color:#4f95ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.nxr-reliability-tag::before{
    content:"";
    width:30px;
    height:2px;
    background:#4f95ff;
}

.nxr-reliability-title{
    color:#ffffff;
    font-size:44px;
    font-weight:800;
    line-height:1.1;
    margin-top:24px;
    max-width:650px;
}

/* GRID */

.nxr-reliability-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0 35px;
}

/* CARD */

.nxr-reliability-card{
    padding:38px 0;
    border-top:1px solid rgba(255,255,255,.12);
}

.nxr-reliability-card h3{
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.4;
}

.nxr-reliability-card p{
    color:rgba(255,255,255,.75);
    font-size:17px;
    line-height:1.9;
    margin:0;
}

/* Responsive */

@media(max-width:1200px){

    .nxr-reliability-title{
        font-size:56px;
    }

    .nxr-reliability-grid{
        grid-template-columns:repeat(2,1fr);
        gap:0 30px;
    }
}

@media(max-width:768px){

    .nxr-reliability-section{
        padding:80px 0;
    }

    .nxr-reliability-title{
        font-size:40px;
    }

    .nxr-reliability-grid{
        grid-template-columns:1fr;
    }

    .nxr-reliability-card{
        padding:30px 0;
    }

    .nxr-reliability-card h3{
        font-size:18px;
    }

    .nxr-reliability-card p{
        font-size:15px;
        line-height:1.8;
    }
}










/*====================================
 TEAM HERO SECTION
====================================*/

.nxr-team-hero-section{
    position:relative;
    overflow:hidden;
    min-height:640px;
    display:flex;
    align-items:center;
    padding:150px 0 60px;
    background:
    radial-gradient(
        circle at top right,
        rgba(77,144,255,.18),
        transparent 35%
    ),
    linear-gradient(
        90deg,
        #041b3a 0%,
        #082856 100%
    );
}

/* Container */

.nxr-team-hero-container{
    width:min(1400px,90%);
    margin:auto;
    position:relative;
    z-index:2;
}

/* Dots Pattern */

.nxr-team-hero-dots{
    position:absolute;
    top:-30px;
    left:0;
    width:180px;
    height:120px;
    opacity:.18;
    background-image:
    radial-gradient(
        #ffffff 1.5px,
        transparent 1.5px
    );
    background-size:20px 20px;
}

/* Content */

.nxr-team-hero-content{
    max-width:900px;
}

.nxr-team-hero-tag{
    display:flex;
    align-items:center;
    gap:14px;
    color:#5b9cff;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:30px;
}

.nxr-team-hero-tag::before{
    content:"";
    width:32px;
    height:2px;
    background:#5b9cff;
}

/* Heading */

.nxr-team-hero-title{
    font-size:63px;
    font-weight:800;
    line-height:1.03;
    letter-spacing:-3px;
    color:#ffffff;
    margin:0;
    max-width:950px;
}

.nxr-team-hero-title span{
    color:#5b9cff;
}

/* Description */

.nxr-team-hero-description{
    margin-top:35px;
    max-width:720px;
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.80);
}

/* Responsive */

@media(max-width:1200px){

    .nxr-team-hero-title{
        font-size:72px;
    }
}

@media(max-width:991px){

    .nxr-team-hero-section{
        min-height:auto;
        padding:120px 0;
    }

    .nxr-team-hero-title{
        font-size:58px;
        letter-spacing:-2px;
    }

    .nxr-team-hero-description{
        font-size:18px;
    }
}

@media(max-width:767px){

    .nxr-team-hero-section{
        padding:90px 0;
    }

    .nxr-team-hero-title{
        font-size:42px;
        line-height:1.15;
    }

    .nxr-team-hero-description{
        font-size:16px;
        line-height:1.8;
    }

    .nxr-team-hero-dots{
        width:120px;
        height:90px;
    }
}






















/* ==========================
   TEAM ROLES SECTION
========================== */

.nxr-teamroles-section{
    padding:60px 0;
    background:#fff;
}

.nxr-teamroles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.nxr-teamroles-card{
    background:#eaf0f8;
    border:1px solid #d4dfef;
    border-radius:24px;
    padding:20px 15px;
    display:flex;
    align-items:flex-start;
    gap:24px;
    transition:.35s ease;
}

.nxr-teamroles-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.nxr-teamroles-icon{
    min-width:72px;
    width:72px;
    height:72px;
    background:linear-gradient(180deg,#2868d9,#103b7b);
    clip-path:polygon(
        25% 0%,
        75% 0%,
        100% 50%,
        75% 100%,
        25% 100%,
        0% 50%
    );
    display:flex;
    align-items:center;
    justify-content:center;
}

.nxr-teamroles-icon i{
    color:#fff;
    font-size:28px;
}

.nxr-teamroles-content h3{
    color:#08244d;
    font-size:16px;
    font-weight:800;
    margin-bottom:10px;
    line-height:1.3;
}

.nxr-teamroles-content p{
    color:#4f6482;
    font-size:13px;
    line-height:1.3;
    margin:0;
}

/* Responsive */

@media(max-width:1200px){

    .nxr-teamroles-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .nxr-teamroles-grid{
        grid-template-columns:1fr;
    }

    .nxr-teamroles-card{
        padding:25px;
    }

    .nxr-teamroles-content h3{
        font-size:18px;
    }

    .nxr-teamroles-content p{
        font-size:15px;
    }
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}


/* CTA Section */
.mlr-cta-section{
    background:#001d4a;
    padding:80px 0;
    overflow:hidden;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mlr-cta-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.mlr-cta-content{
    max-width:520px;
}

.mlr-cta-title{
    font-size:26px;
    line-height:1.1;
    font-weight:700;
    color:#ffffff;
    margin:0;
    letter-spacing:-1px;
}

.mlr-cta-btn-wrap{
    flex-shrink:0;
}

.mlr-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2d78f4;
    color:#fff;
    text-decoration:none;
    padding:12px 15px;
    border-radius:16px;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
}

.mlr-cta-btn:hover{
    transform:translateY(-3px);
    background:#4b8cff;
}

.mlr-cta-btn span{
    transition:.3s;
}

.mlr-cta-btn:hover span{
    transform:translateX(5px);
}

/* Tablet */
@media (max-width:991px){

    .mlr-cta-container{
        padding:0 40px;
    }

    .mlr-cta-title{
        font-size:42px;
    }

    .mlr-cta-btn{
        padding:18px 28px;
        font-size:18px;
    }
}

/* Mobile */
@media (max-width:767px){

    .mlr-cta-section{
        padding:60px 0;
    }

    .mlr-cta-container{
        flex-direction:column;
        align-items:flex-start;
        padding:0 20px;
    }

    .mlr-cta-title{
        font-size:32px;
    }

    .mlr-cta-btn{
        padding:16px 26px;
        font-size:17px;
    }
}











