/********** Template CSS **********/
:root {
    --primary: #1E4DB7;
    --secondary: #1E4DB7;
    --light: #F0F6FF;
    --dark: #262B47;
    --hero-subtext: #E0E7FF;
    --bs-primary: #1E4DB7;
    --bs-primary-rgb: 30, 77, 183;
    --page-bg: #FFFFFF;
    --page-text: #262B47;
    --surface: #FFFFFF;
    --surface-2: #F6F9FF;
    --muted-text: #6C757D;
    --border-color: rgba(0, 0, 0, .08);
}

[data-theme="dark"] {
    --page-bg: #0B1220;
    --page-text: #E5E7EB;
    --surface: #0F172A;
    --surface-2: #111B31;
    --muted-text: #9CA3AF;
    --border-color: rgba(255, 255, 255, .12);
    --hero-subtext: rgba(229, 231, 235, .82);
}

body {
    background: var(--page-bg);
    color: var(--page-text);
}

[data-theme="dark"] .bg-white {
    background-color: var(--page-bg) !important;
}

[data-theme="dark"] .bg-light {
    background-color: var(--surface-2) !important;
}

[data-theme="dark"] .text-dark {
    color: var(--page-text) !important;
}

[data-theme="dark"] .text-muted {
    color: var(--muted-text) !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    color: var(--primary);
}

.text-secondary-gradient {
    color: var(--primary);
}

.bg-primary-gradient {
    background: var(--primary);
}

.bg-secondary-gradient {
    background: var(--primary);
}

.text-hero-sub {
    color: var(--hero-subtext) !important;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #FFFFFF;
}

.btn.btn-primary-gradient:hover,
.btn.btn-primary-gradient:focus {
    background: #173F9A;
    border-color: #173F9A;
    color: #FFFFFF;
}

.btn.btn-secondary-gradient {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn.btn-secondary-gradient:hover,
.btn.btn-secondary-gradient:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

/* Ensure secondary button is readable on the hero gradient background */
.hero-header .btn.btn-secondary-gradient {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-header .btn.btn-secondary-gradient:hover,
.hero-header .btn.btn-secondary-gradient:focus {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: var(--primary);
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 10px solid transparent;
    border-bottom-color: var(--light);
    transition: .5s;
    opacity: 0;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-27px);
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-download-btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #FFFFFF;
}

.navbar-download-btn:hover,
.navbar-download-btn:focus {
    background: #173F9A;
    border-color: #173F9A;
    color: #FFFFFF;
}

.navbar-light .dropdown-menu {
    border-radius: 14px;
}

.navbar-light .dropdown-menu .dropdown-item {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: .6rem .9rem;
    border-radius: 10px;
    color: var(--dark);
}

.navbar-light .dropdown-menu .dropdown-item:hover,
.navbar-light .dropdown-menu .dropdown-item:focus {
    background: rgba(30, 77, 183, .08);
    color: var(--primary);
}

.navbar-light .dropdown-menu {
    padding: .5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .06);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;

    }

    .navbar-download-btn {
        background: var(--primary);
        border-color: var(--primary);
        color: #FFFFFF;
    }

    .navbar-download-btn:hover,
    .navbar-download-btn:focus {
        background: #173F9A;
        border-color: #173F9A;
        color: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

.sticky-top.navbar-light .navbar-nav .nav-link::before {
    border-bottom-color: #1E4DB7;
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--primary);
}


    /* Show navbar dropdown on hover (desktop) */
    .navbar-light .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 0;
    --hero-wave-height: clamp(110px, 14vw, 220px);
    padding: 12rem 0 var(--hero-wave-height) 0;
    position: relative;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        var(--primary);
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center center;
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    background-size: auto;
}

.hero-header::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--hero-wave-height);
    background-image: url(../img/bg-bottom.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    pointer-events: none;
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 var(--hero-wave-height) 0;
    }
}

/*** Download flip (QR) ***/
.download-preview-wrap {
    perspective: 1100px;
}

.download-preview-inner {
    position: relative;
    transform-style: preserve-3d;
    transition: transform .55s ease;
}

.download-preview-wrap.is-flipped .download-preview-inner {
    transform: rotateY(180deg);
}

.download-preview-front,
.download-preview-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.download-preview-img {
    border-radius: 18px;
}

.download-preview-back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #FFFFFF;
    transform: rotateY(180deg);
    padding: 1.25rem;
}

.download-qr-card {
    width: min(320px, 100%);
}

.download-qr-label {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .2px;
}

.download-qr-img {
    width: min(260px, 100%);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
}

/*** Modal tweaks (no blur/overlay + top position) ***/
.modal-dialog.modal-dialog-top {
    margin-top: 1rem;
}

