/* ============================================================
   NEXORA – Global Stylesheet
   Prefix: nx- (all custom classes use this prefix)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --nx-primary: #2d5be3;
  --nx-primary-dark: #1a3db5;
  --nx-primary-light: #ebf0fd;
  --nx-accent: #00c6ae;
  --nx-dark: #0d1b3e;
  --nx-dark-2: #1c2f5e;
  --nx-gray: #64748b;
  --nx-gray-light: #f1f5f9;
  --nx-white: #ffffff;
  --nx-bg: #f8faff;
  --nx-font-heading: "Syne", sans-serif;
  --nx-font-body: "DM Sans", sans-serif;
  --nx-radius: 14px;
  --nx-radius-lg: 22px;
  --nx-shadow: 0 4px 24px rgba(45, 91, 227, 0.1);
  --nx-shadow-lg: 0 8px 48px rgba(45, 91, 227, 0.18);
  --nx-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--nx-font-body);
  background: var(--nx-white);
  color: var(--nx-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nx-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 91, 227, 0.08);
  padding: 14px 0;
  transition:
    box-shadow var(--nx-transition),
    background var(--nx-transition);
  z-index: 1000;
}
.nx-navbar.nx-scrolled {
  box-shadow: 0 2px 24px rgba(45, 91, 227, 0.1);
}

.nx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--nx-dark);
}
.nx-brand-icon {
  color: var(--nx-primary);
  font-size: 1.5rem;
  line-height: 1;
}
.nx-brand-text {
  letter-spacing: -0.5px;
}

.nx-nav-links {
  gap: 4px;
}

.nx-nav-link {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nx-dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition:
    color var(--nx-transition),
    background var(--nx-transition);
}
.nx-nav-link:hover,
.nx-nav-link.active {
  color: var(--nx-primary) !important;
  background: var(--nx-primary-light);
}

.nx-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--nx-dark);
  padding: 6px;
  line-height: 1;
  background: transparent;
}
.nx-toggler:focus {
  box-shadow: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.nx-btn-primary {
  background: var(--nx-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition:
    background var(--nx-transition),
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-primary:hover {
  background: var(--nx-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 91, 227, 0.28);
}
.nx-btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}

.nx-btn-outline {
  border: 2px solid var(--nx-primary);
  color: var(--nx-primary);
  border-radius: 10px;
  padding: 11px 26px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  transition: all var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-outline:hover {
  background: var(--nx-primary);
  color: #fff;
  transform: translateY(-2px);
}

.nx-btn-white {
  background: #fff;
  color: var(--nx-primary);
  border: none;
  border-radius: 10px;
  padding: 15px 34px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-white:hover {
  background: var(--nx-primary-light);
  color: var(--nx-primary-dark);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.nx-section-tag {
  display: inline-block;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.nx-section-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--nx-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.nx-section-text {
  color: var(--nx-gray);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 520px;
}
.nx-highlight {
  color: var(--nx-primary);
  position: relative;
}

/* ============================================================
   HERO — exact match to reference screenshot
   ============================================================ */
.nx-hero {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ---- Big curved blue shape on the right ---- */
.nx-hero-bg-curve {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 32%;
  height: 120%;
  background: #1a39d4;
  border-radius: 0 0 0 55% / 0 0 60% 50%;
  z-index: 0;
  pointer-events: none;
}
.nx-hero-bg-curve2 {
  position: absolute;
  top: -74%;
  right: -19%;
  width: 72%;
  height: 120%;
  background: #1a39d4;
  border-radius: 0 0 0 55% / 0 0 60% 50%;
  z-index: 0;
  pointer-events: none;
}

/* ---- Small light-blue oval blob — bottom left ---- */
.nx-hero-blob-left {
  position: absolute;
  bottom: -7%;
  left: -4%;
  width: 340px;
  height: 270px;
  background: #d6e4ff;
  border-radius: 50%;
  opacity: 0.55;
  z-index: 0;
  filter: blur(2px);
}

/* ---- Layout inner wrapper ---- */
.nx-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 60px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ---- LEFT ---- */
.nx-hero-left {
  flex: 0 0 42%;
  max-width: 42%;
  animation: nx-fadeUp 0.7s ease both;
}

.nx-hero-heading {
  font-family: var(--nx-font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: #0d1b3e;
  margin-bottom: 20px;
}
.nx-hero-heading strong {
  font-weight: 800;
  color: #0d1b3e;
}

.nx-hero-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.nx-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a39d4;
  color: #fff;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 6px 22px rgba(26, 57, 212, 0.3);
}
.nx-hero-cta:hover {
  background: #1230b0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 57, 212, 0.38);
}

/* ---- RIGHT ---- */
.nx-hero-right {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nx-fadeRight 0.8s 0.15s ease both;
}

.nx-hero-illus {
  width: 100%;
  max-width: 620px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.18));
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.nx-logos-section {
  background: var(--nx-bg);
  padding: 36px 0;
  overflow: hidden;
}
.nx-logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nx-gray);
  margin-bottom: 20px;
}
.nx-logos-track {
  overflow: hidden;
}
.nx-logos-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: nx-scroll 30s linear infinite;
  width: max-content;
}
.nx-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #94a3b8;
  transition: color var(--nx-transition);
}
.nx-logo-item:hover {
  color: var(--nx-primary);
}
.nx-logo-item i {
  font-size: 1.2rem;
}
@keyframes nx-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.nx-about-teaser {
  background: var(--nx-white);
}

.nx-about-img-grid {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.nx-about-img {
  border-radius: var(--nx-radius-lg);
  object-fit: cover;
}
.nx-about-img--main {
  width: 100%;
  max-width: 420px;
  height: 320px;
  display: block;
  /* box-shadow: var(--nx-shadow-lg); */
}
.nx-about-img--sm {
  width: 160px;
  height: 140px;
  position: absolute;
  bottom: 0;
  right: 0;
  /* box-shadow: var(--nx-shadow); */
}
.nx-about-badge-card {
  position: absolute;
  top: 30px;
  right: 10px;
  background: var(--nx-primary);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(45, 91, 227, 0.28);
}
.nx-abc-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.nx-abc-label {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 4px;
}

.nx-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nx-dark);
}
.nx-check-icon {
  color: var(--nx-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.nx-services-section {
  background: var(--nx-bg);
}

.nx-service-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid transparent;
  transition:
    border-color var(--nx-transition),
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
  position: relative;
  overflow: hidden;
}
.nx-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nx-primary), var(--nx-accent));
  transform: scaleX(0);
  transition: transform var(--nx-transition);
  border-radius: 2px 2px 0 0;
}
.nx-service-card:hover::before {
  transform: scaleX(1);
}
.nx-service-card:hover {
  border-color: rgba(45, 91, 227, 0.12);
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-6px);
}

.nx-service-card--featured {
  background: linear-gradient(
    135deg,
    var(--nx-primary),
    var(--nx-primary-dark)
  );
  color: #fff;
}
.nx-service-card--featured .nx-sc-title,
.nx-service-card--featured .nx-sc-text,
.nx-service-card--featured .nx-sc-link {
  color: rgba(255, 255, 255, 0.9);
}
.nx-service-card--featured .nx-sc-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nx-service-card--featured::before {
  display: none;
}
.nx-service-card--featured:hover {
  transform: translateY(-6px);
}

.nx-sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--nx-transition);
}
.nx-service-card:not(.nx-service-card--featured):hover .nx-sc-icon {
  background: var(--nx-primary);
  color: #fff;
}

