/* ═══════════════════════════════════════════════
   NEXCORE — style.css
   Shared across ALL pages. No inline CSS used.
   Bootstrap 5 is the base — this file extends it.
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --blue: #1a56db;
  --blue-dark: #1139a0;
  --blue-light: #e8f0fe;
  --blue-mid: #3b82f6;
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray: #f1f5f9;
  --gray-mid: #94a3b8;
  --text-main: #0f172a;
  --text-sub: #475569;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26, 86, 219, 0.1);
  --shadow-lg: 0 16px 60px rgba(26, 86, 219, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--gray);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

/* ── HELPERS ── */
.title-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nc-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(26, 86, 219, 0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  text-transform: uppercase;
}
.nc-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
.nc-section-sub {
  color: var(--text-sub);
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 520px;
}
.nc-section {
  padding: 100px 0;
}
.nc-section--gray {
  background: var(--off-white);
}
.nc-link-arrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.nc-link-arrow:hover {
  gap: 14px;
  color: var(--blue-dark);
}

/* ── SCROLL REVEAL ── */
.nc-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.nc-reveal.nc-visible {
  opacity: 1;
  transform: translateY(0);
}
.nc-reveal-delay-1 {
  transition-delay: 0.12s;
}
.nc-reveal-delay-2 {
  transition-delay: 0.24s;
}

/* ── BUTTONS ── */
.nc-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  cursor: pointer;
}
.nc-btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.3);
}
.nc-btn-primary.nc-btn-lg {
  padding: 15px 34px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.nc-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  text-decoration: none;
  transition: all 0.25s;
}
.nc-btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.nc-btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.25s;
}
.nc-btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.nc-btn-white.nc-btn-lg {
  padding: 16px 38px;
  font-size: 0.92rem;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.nc-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.nc-nav {
  padding: 0;
}
.nc-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
}
.nc-brand span {
  color: var(--blue);
}
.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
}
.nc-link {
  color: var(--text-sub);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.nc-link:hover,
.nc-link.active-nc {
  color: var(--blue);
  background: var(--blue-light);
}
.nc-toggler {
  border: none;
  background: none;
  color: var(--navy);
  font-size: 1.2rem;
  padding: 6px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.nc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    #f0f6ff 0%,
    var(--white) 55%,
    #eef4ff 100%
  );
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hbs {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 219, 0.08),
    rgba(59, 130, 246, 0.08)
  );
}
.hbs-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.hbs-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
  animation: floatShape 10s ease-in-out infinite 0.5s;
}
.hbs-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 40%;
  animation: floatShape 12s ease-in-out infinite 1s;
  opacity: 0.5;
}
@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.04);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(26, 86, 219, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.nc-hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 22px;
}
.nc-hero-sub {
  color: var(--text-sub);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.hero-play-btn:hover {
  gap: 16px;
  color: var(--blue);
}
.play-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.hero-play-btn:hover .play-circle {
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.3);
  transform: scale(1.08);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-stars i {
  color: #f59e0b;
  font-size: 0.8rem;
}
.trust-text span {
  font-size: 0.78rem;
  color: var(--text-sub);
  font-weight: 500;
}

/* hero visual */
.hero-visual-wrap {
  position: relative;
  padding: 20px 60px 20px 20px;
}
.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.hero-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(26, 86, 219, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  animation: floatCard 4s ease-in-out infinite;
}
.hfc-1 {
  bottom: 40px;
  left: 0;
  animation-delay: 0s;
}
.hfc-2 {
  top: 30px;
  right: 0;
  animation-delay: 0.6s;
  flex-direction: column;
  text-align: center;
  padding: 16px 22px;
}
.hfc-3 {
  bottom: 120px;
  right: 10px;
  animation-delay: 1.2s;
  flex-direction: column;
  text-align: center;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hfc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hfc-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.hfc-sub {
  font-size: 0.72rem;
  color: var(--text-sub);
}
.hfc-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.hfc-label {
  font-size: 0.72rem;
  color: var(--text-sub);
  font-weight: 600;
}
.hfc-big-icon {
  font-size: 1.6rem;
  color: var(--blue);
}

/* ══════════════════════════════════════════
   LOGOS STRIP
══════════════════════════════════════════ */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
}
.logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.logos-track-wrap {
  overflow: hidden;
}
.logos-scroll-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}
.logos-scroll-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--gray);
  color: var(--text-sub);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  white-space: nowrap;
  transition: all 0.25s;
  cursor: default;
}
.logo-chip:hover {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(26, 86, 219, 0.3);
}

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */
.nc-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  height: 100%;
}
.nc-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
/* .nc-service-card--featured {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-color: var(--blue);
  color: var(--white);
} */
.nc-service-card--featured h4,
.nc-service-card--featured p {
  color: rgba(255, 255, 255, 0.9);
}
.nc-service-card--featured .nsc-link {
  color: rgba(255, 255, 255, 0.9);
}
.nc-service-card--featured .nsc-number {
  color: rgba(255, 255, 255, 0.1);
}

