/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* === NEXUS SMART SEARCH — YELLOW BUTTON + PILL BAR === */

/* === NEXUS SMART SEARCH – INLINE PILL + YELLOW BUTTON === */

/* Container */
.nexus-smart-search {
    position: relative;
    max-width: 420px;
    width: 100%;
}

/* Form: button + input in one row */
.nexus-smart-search-form {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
}

/* Button: yellow, same height as input */
.nexus-smart-search-btn {
    border: none;
    padding: 0 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFD600;              /* YELLOW */
    color: #111827;
    border-radius: 999px 0 0 999px;   /* left side of pill */
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Icon inside button */
.nexus-smart-search-icon {
    font-size: 16px;
    line-height: 1;
}

/* Input: attaches to button on the right */
.nexus-smart-search-input {
    flex: 1;
    border: none;
    background: #ffffff;
    padding: 0 0.9rem;
    font-size: 14px;
    outline: none;
    color: #050505;
    border-radius: 0 999px 999px 0;   /* right side of pill */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nexus-smart-search-input::placeholder {
    color: #8A8D91;
}

/* Focus ring */
.nexus-smart-search-input:focus,
.nexus-smart-search-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 85, 255, 0.25);
}

/* Dropdown */
.nexus-smart-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    margin-top: 0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    z-index: 9999;
    display: none;
}

.nexus-smart-search-list {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    max-height: 320px;
    overflow-y: auto;
}

.nexus-smart-search-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.9rem;
    text-decoration: none;
    color: #0B1A34;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nexus-smart-search-item a:hover {
    background: #F4F7FB;
    color: #0055FF;
    transform: translateX(1px);
}

.nexus-smart-search-title {
    font-weight: 500;
    line-height: 1.3;
}

.nexus-smart-search-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6B7280;
    white-space: nowrap;
}

/* Tablet & mobile tweaks */
@media (max-width: 921px) {
    .ast-mobile-header-wrap .nexus-smart-search {
        max-width: 100%;
        width: 100%;
    }

    .ast-mobile-header-wrap .nexus-smart-search-btn,
    .ast-mobile-header-wrap .nexus-smart-search-input {
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .ast-mobile-header-wrap .nexus-smart-search-input {
        font-size: 13px;
    }

    .ast-mobile-header-wrap .nexus-smart-search-item a {
        font-size: 13px;
        padding: 0.45rem 0.75rem;
    }
}



/* BPO Quote Footer Style */
.nexus-bpo-quote {
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
    color: #e5e5e5;
    opacity: 0.9;
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border-left: 3px solid #FFD600; /* yellow accent */
    display: inline-block;
}


/* === SIMPLE STICKY HEADER (ALL DEVICES) === */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999; /* high enough for menus, lower than crazy overlays */
}

/* Logged-in admins: keep header below the WP admin bar */
.admin-bar .site-header {
    top: 32px; /* desktop admin bar height */
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px; /* mobile admin bar height */
    }
}


/* === NEXUS HOMEPAGE BPO QUOTES – AUTO ROTATE === */

.nexus-bpo-quotes-section {
    background: #ffffff;
    color: #0b1a34;
    padding: 3rem 1.5rem;
}

.nexus-bpo-quotes-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Fixed-height block for quote + source (JS will set the height) */
.nexus-bpo-quote-block {
    position: relative;
    margin: 0 auto;
    max-width: 720px;
}