.nx-sc-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--nx-dark);
}
.nx-sc-text {
  font-size: 0.9rem;
  color: var(--nx-gray);
  margin-bottom: 20px;
  line-height: 1.65;
}
.nx-sc-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nx-font-heading);
  transition: gap var(--nx-transition);
}
.nx-sc-link:hover {
  gap: 10px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.nx-process-section {
  background: var(--nx-white);
}

.nx-process-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  height: 100%;
  position: relative;
  border: 1.5px solid rgba(45, 91, 227, 0.07);
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition),
    border-color var(--nx-transition);
  overflow: hidden;
}
.nx-process-card:hover {
  box-shadow: var(--nx-shadow);
  transform: translateY(-4px);
  border-color: rgba(45, 91, 227, 0.18);
}

.nx-pc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(45, 91, 227, 0.07);
  line-height: 1;
}
.nx-pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background var(--nx-transition);
}
.nx-process-card:hover .nx-pc-icon {
  background: var(--nx-primary);
  color: #fff;
}
.nx-pc-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin-bottom: 10px;
}
.nx-pc-text {
  font-size: 0.88rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.nx-testimonials-section {
  background: var(--nx-bg);
}

.nx-testi-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid rgba(45, 91, 227, 0.06);
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
}
.nx-testi-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-4px);
}
.nx-testi-card--featured {
  background: linear-gradient(
    135deg,
    var(--nx-primary),
    var(--nx-primary-dark)
  );
  border-color: transparent;
}
.nx-testi-card--featured .nx-testi-stars,
.nx-testi-card--featured .nx-testi-text,
.nx-testi-card--featured .nx-testi-name {
  color: #fff;
}
.nx-testi-card--featured .nx-testi-role {
  color: rgba(255, 255, 255, 0.7);
}

.nx-testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.nx-testi-text {
  font-size: 0.92rem;
  color: var(--nx-gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nx-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nx-primary-light);
}
.nx-testi-name {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--nx-dark);
}
.nx-testi-role {
  font-size: 0.78rem;
  color: var(--nx-gray);
  margin-top: 2px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.nx-blog-preview {
  background: var(--nx-white);
}

.nx-blog-card {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(45, 91, 227, 0.06);
  height: 100%;
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
}
.nx-blog-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-6px);
}

.nx-blog-img-wrap {
  position: relative;
  overflow: hidden;
}
.nx-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.nx-blog-card:hover .nx-blog-img {
  transform: scale(1.05);
}

.nx-blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--nx-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--nx-font-heading);
}

.nx-blog-body {
  padding: 22px 24px;
}
.nx-blog-meta {
  font-size: 0.78rem;
  color: var(--nx-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nx-blog-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--nx-dark);
  line-height: 1.45;
  margin-bottom: 16px;
}
.nx-blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  font-family: var(--nx-font-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--nx-transition);
}
.nx-blog-link:hover {
  gap: 10px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.nx-cta-section {
  padding: 72px 0;
  background: var(--nx-bg);
}
.nx-cta-inner {
  background: linear-gradient(
    135deg,
    var(--nx-primary) 0%,
    var(--nx-dark-2) 100%
  );
  border-radius: var(--nx-radius-lg);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}
.nx-cta-inner::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -80px;
}
.nx-cta-inner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 198, 174, 0.12);
  bottom: -60px;
  left: 60px;
}
.nx-cta-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.nx-cta-highlight {
  color: var(--nx-accent);
}
.nx-cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.nx-cta-section .col-lg-4 {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nx-footer {
  background: var(--nx-dark);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.65);
}
.nx-footer .nx-brand {
  color: #fff;
}
.nx-footer .nx-brand-icon {
  color: var(--nx-accent);
}

.nx-footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
}

.nx-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.nx-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  transition:
    background var(--nx-transition),
    color var(--nx-transition),
    transform var(--nx-transition);
}
.nx-social-link:hover {
  background: var(--nx-primary);
  color: #fff;
  transform: translateY(-3px);
}

.nx-footer-heading {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.nx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nx-footer-links li,
.nx-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--nx-transition);
  display: flex;
  align-items: center;
}
.nx-footer-links a:hover {
  color: var(--nx-accent);
}

.nx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.nx-footer-legal {
  display: flex;
  gap: 24px;
}
.nx-footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--nx-transition);
}
.nx-footer-legal a:hover {
  color: var(--nx-accent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes nx-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nx-fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.nx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.nx-reveal.nx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  .nx-hero-inner {
    flex-direction: column;
    padding: 120px 24px 60px;
  }
  .nx-hero-left,
  .nx-hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nx-hero-right {
    margin-top: 20px;
  }
  .nx-cta-inner {
    padding: 36px 28px;
  }
  .nx-about-img--main {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .nx-hero-heading {
    font-size: 2rem;
  }
  .nx-hero-inner {
    padding: 100px 20px 50px;
  }
  .nx-about-img-grid {
    padding-bottom: 20px;
    padding-right: 0;
  }
  .nx-about-img--sm {
    display: none;
  }
  .nx-about-badge-card {
    display: none;
  }
}
/* ============================================================
   NEXORA – Global Stylesheet
   Prefix: nx- (all custom classes use this prefix)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --nx-primary: #2d5be3;
  --nx-primary-dark: #1a3db5;
  --nx-primary-light: #ebf0fd;
  --nx-accent: #00c6ae;
  --nx-dark: #0d1b3e;
  --nx-dark-2: #1c2f5e;
  --nx-gray: #64748b;
  --nx-gray-light: #f1f5f9;
  --nx-white: #ffffff;
  --nx-bg: #f8faff;
  --nx-font-heading: "Syne", sans-serif;
  --nx-font-body: "DM Sans", sans-serif;
  --nx-radius: 14px;
  --nx-radius-lg: 22px;
  --nx-shadow: 0 4px 24px rgba(45, 91, 227, 0.1);
  --nx-shadow-lg: 0 8px 48px rgba(45, 91, 227, 0.18);
  --nx-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--nx-font-body);
  background: var(--nx-white);
  color: var(--nx-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nx-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 91, 227, 0.08);
  padding: 14px 0;
  transition:
    box-shadow var(--nx-transition),
    background var(--nx-transition);
  z-index: 1000;
}
.nx-navbar.nx-scrolled {
  box-shadow: 0 2px 24px rgba(45, 91, 227, 0.1);
}

.nx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--nx-dark);
}
.nx-brand-icon {
  color: var(--nx-primary);
  font-size: 1.5rem;
  line-height: 1;
}
.nx-brand-text {
  letter-spacing: -0.5px;
}

.nx-nav-links {
  gap: 4px;
}

.nx-nav-link {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nx-dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition:
    color var(--nx-transition),
    background var(--nx-transition);
}
.nx-nav-link:hover,
.nx-nav-link.active {
  color: var(--nx-primary) !important;
  background: var(--nx-primary-light);
}

.nx-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--nx-dark);
  padding: 6px;
  line-height: 1;
  background: transparent;
}
.nx-toggler:focus {
  box-shadow: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.nx-btn-primary {
  background: var(--nx-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition:
    background var(--nx-transition),
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-primary:hover {
  background: var(--nx-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 91, 227, 0.28);
}
.nx-btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}

.nx-btn-outline {
  border: 2px solid var(--nx-primary);
  color: var(--nx-primary);
  border-radius: 10px;
  padding: 11px 26px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  transition: all var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-outline:hover {
  background: var(--nx-primary);
  color: #fff;
  transform: translateY(-2px);
}

.nx-btn-white {
  background: #fff;
  color: var(--nx-primary);
  border: none;
  border-radius: 10px;
  padding: 15px 34px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-white:hover {
  background: var(--nx-primary-light);
  color: var(--nx-primary-dark);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.nx-section-tag {
  display: inline-block;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.nx-section-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--nx-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.nx-section-text {
  color: var(--nx-gray);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 520px;
}
.nx-highlight {
  color: var(--nx-primary);
  position: relative;
}

/* ============================================================
   HERO — exact match to reference screenshot
   ============================================================ */
.nx-hero {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ---- Decorative dots & shapes on blue ---- */
.nx-hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
}
.nx-deco-star {
  top: 14%;
  right: 28%;
  font-size: 1.8rem;
  color: #f5c542;
  opacity: 0.9;
}
.nx-deco-plus--1 {
  top: 22%;
  right: 8%;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
}
.nx-deco-plus--2 {
  bottom: 28%;
  right: 14%;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}
.nx-deco-circle {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.nx-deco-circle--1 {
  width: 14px;
  height: 14px;
  top: 38%;
  right: 10%;
}
.nx-deco-circle--2 {
  width: 10px;
  height: 10px;
  bottom: 35%;
  right: 32%;
}
.nx-deco-square {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transform: rotate(18deg);
}
.nx-deco-square--1 {
  width: 18px;
  height: 18px;
  top: 26%;
  right: 20%;
}
.nx-deco-square--2 {
  width: 22px;
  height: 22px;
  bottom: 20%;
  right: 7%;
  opacity: 0.5;
}
.nx-deco-pie {
  top: 30%;
  right: 4.5%;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Layout inner wrapper ---- */
.nx-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 60px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ---- LEFT ---- */
.nx-hero-left {
  flex: 0 0 42%;
  max-width: 42%;
  animation: nx-fadeUp 0.7s ease both;
}

.nx-hero-heading {
  font-family: var(--nx-font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: #0d1b3e;
  margin-bottom: 20px;
}
.nx-hero-heading strong {
  font-weight: 800;
  color: #0d1b3e;
}

.nx-hero-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.nx-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a39d4;
  color: #fff;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 6px 22px rgba(26, 57, 212, 0.3);
}
.nx-hero-cta:hover {
  background: #1230b0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 57, 212, 0.38);
}

/* ---- RIGHT ---- */
.nx-hero-right {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nx-fadeRight 0.8s 0.15s ease both;
}

.nx-hero-illus {
  width: 100%;
  max-width: 620px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.18));
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.nx-logos-section {
  background: var(--nx-bg);
  padding: 36px 0;
  overflow: hidden;
}
.nx-logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nx-gray);
  margin-bottom: 20px;
}
.nx-logos-track {
  overflow: hidden;
}
.nx-logos-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: nx-scroll 30s linear infinite;
  width: max-content;
}
.nx-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #94a3b8;
  transition: color var(--nx-transition);
}
.nx-logo-item:hover {
  color: var(--nx-primary);
}
.nx-logo-item i {
  font-size: 1.2rem;
}
@keyframes nx-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.nx-about-teaser {
  background: var(--nx-white);
}