.modal-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.modal-backdrop.show {
    opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .download-preview-inner {
        transition: none;
    }
}


/*** Chatbot ***/
.nigherme-chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1090;
}

.nigherme-chatbot__fab {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 .8rem 1.8rem rgba(0, 0, 0, .22);
    transition: transform .15s ease, background .15s ease;
}

.nigherme-chatbot__fab:active {
    transform: translateY(0);
}

.nigherme-chatbot__fab:hover,
.nigherme-chatbot__fab:focus {
    transform: translateY(-2px);
    background: #173F9A;
    color: #FFFFFF;
}

.nigherme-chatbot__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(340px, calc(100vw - 28px));
    height: min(480px, calc(100vh - 160px));
    background: var(--surface);
    color: var(--page-text);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, .24);
    transform-origin: bottom right;
    opacity: 0;
    transform: translateY(10px) scale(.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.nigherme-chatbot.is-open .nigherme-chatbot__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nigherme-chatbot__header {
    position: relative;
    padding: .9rem 3.25rem .9rem .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary), #173F9A);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.nigherme-chatbot__brand {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1.1;
    color: #FFFFFF;
}

.nigherme-chatbot__subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
}

.nigherme-chatbot__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.nigherme-chatbot__close i {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
}.nigherme-chatbot__close:hover,
.nigherme-chatbot__close:focus {
    background: rgba(255, 255, 255, .18);
    color: #FFFFFF;
}

.nigherme-chatbot__messages {
    padding: 1rem .95rem;
    height: calc(100% - 64px - 68px);
    overflow: auto;
    background:
        radial-gradient(1200px 500px at 0% 0%, rgba(30, 77, 183, .10), transparent 45%),
        radial-gradient(900px 380px at 100% 10%, rgba(30, 77, 183, .08), transparent 55%),
        var(--surface);
}

.nigherme-chatbot__bubble {
    max-width: 86%;
    padding: .72rem .85rem;
    border-radius: 18px;
    margin-bottom: .6rem;
    line-height: 1.35;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0 .25rem .8rem rgba(0, 0, 0, .06);
}

.nigherme-chatbot__bubble--bot {
    background: var(--surface);
    color: var(--page-text);
    border-top-left-radius: 10px;
    border-color: var(--border-color);
}

.nigherme-chatbot__bubble--user {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(30, 77, 183, .95), rgba(23, 63, 154, .95));
    color: #FFFFFF;
    border-top-right-radius: 10px;
}

.nigherme-chatbot__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: .25rem 0 .75rem 0;
}

.nigherme-chatbot__chip {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, .85);
    color: var(--page-text);
    padding: .45rem .65rem;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

[data-theme="dark"] .nigherme-chatbot__chip {
    background: rgba(15, 23, 42, .85);
}

.nigherme-chatbot__chip:hover,
.nigherme-chatbot__chip:focus {
    border-color: rgba(30, 77, 183, .35);
    background: rgba(30, 77, 183, .08);
    color: var(--primary);
}

.nigherme-chatbot__composer {
    padding: .85rem .9rem;
    border-top: 1px solid var(--border-color);
    background: var(--surface);
}

.nigherme-chatbot__composer form {
    display: flex;
    gap: .5rem;
}

.nigherme-chatbot__input {
    flex: 1;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--surface);
    color: var(--page-text);
    padding: 0 .9rem;
    outline: none;
}

.nigherme-chatbot__input:focus {
    border-color: rgba(30, 77, 183, .55);
    box-shadow: 0 0 0 .2rem rgba(30, 77, 183, .15);
}

.nigherme-chatbot__send {
    height: 42px;
    padding: 0 1.05rem;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 .5rem 1rem rgba(30, 77, 183, .24);
}

.nigherme-chatbot__send:hover,
.nigherme-chatbot__send:focus {
    background: #173F9A;
    color: #FFFFFF;
}

.nigherme-chatbot__hint {
    font-size: 12px;
    color: var(--muted-text);
    margin-top: .4rem;
}

/* Avoid overlapping back-to-top button */
.back-to-top {
    right: 22px;
    bottom: 158px;
}

