  :root {
    --blue-start: #01abfb;
    --blue-end: #0176f2;
    --grad: linear-gradient(180deg, #01abfb 0%, #0176f2 100%);
    --grad-h: linear-gradient(135deg, #01abfb 0%, #0176f2 100%);
    --dark: #4f545b;
    --dark2: #0d1f3c;
    --text: #1a2e4a;
    --muted: #5b7a9d;
    --light-bg: #f0f6ff;
    --white: #ffffff;
    --brand: #1B4FFF;
    --brand-light: #4B78FF;
    --brand-pale: #EEF2FF;
    --accent: #FF5E1A;
    --text: #0D0F1A;
    --muted: #5A6080;
    --surface: #FFFFFF;
    --border: rgba(27, 79, 255, .12);
    --radius: 20px;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
  }

  /* Stats row */
  .stats-row {
    margin-top: 60px;
    animation: fadeSlideUp 1s ease .8s both;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
  }

  .stat-val {
    font-family: sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat-label {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    margin-top: 4px;
  }

  .stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .1);
    height: 60px;
    align-self: center;
  }


  /* ── HERO WRAPPER ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* padding: 100px 48px 60px; */
    overflow: hidden;
  }

  /* cilent logos */
  .client_logos {
    padding: 3px !important;
  }

  /* animated mesh bg */
  .mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #f5f5f5;
    animation: meshShift 10s ease-in-out infinite alternate;
  }

  @keyframes meshShift {
    from {
      background-position: 0% 50%;
    }

    to {
      background-position: 100% 50%;
    }
  }

  /* floating grid lines */
  .grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    opacity: .6;
  }

  /* ── CONTENT ── */
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }

  /* LEFT */
  .hero-left {
    animation: fadeUp .8s .2s cubic-bezier(.16, 1, .3, 1) both;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-pale);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px 6px 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 28px;
    animation: fadeUp .7s .1s cubic-bezier(.16, 1, .3, 1) both;
  }

  .badge-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    display: grid;
    place-items: center;
  }

  .badge-dot svg {
    width: 12px;
    height: 12px;
    fill: #fff;
  }

  h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 4.5vw, 50px);
    line-height: 1.1;
    letter-spacing: -.5px;
    color: var(--text);
  }

  h1 em {
    font-style: italic;
    color: var(--brand);
    position: relative;
  }

  h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn .7s 1s cubic-bezier(.16, 1, .3, 1) forwards;
  }

  @keyframes underlineIn {
    to {
      transform: scaleX(1);
    }
  }

  .hero-desc {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    /* max-width: 440px; */
    animation: fadeUp .8s .4s cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    animation: fadeUp .8s .5s cubic-bezier(.16, 1, .3, 1) both;
  }

  .btn-primary {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(27, 79, 255, .30);
    transition: transform .2s, box-shadow .2s, background .2s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
    opacity: 0;
    transition: opacity .2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(27, 79, 255, .38);
    background: var(--brand-light);
  }

  .btn-primary:hover::before {
    opacity: 1;
  }

  .btn-primary svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: transform .2s;
  }

  .btn-primary:hover svg {
    transform: translateX(3px);
  }

  .btn-ghost {
    color: var(--brand);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    padding: 14px 24px;
    border: 1.5px solid var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, color .2s;
  }

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

  .trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeUp .8s .65s cubic-bezier(.16, 1, .3, 1) both;
  }

  .trust-stat {
    text-align: center;
  }

  .trust-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
  }

  .trust-stat span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
  }

  .trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
  }

  /* RIGHT – phone mockup */
  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeUp .9s .3s cubic-bezier(.16, 1, .3, 1) both;
  }

  /* orbiting rings */
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
  }

  .ring-1 {
    width: 380px;
    height: 380px;
    animation: spin 18s linear infinite;
  }

  .ring-2 {
    width: 500px;
    height: 500px;
    animation: spin 28s linear infinite reverse;
    opacity: .5;
  }

  .ring-3 {
    width: 620px;
    height: 620px;
    animation: spin 38s linear infinite;
    opacity: .3;
  }

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

  /* ring dots */
  .ring::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    top: -5px;
    left: calc(50% - 5px);
    box-shadow: 0 0 12px rgba(27, 79, 255, .6);
  }

  .ring-2::before {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(255, 94, 26, .6);
  }

  .ring-3::before {
    width: 8px;
    height: 8px;
    top: -4px;
    background: var(--brand-light);
  }

  /* phone */
  .phone-wrap {
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-16px);
    }
  }

  .phone {
    width: 220px;
    background: #fff;
    border-radius: 44px;
    box-shadow: 0 40px 80px rgba(27, 79, 255, .18), 0 8px 24px rgba(0, 0, 0, .08), inset 0 0 0 1.5px rgba(27, 79, 255, .1);
    overflow: hidden;
    position: relative;
  }

  .phone-notch {
    width: 80px;
    height: 24px;
    background: var(--text);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .phone-screen {
    padding: 10px 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
  }

  .screen-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
  }

  .screen-badge {
    background: var(--brand-pale);
    color: var(--brand);
    font-size: 9px;
    font-weight: 700;
    border-radius: 6px;
    padding: 2px 6px;
  }

  .screen-card {
    background: var(--brand-pale);
    border-radius: 14px;
    padding: 12px;
  }

  .sc-label {
    font-size: 8px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
  }

  .sc-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand);
    margin-top: 2px;
  }

  .sc-sub {
    font-size: 8px;
    color: var(--muted);
    margin-top: 2px;
  }

  .screen-bar {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 50px;
  }

  .bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--brand);
    opacity: .25;
    animation: barGrow 1s cubic-bezier(.16, 1, .3, 1) both;
  }

  .bar:nth-child(1) {
    height: 40%;
    animation-delay: 1.2s;
  }

  .bar:nth-child(2) {
    height: 70%;
    animation-delay: 1.3s;
    opacity: .45;
  }

  .bar:nth-child(3) {
    height: 55%;
    animation-delay: 1.4s;
  }

  .bar:nth-child(4) {
    height: 90%;
    animation-delay: 1.5s;
    opacity: .8;
  }

  .bar:nth-child(5) {
    height: 75%;
    animation-delay: 1.6s;
    opacity: .6;
  }

  .bar:nth-child(6) {
    height: 85%;
    animation-delay: 1.7s;
    opacity: .7;
  }

  @keyframes barGrow {
    from {
      transform: scaleY(0);
      transform-origin: bottom;
    }

    to {
      transform: scaleY(1);
    }
  }

  .screen-row {
    display: flex;
    gap: 6px;
  }

  .mini-card {
    flex: 1;
    background: #F6F8FF;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .mini-icon {
    font-size: 16px;
  }

  .mini-label {
    font-size: 7px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
  }

  /* floating chips */
  .chip {
    position: absolute;
    z-index: 3;
    background: #fff;
    border-radius: 14px;
    padding: 8px 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .10);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border: 1px solid var(--border);
  }

  .chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .chip-1 {
    top: 8%;
    right: -14%;
    animation: chipFloat 5s 0s ease-in-out infinite;
  }

  .chip-2 {
    bottom: 22%;
    left: -16%;
    animation: chipFloat 5s 1.5s ease-in-out infinite;
  }

  .chip-3 {
    top: 38%;
    right: -20%;
    animation: chipFloat 5s 3s ease-in-out infinite;
  }

  @keyframes chipFloat {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  /* ── SCROLLING LOGOS ── */
  .logos-band {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(8px);
    margin-top: 20px;
  }

  .logos-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: logoScroll 22s linear infinite;
  }

  .logos-track:hover {
    animation-play-state: paused;
  }

  /* 
  @keyframes logoScroll {
    to {
      transform: translateX(50%);
    }
  } */
  @keyframes logoScroll {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  .logo-item {
    font-size: 13px;
    font-weight: 700;
    color: #AAB0C8;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
    user-select: none;
  }

  .logo-item:hover {
    color: var(--brand);
  }

  .logo-item svg {
    width: 18px;
    height: 18px;
    opacity: .5;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Logos marquee */
  .logos-strip {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(1, 171, 251, .1);
    border-bottom: 1px solid rgba(1, 171, 251, .1);
    padding: 20px 0;
    overflow: hidden;
  }

  .marquee-inner {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
  }

  .marquee-inner:hover {
    animation-play-state: paused;
  }

  .logo-pill {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 8px 28px;
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    transition: all .3s;
  }

  .logo-pill:hover {
    color: #fff;
    background: rgba(1, 171, 251, .15);
    border-color: rgba(1, 171, 251, .4);
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* ─── SECTIONS COMMON ────────────────────── */
  section {
    padding: 40px 0;
  }

  .section-badge {
    display: inline-block;
    background: rgba(1, 118, 242, 0.1);
    color: var(--blue-end);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(1, 118, 242, 0.2);
  }

  .section-title {
    font-family: sans-serif;
    font-size: clamp(1.9rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .section-title .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    /* max-width: 600px; */
  }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .delay-1 {
    transition-delay: .1s !important;
  }

  .delay-2 {
    transition-delay: .2s !important;
  }

  .delay-3 {
    transition-delay: .3s !important;
  }

  .delay-4 {
    transition-delay: .4s !important;
  }

  .delay-5 {
    transition-delay: .5s !important;
  }

  /* ─── TRUSTED SECTION ────────────────────── */
  .trusted-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
  }

  .trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 171, 251, .08), transparent 70%);
    pointer-events: none;
  }

  /* ─── SERVICES ───────────────────────────── */
  .services-section {
    background: #fff;
  }

  .service-card {
    background: #fff;
    border: 1.5px solid rgba(1, 118, 242, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity .4s;
    z-index: 0;
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(1, 118, 242, 0.25);
    border-color: transparent;
  }

  .service-card:hover .s-icon,
  .service-card:hover .s-title,
  .service-card:hover .s-desc {
    color: #fff !important;
  }

  .service-card:hover .s-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
  }

  .service-card * {
    position: relative;
    z-index: 1;
  }

  .s-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(1, 118, 242, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .4s;
  }

  .s-icon {
    color: var(--blue-end);
    font-size: 1.4rem;
    transition: color .4s;
  }

  .s-title {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color .4s;
  }

  .s-desc {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
    transition: color .4s;
  }

  /* ─── INDUSTRIES ─────────────────────────── */
  .industries-section {
    background: var(--light-bg);
  }

  .ind-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    border: 1.5px solid rgba(1, 118, 242, 0.1);
    transition: all .4s;
    cursor: default;
  }

  .ind-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(1, 118, 242, 0.18);
    border-color: var(--blue-start);
  }

  .ind-card:hover .ind-icon {
    background: var(--grad);
    color: #fff;
  }

  .ind-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(1, 118, 242, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--blue-end);
    transition: all .4s;
  }

  .ind-name {
    font-weight: 700;
    font-size: .92rem;
    color: var(--dark);
  }

  /* ─── SOLUTIONS (Problem/Solution) ──────── */
  .solutions-section {
    background: #fff;
  }

  .problem-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(1, 118, 242, 0.08);
    border: 1.5px solid rgba(1, 118, 242, 0.1);
    transition: all .4s;
  }

  .problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(1, 118, 242, 0.18);
  }

  .problem-head {
    background: var(--grad);
    padding: 24px 28px;
  }

  .problem-head h5 {
    font-family: sans-serif;
    font-weight: 800;
    color: #fff;
    margin: 0;
    font-size: 1.05rem;
  }

  .problem-head p {
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    margin: 8px 0 0;
  }

  .problem-body {
    background: #fff;
    padding: 24px 28px;
  }

  .problem-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .problem-body li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .problem-body li i {
    color: var(--blue-start);
    margin-top: 3px;
    flex-shrink: 0;
  }

  /* ─── PROCESS ────────────────────────────── */
  .process-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    position: relative;
    overflow: hidden;
  }

  .process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(1, 171, 251, .08) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(1, 118, 242, .08) 0%, transparent 50%);
  }

  .process-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(1, 171, 251, .15);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all .4s;
    position: relative;
  }

  .process-card:hover {
    background: rgba(1, 171, 251, .06);
    border-color: rgba(1, 171, 251, .4);
    transform: translateY(-6px);
  }

  .step-num {
    font-family: sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: .4;
  }

  .process-card:hover .step-num {
    opacity: 1;
  }

  .process-card h5 {
    font-family: sans-serif;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
  }

  .process-card p {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
    line-height: 1.7;
  }

  .process-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(1, 171, 251, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .process-icon i {
    color: var(--blue-start);
    font-size: 1.2rem;
  }

  /* ─── WHY US ─────────────────────────────── */
  .whyus-section {
    background: var(--light-bg);
  }

  .why-item {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
  }

  .why-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(1, 118, 242, .35);
  }

  .why-text h6 {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
  }

  .why-text p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
  }

  .big-number {
    font-family: sans-serif;
    font-size: clamp(3rem, 8vw, 2rem);
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  /* ─── TESTIMONIALS ───────────────────────── */
  /* .testimonials-section {
    background: #fff;
  }

  .testi-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1.5px solid rgba(1, 118, 242, 0.1);
    box-shadow: 0 8px 32px rgba(1, 118, 242, 0.07);
    transition: all .4s;
    height: 100%;
  }

  .testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(1, 118, 242, 0.15);
    border-color: rgba(1, 171, 251, .4);
  }

  .testi-quote {
    font-size: 2.5rem;
    color: var(--blue-start);
    line-height: 1;
    margin-bottom: 16px;
    opacity: .5;
  }

  .testi-text {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .testi-name {
    font-weight: 800;
    color: var(--dark);
    font-size: .9rem;
  }

  .testi-role {
    color: var(--muted);
    font-size: .8rem;
  }

  .stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 12px;
  } */
  .testimonials-section {
    background: #fff;
  }

  .testi-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1.5px solid rgba(1, 118, 242, 0.1);
    box-shadow: 0 8px 32px rgba(1, 118, 242, 0.07);
    transition: all .4s;
    height: 100%;
  }

  .testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(1, 118, 242, 0.15);
    border-color: rgba(1, 171, 251, .4);
  }

  .testi-quote {
    font-size: 2.5rem;
    color: var(--blue-start);
    line-height: 1;
    margin-bottom: 16px;
    opacity: .5;
  }

  .testi-text {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .testi-name {
    font-weight: 800;
    color: var(--dark);
    font-size: .9rem;
  }

  .testi-role {
    color: var(--muted);
    font-size: .8rem;
  }

  .stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 12px;
  }

  /* ─── CLUTCH BADGE ───────────────────────── */
  .clutch-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding: 28px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border: 1.5px solid rgba(1, 118, 242, 0.12);
  }

  .clutch-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform .3s;
  }

  .clutch-badge:hover {
    transform: translateY(-3px);
  }

  .clutch-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .clutch-logo-icon {
    width: 40px;
    height: 40px;
    background: #ff3d2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -1px;
    font-style: italic;
  }

  .clutch-logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -0.5px;
  }

  .clutch-divider {
    width: 1px;
    height: 44px;
    background: rgba(1, 118, 242, 0.15);
  }

  .clutch-rating-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .clutch-stars {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .clutch-stars i {
    color: #ff3d2e;
    font-size: .9rem;
  }

  .clutch-score {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
  }

  .clutch-score span {
    font-size: .85rem;
    font-weight: 500;
    color: var(--muted);
  }

  .clutch-label {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
  }

  .clutch-reviews-count {
    font-size: .82rem;
    color: var(--muted);
  }

  .clutch-top-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    border: 1.5px solid rgba(255, 61, 46, 0.2);
    box-shadow: 0 4px 16px rgba(255, 61, 46, 0.08);
  }

  .clutch-top-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff3d2e, #ff7a30);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
  }

  .clutch-top-label {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.3;
  }

  .clutch-top-label strong {
    display: block;
    font-size: .88rem;
    color: #1a1a2e;
    font-weight: 800;
  }

  @media (max-width: 576px) {
    .clutch-divider {
      display: none;
    }

    .clutch-strip {
      gap: 20px;
      padding: 20px;
    }
  }

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

  .faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid rgba(1, 118, 242, 0.1);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all .3s;
  }

  .faq-item.open {
    border-color: rgba(1, 171, 251, .4);
    box-shadow: 0 8px 32px rgba(1, 118, 242, .1);
  }

  .faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    text-align: left;
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color .3s;
  }

  .faq-item.open .faq-btn {
    color: var(--blue-end);
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(1, 118, 242, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
  }

  .faq-item.open .faq-icon {
    background: var(--grad);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-icon i {
    color: var(--blue-end);
    transition: color .3s;
    font-size: .8rem;
  }

  .faq-item.open .faq-icon i {
    color: #fff;
  }

  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
  }

  .faq-body.show {
    max-height: 200px;
    padding: 0 24px 22px;
  }

  .faq-body p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin: 0;
  }

  /* ─── CTA FINAL ──────────────────────────── */
  .cta-section {
    background: var(--grad);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .cta-float {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .3;
  }

  .cta-f1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -80px;
  }

  .cta-f2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .5);
    bottom: -60px;
    left: -60px;
  }

  .btn-white {
    background: #fff;
    color: var(--blue-end);
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 1rem;
    transition: all .3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
    color: var(--blue-end);
  }

  .btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 1rem;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-white-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
  }

  /* ─── ANIMATIONS ─────────────────────────── */
  @keyframes fadeSlideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ─── COUNTER ────────────────────────────── */
  .counter-num {
    display: inline-block;
  }

  /* ─── RESPONSIVE ─────────────────────────── */
  @media(max-width:768px) {
    .hero {
      padding: 40px 0 40px;
    }

    .phone-mockup {
      width: 200px;
      height: 400px;
    }

    section {
      padding: 70px 0;
    }

    .stat-divider {
      display: none;
    }
  }

  /* ─── ANIMATED UNDERLINE ─────────────────── */
  .animated-line {
    position: relative;
    display: inline-block;
  }

  .animated-line::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--grad);
    border-radius: 2px;
    transition: width 1s ease;
    border-radius: 3px;
  }

  .animated-line.line-in::after {
    width: 100%;
  }


  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {


    .hero {
      padding: 40px 24px 40px;
    }

    .hero-right {
      display: none;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
    }

    .hero-desc {
      max-width: 100%;
    }

    .hero-actions {
      justify-content: center;
    }

    .trust-row {
      justify-content: center;
    }

    .ring-1 {
      width: 300px;
      height: 300px;
    }

    .ring-2 {
      width: 420px;
      height: 420px;
    }

    .ring-3 {
      display: none;
    }

    .chip-1 {
      right: 0;
    }

    .chip-2 {
      left: 0;
    }

    .chip-3 {
      display: none;
    }
  }

  /* ── GLOBAL HELPERS ── */
  img {
    max-width: 100%;
    height: auto;
  }

  /* ── BREAKPOINTS USED:
   ≤1200px  (large laptop)
   ≤992px   (tablet landscape / small desktop)
   ≤768px   (tablet portrait)
   ≤576px   (mobile)
   ≤400px   (small mobile)
── */

  /* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
  @media (max-width: 992px) {
    .navbar {
      padding: 0 16px;
    }

    .hide {
      display: none !important;
    }

    .desktop-only {
      display: none !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════════ */
  @media (max-width: 1100px) {
    .hero-inner {
      gap: 32px;
    }

    .ring-3 {
      display: none;
    }
  }

  @media (max-width: 900px) {
    .hero {
      padding: 40px 16px 40px !important;
      min-height: auto;
    }

    .hero-inner {
      grid-template-columns: 1fr !important;
      gap: 40px !important;
      text-align: center;
    }

    .hero-right {
      display: none !important;
    }

    .hero-desc {
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      justify-content: center !important;
    }

    .trust-row {
      justify-content: center !important;
    }

    .badge {
      margin-left: auto;
      margin-right: auto;
    }

    h1 {
      font-size: clamp(28px, 6vw, 40px) !important;
    }
  }

  @media (max-width: 576px) {
    .hero {
      padding: 40px 12px 40px !important;
    }

    h1 {
      font-size: clamp(26px, 7vw, 36px) !important;
    }

    .hero-desc {
      font-size: 15px !important;
    }

    .trust-row {
      gap: 12px !important;
    }

    .trust-stat strong {
      font-size: 20px !important;
    }

    .trust-divider {
      display: none;
    }

    .btn-primary,
    .btn-ghost {
      padding: 12px 22px !important;
      font-size: 14px !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   LOGOS BAND
════════════════════════════════════════════════════════════ */
  @media (max-width: 576px) {
    .logos-band {
      padding: 16px 0;
    }

    .logos-track {
      gap: 36px;
    }

    .logo-item {
      font-size: 12px;
    }
  }

  /* ════════════════════════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    section {
      padding: 56px 0 !important;
    }

    .section-title {
      font-size: clamp(1.5rem, 5vw, 1.9rem) !important;
    }

    .section-sub {
      font-size: .95rem !important;
    }

    .new-menu-in2.px-2 {
      padding-left: 16px !important;
      padding-right: 16px !important;
    }
  }

  @media (max-width: 576px) {
    section {
      padding: 44px 0 !important;
    }

    .new-menu-in2.px-2 {
      padding-left: 12px !important;
      padding-right: 12px !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   TRUSTED SECTION — stat cards staggered layout
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {

    .trusted-section .row.g-5>.col-lg-5,
    .trusted-section .row.g-5>.col-lg-7 {
      text-align: center;
    }

    /* remove the staggered margin-top on middle card */
    .trusted-section .col-sm-4:nth-child(2)>div {
      margin-top: 0 !important;
    }

    .big-number {
      font-size: clamp(2rem, 8vw, 3rem) !important;
    }
  }

  @media (max-width: 576px) {
    .trusted-section .col-sm-4 {
      width: 100% !important;
    }

    .trusted-section .col-sm-4>div {
      margin-top: 0 !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .service-card {
      padding: 24px 20px;
    }
  }

  @media (max-width: 576px) {

    /* full-width cards on small mobile */
    .services-section .col-md-6 {
      width: 100% !important;
    }

    .service-card {
      padding: 20px 16px;
    }

    /* CTA banner inside services */
    .services-section .mt-5.p-5 {
      padding: 28px 20px !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   INDUSTRIES GRID
════════════════════════════════════════════════════════════ */
  @media (max-width: 576px) {
    .ind-card {
      padding: 20px 16px;
    }

    .ind-icon {
      width: 52px;
      height: 52px;
      font-size: 1.3rem;
    }

    .ind-name {
      font-size: .82rem;
    }
  }

  /* ════════════════════════════════════════════════════════════
   SOLUTIONS / PROBLEM CARDS
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .problem-head {
      padding: 20px 20px;
    }

    .problem-body {
      padding: 20px 20px;
    }
  }

  @media (max-width: 576px) {
    .solutions-section .col-md-6 {
      width: 100% !important;
    }

    .problem-head h5 {
      font-size: .95rem;
    }

    .problem-body li {
      font-size: .83rem;
    }

    /* last wide card – 3-col becomes 1-col */
    .problem-body .row.g-3>.col-md-4 {
      width: 100% !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .process-card {
      padding: 24px 20px;
    }

    .step-num {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 576px) {
    .process-section .col-md-6 {
      width: 100% !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   WHY US SECTION
════════════════════════════════════════════════════════════ */
  @media (max-width: 992px) {
    .whyus-section .col-lg-6 {
      width: 100% !important;
    }

    .whyus-section .p-5 {
      padding: 32px 24px !important;
    }
  }

  @media (max-width: 576px) {
    .why-item {
      gap: 12px;
    }

    .why-icon {
      width: 40px;
      height: 40px;
      font-size: .95rem;
      flex-shrink: 0;
    }

    .why-text h6 {
      font-size: .88rem;
    }

    .why-text p {
      font-size: .82rem;
    }

    .big-number {
      font-size: clamp(2rem, 8vw, 3rem) !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .testi-card {
      padding: 28px 22px;
    }
  }

  @media (max-width: 576px) {
    .testimonials-section .col-md-4 {
      width: 100% !important;
    }

    .testi-text {
      font-size: .88rem;
    }
  }

  /* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
  @media (max-width: 992px) {
    .faq-section .col-lg-8 {
      width: 100% !important;
    }
  }

  @media (max-width: 576px) {
    .faq-btn {
      font-size: .88rem;
      padding: 18px 16px;
    }

    .faq-body.show {
      padding: 0 16px 18px;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
    }
  }

  /* ════════════════════════════════════════════════════════════
   FOOTER – DESKTOP (hidden on mobile already)
════════════════════════════════════════════════════════════ */
  @media (max-width: 1200px) {
    .desktops_view .service_heading {
      flex-wrap: wrap;
      gap: 24px;
    }

    .desktops_view .service_heading>div {
      min-width: 140px;
    }

    .first_border_section,
    .second_border_section {
      width: 100% !important;
    }

    .desktops_view .row.m-0.justify-content-center {
      flex-direction: column;
    }

    .child_footer_top_circle,
    .child_footer_top_circle2 {
      display: none !important;
    }
  }

  @media (max-width: 992px) {

    /* show mobile footer, hide desktop */
    .desktops_view {
      display: none !important;
    }

    .mobile_view {
      display: block !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   MOBILE FOOTER FIXES
════════════════════════════════════════════════════════════ */
  @media (max-width: 576px) {
    .mobile_wrap {
      flex-direction: column !important;
    }

    .mobile_wrap .col-md-6 {
      width: 100% !important;
    }

    .mobile_view .country_box {
      padding: 20px 16px !important;
    }

    .copy_text {
      font-size: 10px !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   OFFCANVAS / MOBILE NAV
════════════════════════════════════════════════════════════ */
  @media (max-width: 576px) {
    .my_off_canvas {
      width: 90vw !important;
    }
  }

  /* ════════════════════════════════════════════════════════════
   UTILITY — prevent horizontal overflow everywhere
════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    [class*="col-"] {
      padding-left: 8px !important;
      padding-right: 8px !important;
    }
  }
  