.nx-about-img-grid {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.nx-about-img {
  border-radius: var(--nx-radius-lg);
  object-fit: cover;
}

.nx-about-badge-card {
  position: absolute;
  top: 30px;
  right: 10px;
  background: var(--nx-primary);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(45, 91, 227, 0.28);
}
.nx-abc-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.nx-abc-label {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 4px;
}

.nx-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nx-dark);
}
.nx-check-icon {
  color: var(--nx-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.nx-services-section {
  background: var(--nx-bg);
}

.nx-service-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid transparent;
  transition:
    border-color var(--nx-transition),
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
  position: relative;
  overflow: hidden;
}
.nx-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nx-primary), var(--nx-accent));
  transform: scaleX(0);
  transition: transform var(--nx-transition);
  border-radius: 2px 2px 0 0;
}
.nx-service-card:hover::before {
  transform: scaleX(1);
}
.nx-service-card:hover {
  border-color: rgba(45, 91, 227, 0.12);
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-6px);
}

.nx-service-card--featured {
  background: linear-gradient(
    135deg,
    var(--nx-primary),
    var(--nx-primary-dark)
  );
  color: #fff;
}
.nx-service-card--featured .nx-sc-title,
.nx-service-card--featured .nx-sc-text,
.nx-service-card--featured .nx-sc-link {
  color: rgba(255, 255, 255, 0.9);
}
.nx-service-card--featured .nx-sc-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nx-service-card--featured::before {
  display: none;
}
.nx-service-card--featured:hover {
  transform: translateY(-6px);
}

.nx-sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--nx-transition);
}
.nx-service-card:not(.nx-service-card--featured):hover .nx-sc-icon {
  background: var(--nx-primary);
  color: #fff;
}

.nx-sc-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--nx-dark);
}
.nx-sc-text {
  font-size: 0.9rem;
  color: var(--nx-gray);
  margin-bottom: 20px;
  line-height: 1.65;
}
.nx-sc-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nx-font-heading);
  transition: gap var(--nx-transition);
}
.nx-sc-link:hover {
  gap: 10px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.nx-process-section {
  background: var(--nx-white);
}

.nx-process-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  height: 100%;
  position: relative;
  border: 1.5px solid rgba(45, 91, 227, 0.07);
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition),
    border-color var(--nx-transition);
  overflow: hidden;
}
.nx-process-card:hover {
  box-shadow: var(--nx-shadow);
  transform: translateY(-4px);
  border-color: rgba(45, 91, 227, 0.18);
}

.nx-pc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(45, 91, 227, 0.07);
  line-height: 1;
}
.nx-pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background var(--nx-transition);
}
.nx-process-card:hover .nx-pc-icon {
  background: var(--nx-primary);
  color: #fff;
}
.nx-pc-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin-bottom: 10px;
}
.nx-pc-text {
  font-size: 0.88rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.nx-testimonials-section {
  background: var(--nx-bg);
}

.nx-testi-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid rgba(45, 91, 227, 0.06);
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
}
.nx-testi-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-4px);
}
.nx-testi-card--featured {
  background: linear-gradient(
    135deg,
    var(--nx-primary),
    var(--nx-primary-dark)
  );
  border-color: transparent;
}
.nx-testi-card--featured .nx-testi-stars,
.nx-testi-card--featured .nx-testi-text,
.nx-testi-card--featured .nx-testi-name {
  color: #fff;
}
.nx-testi-card--featured .nx-testi-role {
  color: rgba(255, 255, 255, 0.7);
}

.nx-testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.nx-testi-text {
  font-size: 0.92rem;
  color: var(--nx-gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nx-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nx-primary-light);
}
.nx-testi-name {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--nx-dark);
}
.nx-testi-role {
  font-size: 0.78rem;
  color: var(--nx-gray);
  margin-top: 2px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.nx-blog-preview {
  background: var(--nx-white);
}

.nx-blog-card {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(45, 91, 227, 0.06);
  height: 100%;
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
}
.nx-blog-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-6px);
}

.nx-blog-img-wrap {
  position: relative;
  overflow: hidden;
}
.nx-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.nx-blog-card:hover .nx-blog-img {
  transform: scale(1.05);
}

.nx-blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--nx-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--nx-font-heading);
}