.nsc-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: transform 0.3s;
}
.nc-service-card--featured .nsc-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.nc-service-card:hover .nsc-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.nc-service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.nc-service-card p {
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.nsc-link {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.nsc-link:hover {
  gap: 10px;
}
.nsc-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.nc-service-card:hover .nsc-number {
  color: var(--blue-light);
}

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.nc-stats-section {
  padding: 0 0 0;
  background: var(--off-white);
}
.nc-stats-inner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 0 0;
}
.nc-stat-item {
  padding: 52px 32px;
  text-align: center;
  position: relative;
  color: var(--white);
}
.nc-stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
}
.col-lg-3:last-child .nc-stat-item::after {
  display: none;
}
.nc-stat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.nc-stat-suffix {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
}
.nc-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-img-wrap {
  position: relative;
}
.why-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 480px;
  object-fit: cover;
}
.why-exp-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(26, 86, 219, 0.35);
  animation: floatCard 5s ease-in-out infinite;
}
.web-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.web-text {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1.4;
}
.why-cert-strip {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-sub);
  animation: floatCard 6s ease-in-out infinite 0.4s;
}
.why-cert-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.why-cert-strip i {
  color: var(--blue);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.wi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.why-item:hover .wi-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}
.why-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-item p {
  font-size: 0.87rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════
   PORTFOLIO PREVIEW
══════════════════════════════════════════ */
.port-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.port-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.port-card--large img {
  height: 440px;
}
.port-card:hover img {
  transform: scale(1.05);
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.2) 60%,
    transparent 100%
  );
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.35s;
}
.port-card:hover .port-overlay {
  opacity: 1;
}
.port-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 4px 12px;
  width: fit-content;
}
.port-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
.port-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}
.port-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s;
}
.port-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.nc-testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  height: 100%;
}
.nc-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.nc-testi-card--featured {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-color: var(--blue);
}
.nc-testi-card--featured .ntc-text,
.nc-testi-card--featured .ntc-name {
  color: var(--white);
}
.nc-testi-card--featured .ntc-role {
  color: rgba(255, 255, 255, 0.75);
}
.nc-testi-card--featured .ntc-quote {
  color: rgba(255, 255, 255, 0.15);
}
.ntc-stars i {
  color: #f59e0b;
  font-size: 0.82rem;
}
.ntc-text {
  color: var(--text-sub);
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 16px 0 24px;
}
.ntc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ntc-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-light);
}
.nc-testi-card--featured .ntc-author img {
  border-color: rgba(255, 255, 255, 0.3);
}
.ntc-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}
.ntc-role {
  font-size: 0.75rem;
  color: var(--text-sub);
}
.ntc-quote {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 3rem;
  color: var(--blue-light);
  line-height: 1;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.nc-cta-section {
  padding: 80px 0;
}
.nc-cta-inner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.cta-bg-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.nc-cta-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.nc-cta-title span {
  background: linear-gradient(90deg, #93c5fd, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nc-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.nc-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}
.nc-footer .nc-brand {
  color: var(--white);
}
.nc-footer .nc-brand span {
  color: var(--blue-mid);
}
.nc-footer .brand-icon {
  background: var(--blue);
}
.nc-footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.nc-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.nc-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s;
}
.nc-socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.nc-footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.nc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nc-footer-links li {
  margin-bottom: 12px;
}
.nc-footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.nc-footer-links a:hover {
  color: var(--white);
}

.nc-newsletter {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 14px;
}
.nc-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
}
.nc-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.nc-newsletter button {
  background: var(--blue);
  border: none;
  color: var(--white);
  padding: 0 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.nc-newsletter button:hover {
  background: var(--blue-dark);
}

.nc-footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.nc-footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 5px 10px;
}

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

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .nc-hero {
    padding: 110px 0 70px;
  }
  .hero-visual-wrap {
    padding: 20px 20px;
  }
  .why-exp-badge {
    left: 10px;
  }
  .why-cert-strip {
    right: 10px;
  }
  .nc-cta-inner {
    padding: 44px 32px;
  }
}
@media (max-width: 767px) {
  .nc-stat-item::after {
    display: none;
  }
  .nc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hfc-1,
  .hfc-2,
  .hfc-3 {
    display: none;
  }
}
.about-hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.about-hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-hero-diagonal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=900&q=80")
    center/cover;
  opacity: 0.15;
}