/* Quote layout */
.nexus-bpo-quote-wrapper {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.55rem;
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 0.4rem;
    position: relative;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nexus-bpo-quote-mark {
    font-size: 2.5rem;
    line-height: 1;
    color: #ffd600;
    flex-shrink: 0;
    margin-top: -0.2rem;
}

.nexus-bpo-quote-text {
    margin: 0;
    text-align: center;  /* center on all devices */
    font-weight: 400;
}

/* Source */
.nexus-bpo-quote-source {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Dots/bullets */
.nexus-bpo-quote-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.nexus-bpo-quote-dots button {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: #e5e7eb;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.nexus-bpo-quote-dots button.is-active {
    background: #0b1a34;
    transform: translateY(-1px);
    width: 16px;
}

/* Fade animation states */
.nexus-bpo-quote-wrapper.is-fading,
.nexus-bpo-quote-source.is-fading {
    opacity: 0;
    transform: translateY(8px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .nexus-bpo-quotes-section {
        padding: 2.5rem 1.2rem;
    }

    .nexus-bpo-quote-wrapper {
        font-size: 1rem;
    }

    .nexus-bpo-quote-mark {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .nexus-bpo-quotes-inner {
        text-align: center;
    }

    .nexus-bpo-quote-wrapper {
        align-items: flex-start;
    }

    .nexus-bpo-quote-dots {
        justify-content: center;
    }
}


/* =========================================================
   NEXUS SERVICE PAGE EXTRAS (v2 - CLEAN) — CSS
   For Nexus Assist service landing page blocks
   ========================================================= */

/* ---------- GLOBAL SECTION + WRAP ---------- */
/* Section padding and section headings */
.nx-sec { padding: 2.2rem 0; }
.nx-sec-head { margin-bottom: 1.2rem; text-align: center; }   /* centers titles like H2 + P */
.nx-sec-head p { margin: 0.35rem 0 0; color: #5b667a; }

/* If you use a wrapper like <div class="nx-wrap">, this keeps content centered */
.nx-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Generic card style used in timeline blocks */
.nx-card{
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(11,26,52,.08);
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 1.1rem 1.1rem;
}

/* ---------- BUTTON SYSTEM (nx-btn + variants) ---------- */
.nx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:.7rem 1rem;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
.nx-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
}

/* Default button styles (used in many places) */
.nx-btn-primary{ background:#0055FF; color:#fff; }
.nx-btn-primary:hover{ background:#00D4FF; color:#0B1A34; }

.nx-btn-secondary{ background:#0B1A34; color:#fff; }
.nx-btn-secondary:hover{ background:#0055FF; }

/* WhatsApp button */
.nx-btn-wa{ background:#25D366; color:#0B1A34; }
.nx-btn-wa:hover{ background:#1fb95a; }

/* Dark button (YOU USED nx-btn-dark in pricing/social) */
.nx-btn-dark{
  background:#0B1A34;
  color:#ffffff;
  border-color: rgba(11,26,52,.15);
}
.nx-btn-dark:hover{ background:#0055FF; }

/* ---------- BLOCK 1: HERO (Payment Follow-Up / Collections BPO) ---------- */
.nx-hero{
  background: transparent !important;
  box-shadow: none !important;
  padding: 2rem 0;
}
.nx-hero::before,
.nx-hero::after{ display:none !important; }

/* White card with thin cyan border */
.nx-hero-inner{
  background: #ffffff;
  border: 1.5px solid #00d4ff;
  border-radius: 18px;
  padding: 28px 30px;
}

/* Hero text centered */
.nx-hero-inner h1{
  color: #0B1A34 !important;
  font-weight: 900;
  margin: 0 0 .6rem;
  text-align: center;
}
.nx-hero-inner p{
  color: #475569 !important;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 1.2rem;
  text-align: center;
}

/* Hero CTA buttons centered */
.nx-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: .75rem;
  align-items:center;
  justify-content: center;
  margin-top: .5rem;
}
.nx-hero-actions .nx-btn,
.nx-hero-actions .nx-btn-link{
  border-radius: 999px;
  padding: .85rem 1.05rem;
  font-weight: 950;
}

/* Hero button colors (custom) */
.nx-hero-actions .nx-btn-primary{
  background:#FFD600;
  color:#0B1A34;
}
.nx-hero-actions .nx-btn-secondary{
  background:#0B1A34;
  color:#ffffff;
}

/* Call Hotline in hero (light green pill) */
.nx-hero-actions .nx-btn-link{
  background: #D1FAE5;
  border: 1px solid #86EFAC;
  color: #065F46;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Hero trust pills (No spam / Daily reporting etc.) centered */
.nx-hero-trust{
  margin-top: 1rem;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
}
.nx-hero-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,212,255,.35);
  color: #0B1A34;
  font-weight: 900;
  font-size: 13px;
}
.nx-hero-pill b{ color:#00d4ff; }

@media (max-width: 640px){
  .nx-hero{ padding: 1.5rem 0; }
  .nx-hero-inner{ padding: 22px 20px; border-radius: 16px; }
}

/* ---------- BLOCK 2: 2-COLUMN COMPARE CARD (Why businesses choose...) ---------- */
.nx-cmpr-head{ margin-bottom: 14px; text-align:center; }
.nx-cmpr-head h2{ margin-bottom: 6px; }

.nx-cmpr-card{
  background:#fff;
  border-radius: 22px;
  border: 1px solid rgba(11,26,52,.10);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  overflow:hidden;
}

.nx-cmpr-cols{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items:stretch;
}
.nx-cmpr-col{ padding: 22px 22px; }
.nx-cmpr-divider{ background: rgba(11,26,52,.10); }

.nx-cmpr-title{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 1000;
  color:#0B1A34;
}
.nx-cmpr-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.nx-cmpr-list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  font-weight: 850;
  color:#0B1A34;
  line-height: 1.35;
}
.nx-cmpr-list .ico{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 28px;
  font-weight: 1000;
  margin-top: 1px;
}
.nx-cmpr-list li.ok .ico{
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.35);
  color: #166534;
}
.nx-cmpr-list li.bad .ico{
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.30);
  color: #991b1b;
  opacity:.9;
}

@media (max-width: 921px){
  .nx-cmpr-cols{ grid-template-columns: 1fr; }
  .nx-cmpr-divider{ display:none; }
  .nx-cmpr-col{ padding: 18px 16px; }
  .nx-cmpr-title{ font-size: 20px; }
}

/* ---------- BLOCK 3: TRUST BADGES STRIP (Trustable & Reliable) ---------- */
.nx-truststrip .nx-sec-head{ margin-bottom: 14px; }

.nx-trust-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.nx-trust-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#F4F7FB;
  border:1px solid rgba(11,26,52,.10);
  color:#0B1A34;
  font-weight:900;
  font-size:13px;
  line-height:1;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

.nx-tb-ico{
  display:inline-flex;
  width:26px;
  height:26px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.25);
}

/* ---------- BLOCK 4/5: TIMELINE (How it works) ---------- */
/* Your HTML uses .nx-timeline, so we style THAT (not nx-timeline-grid) */
.nx-timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1200px){
  .nx-timeline{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .nx-timeline{ grid-template-columns: 1fr; }
}

/* ---------- BLOCK 6: COMPARE2 TABLE (Internal vs Nexus Assist) ---------- */
.nx-compare2-box{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 14px;
  align-items:stretch;
}

.nx-compare2-brand{
  background:#0B1A34;
  color:#F4F7FB;
  border-radius:18px;
  padding:18px 16px;
  border:1px solid rgba(11,26,52,.10);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.nx-compare2-dot{
  width:44px;height:44px;border-radius:999px;
  background:rgba(255,214,0,.95);
  color:#0B1A34;
  display:flex;align-items:center;justify-content:center;
  font-weight:950;
  margin-bottom:10px;
}

.nx-compare2-title{ font-size:24px; font-weight:1000; line-height:1.1; }
.nx-compare2-sub{ margin-top:6px; opacity:.9; font-weight:800; font-size:13px; }

.nx-compare2-table{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(11,26,52,.10);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  background:#fff;
}

.nx-compare2-row{
  display:grid;
  grid-template-columns: 1.8fr .9fr .9fr;
  align-items:center;
  border-top:1px solid rgba(11,26,52,.08);
}
.nx-compare2-row:first-child{ border-top:none; }

.nx-compare2-cell{ padding:14px 14px; }

.nx-compare2-head .nx-compare2-cell{
  font-weight:950;
  background:#F4F7FB;
  color:#0B1A34;
}

.nx-compare2-feature{ color:#0B1A34; font-weight:850; }
.nx-compare2-colhead{ text-align:center; font-weight:950; }
.nx-compare2-colhead.is-accent{
  background: rgba(0,212,255,.12);
  color:#0055FF;
}

.nx-compare2-mark{ text-align:center; font-size:22px; font-weight:1000; }
.nx-compare2-mark.yes{ color:#0B1A34; }
.nx-compare2-mark.no{ color: rgba(11,26,52,.35); }
.nx-compare2-mark.is-accent{ background: rgba(0,212,255,.10); }

@media (max-width: 921px){
  .nx-compare2-box{ grid-template-columns: 1fr; }
  .nx-compare2-brand{ display:none; }
  .nx-compare2-row{ grid-template-columns: 1.6fr .7fr .7fr; }
}

/* ---------- BLOCK 7: PRICING ---------- */
.nx-price-grid{ display:grid; gap:18px; align-items:stretch; }
.nx-price-cols-2{ grid-template-columns: 1.1fr .9fr; }
@media (max-width: 921px){ .nx-price-cols-2{ grid-template-columns: 1fr; } }

.nx-price-card{
  background:#fff;
  border-radius:20px;
  border:1px solid rgba(11,26,52,.10);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.nx-price-card.is-featured{
  border-color: rgba(255,214,0,.55);
  box-shadow: 0 22px 60px rgba(15,23,42,.12);
}

.nx-price-wave{
  padding:18px 18px 14px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.nx-wave-blue{ background: linear-gradient(135deg, #0B1A34 0%, #0055FF 100%); }
.nx-wave-cyan{ background: linear-gradient(135deg, #0055FF 0%, #00D4FF 100%); }

.nx-price-wave:after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-28px;
  height:78px;
  background: rgba(255,255,255,.95);
  border-radius: 0 0 60% 60%;
  transform: rotate(-2deg);
}

.nx-price-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  position:relative;
  z-index:2;
}
.nx-plan{ font-weight:950; font-size:18px; }
.nx-subplan{ opacity:.9; font-weight:700; font-size:12px; margin-top:2px; }

.nx-badge2{
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  background: rgba(255,214,0,.92);
  color:#0B1A34;
  font-weight:950;
  font-size:12px;
}

.nx-price{
  margin-top:12px;
  display:flex;
  align-items:baseline;
  gap:6px;
  position:relative;
  z-index:2;
}
.nx-currency{ font-weight:900; opacity:.95; }
.nx-amount{ font-size:34px; font-weight:1000; letter-spacing:.3px; }
.nx-per{ font-size:13px; font-weight:850; opacity:.95; }

.nx-features{
  list-style:none;
  margin: 18px 0 0;
  padding: 0 18px 0;
  color:#334155;
  line-height:1.75;
}
.nx-features li{
  padding: 8px 0;
  border-bottom: 1px dashed rgba(11,26,52,.12);
}
.nx-features li:last-child{ border-bottom:none; }

.nx-callout{
  margin: 14px 18px 0;
  padding: 12px 12px;
  border-radius:16px;
  background: rgba(0,212,255,.10);
  border: 1px solid rgba(0,212,255,.25);
  color:#0B1A34;
  font-weight:850;
}

.nx-price-cta{
  margin-top:auto;
  padding: 16px 18px 18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.nx-op-notes{
  margin-top:16px;
  background:#F4F7FB;
  border:1px solid rgba(11,26,52,.10);
  border-radius:18px;
  padding:14px 16px;
}
.nx-op-title{ font-weight:950; color:#0B1A34; margin-bottom:8px; }
.nx-op-notes ul{ margin:0; padding-left:18px; color:#334155; line-height:1.7; }

/* ---------- BLOCK 8: FAQ ---------- */
/* Your HTML uses .nx-faq (not nx-faq-wrap), so we style .nx-faq */
.nx-faq{ display:flex; flex-direction:column; gap:.7rem; }
.nx-faq details{
  background:#fff;
  border:1px solid rgba(11,26,52,.10);
  border-radius:16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding:.2rem .9rem;
  overflow:hidden;
}
.nx-faq summary{
  cursor:pointer;
  padding:.8rem .2rem;
  font-weight:950;
  color:#0B1A34;
  list-style:none;
}
.nx-faq summary::-webkit-details-marker{ display:none; }
.nx-faq details[open] summary{ color:#0055FF; }
.nx-faq details > div{ padding:.2rem .2rem 1rem; color:#334155; line-height:1.7; }

/* ---------- BLOCK 9: SOCIAL ---------- */
.nx-social{
  display:flex;
  justify-content:center;
  gap:.75rem;
  flex-wrap:wrap;
}

/* ---------- BLOCK 10: FLOATING WHATSAPP BUTTON + POINTING FINGER ---------- */
/* Uses variables so finger always points to CENTER of the button */
.nx-wa-float{
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 99998;

  --waSize: 56px;   /* button size */
  --waGap: 12px;    /* gap between finger and button */
}

/* Button */
.nx-wa-btn{
  width: var(--waSize);
  height: var(--waSize);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border: 1px solid rgba(11,26,52,.10);
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  text-decoration: none;
  position: relative;
  transform: translateZ(0);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.nx-wa-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(15,23,42,.22);
  filter: saturate(1.06);
}

/* Icon */
.nx-wa-icon{ width: 26px; height: 26px; display:block; }

/* Pulse ring */
.nx-wa-btn::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  border: 2px solid rgba(37,211,102,.38);
  animation: nxPulse 2.2s ease-out infinite;
}
.nx-wa-btn::after{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:999px;
  border: 2px solid rgba(37,211,102,.18);
  animation: nxPulse2 2.2s ease-out infinite;
}

/* Pointing finger (YOU change size by editing font-size) */
.nx-wa-point{
  position:absolute;
  top: 50%;
  right: calc(var(--waSize) + var(--waGap));
  transform: translateY(-50%);
  font-size: 90px; /* <-- CHANGE THIS to make the finger bigger/smaller */
  z-index: 99999;
  pointer-events:none;
  filter: drop-shadow(0 10px 22px rgba(15,23,42,.18));
  animation: nxPoint 2.8s ease-in-out infinite;
}

/* Animations */
@keyframes nxPulse{
  0%{ transform: scale(.72); opacity:.9; }
  70%{ transform: scale(1.18); opacity:0; }
  100%{ opacity:0; }
}
@keyframes nxPulse2{
  0%{ transform: scale(.62); opacity:.55; }
  70%{ transform: scale(1.32); opacity:0; }
  100%{ opacity:0; }
}
@keyframes nxPoint{
  0%, 60%, 100%{ transform: translateY(-50%) translateX(0); opacity:.95; }
  70%{ transform: translateY(-50%) translateX(-4px); }
  80%{ transform: translateY(-50%) translateX(0); }
}

/* Mobile tweaks (still RIGHT side + centered finger) */
@media (max-width: 480px){
  .nx-wa-float{
    right: 8px;
    bottom: 82px;
    --waSize: 52px;
    --waGap: 10px;
  }
  .nx-wa-icon{ width: 24px; height: 24px; }
  .nx-wa-point{ font-size: 35px; }
}

/* Remove big gap between header and page content (desktop) */
@media (min-width: 921px){
  .site-content { padding-top: 0 !important; }
  .ast-container { padding-top: 0 !important; }
  #primary { margin-top: 0 !important; }
}