.nx-blog-body {
  padding: 22px 24px;
}
.nx-blog-meta {
  font-size: 0.78rem;
  color: var(--nx-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nx-blog-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--nx-dark);
  line-height: 1.45;
  margin-bottom: 16px;
}
.nx-blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  font-family: var(--nx-font-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--nx-transition);
}
.nx-blog-link:hover {
  gap: 10px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.nx-cta-section {
  padding: 72px 0;
  background: var(--nx-bg);
}
.nx-cta-inner {
  background: linear-gradient(
    135deg,
    var(--nx-primary) 0%,
    var(--nx-dark-2) 100%
  );
  border-radius: var(--nx-radius-lg);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}
.nx-cta-inner::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -80px;
}
.nx-cta-inner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 198, 174, 0.12);
  bottom: -60px;
  left: 60px;
}
.nx-cta-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.nx-cta-highlight {
  color: var(--nx-accent);
}
.nx-cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.nx-cta-section .col-lg-4 {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nx-footer {
  background: var(--nx-dark);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.65);
}
.nx-footer .nx-brand {
  color: #fff;
}
.nx-footer .nx-brand-icon {
  color: var(--nx-accent);
}

.nx-footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
}

.nx-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.nx-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  transition:
    background var(--nx-transition),
    color var(--nx-transition),
    transform var(--nx-transition);
}
.nx-social-link:hover {
  background: var(--nx-primary);
  color: #fff;
  transform: translateY(-3px);
}

.nx-footer-heading {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.nx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nx-footer-links li,
.nx-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--nx-transition);
  display: flex;
  align-items: center;
}
.nx-footer-links a:hover {
  color: var(--nx-accent);
}

.nx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.nx-footer-legal {
  display: flex;
  gap: 24px;
}
.nx-footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--nx-transition);
}
.nx-footer-legal a:hover {
  color: var(--nx-accent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes nx-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nx-fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.nx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.nx-reveal.nx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  .nx-hero-inner {
    flex-direction: column;
    padding: 120px 24px 60px;
  }
  .nx-hero-left,
  .nx-hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nx-hero-right {
    margin-top: 20px;
  }
  .nx-cta-inner {
    padding: 36px 28px;
  }
  .nx-about-img--main {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .nx-hero-heading {
    font-size: 2rem;
  }
  .nx-hero-inner {
    padding: 100px 20px 50px;
  }
  .nx-about-img-grid {
    padding-bottom: 20px;
    padding-right: 0;
  }

  .nx-about-badge-card {
    display: none;
  }
}

/* ============================================================
   ABOUT PAGE  —  Prefix: ab-
   ============================================================ */

/* ---- Page Banner ---- */
.ab-page-banner {
  position: relative;
  height: 353px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ab-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.ab-banner-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(13, 27, 62, 0.82) 0%,
    rgba(26, 57, 212, 0.65) 100%
  ); */
  z-index: 1;
}
.ab-banner-deco {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.12);
}
.ab-deco-dot--1 {
  width: 14px;
  height: 14px;
  top: 28%;
  left: 6%;
}
.ab-deco-dot--2 {
  width: 10px;
  height: 10px;
  bottom: 30%;
  left: 12%;
  background: rgba(255, 255, 255, 0.18);
}
.ab-banner-content {
  position: relative;
  z-index: 3;
  padding-bottom: 36px;
  padding-top: 80px;
}
.ab-banner-title {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #000000;
  margin-bottom: 8px;
}
.ab-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  --bs-breadcrumb-divider: "•";
}
.ab-breadcrumb .breadcrumb-item a {
  color: rgba(29, 23, 23, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
}
.ab-breadcrumb .breadcrumb-item.active {
  color: var(--nx-primary);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
/* .ab-bc-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a39d4;
} */

/* ---- Intro Section ---- */
.ab-intro-section {
  background: var(--nx-white);
}

.ab-illus-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.ab-illus-img {
  width: 100%;
  max-width: 420px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(26, 57, 212, 0.12));
}

.ab-intro-heading {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--nx-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.ab-intro-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--nx-dark);
  margin-bottom: 14px;
}
.ab-intro-body {
  font-size: 0.93rem;
  color: var(--nx-gray);
  line-height: 1.75;
  margin-bottom: 24px;
}
.ab-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--nx-dark);
}
.ab-check-icon {
  color: #1a39d4;
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Stats / Counter Section ---- */
.ab-stats-section {
  background: #1a39d4;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ab-stats-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}
.ab-stats-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}

.ab-stats-rocket {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 80px;
  z-index: 2;
  animation: nx-float 3.5s ease-in-out infinite;
}
.ab-stats-rocket img {
  display: block;
  width: 150px;
}

.ab-stats-sup {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--nx-font-heading);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.ab-stats-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.ab-stat-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
}
.ab-stat-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1;
  display: inline-block;
}
.ab-stat-plus {
  display: inline-block;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1;
  margin-left: 2px;
}
.ab-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ---- Team Section ---- */
.ab-team-section {
  background: var(--nx-bg);
}

.ab-team-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--nx-dark);
}

.ab-team-card {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 18px rgba(26, 57, 212, 0.07);
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.ab-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-lg);
}

.ab-team-img-wrap {
  position: relative;
  overflow: hidden;
}
.ab-team-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.ab-team-card:hover .ab-team-img {
  transform: scale(1.06);
}

.ab-team-socials {
  position: absolute;
  inset: 0;
  background: rgba(26, 57, 212, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--nx-transition);
}
.ab-team-card:hover .ab-team-socials {
  opacity: 1;
}
.ab-team-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background var(--nx-transition),
    transform var(--nx-transition);
}
.ab-team-socials a:hover {
  background: #fff;
  color: #1a39d4;
  transform: scale(1.12);
}

.ab-team-info {
  padding: 18px 20px 20px;
  text-align: center;
  border-top: 1px solid rgba(26, 57, 212, 0.07);
}
.ab-team-role {
  font-size: 0.78rem;
  color: #1a39d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.ab-team-name {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin: 0;
}

/* ---- Values Section ---- */
.ab-values-section {
  background: var(--nx-white);
}

.ab-value-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  height: 100%;
  border: 1.5px solid rgba(26, 57, 212, 0.06);
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition),
    border-color var(--nx-transition);
  text-align: center;
}
.ab-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
  border-color: rgba(26, 57, 212, 0.15);
}
.ab-value-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--vc, #ebf0fd);
  color: var(--vi, #1a39d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition: transform var(--nx-transition);
}
.ab-value-card:hover .ab-value-icon {
  transform: rotate(-8deg) scale(1.1);
}
.ab-value-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin-bottom: 10px;
}
.ab-value-text {
  font-size: 0.88rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}

/* ---- Skills Section ---- */
.ab-skills-section {
  background: var(--nx-bg);
}

.ab-skills-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-skill-item {
}
.ab-skill-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ab-skill-name {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--nx-dark);
}
.ab-skill-pct {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--nx-gray);
}
.ab-skill-track {
  height: 16px;
  background: rgba(26, 57, 212, 0.1);
  border-radius: 50px;
  overflow: hidden;
}
.ab-skill-bar {
  height: 100%;
  width: 0%;
  background: var(--bar-color, #1a39d4);
  /* border-radius: 50px; */
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Awards Section ---- */
.ab-awards-section {
  background: var(--nx-white);
}

.ab-award-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(26, 57, 212, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.ab-award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
}
.ab-award-year {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(26, 57, 212, 0.25);
  letter-spacing: 1px;
}
.ab-award-icon {
  font-size: 2.2rem;
  color: #1a39d4;
  margin-bottom: 14px;
  display: block;
}
.ab-award-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--nx-dark);
  margin-bottom: 6px;
}
.ab-award-body {
  font-size: 0.82rem;
  color: var(--nx-gray);
  margin: 0;
}