.about-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.about-hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 36px;
}

.about-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  border: 4px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.about-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.ah-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(26, 86, 219, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}

.ah-badge-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.ah-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.4;
}

/* ② OUR STORY */
.story-section {
  padding: 120px 0 100px;
  background: var(--white);
}

.story-tag-line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.story-left {
  position: relative;
  padding-left: 48px;
}

.story-big-text {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--gray);
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.story-content {
  position: relative;
  z-index: 1;
}

.story-body {
  color: var(--text-sub);
  font-size: 0.97rem;
  line-height: 2;
}

.story-highlight {
  border-left: 4px solid var(--blue);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
}

.story-imgs {
  position: relative;
  padding: 20px 20px 60px 20px;
}

.story-img-top {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img-top img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.story-img-bottom {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 65%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 86, 219, 0.2);
  border: 4px solid var(--white);
}

.story-img-bottom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-mini-stat {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.sms-item {
  text-align: left;
}

.sms-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.sms-label {
  font-size: 0.78rem;
  color: var(--text-sub);
  font-weight: 600;
  margin-top: 4px;
}

.sms-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ③ CORE VALUES */
.values-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.values-bg-num {
  position: absolute;
  font-size: 22vw;
  font-weight: 800;
  color: rgba(26, 86, 219, 0.04);
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.vc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.value-card:hover .vc-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}

.vc-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.vc-body p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 0;
}

/* ④ TEAM */
.team-section {
  padding: 100px 0;
  background: var(--white);
}

.nc-team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.nc-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ntm-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.ntm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(20%);
}

.nc-team-card:hover .ntm-img img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.ntm-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.7) 0%,
    transparent 55%
  );
}

.ntm-socials {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.nc-team-card:hover .ntm-socials {
  opacity: 1;
  transform: translateY(0);
}

.ntm-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.ntm-socials a:hover {
  background: var(--blue);
  color: var(--white);
}

.ntm-info {
  padding: 22px 22px 26px;
}

.ntm-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.ntm-info span {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ⑤ MILESTONES TIMELINE */
.timeline-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid), var(--blue));
}

.tl-bg-text {
  position: absolute;
  font-size: 18vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.tl-line {
  position: relative;
  margin-top: 60px;
}

.tl-line::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.tl-item {
  position: relative;
  padding-top: 64px;
  text-align: center;
}

.tl-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px var(--blue);
  z-index: 2;
}

