:root {
    --blue-100: #EBF4FF;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #E6F2F8;
    --blue-600: #1F6E9C;
    --blue-700: #174F73;
    --grey-50: #F9FAFB;
    --grey-100: #F3F4F6;
    --grey-200: #E5E7EB;
    --grey-300: #D1D5DB;
    --grey-400: #9CA3AF;
    --grey-500: #6B7280;
    --grey-700: #374151;
    --grey-900: #111827;
    --white: #FFFFFF;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}
body {
    font-family: var(--font-body);
    color: var(--grey-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
.topbar:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #EAECF0;
    z-index: -1;
}
.topbar{
    z-index: 1;
}
.top-left,.top-right{
    position: relative;
    display: block;
    padding: 9px 0;
    padding-right: 45px;
    z-index: 1;
}
.top-social{
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 60px;
    flex-wrap:wrap;
    gap:15px;
}
.top-social a{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #475467;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-decoration: none;
}

.top-left:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: -1px;
    background-color: #174F73;
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    z-index: -1;
}
.contact-list li,.contact-list,.contact-list li .icon{
    position: relative;
    display: flex;
    align-items: center;
}
.contact-list li+li {
   margin-left: 25px;
}
.top-left:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: -10000000px;
    background-color: #174F73;
    z-index: -1;
}
.contact-list li .text {
    margin-left: 10px;
}
.contact-list li .text p {
    font-size: 14px;
    color: #fff
}
.contact-list li .icon i {
    font-size: 15px;
    color: #fff;
}
.contact-list li .text p a{text-decoration: none;}
/*Navbar*/
.navbar{
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-200);
    transition: box-shadow .2s;
    z-index: 100;
}
.fixed-top{
    top:42px;
}
@media only screen 
  and (min-width: 320px) 
  and (max-width: 568px)
{
.fixed-top{
    top:0px;
}
}
.navbar-brand{
    padding:10.5px 0;
}