/* ---- About page responsive ---- */
@media (max-width: 991.98px) {
  .ab-illus-img {
    max-width: 100%;
  }
  .ab-stats-rocket {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .ab-page-banner {
    height: 200px;
  }
  .ab-banner-title {
    font-size: 1.8rem;
  }
}
/* ============================================================
   NEXORA – Global Stylesheet
   Prefix: nx- (all custom classes use this prefix)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --nx-primary: #2d5be3;
  --nx-primary-dark: #1a3db5;
  --nx-primary-light: #ebf0fd;
  --nx-accent: #00c6ae;
  --nx-dark: #0d1b3e;
  --nx-dark-2: #1c2f5e;
  --nx-gray: #64748b;
  --nx-gray-light: #f1f5f9;
  --nx-white: #ffffff;
  --nx-bg: #f8faff;
  --nx-font-heading: "Syne", sans-serif;
  --nx-font-body: "DM Sans", sans-serif;
  --nx-radius: 14px;
  --nx-radius-lg: 22px;
  --nx-shadow: 0 4px 24px rgba(45, 91, 227, 0.1);
  --nx-shadow-lg: 0 8px 48px rgba(45, 91, 227, 0.18);
  --nx-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--nx-font-body);
  background: var(--nx-white);
  color: var(--nx-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nx-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 91, 227, 0.08);
  padding: 14px 0;
  transition:
    box-shadow var(--nx-transition),
    background var(--nx-transition);
  z-index: 1000;
}
.nx-navbar.nx-scrolled {
  box-shadow: 0 2px 24px rgba(45, 91, 227, 0.1);
}

.nx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--nx-dark);
}
.nx-brand-icon {
  color: var(--nx-primary);
  font-size: 1.5rem;
  line-height: 1;
}
.nx-brand-text {
  letter-spacing: -0.5px;
}

.nx-nav-links {
  gap: 4px;
}

.nx-nav-link {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nx-dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition:
    color var(--nx-transition),
    background var(--nx-transition);
}
.nx-nav-link:hover,
.nx-nav-link.active {
  color: var(--nx-primary) !important;
  background: var(--nx-primary-light);
}

.nx-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--nx-dark);
  padding: 6px;
  line-height: 1;
  background: transparent;
}
.nx-toggler:focus {
  box-shadow: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.nx-btn-primary {
  background: var(--nx-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition:
    background var(--nx-transition),
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-primary:hover {
  background: var(--nx-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 91, 227, 0.28);
}
.nx-btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}

.nx-btn-outline {
  border: 2px solid var(--nx-primary);
  color: var(--nx-primary);
  border-radius: 10px;
  padding: 11px 26px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  transition: all var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-outline:hover {
  background: var(--nx-primary);
  color: #fff;
  transform: translateY(-2px);
}

.nx-btn-white {
  background: #fff;
  color: var(--nx-primary);
  border: none;
  border-radius: 10px;
  padding: 15px 34px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--nx-transition);
  display: inline-flex;
  align-items: center;
}
.nx-btn-white:hover {
  background: var(--nx-primary-light);
  color: var(--nx-primary-dark);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.nx-section-tag {
  display: inline-block;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.nx-section-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--nx-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.nx-section-text {
  color: var(--nx-gray);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 520px;
}
.nx-highlight {
  color: var(--nx-primary);
  position: relative;
}

/* ============================================================
   HERO — exact match to reference screenshot
   ============================================================ */
.nx-hero {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ---- Small light-blue oval blob — bottom left ---- */
.nx-hero-blob-left {
  position: absolute;
  bottom: 6%;
  left: -4%;
  width: 180px;
  height: 130px;
  background: #d6e4ff;
  border-radius: 50%;
  opacity: 0.55;
  z-index: 0;
  filter: blur(2px);
}

/* ---- Decorative dots & shapes on blue ---- */
.nx-hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
}
.nx-deco-star {
  top: 14%;
  right: 28%;
  font-size: 1.8rem;
  color: #f5c542;
  opacity: 0.9;
}
.nx-deco-plus--1 {
  top: 22%;
  right: 8%;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
}
.nx-deco-plus--2 {
  bottom: 28%;
  right: 14%;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}
.nx-deco-circle {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.nx-deco-circle--1 {
  width: 14px;
  height: 14px;
  top: 38%;
  right: 10%;
}
.nx-deco-circle--2 {
  width: 10px;
  height: 10px;
  bottom: 35%;
  right: 32%;
}
.nx-deco-square {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transform: rotate(18deg);
}
.nx-deco-square--1 {
  width: 18px;
  height: 18px;
  top: 26%;
  right: 20%;
}
.nx-deco-square--2 {
  width: 22px;
  height: 22px;
  bottom: 20%;
  right: 7%;
  opacity: 0.5;
}
.nx-deco-pie {
  top: 30%;
  right: 4.5%;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Layout inner wrapper ---- */
.nx-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 60px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ---- LEFT ---- */
.nx-hero-left {
  flex: 0 0 42%;
  max-width: 42%;
  animation: nx-fadeUp 0.7s ease both;
}

.nx-hero-heading {
  font-family: var(--nx-font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: #0d1b3e;
  margin-bottom: 20px;
}
.nx-hero-heading strong {
  font-weight: 800;
  color: #0d1b3e;
}

.nx-hero-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.nx-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a39d4;
  color: #fff;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 6px 22px rgba(26, 57, 212, 0.3);
}
.nx-hero-cta:hover {
  background: #1230b0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 57, 212, 0.38);
}

/* ---- RIGHT ---- */
.nx-hero-right {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nx-fadeRight 0.8s 0.15s ease both;
}

.nx-hero-illus {
  width: 100%;
  max-width: 620px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.18));
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.nx-logos-section {
  background: var(--nx-bg);
  padding: 36px 0;
  overflow: hidden;
}
.nx-logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nx-gray);
  margin-bottom: 20px;
}
.nx-logos-track {
  overflow: hidden;
}
.nx-logos-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: nx-scroll 30s linear infinite;
  width: max-content;
}
.nx-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #94a3b8;
  transition: color var(--nx-transition);
}
.nx-logo-item:hover {
  color: var(--nx-primary);
}
.nx-logo-item i {
  font-size: 1.2rem;
}
@keyframes nx-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.nx-about-teaser {
  background: var(--nx-white);
}

.nx-about-img-grid {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.nx-about-img {
  border-radius: var(--nx-radius-lg);
  object-fit: cover;
}

.nx-about-badge-card {
  position: absolute;
  top: 30px;
  right: 10px;
  background: var(--nx-primary);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(45, 91, 227, 0.28);
}
.nx-abc-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.nx-abc-label {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 4px;
}

.nx-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nx-dark);
}
.nx-check-icon {
  color: var(--nx-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.nx-services-section {
  background: var(--nx-bg);
}

.nx-service-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid transparent;
  transition:
    border-color var(--nx-transition),
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
  position: relative;
  overflow: hidden;
}
.nx-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nx-primary), var(--nx-accent));
  transform: scaleX(0);
  transition: transform var(--nx-transition);
  border-radius: 2px 2px 0 0;
}
.nx-service-card:hover::before {
  transform: scaleX(1);
}
.nx-service-card:hover {
  border-color: rgba(45, 91, 227, 0.12);
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-6px);
}