.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue-mid);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.tl-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ⑥ AWARDS */
.awards-section {
  padding: 70px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.award-icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.award-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.award-card p {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin: 0;
}

@media (max-width: 991px) {
  .about-hero-diagonal {
    width: 100%;
    clip-path: none;
    opacity: 0.1;
  }

  .story-tag-line {
    display: none;
  }

  .story-left {
    padding-left: 0;
  }

  .story-img-bottom {
    position: relative;
    right: 0;
    width: 100%;
    margin-top: 16px;
  }

  .ah-badge {
    left: 10px;
    bottom: -10px;
  }

  .tl-line::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .story-big-text {
    display: none;
  }

  .values-bg-num {
    display: none;
  }
}
.svc-hero {
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, #0a2558 100%);
  text-align: center;
}

.svc-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.svc-hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(26, 86, 219, 0.3) 0%,
    transparent 65%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.svc-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.svc-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.svc-hero-sub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* pill tabs — service quick nav */
.svc-pill-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

.svc-pill:hover,
.svc-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ② MAIN SERVICES — big detailed cards */
.svc-main {
  padding: 100px 0;
  background: var(--white);
}

.svc-big-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  background: var(--white);
}

.svc-big-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-big-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.svc-big-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.svc-big-card:hover .svc-big-card-img img {
  transform: scale(1.06);
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75) 0%,
    transparent 60%
  );
}

.svc-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 4px 12px;
}

.svc-big-card-body {
  padding: 28px 28px 32px;
}

.svc-big-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition:
    background 0.3s,
    transform 0.3s;
}

.svc-big-card:hover .svc-big-card-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-5deg) scale(1.08);
}

.svc-big-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-big-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 18px;
}

.svc-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.svc-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 4px;
  padding: 3px 10px;
}

/* ③ HOW WE WORK — numbered alternating rows */
.process-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.proc-bg-line {
  position: absolute;
  left: 50%;
  top: 160px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    var(--border),
    transparent
  );
  transform: translateX(-50%);
}

.proc-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.proc-row:last-child {
  margin-bottom: 0;
}

.proc-row.proc-reverse {
  flex-direction: row-reverse;
}

.proc-num-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.35);
  position: relative;
  z-index: 2;
}

.proc-num-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(26, 86, 219, 0.3);
  animation: spinDash 12s linear infinite;
}

@keyframes spinDash {
  to {
    transform: rotate(360deg);
  }
}

.proc-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.proc-content:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.proc-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.proc-content p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 0;
}

.proc-img {
  flex: 0 0 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proc-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ④ TECH STACK */
.tech-section {
  padding: 90px 0;
  background: var(--white);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-sub);
  transition: all 0.25s;
  cursor: default;
}

.tech-chip i {
  color: var(--blue);
  font-size: 1rem;
}

.tech-chip:hover {
  background: var(--blue-light);
  border-color: rgba(26, 86, 219, 0.3);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ⑤ PRICING */
.pricing-section {
  padding: 100px 0;
  background: var(--off-white);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-color: var(--blue);
  color: var(--white);
}

.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 4px 16px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.price-card--featured .price-tier {
  color: rgba(255, 255, 255, 0.75);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card--featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.price-card--featured .price-period {
  color: rgba(255, 255, 255, 0.6);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.price-card--featured .price-divider {
  background: rgba(255, 255, 255, 0.2);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-bottom: 12px;
}

.price-card--featured .price-features li {
  color: rgba(255, 255, 255, 0.85);
}

.price-features li i {
  color: var(--blue);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.price-card--featured .price-features li i {
  color: rgba(255, 255, 255, 0.9);
}

.price-card--featured .nc-btn-white:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

/* ⑥ FAQ */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.svc-faq-item {
  border-bottom: 1px solid var(--border);
}

.svc-faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.svc-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
}

.svc-faq-q span {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
}

.svc-faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.3s;
}

.svc-faq-item.open .svc-faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.svc-faq-a {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding-bottom: 0;
}

.svc-faq-item.open .svc-faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}

@media (max-width: 991px) {
  .proc-row,
  .proc-row.proc-reverse {
    flex-direction: column;
    gap: 24px;
  }

  .proc-bg-line {
    display: none;
  }

  .proc-img {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .svc-pill-nav {
    gap: 8px;
  }
}
.ct-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.ct-hero-left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 57%;
  height: 100%;
  background:var(--navy);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.ct-hero-left-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.ct-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color:var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}

.ct-hero-sub {
    color: rgba(255, 255, 255, 0.58);
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 32px;
}

.ct-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ct-qi-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  box-shadow: var(--shadow);
}

