:root {
    --blue:       #2ABAFF;
    --blue-dark:  #00a3f0;
    --blue-glow:  rgba(42,186,255,0.15);
    --navy:       #070944;
    --navy-mid:   #0b0f5a;
    --navy-light: #0d1368;
    --white:      #ffffff;
    --off-white:  #F5F5F5;
    --gray-light: #eaeef2;
    --gray-text:  #64748b;
    --dark-text:  #1e1e2e;
    --border:     #e2e8f0;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.65;
    font-size: 15px;
  }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* ─── TOPBAR ─── */
  .topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
  .topbar a { color: var(--blue); text-decoration: none; transition: opacity .2s; }
  .topbar a:hover { opacity: .8; }
  .tb-right { display: flex; align-items: center; gap: 18px; }
  .tb-socials { display: flex; gap: 10px; }
  .tb-socials a {
    width: 24px; height: 24px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 11px; font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .tb-socials a:hover { background: var(--blue-glow); color: var(--blue); }

  /* ─── NAV ─── */
  nav {
    background: white;
    position: sticky; top: 0; z-index: 200;
    border-bottom: 2px solid var(--blue);
    box-shadow: 0 4px 20px rgba(7,9,68,.5);
  }
  nav .container { display: flex; justify-content: space-between; align-items: center; height: 68px; }
  .nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
  .logo-badge {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border: 1.5px solid rgba(42,186,255,.35);
    border-radius: 8px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 3px;
  }
  .logo-tll { font-size: 16px; font-weight: 800; color: var(--blue); letter-spacing: 1px; line-height: 1; }
  .logo-dot-row { display: flex; gap: 3px; }
  .logo-dot-row span { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; opacity: .6; }
  .logo-wordmark { line-height: 1.2; }
  .logo-wordmark .brand { font-size: 17px; font-weight: 700; color: var(--white); }
  .logo-wordmark .brand em { color: var(--blue); font-style: normal; }
  .logo-wordmark .tagline { font-size: 10px; color: rgba(255,255,255,.38); letter-spacing: 2px; text-transform: uppercase; display: block; font-weight: 400; }

  .nav-links { display: flex; list-style: none; align-items: center; height: 68px; }
  .nav-links li a {
    display: flex; align-items: center;
    height: 68px; padding: 0 16px;
    color: black;
    text-decoration: none;
    font-size: 13.5px; font-weight: 500;
    transition: color .2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
  }
  .nav-links li a:hover { color: var(--blue); border-bottom-color: var(--blue); }
  .nav-links .nav-cta a {
    height: auto; margin: 0 0 0 10px;
    background: var(--blue); color: var(--white) !important;
    padding: 10px 22px; border-radius: 5px;
    font-weight: 700; font-size: 13.5px;
    border-bottom: none !important;
  }
  .nav-links .nav-cta a:hover { background: var(--blue-dark); }

  /* ─── BREADCRUMB ─── */
  .breadcrumb { background: var(--off-white); padding: 10px 0; border-bottom: 1px solid var(--border); }
  .bc-list { display: flex; align-items: center; gap: 7px; list-style: none; font-size: 12.5px; color: var(--gray-text); flex-wrap: wrap; }
  .bc-list a { color: var(--navy-mid); text-decoration: none; font-weight: 500; }
  .bc-list a:hover { color: var(--blue); }
  .bc-list li:not(:last-child)::after { content: '/'; margin-left: 7px; opacity: .35; }
  .bc-list li:last-child { color: var(--blue); font-weight: 600; }

  /* ─── SHARED ─── */
  .section-eyebrow {
    display: inline-block;
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 10px;
  }
  .section-head { text-align: center; margin-bottom: 52px; }
  .section-head h2 { font-size: clamp(26px,3vw,38px); font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
  .section-head h2 span { color: var(--blue); }
  .section-head p { color: var(--gray-text); max-width: 600px; margin: 0 auto; font-size: 14.5px; line-height: 1.75; font-weight: 400; }

  .btn-blue {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: var(--white);
    padding: 13px 28px; border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 700;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 12px 26px; border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: all .2s;
  }
  .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

  /* ════════════════════════
     01. HERO
  ════════════════════════ */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=85&fit=crop');
    background-size: cover; background-position: center;
    filter: brightness(0.22) saturate(0.8);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(7,9,68,.95) 0%, rgba(7,9,68,.7) 50%, rgba(7,9,68,.4) 100%);
  }
  .hero-glow {
    position: absolute; top: -120px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(42,186,255,.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero .container { position: relative; z-index: 2; width: 100%; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px; align-items: center;
    padding: 90px 0 80px;
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(42,186,255,.12);
    border: 1px solid rgba(42,186,255,.28);
    border-radius: 100px;
    padding: 5px 16px 5px 8px;
    margin-bottom: 20px;
  }
  .hero-pill-dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
  @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
  .hero-pill span { font-size: 11.5px; font-weight: 600; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; }
  .hero h1 { font-size: clamp(32px,4.2vw,56px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
  .hero h1 em { color: var(--blue); font-style: normal; }
  .hero-desc { color: rgba(255,255,255,.68); font-size: 15px; font-weight: 400; line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  /* Hero form */
  .hero-card {
    background: var(--white);
    border-radius: 12px;
    border-top: 3px solid var(--blue);
    padding: 32px 28px;
    box-shadow: 0 28px 70px rgba(7,9,68,.5);
  }
  .hero-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .hero-card p { font-size: 13px; font-weight: 400; color: var(--gray-text); margin-bottom: 22px; }
  .fg { margin-bottom: 13px; }
  .fg label { display: block; font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 5px; letter-spacing: .4px; text-transform: uppercase; }
  .fg input, .fg select {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--border); border-radius: 6px;
    font-family: 'Poppins', sans-serif; font-size: 13.5px;
    color: var(--dark-text); background: #fafbfc; outline: none;
    transition: border-color .2s;
  }
  .fg input:focus, .fg select:focus { border-color: var(--blue); background: #fff; }
  .form-btn {
    width: 100%; padding: 13px;
    background: var(--blue); color: var(--navy);
    border: none; border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: background .2s;
  }
  .form-btn:hover { background: var(--blue-dark); }

  /* ════════════════════════
     02. TRUST BAR (stats only)
  ════════════════════════ */
  .trust-bar {
    background: var(--navy-mid);
    padding: 28px 0;
    border-bottom: 1px solid rgba(42,186,255,.12);
  }
  .trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 38px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -1px; }
  .stat-label { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 5px; }

  /* ════════════════════════
     03. ABOUT
  ════════════════════════ */
  .about-section { padding: 80px 0 0; background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-content h2 { font-size: clamp(26px,3vw,38px); font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.3; }
  .about-content h2 span { color: var(--blue); }
  .about-content p { color: var(--gray-text); font-size: 14.5px; font-weight: 400; line-height: 1.8; margin-bottom: 18px; }
  .about-content p:last-of-type { margin-bottom: 0; }
  .about-img {
    border-radius: 12px; overflow: hidden;
    position: relative;
    box-shadow: 0 20px 56px rgba(7,9,68,.18);
  }
  .about-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
  .about-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--navy);
    border: 1.5px solid rgba(42,186,255,.3);
    border-radius: 8px; padding: 14px 18px;
    backdrop-filter: blur(8px);
  }
  .aib-num { font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
  .aib-txt { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

  /* ─── MSME STRIP ─── */
  .msme-strip {
    background: var(--white);
    padding: 28px 0 80px;
  }
  .msme-inner {
    display: flex; align-items: center; justify-content: space-between;
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 22px 32px; gap: 20px;
    background: #fafbff;
  }
  .msme-left { display: flex; align-items: center; gap: 16px; }
  .msme-badges { display: flex; gap: 12px; align-items: center; }
  .msme-badge-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 50%;
    border: 2px solid var(--border); background: var(--white);
    text-align: center; padding: 8px;
  }
  .msme-badge-item .badge-title { font-size: 11px; font-weight: 700; color: var(--navy); line-height: 1.1; }
  .msme-badge-item .badge-sub { font-size: 8px; font-weight: 400; color: var(--gray-text); line-height: 1.2; margin-top: 2px; }
  .msme-text { font-size: 18px; font-weight: 600; color: var(--dark-text); line-height: 1.4; }
  .msme-text span { color: var(--blue); }
  .msme-sub { font-size: 12px; font-weight: 400; color: var(--gray-text); margin-top: 3px; }
  .msme-verified { display: flex; align-items: center; gap: 6px; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 6px; padding: 6px 14px; }
  .msme-verified span { font-size: 12.5px; font-weight: 600; color: #065f46; }

  /* ════════════════════════
     04. SERVICES
  ════════════════════════ */
  .services-section { padding: 80px 0; background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .svc-card {
    background: var(--white); border-radius: 10px;
    overflow: hidden; border: 1px solid var(--border);
    transition: transform .22s, box-shadow .22s, border-color .22s;
    text-decoration: none; display: block;
  }
  .svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(7,9,68,.1); border-color: var(--blue); }
  .svc-img { height: 180px; overflow: hidden; position: relative; }
  .svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
  .svc-card:hover .svc-img img { transform: scale(1.05); }
  .svc-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(7,9,68,.65));
  }
  .svc-img-label {
    position: absolute; bottom: 10px; left: 12px; z-index: 1;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--blue); text-transform: uppercase;
    background: rgba(7,9,68,.7); padding: 3px 8px; border-radius: 3px;
    border-left: 2px solid var(--blue);
  }
  .svc-body { padding: 20px 18px; }
  .svc-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .svc-body p { font-size: 13px; font-weight: 400; color: var(--gray-text); line-height: 1.65; margin-bottom: 14px; }
  .svc-link { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
  .svc-link::after { content: unset; transition: transform .2s; }
  .svc-card:hover .svc-link::after { transform: translateX(3px); }

  /* ════════════════════════
     PAGE BREAK
  ════════════════════════ */
  .page-break {
    background: var(--navy);
    padding: 52px 0; position: relative; overflow: hidden;
  }
  .page-break::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232ABAFF' fill-opacity='.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/svg%3E");
  }
  .page-break::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(42,186,255,.08) 0%, transparent 65%);
  }
  .pb-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
  .pb-kicker { font-size: 11.5px; font-weight: 600; letter-spacing: 2.5px; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
  .pb-inner h2 { font-size: clamp(22px,2.5vw,32px); font-weight: 700; color: var(--white); line-height: 1.25; }
  .pb-inner h2 em { color: var(--blue); font-style: normal; }
  .pb-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* ════════════════════════
     05. PRODUCTS
  ════════════════════════ */
  .products-section { padding: 80px 0; background: var(--off-white); }
  .products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
  .prod-card {
    background: var(--white); border-radius: 10px;
    overflow: hidden; border: 1px solid var(--border);
    transition: transform .22s, box-shadow .22s;
    text-decoration: none; display: block;
  }
  .prod-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(7,9,68,.1); }
  .prod-img { height: 210px; overflow: hidden; position: relative; }
  .prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
  .prod-card:hover .prod-img img { transform: scale(1.04); }
  .prod-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--blue); color: var(--navy);
    font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 3px 10px; border-radius: 4px;
  }
  .prod-body { padding: 20px 18px; }
  .prod-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .prod-body p { font-size: 13px; font-weight: 400; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }
  .prod-btn {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--white); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: color .2s;
  }
  .prod-btn:hover { color: var(--navy); }
  .prod-btn::after { content: unset; transition: transform .2s; }
  .prod-card:hover .prod-btn::after { transform: translateX(3px); }

  /* ════════════════════════
     06. CONTENT SECTION
  ════════════════════════ */
  .content-section { padding: 80px 0; background: var(--white); }
  .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .content-text h2 { font-size: clamp(26px,3vw,36px); font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.3; }
  .content-text h2 span { color: var(--blue); }
  .content-text h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin: 28px 0 14px; }
  .content-text p { color: var(--gray-text); font-size: 14.5px; line-height: 1.8; margin-bottom: 16px; }
  .content-text ul { list-style: none; margin: 20px 0; }
  .content-text ul li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--dark-text); line-height: 1.55; }
  .content-text ul li::before { content: '✓'; color: var(--blue); font-weight: 700; margin-top: 1px; }
  .content-highlight {
    background: var(--off-white); border-left: 4px solid var(--blue);
    padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 24px 0;
  }
  .content-highlight p { margin: 0; font-size: 14px; }
  .content-highlight strong { color: var(--navy); }

  /* ════════════════════════
     07. WHY CHOOSE US
  ════════════════════════ */
  .why-section { padding: 80px 0; background: var(--off-white); }
  .why-intro { max-width: 800px; margin: 0 auto 48px; text-align: center; }
  .why-intro h2 { font-size: clamp(26px,3vw,36px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
  .why-intro h2 span { color: var(--blue); }
  .why-intro p { color: var(--gray-text); font-size: 14.5px; line-height: 1.8; }
  .why-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; margin: 0 auto 48px; }
  .why-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--dark-text); line-height: 1.55; background: var(--white); padding: 18px 20px; border-radius: 8px; border: 1px solid var(--border); }
  .why-check { width: 24px; height: 24px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .why-check svg { width: 12px; height: 12px; stroke: var(--navy); stroke-width: 2.5; fill: none; }
  .why-item strong { color: var(--navy); font-weight: 600; }
  .why-metrics { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .wm-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    padding: 24px 16px; text-align: center; position: relative; overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
  }
  .wm-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
  .wm-card:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(42,186,255,.1); }
  .wm-card:hover::after { transform: scaleX(1); }
  .wm-num { font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
  .wm-card h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .wm-card p { font-size: 11px; font-weight: 400; color: var(--gray-text); line-height: 1.4; }

  /* ════════════════════════
     08. TESTIMONIALS
  ════════════════════════ */
  .testimonials { padding: 80px 0; background: var(--gray-light); }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .testi-card {
    background: var(--white); border-radius: 10px;
    padding: 28px 22px; border: 1px solid var(--border);
    transition: box-shadow .22s, border-color .22s;
  }
  .testi-card:hover { box-shadow: 0 12px 32px rgba(7,9,68,.08); border-color: rgba(42,186,255,.3); }
  .testi-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }
  .testi-text { font-size: 13.5px; font-weight: 400; color: #4a5568; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray-light); padding-top: 16px; }
  .testi-av {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--navy); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
  }
  .testi-name { font-size: 14.5px; font-weight: 700; color: var(--navy); }
  .testi-loc { font-size: 11.5px; font-weight: 500; color: var(--blue); margin-top: 2px; }

  /* ════════════════════════
     09. CTA SECTION
  ════════════════════════ */
  .cta-section {
    position: relative; padding: 80px 0; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1581092335878-a9cd5f5b3bb7?w=1400&q=80&fit=crop');
    background-size: cover; background-position: center;
    filter: brightness(.18) saturate(.7);
  }
  .cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(7,9,68,.96) 0%, rgba(7,9,68,.82) 100%);
  }
  .cta-glow { position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(42,186,255,.1) 0%, transparent 65%); }
  .cta-inner { position: relative; z-index: 2; text-align: center; }
  .cta-inner h2 { font-size: clamp(24px,3vw,38px); font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .cta-inner h2 em { color: var(--blue); font-style: normal; }
  .cta-inner > p { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cta-form { display: flex; gap: 10px; max-width: 580px; margin: 0 auto 24px; flex-wrap: wrap; }
  .cta-form input {
    flex: 1; min-width: 160px;
    padding: 13px 16px;
    border: 1.5px solid rgba(42,186,255,.25); border-radius: 6px;
    font-family: 'Poppins', sans-serif; font-size: 13.5px;
    background: rgba(255,255,255,.07); color: var(--white);
    outline: none; transition: border-color .2s;
  }
  .cta-form input::placeholder { color: rgba(255,255,255,.35); }
  .cta-form input:focus { border-color: var(--blue); background: rgba(255,255,255,.1); }
  .cta-form button {
    background: var(--blue); color: var(--navy);
    border: none; padding: 13px 26px; border-radius: 6px;
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; white-space: nowrap; transition: background .2s;
  }
  .cta-form button:hover { background: var(--blue-dark); }
  .cta-contacts { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
  .cta-c {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
    text-decoration: none; transition: color .2s;
  }
  .cta-c:hover { color: var(--blue); }
  .cta-c-icon { width: 32px; height: 32px; background: rgba(42,186,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }

  /* ════════════════════════
     10. FAQ
  ════════════════════════ */
  .faq-section { padding: 80px 0; background: var(--white); }
  .faq-wrap { max-width: 820px; margin: 0 auto; }
  .faq-item {
    border: 1.5px solid var(--border); border-radius: 10px;
    margin-bottom: 10px; overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { border-color: var(--blue); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; cursor: pointer; user-select: none;
    background: var(--white); gap: 14px; transition: background .2s;
  }
  .faq-q:hover { background: #f8fbff; }
  .faq-item.open .faq-q { background: #f0faff; }
  .faq-q-txt { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.35; }
  .faq-ico {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--off-white); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--blue); font-weight: 400;
    flex-shrink: 0; transition: background .2s, transform .28s, border-color .2s;
    line-height: 1;
  }
  .faq-item.open .faq-ico { background: var(--blue); color: var(--navy); transform: rotate(45deg); border-color: var(--blue); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
  .faq-a-inner {
    padding: 0 22px 18px; padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px; font-weight: 400; color: var(--gray-text); line-height: 1.75;
  }
  .faq-item.open .faq-a { max-height: 300px; }

  /* ════════════════════════
     11. SERVICE AREAS
  ════════════════════════ */
  .areas-section { padding: 80px 0; background: var(--off-white); }
  .city-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .city-chip {
    background: var(--white); border: 1.5px solid var(--border); border-radius: 6px;
    padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--navy);
    text-decoration: none; transition: all .2s;
  }
  .city-chip:hover, .city-chip.active { background: var(--blue); border-color: var(--blue); color: var(--navy); }
  .city-chip.active { font-weight: 700; }
  

  /* ─── FOOTER ─── */
  .footer { background: var(--navy); padding: 60px 0 0; color: rgba(255,255,255,.6); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .footer-brand { }
  .footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
  .fl-badge { width: 42px; height: 42px; background: var(--navy-light); border: 1.5px solid rgba(42,186,255,.25); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
  .fl-tll { font-size: 15px; font-weight: 800; color: var(--blue); letter-spacing: 1px; line-height: 1; }
  .fl-dots { display: flex; gap: 2px; }
  .fl-dots span { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; opacity: .6; }
  .fl-brand { font-size: 18px; font-weight: 700; color: var(--white); }
  .fl-brand em { color: var(--blue); font-style: normal; }
  .footer-desc { font-size: 13px; line-height: 1.75; margin-bottom: 20px; }
  .fc-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 9px; font-size: 13px; }
  .fc-icon { color: var(--white); flex-shrink: 0; }
  .footer h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); display: inline-block; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; font-weight: 400; transition: color .2s; display: flex; align-items: center; gap: 7px; }
  .footer-links a::before {content: '\f101';color: #ffffff;font-size: 16px;font-family: 'Font Awesome 5 Free';font-weight: 700;}
  .footer-links a:hover { color: var(--white); }
  .footer-areas { display: flex; flex-wrap: wrap; gap: 6px; }
  .footer-areas a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 12px; padding: 4px 10px; background: rgba(255,255,255,.05); border-radius: 4px; transition: all .2s; }
  .footer-areas a:hover { background: var(--blue); color: var(--navy); }
  .footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px; }
  .footer-bottom a { color: var(--blue); text-decoration: none; }
  .footer-areas a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 12px; padding: 4px 10px; background: rgba(255,255,255,.05); border-radius: 4px; transition: all .2s; }
  /* WhatsApp float */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    z-index: 999; transition: transform .2s;
  }
  .wa-float:hover { transform: scale(1.08); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .why-metrics { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 900px) {
    .hero-grid, .about-grid, .content-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-grid { padding: 70px 0 60px; }
    .products-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
    .why-list { grid-template-columns: 1fr; }
    .why-metrics { grid-template-columns: repeat(2,1fr); }
    .pb-inner { flex-direction: column; text-align: center; }
    .pb-btns { justify-content: center; }
    .msme-inner { flex-direction: column; text-align: center; }
    .msme-left { flex-direction: column; align-items: center; text-align: center; }
  }
  @media (max-width: 640px) {
    .hero h1 { font-size: 32px; }
    .services-grid, .products-grid, .testi-grid { grid-template-columns: 1fr; }
    .trust-bar .container { grid-template-columns: repeat(2,1fr); }
    .why-metrics { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .cta-form { flex-direction: column; }
    .cta-form input, .cta-form button { width: 100%; }
  }
  
  
  .clients-section {
  background: #0b0f3b;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.clients-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.clients-head h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.clients-head p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  justify-content: center;
}

/* Client Chip */
.client-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(42, 186, 255, 0.2);
  border-radius: 10px;
  padding: 14px 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Text inside chip */
.client-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.client-type {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Hover effect */
.client-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 186, 255, 0.6);
  box-shadow: 0 0 20px rgba(42, 186, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}
  
  