.nx-service-card--featured {
  background: linear-gradient(
    135deg,
    var(--nx-primary),
    var(--nx-primary-dark)
  );
  color: #fff;
}
.nx-service-card--featured .nx-sc-title,
.nx-service-card--featured .nx-sc-text,
.nx-service-card--featured .nx-sc-link {
  color: rgba(255, 255, 255, 0.9);
}
.nx-service-card--featured .nx-sc-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nx-service-card--featured::before {
  display: none;
}
.nx-service-card--featured:hover {
  transform: translateY(-6px);
}

.nx-sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--nx-transition);
}
.nx-service-card:not(.nx-service-card--featured):hover .nx-sc-icon {
  background: var(--nx-primary);
  color: #fff;
}

.nx-sc-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--nx-dark);
}
.nx-sc-text {
  font-size: 0.9rem;
  color: var(--nx-gray);
  margin-bottom: 20px;
  line-height: 1.65;
}
.nx-sc-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nx-font-heading);
  transition: gap var(--nx-transition);
}
.nx-sc-link:hover {
  gap: 10px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.nx-process-section {
  background: var(--nx-white);
}

.nx-process-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  height: 100%;
  position: relative;
  border: 1.5px solid rgba(45, 91, 227, 0.07);
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition),
    border-color var(--nx-transition);
  overflow: hidden;
}
.nx-process-card:hover {
  box-shadow: var(--nx-shadow);
  transform: translateY(-4px);
  border-color: rgba(45, 91, 227, 0.18);
}

.nx-pc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(45, 91, 227, 0.07);
  line-height: 1;
}
.nx-pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--nx-primary-light);
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background var(--nx-transition);
}
.nx-process-card:hover .nx-pc-icon {
  background: var(--nx-primary);
  color: #fff;
}
.nx-pc-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin-bottom: 10px;
}
.nx-pc-text {
  font-size: 0.88rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.nx-testimonials-section {
  background: var(--nx-bg);
}

.nx-testi-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid rgba(45, 91, 227, 0.06);
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
}
.nx-testi-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-4px);
}
.nx-testi-card--featured {
  background: linear-gradient(
    135deg,
    var(--nx-primary),
    var(--nx-primary-dark)
  );
  border-color: transparent;
}
.nx-testi-card--featured .nx-testi-stars,
.nx-testi-card--featured .nx-testi-text,
.nx-testi-card--featured .nx-testi-name {
  color: #fff;
}
.nx-testi-card--featured .nx-testi-role {
  color: rgba(255, 255, 255, 0.7);
}

.nx-testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.nx-testi-text {
  font-size: 0.92rem;
  color: var(--nx-gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nx-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nx-primary-light);
}
.nx-testi-name {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--nx-dark);
}
.nx-testi-role {
  font-size: 0.78rem;
  color: var(--nx-gray);
  margin-top: 2px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.nx-blog-preview {
  background: var(--nx-white);
}

.nx-blog-card {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(45, 91, 227, 0.06);
  height: 100%;
  transition:
    box-shadow var(--nx-transition),
    transform var(--nx-transition);
}
.nx-blog-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-6px);
}

.nx-blog-img-wrap {
  position: relative;
  overflow: hidden;
}
.nx-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.nx-blog-card:hover .nx-blog-img {
  transform: scale(1.05);
}

.nx-blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--nx-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--nx-font-heading);
}

.nx-blog-body {
  padding: 22px 24px;
}
.nx-blog-meta {
  font-size: 0.78rem;
  color: var(--nx-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nx-blog-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--nx-dark);
  line-height: 1.45;
  margin-bottom: 16px;
}
.nx-blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nx-primary);
  text-decoration: none;
  font-family: var(--nx-font-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--nx-transition);
}
.nx-blog-link:hover {
  gap: 10px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.nx-cta-section {
  padding: 72px 0;
  background: var(--nx-bg);
}
.nx-cta-inner {
  background: linear-gradient(
    135deg,
    var(--nx-primary) 0%,
    var(--nx-dark-2) 100%
  );
  border-radius: var(--nx-radius-lg);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}
.nx-cta-inner::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -80px;
}
.nx-cta-inner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 198, 174, 0.12);
  bottom: -60px;
  left: 60px;
}
.nx-cta-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.nx-cta-highlight {
  color: var(--nx-accent);
}
.nx-cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.nx-cta-section .col-lg-4 {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nx-footer {
  background: var(--nx-dark);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.65);
}
.nx-footer .nx-brand {
  color: #fff;
}
.nx-footer .nx-brand-icon {
  color: var(--nx-accent);
}

.nx-footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
}

.nx-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.nx-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  transition:
    background var(--nx-transition),
    color var(--nx-transition),
    transform var(--nx-transition);
}
.nx-social-link:hover {
  background: var(--nx-primary);
  color: #fff;
  transform: translateY(-3px);
}

.nx-footer-heading {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.nx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nx-footer-links li,
.nx-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--nx-transition);
  display: flex;
  align-items: center;
}
.nx-footer-links a:hover {
  color: var(--nx-accent);
}

.nx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.nx-footer-legal {
  display: flex;
  gap: 24px;
}
.nx-footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--nx-transition);
}
.nx-footer-legal a:hover {
  color: var(--nx-accent);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes nx-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nx-fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.nx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.nx-reveal.nx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  .nx-hero-inner {
    flex-direction: column;
    padding: 120px 24px 60px;
  }
  .nx-hero-left,
  .nx-hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nx-hero-right {
    margin-top: 20px;
  }
  .nx-cta-inner {
    padding: 36px 28px;
  }
}
@media (max-width: 575.98px) {
  .nx-hero-heading {
    font-size: 2rem;
  }
  .nx-hero-inner {
    padding: 100px 20px 50px;
  }
  .nx-about-img-grid {
    padding-bottom: 20px;
    padding-right: 0;
  }
  .nx-about-img--sm {
    display: none;
  }
  .nx-about-badge-card {
    display: none;
  }
}

/* ---- Intro Section ---- */
.ab-intro-section {
  background: var(--nx-white);
}

.ab-illus-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.ab-illus-img {
  width: 100%;
  max-width: 420px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(26, 57, 212, 0.12));
}
.ab-illus-badge {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  animation: nx-float 4s ease-in-out infinite;
}
.ab-illus-badge--tl {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}
.ab-illus-badge--tr {
  top: 5%;
  right: 10%;
  animation-delay: 0.8s;
  color: #e05c7d;
}
.ab-illus-badge--br {
  bottom: 18%;
  right: 5%;
  animation-delay: 1.6s;
}

.ab-intro-heading {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--nx-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.ab-intro-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--nx-dark);
  margin-bottom: 14px;
}
.ab-intro-body {
  font-size: 0.93rem;
  color: var(--nx-gray);
  line-height: 1.75;
  margin-bottom: 24px;
}
.ab-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--nx-dark);
}
.ab-check-icon {
  color: #1a39d4;
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Stats / Counter Section ---- */
.ab-stats-section {
  background: #1a39d4;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ab-stats-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}
.ab-stats-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}

.ab-stats-rocket {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 80px;
  z-index: 2;
  animation: nx-float 3.5s ease-in-out infinite;
}
.ab-stats-rocket svg {
  display: block;
}

.ab-stats-sup {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--nx-font-heading);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.ab-stats-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.ab-stat-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
}
.ab-stat-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1;
  display: inline-block;
}
.ab-stat-plus {
  display: inline-block;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1;
  margin-left: 2px;
}
.ab-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ---- Team Section ---- */
.ab-team-section {
  background: var(--nx-bg);
}