/*** WhatsApp floating button ***/
.whatsapp-fab {
    position: fixed;
    right: 22px;
    bottom: 90px;
    z-index: 1089;
    height: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 .8rem 1.8rem rgba(0, 0, 0, .22);
    transition: transform .15s ease, background .15s ease;
    padding: 0 14px;
    gap: 10px;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus {
    background: #1EBE5D;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.whatsapp-fab i {
    font-size: 22px;
    line-height: 1;
}

.whatsapp-fab__text {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2px;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .nigherme-chatbot {
        right: 14px;
        bottom: 14px;
    }

    .nigherme-chatbot__panel {
        width: min(360px, calc(100vw - 18px));
        height: min(520px, calc(100vh - 140px));
        bottom: 70px;
    }

    .whatsapp-fab {
        right: 14px;
        bottom: 82px;
        padding: 0;
        width: 56px;
        justify-content: center;
        gap: 0;
    }

    .whatsapp-fab__text {
        display: none;
    }

    .back-to-top {
        right: 14px;
        bottom: 148px;
    }
}


/*** Feature ***/
.feature-item {
    transition: .4s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
    background: var(--primary) !important;
}

.feature-item:hover h5,
.feature-item:hover p {
    color: #FFFFFF !important;
}

.feature-item:hover p {
    opacity: .92;
}

.feature-item:hover .bg-primary-gradient,
.feature-item:hover .bg-secondary-gradient {
    background: #FFFFFF !important;
}

.feature-item:hover .bg-primary-gradient i,
.feature-item:hover .bg-secondary-gradient i {
    color: var(--primary) !important;
}

/*** Providers ***/
.providers-wrap {
    background: #F4F8FF;
    border: 1px solid rgba(0, 0, 0, .05);
    max-width: 1600px;
    margin: 0 auto;
}

.providers-hero {
    background: #F4F8FF;
}

.providers-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid rgba(30, 77, 183, .15);
    border-radius: 999px;
}

.providers-title {
    font-size: clamp(2rem, 2.8vw, 3.25rem);
    line-height: 1.15;
}

.providers-desc {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 56ch;
}

.providers-image {
    position: relative;
    border-radius: 24px;
    padding: 28px;
    background: radial-gradient(circle at 30% 20%, rgba(58, 111, 247, .18), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(30, 77, 183, .16), transparent 55%);
}

.providers-image img {
    border-radius: 18px;
}

.providers-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .08);
    white-space: nowrap;
}

.providers-tag i {
    color: var(--primary);
}

.providers-tag.tag-plumbing { top: 18px; left: 18px; }
.providers-tag.tag-ac { top: 95px; left: 0; transform: translateX(-10%); }
.providers-tag.tag-electric { top: 46px; right: 10px; }
.providers-tag.tag-carpentry { bottom: 18px; right: 20px; }

.providers-stat {
    height: 100%;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 16px;
    padding: 18px 14px;
}

.providers-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.providers-stat-label {
    margin-top: 6px;
    font-size: 13px;
    color: #6B7280;
}

.providers-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 16px 12px;
    border-radius: 16px;
    background: #F7FAFF;
    border: 1px solid rgba(30, 77, 183, .08);
    color: var(--dark);
    transition: .25s ease;
    height: 100%;
    cursor: default;
}

.providers-cat i {
    font-size: 22px;
    color: var(--primary);
}

.providers-cat span {
    font-size: 13px;
    font-weight: 600;
}

.providers-cat:hover {
    transform: translateY(-3px);
    background: var(--primary);
    border-color: transparent;
    color: #FFFFFF;
}

.providers-cat:hover i {
    color: #FFFFFF;
}


/*** Auto Marquee ***/
.auto-marquee {
    --marquee-distance: 600px;
    --marquee-duration: 12s;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
}

.auto-marquee__track {
    display: flex !important;
    width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
    animation: autoMarquee var(--marquee-duration) linear infinite;
}
.auto-marquee:hover .auto-marquee__track {
    animation-play-state: paused;
}
.auto-marquee__group {
    display: flex !important;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 0 8px;
}
.auto-marquee__item {
    flex: 0 0 auto;
    width: clamp(140px, 18vw, 190px);
}

@keyframes autoMarquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .auto-marquee__track {
    display: flex !important;
    width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
    animation: autoMarquee var(--marquee-duration) linear infinite;
}
}.providers-cta {
    background: var(--primary);
}

.providers-cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    color: #FFFFFF;
    font-size: 22px;
    flex-shrink: 0;
}

.providers-cta-btn {
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: var(--primary);
    font-weight: 700;
    transition: .25s ease;
}

.providers-cta-btn:hover,
.providers-cta-btn:focus {
    background: transparent;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .providers-tag.tag-ac { left: 12px; transform: none; }
    .providers-desc { max-width: none; }
}

@media (max-width: 575.98px) {
    .providers-title { font-size: 1.85rem; }
    .providers-tag { display: none; }
}

/*** Sellers ***/
.sellers-wrap {
    background: #F4F8FF;
    border: 1px solid rgba(0, 0, 0, .05);
    max-width: 1600px;
    margin: 0 auto;
}

.sellers-hero {
    background: #F4F8FF;
}

.sellers-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid rgba(30, 77, 183, .15);
    border-radius: 999px;
}