.ct-qi-pill i {
  color: var(--blue);
}

/* ② INFO CARDS */
.ct-cards-section {
  padding: 80px 0 0;
  background: var(--white);
}

.ct-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ct-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ct-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.ct-info-card:hover::before {
  opacity: 1;
}

.ct-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  transition:
    background 0.3s,
    transform 0.3s;
}

.ct-info-card:hover .ct-card-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.ct-info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.ct-info-card p {
  font-size: 0.86rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

.ct-info-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ct-info-card a:hover {
  opacity: 0.7;
}

/* ③ FORM + MAP */
.ct-main-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.ct-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ct-form-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.ct-form-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.ct-form-sub {
  color: var(--text-sub);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.ct-field {
  margin-bottom: 20px;
}

.ct-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.ct-input {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}

.ct-input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.ct-input::placeholder {
  color: var(--gray-mid);
}

textarea.ct-input {
  resize: vertical;
  min-height: 130px;
}

.ct-interest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.ct-i-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-sub);
  background: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.ct-i-pill:hover,
.ct-i-pill.selected {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

.ct-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px;
  cursor: pointer;
  transition:
    opacity 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.ct-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.ct-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.35);
}

.ct-submit-btn:hover::before {
  transform: translateX(100%);
}

/* MAP SIDE */
.ct-map-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.ct-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  flex: 1;
  min-height: 340px;
}

.ct-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
  filter: contrast(1.1) saturate(0.85);
}

.ct-map-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.ct-map-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ct-map-badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.ct-map-badge-sub {
  font-size: 0.72rem;
  color: var(--text-sub);
}

.ct-online-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.ct-online-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

.ct-online-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.ct-online-sub {
  font-size: 0.75rem;
  color: var(--text-sub);
}

.ct-social-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ct-social-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.ct-social-icons {
  display: flex;
  gap: 8px;
}

.ct-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s;
}

.ct-social-icons a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ④ WHY CONTACT US */
.ct-why-section {
  padding: 90px 0;
  background: var(--off-white);
}

.ct-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.ct-why-item:last-child {
  margin-bottom: 0;
}

.ct-why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.ct-why-item:hover .ct-why-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}

.ct-why-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.ct-why-item p {
  font-size: 0.87rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin: 0;
}

.ct-why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.ct-why-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.ct-why-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.ct-why-img-badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.ct-why-img-badge-label {
  font-size: 0.72rem;
  color: var(--text-sub);
  font-weight: 600;
  margin-top: 4px;
}

/* ⑤ OFFICES */
.ct-offices-section {
  padding: 90px 0;
  background: var(--white);
}

.ct-office-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.ct-office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ct-office-img {
  overflow: hidden;
  height: 200px;
}

.ct-office-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ct-office-card:hover .ct-office-img img {
  transform: scale(1.06);
}

.ct-office-body {
  padding: 24px 26px 28px;
}

.ct-office-city {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-office-city i {
  color: var(--blue);
  font-size: 0.9rem;
}

.ct-office-body p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ct-office-body a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.ct-office-body a:hover {
  gap: 10px;
}

@media (max-width: 991px) {
  .ct-hero-left-bg {
    display: none;
  }

  .ct-form-card {
    padding: 32px 24px;
  }

  .ct-map-wrap {
    min-height: 280px;
  }

  .ct-map-wrap iframe {
    min-height: 280px;
  }

  .ct-why-img img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .ct-social-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