.ab-team-heading {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--nx-dark);
}

.ab-team-card {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 18px rgba(26, 57, 212, 0.07);
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.ab-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-lg);
}

.ab-team-socials {
  position: absolute;
  inset: 0;
  background: rgba(26, 57, 212, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--nx-transition);
}
.ab-team-card:hover .ab-team-socials {
  opacity: 1;
}
.ab-team-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background var(--nx-transition),
    transform var(--nx-transition);
}
.ab-team-socials a:hover {
  background: #fff;
  color: #1a39d4;
  transform: scale(1.12);
}

.ab-team-info {
  padding: 18px 20px 20px;
  text-align: center;
  border-top: 1px solid rgba(26, 57, 212, 0.07);
}
.ab-team-role {
  font-size: 0.78rem;
  color: #1a39d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.ab-team-name {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin: 0;
}

/* ---- Values Section ---- */
.ab-values-section {
  background: var(--nx-white);
}

.ab-value-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  height: 100%;
  border: 1.5px solid rgba(26, 57, 212, 0.06);
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition),
    border-color var(--nx-transition);
  text-align: center;
}
.ab-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
  border-color: rgba(26, 57, 212, 0.15);
}
.ab-value-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--vc, #ebf0fd);
  color: var(--vi, #1a39d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition: transform var(--nx-transition);
}
.ab-value-card:hover .ab-value-icon {
  transform: rotate(-8deg) scale(1.1);
}
.ab-value-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nx-dark);
  margin-bottom: 10px;
}
.ab-value-text {
  font-size: 0.88rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}

/* ---- Skills Section ---- */
.ab-skills-section {
  background: var(--nx-bg);
}

.ab-skills-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-skill-item {
}
.ab-skill-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ab-skill-name {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--nx-dark);
}
.ab-skill-pct {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--nx-gray);
}
.ab-skill-track {
  height: 8px;
  background: rgba(26, 57, 212, 0.1);
  border-radius: 50px;
  overflow: hidden;
}
.ab-skill-bar {
  height: 100%;
  width: 0%;
  background: var(--bar-color, #1a39d4);
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Awards Section ---- */
.ab-awards-section {
  background: var(--nx-white);
}

.ab-award-card {
  background: var(--nx-bg);
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(26, 57, 212, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.ab-award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
}
.ab-award-year {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  color: rgba(26, 57, 212, 0.25);
  letter-spacing: 1px;
}
.ab-award-icon {
  font-size: 2.2rem;
  color: #1a39d4;
  margin-bottom: 14px;
  display: block;
}
.ab-award-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--nx-dark);
  margin-bottom: 6px;
}
.ab-award-body {
  font-size: 0.82rem;
  color: var(--nx-gray);
  margin: 0;
}

/* ---- About page responsive ---- */
@media (max-width: 991.98px) {
  .ab-illus-img {
    max-width: 100%;
  }
  .ab-stats-rocket {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .ab-page-banner {
    height: 200px;
  }
  .ab-banner-title {
    font-size: 1.8rem;
  }
}

.sv-grid-section {
  background: var(--nx-white);
}

.sv-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 34px 28px;
  height: 100%;
  border: 1.5px solid rgba(26, 57, 212, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition),
    border-color var(--nx-transition);
}
.sv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a39d4, #00c6ae);
  transform: scaleX(0);
  transition: transform var(--nx-transition);
  border-radius: 0 0 2px 2px;
}
.sv-card:hover::after {
  transform: scaleX(1);
}
.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nx-shadow-lg);
  border-color: rgba(26, 57, 212, 0.14);
}
.sv-card--featured {
  background: linear-gradient(145deg, #1a39d4 0%, #0d1b3e 100%);
  border-color: transparent;
  color: #fff;
}
.sv-card--featured::after {
  display: none;
}
.sv-card--featured:hover {
  transform: translateY(-8px);
}
.sv-card--featured .sv-card-title,
.sv-card--featured .sv-card-text,
.sv-card--featured .sv-card-features li {
  color: rgba(255, 255, 255, 0.9);
}
.sv-card--featured .sv-card-link {
  color: #00c6ae;
}

.sv-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #00c6ae;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--nx-font-heading);
}

.sv-card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--ic, #ebf0fd);
  color: var(--iv, #1a39d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: transform var(--nx-transition);
}
.sv-card:hover .sv-card-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
}

.sv-card-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--nx-dark);
  margin-bottom: 12px;
}
.sv-card-text {
  font-size: 0.9rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.sv-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--nx-gray);
}
.sv-card-features li i {
  color: #1a39d4;
  font-size: 1rem;
  flex-shrink: 0;
}
.sv-card--featured .sv-card-features li i {
  color: #00c6ae;
}

.sv-card-link {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a39d4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--nx-transition);
}
.sv-card-link:hover {
  gap: 10px;
}

/* ---- Why Choose Us ---- */
.sv-why-section {
  background: var(--nx-bg);
}

.sv-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.sv-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1.5px solid rgba(26, 57, 212, 0.06);
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.sv-why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--nx-shadow);
}
.sv-why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--nx-primary-light);
  color: #1a39d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.sv-why-body {
  flex: 1;
}
.sv-why-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--nx-dark);
  margin-bottom: 4px;
}
.sv-why-text {
  font-size: 0.86rem;
  color: var(--nx-gray);
  margin: 0;
  line-height: 1.6;
}

.sv-why-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.sv-why-img {
  width: 100%;
  max-width: 520px;
  height: 400px;
  object-fit: cover;
  display: block;
}
.sv-why-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(26, 57, 212, 0.14);
  font-size: 1.6rem;
  color: #1a39d4;
}
.sv-why-badge-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--nx-dark);
  line-height: 1;
}
.sv-why-badge-label {
  font-size: 0.75rem;
  color: var(--nx-gray);
}
.sv-why-exp-tag {
  position: absolute;
  top: 24px;
  right: -10px;
  background: #1a39d4;
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26, 57, 212, 0.28);
}
.sv-why-exp-num {
  display: block;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
}
.sv-why-exp-text {
  font-size: 0.72rem;
  opacity: 0.85;
  line-height: 1.3;
}

/* ---- Pricing ---- */
.sv-pricing-section {
  background: var(--nx-white);
}

.sv-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.sv-toggle-label {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--nx-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv-save-badge {
  background: #d1fae5;
  color: #059669;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}
.sv-toggle-switch {
  width: 52px;
  height: 28px;
  border-radius: 50px;
  background: #e2e8f0;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.sv-toggle-switch.sv-toggle--active {
  background: #1a39d4;
}
.sv-toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: left 0.3s;
}
.sv-toggle--active .sv-toggle-knob {
  left: 28px;
}

.sv-price-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 36px 30px;
  height: 100%;
  border: 1.5px solid rgba(26, 57, 212, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.sv-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nx-shadow-lg);
}
.sv-price-card--featured {
  background: linear-gradient(145deg, #1a39d4, #0d1b3e);
  border-color: transparent;
}
.sv-price-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #00c6ae;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
  font-family: var(--nx-font-heading);
}
.sv-price-header {
  margin-bottom: 24px;
}
.sv-price-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--nx-primary-light);
  color: #1a39d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.sv-price-plan {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--nx-dark);
  margin-bottom: 4px;
}
.sv-price-card--featured .sv-price-plan {
  color: #fff;
}
.sv-price-tagline {
  font-size: 0.82rem;
  color: var(--nx-gray);
  margin: 0;
}
.sv-price-card--featured .sv-price-tagline {
  color: rgba(255, 255, 255, 0.65);
}