.sellers-title {
    font-size: clamp(2rem, 2.8vw, 3.25rem);
    line-height: 1.15;
}

.sellers-desc {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 56ch;
}

.sellers-image {
    border-radius: 24px;
    padding: 22px;
    background: radial-gradient(circle at 30% 20%, rgba(58, 111, 247, .18), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(30, 77, 183, .16), transparent 55%);
}

.sellers-image img {
    border-radius: 18px;
}

.sellers-stat {
    height: 100%;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 16px;
    padding: 18px 14px;
}

.sellers-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.sellers-stat-label {
    margin-top: 6px;
    font-size: 13px;
    color: #6B7280;
}

.sellers-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 16px 12px;
    border-radius: 16px;
    background: #F7FAFF;
    border: 1px solid rgba(30, 77, 183, .08);
    color: var(--dark);
    transition: .25s ease;
    height: 100%;
    cursor: default;
}

.sellers-cat i {
    font-size: 22px;
    color: var(--primary);
}

.sellers-cat span {
    font-size: 13px;
    font-weight: 600;
}

.sellers-cat:hover {
    transform: translateY(-3px);
    background: var(--primary);
    border-color: transparent;
    color: #FFFFFF;
}

.sellers-cat:hover i {
    color: #FFFFFF;
}

.sellers-cta {
    background: var(--primary);
}

.sellers-cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    color: #FFFFFF;
    font-size: 22px;
    flex-shrink: 0;
}

.sellers-cta-btn {
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: var(--primary);
    font-weight: 700;
    transition: .25s ease;
}

.sellers-cta-btn:hover,
.sellers-cta-btn:focus {
    background: transparent;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .sellers-desc { max-width: none; }
}

@media (max-width: 575.98px) {
    .sellers-title { font-size: 1.85rem; }
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary);
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #173F9A;
}


/*** Footer ***/
.footer {
    --footer-wave-height: clamp(120px, 14vw, 240px);
    margin-top: 0;
    padding-top: clamp(7rem, 10vw, 9rem);
    position: relative;
    overflow: hidden;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        var(--primary);
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center center;
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    background-size: auto;
}

.footer::before {
    position: absolute;
    content: "";
    left: -1px;
    right: -1px;
    top: 0;
    height: var(--footer-wave-height);
    background-image: url(../img/bg-top.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 101% 100%;
    pointer-events: none;
    z-index: 0;
}

.footer > .container,
.footer > .container-fluid {
    position: relative;
    z-index: 1;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer-brand h2 {
    letter-spacing: .2px;
}

.footer-download a {
    text-decoration: none;
}

.footer-download .footer-download-toggle {
    transition: .2s ease;
}

.footer-download .footer-download-toggle::after {
    margin-left: auto;
}

.footer-download .footer-download-toggle:hover {
    transform: translateY(-2px);
}

.footer-download .footer-download-menu {
    border-radius: 14px;
    padding: .5rem;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15);
}

.footer-download .footer-download-menu .dropdown-item {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: .55rem .75rem;
    border-radius: 10px;
}

.footer-download .footer-download-menu .dropdown-item:hover,
.footer-download .footer-download-menu .dropdown-item:focus {
    background: rgba(30, 77, 183, .08);
    color: var(--primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Themed confirmation modal (chat restart) ***/
.chat-confirm-modal .modal-content {
    border-radius: 18px;
    border: 0;
    overflow: hidden;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .35);
}

.chat-confirm-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), #173F9A);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding: 1rem 1.1rem;
}

.chat-confirm-modal .modal-title {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
}

.chat-confirm-modal .modal-body {
    font-size: 15px;
    color: var(--page-text);
    background: var(--surface);
    padding: 1.05rem 1.1rem;
}

.chat-confirm-modal .modal-footer {
    border-top: 1px solid var(--border-color);
    background: var(--surface);
    padding: .9rem 1.1rem 1.1rem;
    gap: .5rem;
}

.chat-confirm-modal .btn.btn-outline-light {
    border-color: rgba(30, 77, 183, .25);
    color: var(--primary);
    background: transparent;
}

.chat-confirm-modal .btn.btn-outline-light:hover,
.chat-confirm-modal .btn.btn-outline-light:focus {
    background: rgba(30, 77, 183, .08);
    border-color: rgba(30, 77, 183, .35);
}

.chat-confirm-modal .btn.btn-light {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    font-weight: 800;
}

.chat-confirm-modal .btn.btn-light:hover,
.chat-confirm-modal .btn.btn-light:focus {
    background: #173F9A;
    border-color: #173F9A;
    color: #FFFFFF;
}
#chatRestartConfirm.chat-confirm-modal {
    z-index: 2000;
}

.modal-backdrop {
    z-index: 1990;
}