a.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-700);
    text-decoration: none;
    transition: color .15s;
}
.navbar-nav{margin: 0px auto;gap:16px;}
.navbar-text{
    display:flex;
    align-items: center;
    gap:12px;
}
.btnclass{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background: linear-gradient(to right, #1F6E9C, #174F73);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 33px 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s linear;
    z-index: 1;
}
.btnclass:hover{
    color:#fff;
     background: linear-gradient(to right, #127cba, #135e9f);
}
.navbar-collapse.show{
    background: linear-gradient(to right, #127cba, #135e9f);
    padding: 15px 25px;
    margin-left: 0px;
}
.navbar-collapse.show a{color:#fff;}
.scrolled .topbar {
  top: -40px; /* hide */
}

.scrolled .navbar {
  top: 0; /* move up */
}
/*Hero*/
.hero {
    padding: 80px 0 80px;
     background: linear-gradient(135deg, #1F6E9C, #174F73);
    position: relative;
    overflow: hidden;
    margin-top:90px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-dots {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    overflow: hidden;
    opacity: .4;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
* ── FADE IN ANIMATION ── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: .1s; }
  .fade-in-delay-2 { transition-delay: .2s; }
  .fade-in-delay-3 { transition-delay: .3s; }
  .fade-in-delay-4 { transition-delay: .4s; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     HERO
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  
  .hero-dots svg { width: 100%; height: 100%; }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
  }
  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.35);
  }
  .hero-pill::before { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

  .hero-h1 {
     font-family: "Mona Sans", sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 20px;
    
  }
  .hero-h1 .accent { color: #fff; text-shadow: 0 0 0 #fff; opacity: .9; }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 36px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(255,255,255,.2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
  }
  .hero-metric {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    padding: 18px 16px;
    text-align: center;
  }
  .hero-metric-val {
    font-family: 'Mona Sans';
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }
  .hero-metric-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
    line-height: 1.4;
  }

  /* Google Review pill */
  .hero-google-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 12px;
    padding: 10px 18px 10px 12px;
    text-decoration: none;
    margin-bottom: 32px;
    transition: background .2s, transform .15s;
    cursor: pointer;
  }
  .hero-google-review:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
  .hgr-logo {
    width: 36px; height: 36px;
    background: #fff;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
  }
  .hgr-middle { display: flex; flex-direction: column; gap: 3px; }
  .hgr-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .04em; text-transform: uppercase; }
  .hgr-stars { display: flex; gap: 2px; }
  .hgr-score {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 14px;
    margin-left: 4px;
  }
  .hgr-score span { font-size: 13px; opacity: .6; font-weight: 400; }

  /* Lead Form Card */
  .lead-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--grey-200);
    padding: 36px 32px;
    box-shadow: 0 16px 48px rgba(37,99,235,.1), 0 4px 16px rgba(0,0,0,.06);
    position: relative;
    z-index: 2;
  }
  .lead-card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .lead-card-sub { font-size: 13px; color: var(--grey-500); margin-bottom: 24px; font-style: italic; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--grey-700); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--grey-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--grey-900);
    background: var(--grey-50);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.12); background: #fff; }
  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue-600);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--blue-700); transform: translateY(-1px); }
  .form-note { font-size: 12px; color: var(--grey-400); text-align: center; margin-top: 10px; }
  .form-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
  .form-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; color: var(--grey-500);
  }
  .form-badge svg { color: var(--blue-500); }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     TICKER
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .ticker-wrap {
    background: #174F73;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }
  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
  }
  .ticker-dot { width: 5px; height: 5px; background: var(--blue-300); border-radius: 50%; flex-shrink: 0; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     CTA BANNER (reusable)
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .cta-banner {
    padding: 56px 0;
    position: relative;
  }
  .cta-banner-inner {
    border-radius: 25px;
    padding: 14px 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .shape-class{
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    opacity: 0.5;
    position: absolute;
  }
  .cta-banner-inner.blue {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  }
  .cta-banner-inner.light {
    background: var(--blue-100);
    border: 1px solid var(--blue-200);
  }
  .cta-banner-inner.grey {
    background: var(--grey-900);
  }
  .cta-banner-text h3 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.25;
  }
  .cta-banner-inner.blue .cta-banner-text h3,
  .cta-banner-inner.grey .cta-banner-text h3 { color: #fff; }
  .cta-banner-inner.light .cta-banner-text h3 { color: var(--grey-900); }

  .cta-banner-text p {
    font-size: 15px;
    margin-top: 6px;
  }
  .cta-banner-inner.blue .cta-banner-text p,
  .cta-banner-inner.grey .cta-banner-text p { color: rgba(255,255,255,.75); }
  .cta-banner-inner.light .cta-banner-text p { color: var(--grey-500); }

  .cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--blue-700);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    padding: 13px 24px; border-radius: 8px; text-decoration: none;
    transition: all .2s; border: none; cursor: pointer;
  }
  .btn-white:hover { background: var(--blue-100); transform: translateY(-1px); }
  .btn-ghost-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.9);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    padding: 12px 22px; border-radius: 8px; text-decoration: none;
    transition: all .2s; border: 2px solid rgba(255,255,255,.35); cursor: pointer;
  }
  .btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

  /* Contact buttons for CTA */
  .contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
  .contact-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .2s;
  }
  .contact-btn.phone { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
  .contact-btn.whatsapp { background: #25D366; color: #fff; border: none; }
  .contact-btn.quote { background: #fff; color: var(--blue-700); border: none; }
  .contact-btn:hover { transform: translateY(-1px); opacity: .92; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     ABOUT
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .about { padding: 40px 0 0; background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-card-main {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 20px;
    padding: 48px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .about-card-main::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
  }
  .about-card-main::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
  }
  .about-card-main h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 16px; position: relative; z-index: 1; }
  .about-card-main p { font-size: 15px; opacity: .85; line-height: 1.7; position: relative; z-index: 1; }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .about-stat {
    background: var(--blue-100);
    border: 1px solid var(--blue-200);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
  }
  .about-stat-val {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--blue-600);
  }
  .about-stat-lbl { font-size: 12px; color: var(--grey-500); margin-top: 4px; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     SERVICES
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .services { padding: 0 0 20px; background: var(--grey-50); }
  .services-header { padding: 80px 0 48px; }
  .service-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .tab-btn {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--grey-200);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-600);
    cursor: pointer;
    transition: all .2s;
  }
  .tab-btn:hover { border-color: var(--blue-400); color: var(--blue-600); background: var(--blue-100); }
  .tab-btn.active { background: var(--blue-600); color: #fff; border-color: var(--blue-600); box-shadow: 0 4px 12px rgba(37,99,235,.25); }

  .tab-panel { display: none; animation: tabIn .3s ease; }
  .tab-panel.active { display: block; }
  @keyframes tabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  .service-category { margin-bottom: 32px; }
  .service-cat-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey-400);
    border-bottom: 1px solid var(--grey-200);
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
  }
  .service-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--grey-200);
    transition: all .2s;
    cursor: default;
  }
  .service-item:hover { border-color: var(--blue-300); background: #fff; box-shadow: 0 4px 16px rgba(59,130,246,.08); transform: translateY(-1px); }
  .service-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
  .service-name { font-size: 14px; font-weight: 600; color: var(--grey-900); }
  .service-desc { font-size: 12px; color: var(--grey-400); margin-top: 2px; font-style: italic; }

  .service-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--blue-200);
    margin-top: 28px;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-700);
  }
  .trust-badge svg { color: var(--blue-700); flex-shrink: 0; }