.sv-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 57, 212, 0.08);
}
.sv-price-card--featured .sv-price-amount {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.sv-price-currency {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a39d4;
}
.sv-price-card--featured .sv-price-currency {
  color: #00c6ae;
}
.sv-price-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--nx-dark);
  line-height: 1;
  transition: opacity 0.2s;
}
.sv-price-card--featured .sv-price-num {
  color: #fff;
}
.sv-price-period {
  font-size: 0.85rem;
  color: var(--nx-gray);
}
.sv-price-card--featured .sv-price-period {
  color: rgba(255, 255, 255, 0.6);
}

.sv-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-pf-included,
.sv-pf-excluded {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.sv-pf-included {
  color: var(--nx-dark);
}
.sv-pf-included i {
  color: #059669;
  font-size: 1rem;
}
.sv-pf-excluded {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #cbd5e1;
}
.sv-pf-excluded i {
  color: #cbd5e1;
  font-size: 0.9rem;
}
.sv-price-card--featured .sv-pf-included {
  color: rgba(255, 255, 255, 0.9);
}
.sv-price-card--featured .sv-pf-excluded {
  color: rgba(255, 255, 255, 0.35);
}

.sv-price-btn {
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 13px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--nx-transition);
}
.sv-price-btn--outline {
  border: 2px solid #1a39d4;
  color: #1a39d4;
  background: transparent;
}
.sv-price-btn--outline:hover {
  background: #1a39d4;
  color: #fff;
}
.sv-price-btn--white {
  background: #fff;
  color: #1a39d4;
  border: 2px solid #fff;
}
.sv-price-btn--white:hover {
  background: transparent;
  color: #fff;
}

/* ---- FAQ ---- */
.sv-faq-section {
  background: var(--nx-bg);
}

.sv-faq-item {
  border: none;
  border-radius: var(--nx-radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(26, 57, 212, 0.05);
}
.sv-faq-btn {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--nx-dark);
  background: #fff;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: none !important;
}
.sv-faq-btn:not(.collapsed) {
  color: #1a39d4;
  background: #fff;
}
.sv-faq-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a39d4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.sv-faq-num {
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  color: #1a39d4;
  background: var(--nx-primary-light);
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}
.sv-faq-body {
  font-size: 0.92rem;
  color: var(--nx-gray);
  line-height: 1.75;
  padding: 0 24px 22px 62px;
  background: #fff;
}

/* ---- Tech Stack ---- */
.sv-tech-section {
  background: var(--nx-white);
}

.sv-tech-pill {
  background: var(--nx-bg);
  border: 1.5px solid rgba(26, 57, 212, 0.07);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--nx-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition),
    border-color var(--nx-transition);
  cursor: default;
}
.sv-tech-pill:hover {
  transform: translateY(-5px);
  box-shadow: var(--nx-shadow);
  border-color: rgba(26, 57, 212, 0.18);
}
.sv-tech-icon {
  font-size: 1.6rem;
}

/* ---- Services responsive ---- */
@media (max-width: 991.98px) {
  .sv-why-img {
    max-width: 100%;
    height: 320px;
  }
  .sv-why-badge {
    left: 0;
  }
  .sv-why-exp-tag {
    right: 0;
  }
}
@media (max-width: 575.98px) {
  .sv-page-banner {
    height: 200px;
  }
  .sv-banner-title {
    font-size: 1.8rem;
  }
  .sv-faq-body {
    padding-left: 24px;
  }
}

.ct-info-section {
  background: var(--nx-bg);
}

.ct-info-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(26, 57, 212, 0.07);
  height: 100%;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.ct-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-lg);
}
.ct-info-card--featured {
  background: linear-gradient(145deg, #1a39d4, #0d1b3e);
  border-color: transparent;
}
.ct-info-card--featured .ct-info-title {
  color: #fff;
}
.ct-info-card--featured .ct-info-text {
  color: rgba(255, 255, 255, 0.75);
}

.ct-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--ic, #ebf0fd);
  color: var(--iv, #1a39d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  transition: transform var(--nx-transition);
}
.ct-info-card:hover .ct-info-icon {
  transform: rotate(-8deg) scale(1.1);
}

.ct-info-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--nx-dark);
  margin-bottom: 8px;
}
.ct-info-text {
  font-size: 0.88rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}

/* ---- Contact Form ---- */
.ct-form-section {
  background: var(--nx-white);
}

.ct-form-wrap {
}

.ct-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.ct-label {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--nx-dark);
  letter-spacing: 0.3px;
}
.ct-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.ct-input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
  transition: color var(--nx-transition);
  z-index: 1;
}
.ct-focused .ct-input-icon {
  color: #1a39d4;
}

.ct-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px 12px 42px;
  font-family: var(--nx-font-body);
  font-size: 0.92rem;
  color: var(--nx-dark);
  background: var(--nx-bg);
  outline: none;
  transition:
    border-color var(--nx-transition),
    box-shadow var(--nx-transition),
    background var(--nx-transition);
  -webkit-appearance: none;
}
.ct-input:focus {
  border-color: #1a39d4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 57, 212, 0.08);
}
.ct-input::placeholder {
  color: #94a3b8;
}

.ct-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
}

.ct-textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 130px;
}
.ct-field-wrap:has(.ct-textarea) .ct-input-icon {
  top: 14px;
  align-self: flex-start;
}

.ct-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a39d4, #0d1b3e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition),
    background var(--nx-transition);
  box-shadow: 0 6px 22px rgba(26, 57, 212, 0.28);
}
.ct-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26, 57, 212, 0.38);
}
.ct-submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.ct-btn-success {
  background: linear-gradient(135deg, #059669, #047857) !important;
  box-shadow: 0 6px 22px rgba(5, 150, 105, 0.28) !important;
}
.ct-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ct-spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes ct-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Map ---- */
.ct-map-wrap {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  box-shadow: var(--nx-shadow-lg);
}
.ct-map-frame {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}
.ct-map-info {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-map-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.ct-map-info-divider {
  height: 1px;
  background: rgba(26, 57, 212, 0.07);
}
.ct-map-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--nx-primary-light);
  color: #1a39d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ct-map-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--nx-gray);
  font-family: var(--nx-font-heading);
}
.ct-map-info-val {
  font-size: 0.88rem;
  color: var(--nx-dark);
  font-weight: 500;
  margin-top: 1px;
}

/* ---- Process Steps ---- */
.ct-why-section {
  background: var(--nx-bg);
}

.ct-step-card {
  background: #fff;
  border-radius: var(--nx-radius-lg);
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  border: 1.5px solid rgba(26, 57, 212, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--nx-transition),
    box-shadow var(--nx-transition);
}
.ct-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
}
.ct-step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--nx-font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(26, 57, 212, 0.06);
  line-height: 1;
}
.ct-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--nx-primary-light);
  color: #1a39d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  transition:
    transform var(--nx-transition),
    background var(--nx-transition);
}
.ct-step-card:hover .ct-step-icon {
  transform: scale(1.1) rotate(-6deg);
}
.ct-step-title {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--nx-dark);
  margin-bottom: 8px;
}
.ct-step-text {
  font-size: 0.86rem;
  color: var(--nx-gray);
  line-height: 1.65;
  margin: 0;
}
.ct-step-arrow {
  align-items: center;
  justify-content: center;
  color: rgba(26, 57, 212, 0.25);
  font-size: 1.4rem;
  padding: 0 4px;
  margin-top: 40px;
}
