:root {
  /* Nordic Prismatic Precision — color tokens */
  --p-primary: #0274B8;
  --p-secondary:#45a2d7;
  --p-tertiary: #00505f;
  --p-surface: #faf8ff;
  --p-surface-container-lowest: #ffffff;
  --p-surface-container-low: #f2f3ff;
  --p-on-surface: #131b2e;
  --p-on-surface-variant: #464555;
  --p-outline: #777587;
  --p-outline-variant: #c7c4d8;

  /* ==========================================================
     Type system — exactly two font families site-wide:
     Outfit  -> headings, display numbers, brand mark (personality)
     Inter   -> body copy, nav, buttons, form fields (readability)
     ========================================================== */
  --p-font-heading: "Plus Jakarta Sans", sans-serif;
  --p-font-body: "Plus Jakarta Sans", sans-serif;

  /* Shared responsive type scale (clamp = fluid between the two sizes given,
     driven by viewport width, so we no longer need a stack of near-duplicate
     per-breakpoint media queries for every section's heading/subtitle). */
  --p-text-eyebrow:  clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem);
  --p-text-title:    clamp(1.75rem, 1.35rem + 1.85vw, 2.75rem);
  --p-text-subtitle: clamp(0.9375rem, 0.87rem + 0.3vw, 1.125rem);
  --p-text-heading-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --p-text-heading-md: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --p-text-heading-sm: clamp(0.8125rem, 0.79rem + 0.1vw, 0.875rem);
  --p-text-body-md:  clamp(0.8125rem, 0.79rem + 0.15vw, 0.875rem);
  --p-text-body-sm:  clamp(0.75rem, 0.735rem + 0.08vw, 0.8125rem);

  /* shape */
  --p-radius-micro: 0.375rem;  /* chips, inputs, badges */
  --p-radius-md: 0.5rem;       /* buttons, standard containers */
  --p-radius-lg: 0.75rem;      /* flyouts, panels */

  /* spacing (8pt cadence) */
  --p-space-xs: 0.5rem;
  --p-space-sm: 0.75rem;
  --p-space-md: 1rem;
  --p-space-lg: 1.5rem;

  /* elevation */
  --p-elevation-1: 0 1px 2px 0 rgba(19, 27, 46, 0.04), 0 1px 3px 0 rgba(19, 27, 46, 0.02);
  --p-elevation-3: 0 20px 25px -5px rgba(19, 27, 46, 0.08), 0 8px 10px -6px rgba(19, 27, 46, 0.03);
}

body {
  margin: 0;
  font-family: var(--p-font-body);
  color: var(--p-on-surface);
  -webkit-font-smoothing: antialiased;
}

/* Every real heading tag site-wide uses the display family. Every *-title /
   *-heading class in the markup is already applied to an h1–h6 element, so
   this one rule carries the heading font through the whole page. */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--p-font-heading);
  margin: 0;
}

#services,
#portfolio,
#faq,
#consultation,
#why-us,
#how-we-work{
  scroll-margin-top: 80px;
}

.stat-number,
.step-number,
.prismatic-brand {
  font-family: var(--p-font-heading);
}


/* ===== Navbar ===== */
/* NOTE: the header markup previously carried Bootstrap's ".sticky-top"
   utility (position:sticky;top:0), but this rule set "position: relative",
   which — loading after Bootstrap's CSS with equal selector specificity —
   silently cancelled it. The header is made sticky explicitly here instead,
   across every breakpoint. */
.prismatic-navbar {
    background-color: #FFFEFF;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: padding 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.95rem 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    border-bottom: 1px solid #eaedff;
}

.text-white{
  background-color: #0274B8 !important;
}
.text-white:hover{
  background-color: #033f62 !important;
}
.btn-white:hover{
  border: 1px solid #0274B8 !important;
}
/* Manual flex layout that replaces Bootstrap's navbar/navbar-expand-lg
   collapse component now that mobile nav is handled by an Offcanvas. */
.navbar-flex {
  padding: 0;
  gap: var(--p-space-md);
}