#scrollTopBtn {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 999;

  background: #1F6E9C;
  color: #fff;
  border: none;
  border-radius: 50%;

  width: 45px;
  height: 45px;
  font-size: 18px;

  display: none;
  cursor: pointer;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: #174F73;
  transform: scale(1.1);
}
  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     HOW WE SUPPORT
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .support { padding: 24px 0 0; background: var(--white); }
  .support-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
  }
  .pillar {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--grey-200);
    margin-bottom: 12px;
    transition: all .2s;
    background: var(--white);
  }
  .pillar:hover { border-color: var(--blue-300); box-shadow: 0 4px 20px rgba(59,130,246,.07); }
  .pillar-icon {
    width: 44px; height: 44px;
    background: var(--blue-100);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--blue-600);
  }
  .pillar-title { font-size: 15px; font-weight: 700; color: var(--grey-900); margin-bottom: 5px; }
  .pillar-desc { font-size: 14px; color: var(--grey-500); line-height: 1.65; }

  .who-card {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 90px;
  }
  .who-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .who-card p { font-size: 14px; color: var(--grey-500); margin-bottom: 20px; line-height: 1.65; }
  .client-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .client-tag {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--blue-200);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--blue-700);
  }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     HOW IT WORKS
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .how { padding: 80px 0 0; background: var(--blue-100); }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 52px;
    padding-bottom: 60px;
  }
  .step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--blue-200);
    position: relative;
    transition: all .25s;
  }
  .step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(59,130,246,.12); }
  .step-num {
    font-family: 'Mona Sans';
    font-size: 52px;
    font-weight: 800;
    color: var(--blue-200);
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-icon {
    width: 52px; height: 52px;
    background: var(--blue-100);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-600);
  }
  .step-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .step-desc { font-size: 14px; color: var(--grey-500); line-height: 1.7; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     STATS BAR
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .stats-bar {
    background: var(--grey-900);
    padding: 56px 0;
  }
  .stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
  }
  .stat-item {
    text-align: center;
    padding: 28px 20px;
    position: relative;
  }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.12);
  }
  .stat-val {
    font-family: 'Mona Sans';
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--blue-400);
    line-height: 1;
  }
  .stat-lbl { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.5; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     COMPARISON TABLE
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .compare { padding: 80px 0 0; background: var(--white); }
  .compare-table-wrap { overflow-x: auto; margin-top: 52px; }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
  }
  .compare-table th {
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--grey-200);
  }
  .compare-table th:first-child { text-align: left; width: 44%; }
  .compare-table th.highlight { background: var(--blue-600); color: #fff; border-radius: 12px 12px 0 0; }
  .compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid var(--grey-100);
    color: var(--grey-600);
  }
  .compare-table td:first-child { text-align: left; color: var(--grey-900); font-weight: 500; }
  .compare-table td.highlight { background: rgba(59,130,246,.04); }
  .compare-table tr:hover td { background: var(--grey-50); }
  .compare-table tr:hover td.highlight { background: rgba(59,130,246,.07); }
  .check { color: var(--blue-600); font-size: 18px; font-weight: 700; }
  .cross { color: var(--grey-400); font-size: 18px; }
  .partial { color: var(--grey-500); font-size: 13px; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     REVIEWS
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .reviews { padding: 80px 0 0; background: var(--grey-50); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding-bottom: 16px;
  }
  .review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--grey-200);
    transition: all .25s;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .review-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
  .review-stars { display: flex; gap: 3px; color: #F59E0B; }
  .review-stars svg { width: 18px; height: 18px; }
  .review-text { font-size: 15px; color: var(--grey-700); line-height: 1.75; flex-grow: 1; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-600);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
  }
  .review-name { font-size: 14px; font-weight: 700; color: var(--grey-900); }
  .review-google { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--grey-400); }
  .google-g { font-weight: 700; font-size: 13px; }
  .g-b { color: #4285F4; } .g-r { color: #EA4335; } .g-y { color: #FBBC05; } .g-g { color: #34A853; }

  .reviews-cta { text-align: center; margin-top: 36px; padding-bottom: 32px; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     BIG CTA
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .big-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 50%, #2a2867 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .bit-cta .container{
    position: relative;
    z-index: 999;
  }
  .cta-img{
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    opacity: 0.2;
  }
  .cta-img-end{
    position: absolute;
    bottom:0px;
    right: 0px;
      z-index: 1;
    opacity: 0.6;
  }
  .big-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
  }
  .big-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
  }
  .big-cta h2 {
    font-family: 'Mona Sans';
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .big-cta p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; line-height: 1.65; }
  .big-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 36px; }
  .big-cta-contact {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; z-index: 1;
  }
  .cta-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 500;
  }
  .cta-detail svg { color: var(--blue-300); }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     FAQ
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .faq { padding: 80px 0; background: var(--white); }
  .faq-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
    margin-top: 0;
  }
  .faq-intro { position: sticky; top: 90px; }
  .faq-list { margin-top: 0; }
  .faq-item {
    border: 1px solid var(--grey-200);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { border-color: var(--blue-300); }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
    background: var(--white);
    transition: background .15s;
  }
  .faq-q:hover { background: var(--blue-100); }
  .faq-item.open .faq-q { background: var(--blue-100); }
  .faq-q-text { font-size: 15px; font-weight: 600; color: var(--grey-900); }
  .faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--grey-100);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--grey-500);
    transition: all .2s;
  }
  .faq-item.open .faq-toggle { background: var(--blue-600); color: #fff; transform: rotate(45deg); }
  .faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.75;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 16px 22px 20px; }

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     FOOTER
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .footer {
    background: #022B50;
    color: var(--white);
    padding: 72px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 52px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-brand-name {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0px;
    color: #fff;
  }
  .footer-brand-name span { color: var(--blue-400); }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
  .footer-address { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }
  .footer-contact-row { display: flex; flex-direction: column; gap: 8px; }
  .footer-contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,.6);
    text-decoration: none;
  }
  .footer-contact-item:hover { color: var(--blue-600); }
  .footer-contact-item svg { color: var(--blue-600); flex-shrink: 0; }
  .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
  .footer-links a:hover { color: var(--blue-400); }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: all .2s;
    font-size: 12px; font-weight: 700;
  }
  .social-btn:hover { background: var(--blue-600); color: #fff; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom-text { font-size: 13px; color: rgba(255,255,255,.3); }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--blue-400); }

  /* whatsapp fab */
  .wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    text-decoration: none;
    z-index: 99;
    transition: transform .2s, box-shadow .2s;
  }
  .wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  .wa-fab svg { width: 28px; height: 28px; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--blue-100);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--grey-900);
  }
  .section-sub {
    font-size: 17px;
    color: var(--grey-500);
    margin-top: 14px;
    max-width: 620px;
    line-height: 1.7;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-600);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(37,99,235,.25);
  }
  .btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.3); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue-600);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    border: 2px solid var(--blue-300);
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
  }
  .btn-outline:hover { background: var(--blue-100); border-color: var(--blue-600); }
  .clients {
  background: #ffffff; /* or #E6F2F8 */
}
.clients h2{
  font-family: var(--font-head);
      font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.25;
}
.client-logo {
  max-height: 80px;
  margin: 20px auto 0px;
  border:1px #475467 solid;
  border-radius:10px;
  transition: 0.3s;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.blog_blck{
    background-color: #fff;
    box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.07);
    border-radius: 5px;
}
.blog_blck .blog_content{
      padding: 35px 40px 33px 40px;
}
.blog_blck .blog-meta {
    margin: 0 0 10px 0;
}
 .blog-meta a {
    display: inline-block;
    margin-right: 16px;
    font-size: 16px;
    color: #55585f;
    text-decoration: none;
    text-transform: uppercase;
}
.blog-title {
    font-size: 24px;
}
.blog-title a {
    color: inherit;
    box-shadow: none;
    text-decoration: none;
}
.link-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--blue-600);
    transition: all ease 0.4s;

}
.link-btn{
      text-decoration: none;
    box-shadow: none;
}
.link-btn i {
    margin-left: 7px;
    font-size: 0.9rem;
}
  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     RESPONSIVE
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  @media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .support-grid,
    .faq-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .hero-metrics { grid-template-columns: repeat(2,1fr); }
    .how-steps { grid-template-columns: 1fr; }
    .stats-bar-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-dots { display: none; }
    .cta-banner-inner { padding: 36px 28px; }
    .nav-links { display: none; }
  }