
    :root {
      --brand: #01446b;
      --brand-dark: #012f4e;
      --brand-light: #e8f3fa;
      --brand-mid: #cce4f0;
      --accent: #f59e0b;
      --green: #10b981;
      --text: #1a2535;
      --text-muted: #64748b;
      --border: #e2e8f0;
      --bg: #f8fafc;
      --white: #ffffff;
      --radius: 16px;
      --shadow: 0 4px 24px rgba(1,68,107,0.10);
      --shadow-lg: 0 8px 40px rgba(1,68,107,0.15);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

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

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--brand);
      padding: 9px 0;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }
    .topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color .2s; }
    .topbar a:hover { color: #fff; }
    .topbar-social a {
      width: 26px; height: 26px;
      background: rgba(255,255,255,0.2);
      border-radius: 6px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 11px; color: #fff; text-decoration: none;
      transition: background .2s;
    }
    .topbar-social a:hover { background: rgba(255,255,255,0.35); }

    /* ===== NAVBAR ===== */
    .navbar {
      background: var(--white) !important;
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 12px rgba(1,68,107,0.07);
    }
    .nav-logo img { height: 40px; }
    .nav-logo-text { font-size: 22px; font-weight: 900; color: var(--brand); }
    .navbar-nav .nav-link {
      color: var(--text-muted) !important;
      font-weight: 600;
      font-size: 14px;
      padding: 6px 14px !important;
      border-radius: 8px;
      transition: all .2s;
    }
    .navbar-nav .nav-link:hover { color: var(--brand) !important; background: var(--brand-light); }
    .nav-phone {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--brand); font-weight: 800; font-size: 15px;
      text-decoration: none;
    }
    .nav-phone-icon {
      width: 34px; height: 34px;
      background: var(--brand);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: #fff;
    }

    /* ===== BTN ===== */
    .btn-brand {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand);
      color: #fff;
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .25s;
      box-shadow: 0 6px 24px rgba(1,68,107,0.25);
    }
    .btn-brand:hover { background: var(--brand-dark); transform: translateY(-2px); color: #fff; box-shadow: 0 10px 32px rgba(1,68,107,0.35); }
    .btn-outline-brand {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: var(--brand);
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border: 2px solid var(--brand);
      cursor: pointer;
      transition: all .25s;
    }
    .btn-outline-brand:hover { background: var(--brand); color: #fff; }

    /* ===== SECTION LABELS ===== */
    .section-label {
      display: inline-block;
      background: var(--brand-light);
      color: var(--brand);
      border: 1px solid var(--brand-mid);
      border-radius: 50px;
      padding: 5px 16px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 900;
      line-height: 1.15;
      color: var(--text);
    }
    .section-title .accent { color: var(--brand); }
    .section-sub { font-size: 15px; color: var(--text-muted); margin-top: 10px; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, var(--white) 0%, var(--brand-light) 100%);
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 550px; height: 550px;
      background: radial-gradient(circle, rgba(1,68,107,0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(1,68,107,0.06) 1.5px, transparent 1.5px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand);
      color: #fff;
      border-radius: 50px;
      padding: 7px 18px;
      font-size: 11px; font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: #fff;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)}
    }
    .hero-title {
      font-size: clamp(34px, 5vw, 60px);
      font-weight: 900;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 20px;
    }
    .hero-title .highlight { color: var(--brand); }
    .hero-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 34px; line-height: 1.75; max-width: 500px; }

    .hero-stat-num { font-size: 26px; font-weight: 900; color: var(--brand); }
    .hero-stat-label { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
    .hero-stats { border-top: 1px solid var(--border); padding-top: 28px; margin-top: 34px; }

    /* HERO FORM */
    .hero-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .hero-form-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--brand), #0891b2);
      border-radius: 24px 24px 0 0;
    }
    .form-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
    .form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
    .form-field { position: relative; margin-bottom: 14px; }
    .form-field input,
    .form-field textarea {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 13px 16px 13px 42px;
      color: var(--text);
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .form-field textarea { padding-left: 16px; resize: none; }
    .form-field input:focus,
    .form-field textarea:focus { border-color: var(--brand); background: var(--brand-light); }
    .form-field input::placeholder, .form-field textarea::placeholder { color: #a0aec0; }
    .form-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 16px; font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: all .25s;
      box-shadow: 0 6px 20px rgba(1,68,107,0.25);
    }
    .form-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
    .form-assurance { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

    /* ===== TRUST BAR ===== */
    .trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--text); }
    .trust-icon {
      width: 38px; height: 38px;
      background: var(--brand-light);
      border: 1px solid var(--brand-mid);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }
    .trust-text { font-size: 12px; color: var(--text-muted); font-weight: 500; }

    /* ===== ABOUT ===== */
    .about-section { padding: 60px 0; background: var(--white); }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; border-radius: 20px; display: block; box-shadow: var(--shadow-lg); }
    .about-img-badge {
      position: absolute; bottom: -18px; right: -18px;
      background: var(--brand);
      border-radius: 16px;
      padding: 18px 22px;
      text-align: center;
      color: #fff;
      box-shadow: 0 12px 32px rgba(1,68,107,0.35);
    }
    .about-img-badge .num { font-size: 32px; font-weight: 900; }
    .about-img-badge .lbl { font-size: 11px; font-weight: 700; opacity: .85; }
    .about-feature { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--bg); border-radius: 14px; border: 1px solid var(--border); }
    .about-feature-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--brand-light);
      border: 1px solid var(--brand-mid);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .about-feature h4 { font-size: 14px; font-weight: 800; margin-bottom: 2px; color: var(--text); }
    .about-feature p { font-size: 13px; color: var(--text-muted); margin: 0; }

    /* ===== STATS ===== */
    .stats-section {
      background: var(--brand);
      padding: 64px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .stat-card { text-align: center; padding: 10px 0; }
    .stat-num { font-size: 48px; font-weight: 900; color: #fff; line-height: 1; }
    .stat-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 700; margin-top: 8px; }
    .stat-divider { border-right: 1px solid rgba(255,255,255,0.15); }

    /* ===== PRODUCTS ===== */
    .products-section { padding: 60px 0; background: var(--bg); }
    .product-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 22px;
      display: flex; gap: 16px; align-items: flex-start;
      transition: all .3s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .product-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--brand);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s;
    }
    .product-card:hover { border-color: var(--brand-mid); box-shadow: var(--shadow); transform: translateY(-4px); }
    .product-card:hover::before { transform: scaleX(1); }
    .product-img { width: 90px; flex-shrink: 0; }
    .product-img img { width: 100%; border-radius: 10px; }
    .product-name { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
    .product-freq { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; font-weight: 500; }
    .product-tag {
      font-size: 10px; font-weight: 700;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 3px 9px;
      color: var(--text-muted);
      display: inline-flex; align-items: center; gap: 4px;
    }
    .product-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
    .coverage-tag {
      font-size: 11px; font-weight: 700;
      color: var(--brand);
      background: var(--brand-light);
      border: 1px solid var(--brand-mid);
      border-radius: 6px;
      padding: 4px 10px;
      margin-top: 8px;
      display: inline-block;
    }

    /* ===== HOW IT WORKS ===== */
    .how-section { padding: 60px 0; background: var(--white); }
    .how-step { text-align: center; padding: 0 20px; }
    .how-step-num {
      width: 58px; height: 58px;
      background: var(--brand);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 900;
      color: #fff;
      margin: 0 auto 20px;
      box-shadow: 0 0 0 8px var(--brand-light);
    }
    .how-step-icon {/* font-size: 48px; */margin-bottom: 16px;display: block;height: 100px;}
    .how-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
    .how-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
    .how-connector {
      display: flex; align-items: center; justify-content: center;
      padding-top: 30px;
    }
    .how-connector-line {
      width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--brand), var(--brand-mid));
      border-radius: 2px;
    }

    /* ===== CARRIERS ===== */
    .carriers-section { padding: 80px 0; background: var(--bg); }
    .carriers-inner {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 24px;
      padding: 56px;
      box-shadow: var(--shadow);
    }
    .carriers-title { font-size: 28px; font-weight: 900; margin-bottom: 18px; color: var(--text); }
    .contact-item {
      display: flex; align-items: center; gap: 14px;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 14px 18px;
      text-decoration: none;
      color: inherit;
      transition: all .25s;
    }
    .contact-item:hover { border-color: var(--brand-mid); background: var(--brand-light); }
    .contact-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .contact-icon.phone { background: rgba(16,185,129,0.12); }
    .contact-icon.whatsapp { background: rgba(37,211,102,0.12); }
    .contact-label { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
    .contact-value { font-size: 15px; font-weight: 800; color: var(--text); }
    .carrier-logo {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 22px;
      display: flex; align-items: center; justify-content: center;
      transition: all .25s;
    }
    .carrier-logo:hover { border-color: var(--brand-mid); background: var(--brand-light); }
    .carrier-logo img { max-height: 36px; max-width: 90px; object-fit: contain; }

    /* ===== TESTIMONIALS ===== */
    .testi-section { padding: 60px 0; background: var(--white); }
    .testi-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      transition: all .3s;
      position: relative;
      height: 100%;
    }
    .testi-card:hover { border-color: var(--brand-mid); box-shadow: var(--shadow); transform: translateY(-4px); }
    .testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
    .testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 800; color: #fff;
    }
    .testi-name { font-size: 14px; font-weight: 800; color: var(--text); }
    .testi-role { font-size: 12px; color: var(--text-muted); }
    .testi-quote {
      position: absolute; top: 16px; right: 18px;
      font-size: 40px; line-height: 1;
      color: var(--brand); opacity: .1; font-weight: 900;
    }
    /* ===== TESTI CAROUSEL CONTROLS ===== */