.prismatic-navbar.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px -2px rgba(19, 27, 46, 0.07);
}


/* Brand */
.prismatic-brand {
  display: flex;
  align-items: center;
  gap: var(--p-space-xs);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  color: var(--p-on-surface);
}

.prismatic-brand:hover { color: var(--p-on-surface); }

.prismatic-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--p-radius-micro);
  background: linear-gradient(135deg, var(--p-primary) 0%, var(--p-secondary) 100%);
  position: relative;
  flex-shrink: 0;
}

.prismatic-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* Nav links */
.prismatic-nav .nav-link {
  color: var(--p-on-surface-variant);
  font-weight: 500;
  font-size: 0.9375rem; /* body-md */
  padding: var(--p-space-xs) var(--p-space-sm);
  transition: color 0.2s ease, font-weight 0.2s ease;
  position: relative;
}

.prismatic-nav .nav-link:hover,
.prismatic-nav .nav-link:focus-visible,
.prismatic-nav .nav-link.active {
  color: var(--p-primary) !important;
  font-weight: 600;
}

.prismatic-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: var(--p-space-sm);
  right: var(--p-space-sm);
  height: 2.5px;
  background-color: var(--p-primary);
  border-radius: 2px;
}

/* Language switcher */
.lang-toggle {
  border: 1px solid var(--p-outline-variant);
  background-color: var(--p-surface-container-lowest);
  color: var(--p-on-surface);
  font-weight: 600;
  font-size: 0.8125rem; /* label-md */
  letter-spacing: 0.02em;
  padding: 0.4rem var(--p-space-sm);
  border-radius: var(--p-radius-micro);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-toggle:hover,
.lang-toggle:focus {
  color: var(--p-on-surface);
  border-color: var(--p-primary);
}

.lang-toggle::after { display: none; }

.lang-flag-icon {
  font-size: 1rem;
  line-height: 1;
}

.lang-item-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-menu {
  min-width: 9.5rem;
  border: 1px solid var(--p-outline-variant);
  border-radius: var(--p-radius-lg);
  box-shadow: var(--p-elevation-3);
  padding: 0.35rem;
}

.lang-menu .dropdown-item {
  border-radius: var(--p-radius-micro);
  font-size: 0.875rem;
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-menu .dropdown-item.active,
.lang-menu .dropdown-item:active {
  background-color: var(--p-surface-container-low);
  color: var(--p-primary);
}

.lang-check {
  color: var(--p-primary);
  visibility: hidden;
}

.lang-menu .dropdown-item.active .lang-check { visibility: visible; }

/* CTA */
.btn-prismatic {
  background-color: var(--p-primary);
  border-color: var(--p-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem; /* title-sm */
  padding: 0.6rem 1.35rem;
  border-radius: var(--p-radius-md);
  box-shadow: 0 1px 2px rgba(53, 37, 205, 0.2);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-prismatic:hover,
.btn-prismatic:focus {
  background-color: color-mix(in srgb, var(--p-primary) 85%, black);
  border-color: color-mix(in srgb, var(--p-primary) 85%, black);
  color: #fff;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.4rem;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(53, 37, 205, 0.12); }
.p-md-4{
    padding: 10px !important;
}

@media (max-width: 991.98px) {
  .prismatic-navbar.is-scrolled,
  .prismatic-navbar {
    background-color: var(--p-surface);
  }
}

/* ===== Mobile Navigation Drawer (Bootstrap Offcanvas) ===== */
.prismatic-offcanvas {
  --bs-offcanvas-width: 320px;
  background-color: var(--p-surface-container-lowest);
}

.prismatic-offcanvas .offcanvas-header {
  padding: var(--p-space-lg) var(--p-space-lg) var(--p-space-sm);
  border-bottom: 1px solid var(--p-surface-container-low);
}

.prismatic-offcanvas .offcanvas-title {
  font-family: var(--p-font-heading);
  color: var(--p-outline);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
}

.prismatic-offcanvas .offcanvas-body {
  padding: var(--p-space-lg);
}

.prismatic-nav-mobile .nav-link {
  color: var(--p-on-surface);
  font-weight: 600;
  font-size: 1.0625rem;
  padding: var(--p-space-sm) var(--p-space-xs);
  border-bottom: 1px solid var(--p-surface-container-low);
  transition: color 0.2s ease, background-color 0.2s ease, padding 0.2s ease;
}

.prismatic-nav-mobile .nav-link:hover,
.prismatic-nav-mobile .nav-link:focus-visible,
.prismatic-nav-mobile .nav-link.active {
  color: var(--p-primary) !important;
  font-weight: 700;
}

.prismatic-nav-mobile .nav-link.active {
  background-color: var(--p-surface-container-low);
  padding-left: var(--p-space-sm);
  border-radius: var(--p-radius-micro);
}

/* Language dropdown sits directly beside the hamburger toggle at every
   mobile width — no extra positioning needed since both live in the same
   always-visible flex row in the markup. */
.lang-dropdown-wrapper { flex-shrink: 0; }

/* ===== Scroll-to-Top Button ===== */
.scroll-top-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: var(--p-primary);
  color: #fff;
  box-shadow: var(--p-elevation-3);
  cursor: pointer;
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
  background-color: color-mix(in srgb, var(--p-primary) 85%, black);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-btn { transition: opacity 0.01ms, visibility 0.01ms; }
}



/* Color Overrides & Typography */
.bg-primary-subtle {
  background-color: #eceaff !important;
}

.text-primary {
  color: #0274B8 !important;
}

.badge-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
}

.dot-active {
  width: 8px;
  height: 8px;
  display: inline-block;
}
.small{
    font-size: 11px !important;
}
.extra-small {
  font-size: 0.75rem;
}

/* Hero Visual Mockup Positioning */
.hero-mockup-wrapper {
  background: #ffffff;
  border-radius: 20px;
}
.display-4{
    font-size: clamp(2rem, 1.4rem + 2.65vw, 3.5rem);
}
.img-fluid{
    height: 300px;
}
.floating-card {
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-3px);
}

.badge-top-left {
  top: 20px;
  left: 20px;
}

.badge-top-right {
  top: 20px;
  right: 20px;
}

.badge-bottom-left {
  bottom: 20px;
  left: 20px;
}
.fs-5{
    color: #464555 !important;
    font-size: 18px !important;
}

/* Mobile Adjustments for Floating Badges */
@media (max-width: 576px) {
  .badge-top-left, .badge-top-right, .badge-bottom-left {
    position: static !important;
    margin-bottom: 10px;
  }
  .fs-5{
    font-size: 16px !important;
  }
  .img-fluid{
    height: auto !important;
}
}

/* Card Container Base */
.service-card {
  background-color: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(53, 37, 205, 0.08) !important;
}

/* Icon Box Style */
.card-icon-box {
  width: 42px;
  height: 42px;
  background-color: #eceaff;
  color: #0274B8;
}
.card-icon-box svg{
  stroke: #0274B8 !important;
}

/* ==========================================================
   Pixel-Based Font Sizing Hierarchy Across Breakpoints
   ========================================================== */

/* 1. Mobile First (< 576px) */
.service-eyebrow {
  font-size: 12px;
}
.py-5{
    padding-top: 2rem !important;
        padding-bottom: 3rem !important;

}
.service-title {
  font-size: 28px;
  line-height: 34px;
}

.service-subtitle {
  font-size: 15px;
  line-height: 22px;
}

.card-heading {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
}

.card-body-text {
  font-size: 13px;
  line-height: 19px;
}

/* 2. Small Devices / Tablets (sm: >= 576px) */
@media (min-width: 576px) {
  .service-eyebrow {
    font-size: 13px;
  }

  .service-title {
    font-size: 32px;
    line-height: 38px;
  }

  .service-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .card-body-text {
    font-size: 13px;
    line-height: 20px;
  }
}

/* 3. Medium Devices / Laptops (md: >= 768px) */
@media (min-width: 768px) {
  .service-eyebrow {
    font-size: 13px;
  }

  .service-title {
    font-size: 38px;
    line-height: 44px;
  }

  .service-subtitle {
    font-size: 17px;
    line-height: 25px;
  }

  .card-body-text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* 4. Large Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .service-eyebrow {
    font-size: 14px;
  }

  .service-title {
    font-size: 44px;
    line-height: 50px;
  }

  .service-subtitle {
    font-size: 18px;
    line-height: 27px;
  }

  .card-body-text {
    font-size: 13px; /* Slightly compact for 4-column fit */
    line-height: 20px;
  }
}

/* 5. Extra Large Displays (xl: >= 1200px) */
@media (min-width: 1200px) {
  .card-body-text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* Centered Scope CTA Button */
.scope-cta-btn {
  background-color: #e0e4ff;
  color: #0f172a;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.scope-cta-btn:hover {
  background-color: #d4daff;
  color: #3525cd;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(53, 37, 205, 0.12) !important;
}

/* Pixel Font Size Breakpoints for CTA Button */
.scope-cta-btn {
  font-size: 15px;
}

@media (min-width: 768px) {
  .scope-cta-btn {
    font-size: 16px;
  }
}

/* Card Container */
.dev-card {
  background-color: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(53, 37, 205, 0.08) !important;
}

/* Icon Box Style */
.card-icon-box {
  width: 42px;
  height: 42px;
  background-color: #eceaff;
  color: #0274B8;
}

/* Feature Bullet Text */
.card-feature-list {
  color: #475569;
}

/* Bottom Retainer Banner Background */
.retainer-banner {
  background-color: #e6e6ff;
  border: 1px solid #d4daff;
}

/* Card Links */
.card-link {
  font-size: 13px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  color: #24169c !important;
}

/* ==========================================================
   Pixel-Based Font Sizing Hierarchy Across Breakpoints
   ========================================================== */

/* 1. Mobile First (< 576px) */
.service-eyebrow {
  font-size: 12px;
}

.service-title {
  font-size: 28px;
  line-height: 34px;
}

.service-subtitle {
  font-size: 15px;
  line-height: 22px;
}

.card-body-text {
  font-size: 13px;
  line-height: 20px;
}

.card-feature-list li {
  font-size: 13px;
}

.retainer-heading {
  font-size: 16px;
  line-height: 22px;
}

.retainer-body-text {
  font-size: 13px;
  line-height: 19px;
}

/* 2. Small Devices / Tablets (sm: >= 576px) */
@media (min-width: 576px) {
  .service-eyebrow {
    font-size: 13px;
  }

  .service-title {
    font-size: 32px;
    line-height: 38px;
  }

  .service-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .card-body-text {
    font-size: 14px;
    line-height: 21px;
  }

  .card-feature-list li {
    font-size: 13px;
  }
}

/* 3. Medium Devices / Laptops (md: >= 768px) */
@media (min-width: 768px) {
  .service-eyebrow {
    font-size: 13px;
  }

  .service-title {
    font-size: 38px;
    line-height: 44px;
  }

  .service-subtitle {
    font-size: 17px;
    line-height: 25px;
  }

  .card-body-text {
    font-size: 14px;
    line-height: 21px;
  }

  .card-feature-list li {
    font-size: 13px;
  }

  .retainer-heading {
    font-size: 18px;
    line-height: 24px;
  }

  .retainer-body-text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* 4. Large Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
    .partner-eyebrow{
        background-color: #E2E7FF !important;
        border: none !important
        ;
    }
  .service-eyebrow {
    font-size: 14px;
  }

  .service-title {
    font-size: 42px;
    line-height: 48px;
  }

  .service-subtitle {
    font-size: 18px;
    line-height: 27px;
  }

  .card-body-text {
    font-size: 13px;
    line-height: 20px;
  }

  .card-feature-list li {
    font-size: 12.5px;
  }
}

/* 5. Extra Large Displays (xl: >= 1200px) */
@media (min-width: 1200px) {

  .card-body-text {
    font-size: 14px;
    line-height: 21px;
  }

  .card-feature-list li {
    font-size: 13px;
  }
  .retainer-banner{
    padding: 32px !important;
  }
  .retainer-body-text{
    max-width: 600px !important;
    font-size: 15px !important;
    color: #464555 !important;
  }
  
}
/* Feature Icons */
.feature-icon-box {
  width: 38px;
  height: 38px;
  background-color: #eceaff;
  color: #0274B8;
}

/* Feature Cards */
.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(54, 37, 204, 0.08) !important;
}

/* Bottom Tag Pills */
.partner-pill {
  background-color: #eceaff;
  color: #0274B8;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
}

/* Image Overlay Positionings */
.overlay-badge-top {
  top: 24px;
  left: 24px;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #0274B8 !important;
}

.overlay-card-bottom {
  bottom: 24px;
  right: 24px;
  max-width: 300px;
  z-index: 2;
}

/* Breakpoint Typography & Adjustments */
.partner-eyebrow {
  font-size: 13px;
  color: #0274B8 !important;
}

.partner-title {
  font-size: 28px;
  line-height: 34px;
}

.partner-subtitle {
  font-size: 14px;
  line-height: 22px;
}

.feature-card-heading {
  font-size: 15px;
}

.feature-card-desc {
  font-size: 12.5px;
  line-height: 18px;
}

.partner-badge-text {
  font-size: 13px;
}

.overlay-card-title {
  font-size: 14px;
}

.overlay-card-desc {
  font-size: 12px;
  line-height: 16px;
}

/* Desktop Font Breakpoints */
@media (min-width: 768px) {
  .partner-title {
    font-size: 34px;
    line-height: 40px;
  }
  
  .partner-subtitle {
    font-size: 18px;
    line-height: 23px;
color: #464555 !important;  }
  
  .feature-card-heading {
    font-size: 16px;
  }
  
  .feature-card-desc {
    font-size: 13px;
    line-height: 19px;
  }
}

@media (min-width: 992px) {
  .partner-title {
    font-size: 38px;
    line-height: 44px;
  }
}

/* Responsive adjustment for floating overlays on very small screens */
@media (max-width: 575px) {
  .overlay-badge-top {
    top: 16px;
    left: 16px;
  }
  .partner-subtitle{
    font-size: 16px !important;
  }
  .overlay-card-bottom {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .partner-image-wrapper{
height: 300px !important;
object-fit: cover;
}}

/* Card Hover & Transition Styling */
.project-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(54, 37, 204, 0.08) !important;
}

.card-img-wrapper {
  height: 240px;
}

.card-img-wrapper img {
  height: 100%;
  transition: transform 0.3s ease;
}

.project-card:hover .card-img-wrapper img {
  transform: scale(1.03);
}

/* Badge Styles */
.project-img-badge {
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 10px;
  color: #1e293b !important;
}

.metric-badge {
  background-color: #0274B8;
  font-size: 12px;
}

/* Text Links */
.view-all-link {
  font-size: 14px;
  color: #0274B8 !important;
  transition: gap 0.2s ease;
}

.view-all-link:hover {
  color: #24169c !important;
}

.card-read-link {
  font-size: 13px;
  color: #0274B8 !important;
}

.card-read-link:hover {
  color: #24169c !important;
}

/* ==========================================================
   Pixel-Based Responsive Font Size Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.project-eyebrow {
  font-size: 12px;
  color: #0274B8 !important;
}

.project-title {
  font-size: 26px;
  line-height: 32px;
}

.project-subtitle {
  font-size: 14px;
  line-height: 21px;
}

.card-meta-location {
  font-size: 11px;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 18px;
  line-height: 24px;
}

.card-text {
  font-size: 13px;
  line-height: 19px;
}

/* Small / Tablet (sm: >= 576px) */
@media (min-width: 576px) {
  .project-title {
    font-size: 30px;
    line-height: 36px;
  }
  
  .card-title {
    font-size: 19px;
  }
}

/* Medium Laptops (md: >= 768px) */
@media (min-width: 768px) {
  .project-title {
    font-size: 34px;
    line-height: 40px;
  }

  .project-subtitle {
    font-size: 15px;
    line-height: 23px;
  }
  
  .card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .card-text {
    font-size: 13.5px;
    line-height: 20px;
  }
}

/* Large Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .project-title {
    font-size: 38px;
    line-height: 44px;
  }
}
/* Card Base Styling & Hover Effects */
.process-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(54, 37, 204, 0.08) !important;
}

/* Number Colors */
.step-number {
  font-size: 32px;
  line-height: 1;
  color: #d1d5db; /* Soft muted gray/purple for inactive numbers */
}

.active-step-number {
  color: #0274B8; /* Highlight color for Step 03 */
}

/* Step 03 Active Footer Styling */
.active-step-footer {
  color: #0274B8;
}

/* Border separator tint */
.process-card .border-top {
  border-color: #f1f5f9 !important;
}

/* ==========================================================
   Pixel-Based Responsive Typography Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.process-eyebrow {
  font-size: 12px;
  color: #0274B8 !important;
}

.process-title {
  font-size: 28px;
  line-height: 34px;
}

.process-subtitle {
  font-size: 14px;
  line-height: 21px;
}

.step-heading {
  font-size: 17px;
  line-height: 22px;
}

.step-desc {
  font-size: 12.5px;
  line-height: 18px;
}

.step-footer-text {
  font-size: 12px;
}

/* Small / Tablet (sm: >= 576px) */
@media (min-width: 576px) {
  .process-title {
    font-size: 32px;
    line-height: 38px;
  }

  .process-subtitle {
    font-size: 15px;
    line-height: 23px;
  }
}

/* Medium Laptops (md: >= 768px) */
@media (min-width: 768px) {
  .process-title {
    font-size: 36px;
    line-height: 42px;
  }

  .process-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  
  .step-heading {
    font-size: 18px;
    line-height: 23px;
  }

  .step-desc {
    font-size: 13px;
    line-height: 19px;
  }
}

/* Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .process-title {
    font-size: 40px;
    line-height: 46px;
  }

  .step-heading {
    font-size: 16.5px;
    line-height: 22px;
  }

  .step-desc {
    font-size: 12px;
    line-height: 17.5px;
  }
}

/* Large Screens (xl: >= 1200px) */
@media (min-width: 1200px) {
  .step-heading {
    font-size: 17.5px;
    line-height: 23px;
  }

  .step-desc {
    font-size: 12.5px;
    line-height: 18px;
  }
}
/* Color Palette Utilities matching the design */
.text-purple {
  color: #0274B8;
}

.text-dark-slate {
  color: #1e293b;
}

.text-teal {
  color: #0f766e;
}

/* Base Border Adjustments */
.stats-section {
  border-color: #f1f5f9 !important;
}

/* ==========================================================
   Pixel-Based Responsive Typography Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.stat-number {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-heading {
  font-size: 15px;
  line-height: 20px;
}

.stat-desc {
  font-size: 12px;
  line-height: 16px;
}

/* Tablet (sm: >= 576px) */
@media (min-width: 576px) {

  .stat-heading {
    font-size: 16px;
  }

  .stat-desc {
    font-size: 13px;
    line-height: 17px;
  }
}

/* Medium Laptops (md: >= 768px) */
@media (min-width: 768px) {

  .stat-heading {
    font-size: 17px;
    line-height: 22px;
  }

  .stat-desc {
    font-size: 13px;
    line-height: 18px;
  }
}

/* Large Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .stat-heading {
    font-size: 18px;
    line-height: 24px;
  }

  .stat-desc {
    font-size: 14px;
    line-height: 19px;
  }
}
/* Form Field Custom Styling */
.custom-form-input {
  background-color: #f1f3f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #1e293b;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.custom-form-input:focus {
  background-color: #ffffff;
  border-color: #0274B8;
  box-shadow: 0 0 0 3px rgba(54, 37, 204, 0.12);
}

/* Submit Button Custom Styling */
.custom-submit-btn {
  background-color: #0274B8;
  border: none;
  font-size: 15px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.custom-submit-btn:hover {
  background-color: #033f62;
  transform: translateY(-1px);
}

.custom-submit-btn:active {
  transform: translateY(0);
}

/* Step Number Badges */
.step-badge {
  width: 24px;
  height: 24px;
  background-color: #0274B8 !important;
  font-size: 12px;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  background-color: #eceaff !important;
  color: #0274B8 !important;
  font-size: 14px;
}

/* ==========================================================
   Pixel-Based Responsive Typography Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.form-eyebrow {
  font-size: 12px;
  color: #0274B8 !important;
}

.form-title {
  font-size: 26px;
  line-height: 32px;
}

.form-subtitle {
  font-size: 13.5px;
  line-height: 20px;
}

.field-label {
  font-size: 12.5px;
}

.nda-check-label {
  font-size: 12px;
}

.next-title {
  font-size: 18px;
}

.step-header {
  font-size: 13px;
}

.step-body {
  font-size: 12.5px;
  line-height: 18px;
}

.quote-text {
  font-size: 13px;
  line-height: 20px;
}

.client-name {
  font-size: 14px;
}

.client-role {
  font-size: 12px;
}

.trust-text {
  font-size: 12.5px;
}

/* Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .form-title {
    font-size: 32px;
    line-height: 38px;
  }

  .form-subtitle {
    font-size: 14px;
    line-height: 21px;
  }
  
}
.text-warning{
    color:#ffc107 !important;
  }
  /* Custom Accordion Styling */
.custom-faq-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(54, 37, 204, 0.06) !important;
}

/* Accordion Button Defaults & Active State */
.custom-faq-item .accordion-button {
  font-size: 15px;
  color: #1e293b;
  box-shadow: none !important;
  border: none;
  background-color: #ffffff !important;
  transition: color 0.2s ease;
}

.custom-faq-item .accordion-button:not(.collapsed) {
  color: #0274B8 !important;
}

/* Override Accordion Arrow Color to #0274B8 */
.custom-faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233625cc'%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");
  transition: transform 0.25s ease;
}

/* ==========================================================
   Pixel-Based Responsive Typography Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.faq-eyebrow {
  font-size: 12px;
  color: #0274B8 !important;
}

.faq-title {
  font-size: 28px;
  line-height: 34px;
}

.faq-subtitle {
  font-size: 14px;
  line-height: 21px;
}

.custom-faq-item .accordion-button {
  font-size: 14.5px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.faq-body-text {
  font-size: 13px;
  line-height: 20px;
}

/* Small / Tablet (sm: >= 576px) */
@media (min-width: 576px) {
  .faq-title {
    font-size: 32px;
    line-height: 38px;
  }

  .faq-subtitle {
    font-size: 15px;
    line-height: 23px;
  }

  .custom-faq-item .accordion-button {
    font-size: 15.5px;
  }
}

/* Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .faq-title {
    font-size: 38px;
    line-height: 44px;
  }

  .custom-faq-item .accordion-button {
    font-size: 16px;
  }

  .faq-body-text {
    font-size: 13.5px;
  }
}
/* CTA Card Soft Mesh/Linear Gradient Background */
.cta-card {
  background: linear-gradient(135deg, #eef3fe 0%, #f4f3ff 50%, #f0eeff 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Primary Button Custom Style */
.primary-cta-btn {
  background-color: #0274B8;
  border: none;
  font-size: 14.5px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.primary-cta-btn:hover {
  background-color: #033f62;
  transform: translateY(-2px);
}

/* Secondary White Button Style */
.secondary-cta-btn {
  font-size: 14.5px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.secondary-cta-btn:hover {
  background-color: #ffffff;
  color: #0274B8 !important;
  transform: translateY(-2px);
}

/* ==========================================================
   Pixel-Based Responsive Typography Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.cta-eyebrow {
  font-size: 12px;
  color: #0274B8 !important;
}

.cta-title {
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 14px;
  line-height: 22px;
}

.cta-disclaimer {
  font-size: 12px;
}

/* Small / Tablet (sm: >= 576px) */
@media (min-width: 576px) {
  .cta-title {
    font-size: 32px;
    line-height: 38px;
  }

  .cta-desc {
    font-size: 15px;
    line-height: 23px;
  }
}

/* Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .cta-card {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .cta-title {
    font-size: 38px;
    line-height: 44px;
  }

  .cta-desc {
    font-size: 15.5px;
    line-height: 24px;
  }

  .cta-disclaimer {
    font-size: 12.5px;
  }
}
/* Footer Links & Hover States */
.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.legal-links a:hover {
  color: #0274B8 !important;
}

.footer-badge {
  font-size: 12px;
  color: #033f62 !important;
}

/* Base Border Colors */
.footer-section {
  border-color: #f1f5f9 !important;
}

.legal-bar {
  border-color: #f1f5f9 !important;
}

/* ==========================================================
   Pixel-Based Responsive Typography Hierarchy
   ========================================================== */

/* Mobile First (< 576px) */
.brand-title {
  font-size: 18px;
}

.footer-bio {
  font-size: 13px;
  line-height: 20px;
}

.footer-col-title {
  font-size: 15px;
}

.footer-links a,
.footer-contact-list span,
.footer-contact-list a {
  font-size: 13px;
  line-height: 20px;
}

.copyright-text {
  font-size: 12px;
  text-align: center;
}

.legal-links a {
  font-size: 12px;
}

/* Small / Tablet (sm: >= 576px) */
@media (min-width: 576px) {
  .copyright-text {
    text-align: left;
  }
}

/* Desktop Displays (lg: >= 992px) */
@media (min-width: 992px) {
  .footer-bio {
    font-size: 13.5px;
    line-height: 21px;
  }

  .footer-col-title {
    font-size: 16px;
  }

  .footer-links a,
  .footer-contact-list span,
  .footer-contact-list a {
    font-size: 13.5px;
  }
}
/* Change FAQ accordion arrow icons to #0274B8 */
.faq-section .accordion-button::after {
  width: 12px !important;
  height: 12px !important;
  background-size: 0.85rem !important;
  filter: brightness(0) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230274B8'%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;
}

/* Optional: Active state color match */
.faq-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230274B8'%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;
}

.scope-cta-btn:hover{
  color: #0274B8 !important;
}

/* ==========================================
   Language Switcher & Flag Dropdown Styles
   ========================================== */
.lang-dropdown-wrapper {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #464555;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  transition: color 0.2s ease;
  cursor: pointer;
  line-height: 1;
}

.lang-toggle:hover, .lang-toggle:focus {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #0274B8;
}

.lang-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 0.2rem;
  vertical-align: 0.15em;
  border-top: 0.35em solid currentColor;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.lang-flag-icon, .lang-item-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.lang-flag-icon svg, .lang-item-flag svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.lang-menu {
  min-width: 160px;
  padding: 0.4rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem !important;
}

.lang-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #131b2e;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-menu .dropdown-item:hover {
  background-color: #f0f7fc;
  color: #0274B8;
}

.lang-menu .dropdown-item.active {
  background-color: rgba(2, 116, 184, 0.1);
  color: #0274B8;
  font-weight: 600;
}

.lang-menu .dropdown-item .lang-check {
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.lang-menu .dropdown-item.active .lang-check {
  opacity: 1;
}

/* ==========================================
   Hero Trust Signals Styling
   ========================================== */
.hero-trust-wrapper {
  padding-top: 0.75rem;
}

.trust-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  background-color: #eef2ff;
  color: #1e293b;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 50rem;
  line-height: 1.2;
}

.trust-sep-dot {
  color: #cbd5e1;
  font-size: 1rem;
  user-select: none;
}

.trust-releases-text {
  font-size: 0.9rem;
  color: #475569 !important;
  margin-top: 0.35rem;
}