.testi-carousel-btn {
  width: 40px; height: 40px;
  background: var(--brand-light);
  border: 1.5px solid var(--brand-mid);
  border-radius: 50%;
  color: var(--brand);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  flex-shrink: 0;
}
.testi-carousel-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.carousel-indicators-custom { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand-mid);
  cursor: pointer; transition: all .2s;
  border: none;
  display: block;
}
.testi-dot.active { background: var(--brand); transform: scale(1.3); }

    /* ===== SERVICES ===== */
    .services-section { padding: 60px 0; background: var(--bg); }
    .service-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 22px;
      text-align: center;
      transition: all .3s;
      height: 100%;
    }
    .service-card:hover { border-color: var(--brand-mid); box-shadow: var(--shadow); transform: translateY(-4px); }
    .service-icon {
      width: 64px; height: 64px;
      background: var(--brand-light);
      border: 1px solid var(--brand-mid);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
    }
    .service-icon img { width: 32px; height: 32px; object-fit: contain; }
    .service-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
    .service-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

    /* ===== CONTACT ===== */
    .contact-section { padding: 60px 0; background: var(--white); }
    .contact-inner {
      background: var(--brand);
      border-radius: 28px;
      padding: 64px 56px;
      position: relative;
      overflow: hidden;
    }
    .contact-inner::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact-inner .section-label { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25); }
    .contact-inner h2 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 14px; }
    .contact-inner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
    .contact-detail-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .contact-detail-icon {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; flex-shrink: 0;
    }
    .contact-detail-label { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }
    .contact-detail-value { font-size: 14px; font-weight: 800; color: #fff; }
    .contact-detail-value a { color: #fff; text-decoration: none; }
    .contact-form-inner { background: var(--white); border-radius: 20px; padding: 32px; }
    .contact-form-inner input,
    .contact-form-inner textarea {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 12px 14px;
      color: var(--text);
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: border-color .2s;
    }
    .contact-form-inner input:focus,
    .contact-form-inner textarea:focus { border-color: var(--brand); }
    .contact-form-inner input::placeholder,
    .contact-form-inner textarea::placeholder { color: #a0aec0; }

    /* ===== FAQ ===== */
    .faq-section { padding: 60px 0; background: var(--bg); }
    .faq-item {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.active, .faq-item:hover { border-color: var(--brand-mid); }
    .faq-question {
      padding: 18px 22px;
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer;
      font-weight: 700; font-size: 14px;
      gap: 10px; color: var(--text);
    }
    .faq-toggle {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--brand-light);
      border: 1px solid var(--brand-mid);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--brand);
      transition: all .2s;
    }
    .faq-item.active .faq-toggle { background: var(--brand); color: #fff; }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s;
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
      padding: 0 22px;
    }
    .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 18px; }

    /* ===== CLIENTS ===== */
    .clients-section { padding: 54px 0; background: var(--white); }
    .clients-label { text-align: center; font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 28px; }
    .clients-scroll { overflow: hidden; }
    .clients-track {
      display: flex; gap: 24px; align-items: center;
      animation: marquee 22s linear infinite; flex-shrink: 0;
    }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .client-logo {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 12px 22px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .client-logo img { height: 32px; object-fit: contain; opacity: .65; transition: opacity .2s; }
    .client-logo:hover img { opacity: 1; }

    /* ===== FOOTER ===== */
    .footer { background: var(--brand-dark); padding: 48px 0 26px; color: #fff; }
    .footer-logo img { height: 42px; margin-bottom: 12px; }
    .footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
    .footer-social a {
      width: 34px; height: 34px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); text-decoration: none;
      font-size: 13px; transition: all .2s;
    }
    .footer-social a:hover { background: #fff; color: var(--brand); }
    .footer-heading { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
    .footer a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
    .footer a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }

    /* ===== FLOATING ===== */
    .float-wa {
      position: fixed; bottom: 88px; right: 22px; z-index: 999;
      width: 54px; height: 54px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; color: #fff;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(37,211,102,0.4);
      animation: floatBounce 2s ease-in-out infinite;
    }
    @keyframes floatBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    .scroll-top-btn {
      position: fixed; bottom: 22px; right: 22px; z-index: 997;
      width: 42px; height: 42px;
      background: var(--brand);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 16px;
      cursor: pointer; border: none;
      box-shadow: 0 4px 14px rgba(1,68,107,0.35);
      opacity: 0; pointer-events: none; transition: opacity .3s;
      text-decoration: none;
    }
    .scroll-top-btn.visible { opacity: 1; pointer-events: all; }

    /* ===== BOTTOM BAR MOBILE ===== */
    .bottom-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
      background: var(--white);
      border-top: 1px solid var(--border);
      display: none;
    }
    .bottom-bar a {
      flex: 1;
      padding: 10px 18px;
      /* text-align: center; */
      font-size: 10px;
      font-weight: 800;
      text-decoration: none;
      display: flex;
      /* flex-direction: column; */
      align-items: center;
      gap: 7px;
      /* align-items: center; */
      /* justify-content: center; */
      margin: auto;
    }
    .bottom-bar a:first-child { background: var(--brand); color: #fff; }
    .bottom-bar a:nth-child(2) { background: #25d366; color: #fff; }
    .bottom-bar a:last-child { color: var(--brand); border-left: 1px solid var(--border); }
    .bottom-bar-icon { font-size: 17px; }

    /* ===== FADE UP ===== */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ===== POPUP MODAL ===== */
    .popup-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(1,40,65,0.55);
      backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .35s ease;
      padding: 20px;
    }
    .popup-overlay.active { opacity: 1; pointer-events: all; }
    .popup-card {
      background: var(--white);
      border-radius: 24px;
      width: 100%; max-width: 480px;
      position: relative;
      overflow: hidden;
      transform: translateY(24px) scale(0.97);
      transition: transform .35s ease;
      box-shadow: 0 24px 80px rgba(1,68,107,0.22);
    }
    .popup-overlay.active .popup-card { transform: translateY(0) scale(1); }
    .popup-header {
      background: var(--brand);
      padding: 28px 28px 22px;
      position: relative;
    }
    .popup-header-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 11px; font-weight: 800;
      color: #fff; letter-spacing: 1px; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .popup-header-badge::before { content:''; width:7px; height:7px; background:#fff; border-radius:50%; animation: pulse 1.5s infinite; }
    .popup-title { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 4px; }
    .popup-sub { font-size: 13px; color: rgba(255,255,255,0.75); }
    .popup-close {
      position: absolute; top: 14px; right: 14px;
      width: 32px; height: 32px;
      background: rgba(255,255,255,0.2);
      border: none; border-radius: 50%;
      color: #fff; font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .popup-close:hover { background: rgba(255,255,255,0.35); }
    .popup-body { padding: 26px 28px 28px; }
    .popup-field { position: relative; margin-bottom: 14px; }
    .popup-field input, .popup-field textarea {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 13px 16px 13px 42px;
      color: var(--text);
      font-size: 14px; font-family: inherit;
      outline: none; transition: border-color .2s;
    }
    .popup-field textarea { padding-left: 16px; resize: none; }
    .popup-field input:focus, .popup-field textarea:focus { border-color: var(--brand); background: var(--brand-light); }
    .popup-field input::placeholder, .popup-field textarea::placeholder { color: #a0aec0; }
    .popup-field-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; }
    .popup-submit {
      width: 100%; padding: 15px;
      background: var(--brand); color: #fff;
      border: none; border-radius: 12px;
      font-size: 16px; font-weight: 700;
      cursor: pointer; font-family: inherit;
      transition: all .25s;
      box-shadow: 0 6px 20px rgba(1,68,107,0.25);
    }
    .popup-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
    .popup-product-name {
      font-size: 13px; font-weight: 700; color: var(--brand);
      background: var(--brand-light); border: 1px solid var(--brand-mid);
      border-radius: 8px; padding: 7px 12px; margin-bottom: 16px;
    }

    /* ===== ENQUIRE BUTTON ===== */
    .btn-enquire {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--brand);
      color: #fff !important;
      border: none; border-radius: 8px;
      padding: 9px 18px;
      font-size: 12px; font-weight: 700;
      cursor: pointer; font-family: inherit;
      transition: all .2s;
      text-decoration: none;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
    }
    .btn-enquire:hover { background: var(--brand-dark); transform: translateY(-1px); }

    /* ===== CLIENTS CAROUSEL ===== */
    .clients-section { padding: 54px 0; background: var(--white); }
    .clients-carousel-wrap { position: relative; }
    .clients-carousel .carousel-inner { padding: 8px 0; }
    .clients-carousel .carousel-item .row { justify-content: center; align-items: center; }
    .client-logo-big {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 24px 28px;
      display: flex; align-items: center; justify-content: center;
      transition: all .25s;
      min-height: 90px;
    }
    .client-logo-big:hover { border-color: var(--brand-mid); background: var(--brand-light); box-shadow: var(--shadow); }
    .client-logo-big img { max-height: 50px; max-width: 130px; object-fit: contain; opacity: .75; transition: opacity .2s; }
    .client-logo-big:hover img { opacity: 1; }
    .clients-carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
    .clients-carousel-controls button {
      width: 38px; height: 38px;
      background: var(--brand-light);
      border: 1.5px solid var(--brand-mid);
      border-radius: 50%;
      color: var(--brand);
      font-size: 15px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .2s;
    }
    .clients-carousel-controls button:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

    /* ===== FIXED CALL BTN ===== */
    .fixed-call-btn {
      position: fixed; bottom: 150px; right: 22px; z-index: 998;
      width: 54px; height: 54px;
      background: var(--white);
      border: 2px solid var(--brand);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; color: var(--brand);
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(1,68,107,0.18);
      transition: all .25s;
    }
    .fixed-call-btn:hover { background: var(--brand); color: #fff; transform: scale(1.08); }

    @media (max-width: 991px) {
      .how-connector { display: none; }
      .carriers-inner { padding: 32px 24px; }
      .contact-inner { padding: 40px 28px; }
    }
    @media (max-width: 768px) {
      .bottom-bar { display: flex; }
      body { padding-bottom: 58px; }
      .topbar-right { display: none; }
      .about-img-badge { bottom: -14px; right: -8px; }
    }
    @media (max-width: 576px) {
      .hero { padding: 60px 0 50px; }
      .hero-form-card { padding: 26px 20px; }
    }
    .how-step-icon img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }
 