:root {
    /* Map homepage-specific variable names to global variables (safe fallbacks) */
    --bg-card: var(--card-bg, #ffffff);
    --bg-body: var(--light-color, #f8f9fe);
    --bg-section-light: var(--primary-light, #E4E6FA);
    --border-color: var(--border-color, rgba(0,0,0,0.06));
    --text-main: var(--heading-color, #111827);
    --text-muted: var(--secondary-color, #6c757d);
    --accent-blue: var(--primary-color, #356DFF);
    --accent-blue-light: var(--primary-light, #eef2ff);
    --accent-green: var(--success-color, #22c55e);
    --accent-green-light: rgba(34,197,94,0.12);
    --accent-purple-light: rgba(139,92,246,0.08);
    --accent-orange-light: rgba(255,107,44,0.10);
    --svg-grid: #f1f5f9;
    --svg-baseline: #e2e8f0;
    --ring: rgba(0,0,0,0.06);
    --ink: var(--heading-color, #111827);
    --muted: var(--secondary-color, #6c757d);
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1b2334;
}

/* .btn-orange {
    background: #FF6B2C;
    border-color: #FF6B2C;
    color: #fff;
    font-weight: 600;
} */

.btn-orange:hover {
    background: #ef5c1e;
    border-color: #ef5c1e;
    color: #fff;
}

.text-brandblue {
    color: var(--accent-blue);
}

.nav-link-custom {
    /* color: #1b2334 !important; */
    font-weight: 600;
    font-size: .92rem;
}

/* .nav-link-custom:hover {
    color: var(--warning-color) !important;
} */

.eyebrow-pill {
    background: var(--accent-blue-light);
    color: var(--accent-blue);
    font-size: .78rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 6px 14px;
}

/* dashboard mock */
.dash-card {
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(20, 30, 60, .18);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.dash-sidebar {
    width: 130px;
    border-right: 1px solid var(--border-color);
    font-size: .75rem;
}

.dash-sidebar .item {
    padding: 8px 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-sidebar .item.active {
    background: var(--accent-blue-light);
    color: var(--accent-blue);
    font-weight: 600;
    border-radius: 8px;
    margin: 0 6px;
}

.stat-mini {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 12px;
}

.stat-mini .num {
    font-size: 1.15rem;
    font-weight: 700;
}

.map-box {
    background: radial-gradient(ellipse at 30% 30%, #f4f7fd, #e9edf6);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.route {
    stroke-dasharray: 4 4;
    animation: dashmove 3s linear infinite;
}

@keyframes dashmove {
    to {
        stroke-dashoffset: -40;
    }
}

.donut {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-green) 0% 68%, var(--bg-body) 68% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut span {
    background: var(--bg-card);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}

/* phone mock */
.phone {
    width: 150px;
    height: 300px;
    background: #111827;
    border-radius: 26px;
    padding: 6px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .35);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 14px;
    background: #111827;
    border-radius: 8px;
    z-index: 2;
}

.trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-band .card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--bg-card);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ----------------------hero---------------------------- */
section.hero.py-5 {
    background: var(--bg-section-light);
    padding-top: 130px !important;
    transition: background 0.3s ease;
}

/* --------------------section1---------------------------- */
.feat-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.feat-card:hover {
    box-shadow: 0 12px 26px rgba(20, 30, 60, .08);
    transform: translateY(-2px);
    border-color: var(--border-color);
}

.feat-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon i {
    font-size: 1rem;
}

.feat-card h6 {
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 4px;
}

.feat-card p {
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}


/* --------------------section2---------------------------- */

.sub-title {
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

/* Ensure hero heading uses theme-aware color */
.hero .display-4 {
    color: var(--text-main);
}

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

.industry-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: .3s;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.industry-card img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 18px;
}

.industry-card h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.explore-btn {
    border: 2px solid #356DFF;
    color: #356DFF;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px;
    transition: .3s;
}

.explore-btn:hover {
    background: #356DFF;
    color: #fff;
}

@media(max-width:991px) {

    .main-title {
        font-size: 34px;
    }

    .industry-card img {
        height: 90px;
    }

}

@media(max-width:767px) {

    .industry-section {
        padding: 50px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .industry-card {
        margin-bottom: 20px;
    }

}

/* <!-- ------------------------section3----------------------------------- --> */

.sec-title {
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.15;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.check-item i {
    color: #22c55e;
    font-size: 1.05rem;
}

.store-badge {
    background: #111827;
    color: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
}

.store-badge small {
    display: block;
    font-size: .55rem;
    opacity: .75;
}

.store-badge strong {
    display: block;
    font-size: .85rem;
    line-height: 1.1;
}

/* device stage */
.device-stage {
    position: relative;
    min-height: 380px;
}

.mini-topbar {
    display: flex;
    align-items: center;
    justify-content: between;
    gap: 6px;
    padding: 4px 8px;
    border-bottom: 1px solid #eef0f4;
    font-size: .5rem;
}

.mini-search {
    background: #f3f4f6;
    border-radius: 20px;
    flex-grow: 1;
    padding: 2px 8px;
    color: #9ca3af;
}

.mini-sidebar {
    width: 44px;
    border-right: 1px solid #eef0f4;
    font-size: .4rem;
    padding: 4px 2px;
}

.mini-sidebar .it {
    padding: 3px 4px;
    color: #9ca3af;
    border-radius: 4px;
    margin-bottom: 2px;
}

.mini-sidebar .it.active {
    background: #eaf1ff;
    color: #2F6BFF;
}

.mini-stat {
    border: 1px solid #eef0f4;
    border-radius: 5px;
    padding: 3px 4px;
    font-size: .42rem;
}

.mini-map {
    background: linear-gradient(135deg, #eef2f9, #e3e9f4);
    border-radius: 5px;
}

/* laptop */
.laptop {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.laptop-screen {
    background: #0f172a;
    border-radius: 14px 14px 4px 4px;
    padding: 8px;
    box-shadow: 0 25px 50px -15px rgba(20, 30, 60, .35);
}

.laptop-inner {
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.laptop-base {
    height: 14px;
    background: #1e293b;
    border-radius: 0 0 10px 10px;
    margin: 0 -6px;
    position: relative;
}

.laptop-base::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #334155;
    border-radius: 0 0 6px 6px;
}

/* tablet */
.tablet {
    position: absolute;
    width: 38%;
    right: 2%;
    bottom: -6%;
    background: #0f172a;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 40px -12px rgba(20, 30, 60, .3);
}

.tablet-inner {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

/* phone */
.phone {
    position: absolute;
    width: 15%;
    right: -2%;
    bottom: -10%;
    background: #0f172a;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 18px 36px -10px rgba(20, 30, 60, .3);
}

.phone-inner {
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 28%;
    height: 6%;
    background: #0f172a;
    border-radius: 6px;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .device-stage {
        min-height: 0;
    }

    .tablet,
    .phone {
        position: static;
        width: auto;
        margin-top: 16px;
    }

    .tablet {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .phone {
        max-width: 140px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* -----------------------------------section5----------------------------------- */

.testimonials-section {
    padding: 2rem 0;
}

.eyebrow {
    color: #1aa7ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-weight: 800;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 3rem;
}

/* Track / viewport for the card carousel */
.track-viewport {
    overflow: hidden;
}

.track {
    display: flex;
    gap: 1.5rem;
    transition: transform .45s ease;
    will-change: transform;
}

/* Optional CSS-only marquee: add `track--marquee` to `.track` to enable continuous scroll.
   HTML should duplicate children (or JS can duplicate) for seamless loop. */
.track--marquee {
    animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    /* background:var(--card-bg); */
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 30px rgba(20, 23, 31, 0.04);
    padding: 1.75rem 1.75rem 1.5rem;
    flex: 0 0 calc((100% - 3rem)/3);
    /* 3 per view on desktop, 2 gaps of 1.5rem */
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

@media (max-width:991.98px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 1.5rem)/2);
        /* 2 per view on tablet */
    }
}

@media (max-width:575.98px) {
    .testimonial-card {
        flex: 0 0 100%;
        /* 1 per view on mobile */
    }
}

.stars {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-right: 13rem;
    color: brown;
    margin-bottom: 1rem;
}

.quote {
    color: var(--text-main);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--ink);
    margin-bottom: 0;
    text-align: left;
}

.reviewer-role {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Nav arrows */
.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--ring);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 4px 14px rgba(20, 23, 31, 0.06);
    transition: background .2s ease, color .2s ease;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--accent-blue);
    color: #fff;
}

.nav-btn:disabled {
    opacity: .35;
    cursor: default;
}

.nav-btn:disabled:hover {
    background: var(--bg-card);
    color: var(--ink);
}

.carousel-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width:767.98px) {
    .nav-btn {
        display: none;
        /* rely on swipe + dots on small screens to save space */
    }
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 2.25rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /* background:#d7dae2; */
    background: black;
    border: none;
    padding: 0;
    transition: background .2s ease, transform .2s ease;
}

.dot.active {
    background: var(--accent-blue);
    transform: scale(1.25);
}





/* -----------------------------------section6------------------------------ */


.faq-section {
    padding: 42px 0;
}

.sub-title {
    color: #1aa7ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* .main-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin: 10px 0;
} */

.description {
    color: var(--text-muted);
    max-width: 550px;
    margin: auto;
    line-height: 1.7;
}

.accordion-item {
    border: none;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

    background: var(--accent-blue);
    color: #fff;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-card);
    box-shadow: none !important;

/* Dark mode overrides for FAQ / accordion */
[data-theme="dark"] .accordion-item {
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

[data-theme="dark"] .accordion-button {
    background: var(--bg-card) !important;
    color: var(--text-main) !important;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .accordion-button:not(.collapsed)::after {
    filter: none; /* icons already inverted via global rule */
}

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

[data-theme="dark"] .btn-faq {
    background: var(--accent-blue) !important;
    color: #fff !important;
}
}


.accordion-button::after {
    background-size: 16px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: var(--text-muted);
    line-height: 1.9;
    background: var(--bg-card);
    padding: 22px;
}

.btn-faq {
    background: #1f73ff;
    color: #fff;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.btn-faq:hover {
    background: #125fe0;
    color: #fff;
}

@media(max-width:991px) {

    .main-title {
        font-size: 36px;
    }

}

@media(max-width:767px) {

    .faq-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 30px;
    }

    .description {
        font-size: 15px;
    }

}




/* -----------------------------------section7------------------------------ */



.section-subtitle {
    color: #1aa7ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1d2340;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    max-width: 330px;
    margin: 0 auto;
    position: relative;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.pricing-card,
.pricing-card .plan-title,
.pricing-card .price,
.pricing-card .features li {
    color: var(--text-main);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.featured {
    border: 2px solid #ff6b00;
}

.popular-badge {
    position: absolute;
    top: -2px;
    right: 25px;
    background: #ff6b00;
    color: #fff;
    padding: 5px 16px;
    border-radius: 0 0 6px 6px;
    font-size: 11px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.plan-name span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.price {
    font-size: 34px;
    color: var(--text-main);
    font-weight: 700;
    margin: 10px 0 5px;
}

.price small {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features li {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 13.5px;
}

.features i {
    color: #17b26a;
    margin-right: 8px;
    font-size: 12px;
}

.btn-outline-custom {
    border: 2px solid #4b63ff;
    color: #4b63ff;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    padding: 8px 12px;
    font-size: 13.5px;
}

.btn-outline-custom:hover {
    background: #4b63ff;
    color: #fff;
}

.btn-orange-plan {
    background: #ff6b00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    width: 100%;
    font-size: 13.5px;
}

.btn-orange:hover {
    background: #e65c00;
    color: #fff;
}

@media(max-width:991px) {

    .section-title {
        font-size: 34px;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

}

@media(max-width:576px) {

    .pricing-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .plan-title {
        font-size: 28px;
    }

    .price {
        font-size: 42px;
    }

    .popular-badge {
        right: 20px;
    }

}

/* Additional small-screen adjustments for responsive layout */
@media (max-width: 767.98px) {
    .feat-card,
    .industry-card,
    .pricing-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .track {
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .main-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }
}



/* -----------------------------------section8------------------------------ */


.cta-section {
    padding: 20px 0;
}

.cta-box {
    background: linear-gradient(90deg, #172bc7, #233bdf, #1f2dbb);
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    padding: 0px 34px 0px 34px;
    position: relative;
}

.truck-img {
    max-width: 100%;
    height: auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.cta-text {
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 0;
}

.btn-orange {
    background: #ff6b00;
    color: #fff;
    /* padding: 14px 34px; */
    border-radius: 8px;
    /* font-weight: 600; */
    border: none;
}

.btn-orange:hover {
    background: #e55e00;
    color: #fff;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
    padding: 13px 34px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: var(--bg-card);
    color: var(--text-main);
}

.info {
    display: flex;
    gap: 35px;
    margin-top: 18px;
    color: #d7dfff;
    font-size: 14px;
}

.info i {
    margin-right: 8px;
    color: #fff;
}

@media(max-width:991px) {

    .cta-box {
        text-align: center;
        padding: 40px 25px;
    }

    .cta-title {
        font-size: 34px;
    }

    .info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .buttons {
        justify-content: center !important;
    }

}

@media(max-width:576px) {

    .cta-title {
        font-size: 28px;
    }

    .buttons {
        flex-direction: column;
    }

    .buttons .btn {
        width: 100%;
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

}


/* --------------------------Footer----------------------------------- */


.footer {
    background: var(--bg-body);
    padding: 70px 0 25px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: .3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #ff6600;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #ff6600;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #ececec;
    margin-top: 50px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
    margin-left: 25px;
}

.footer-bottom a:hover {
    color: #ff6600;
}

@media(max-width:991px) {

    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-title {
        margin-top: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 15px;
    }

}

/* ==========================================
   HOMEPAGE DARK MODE SUPPORT
   ========================================== */
[data-theme="dark"]:root {
    /* Core tokens for homepage when dark theme is active */
    --bg-card: #071024;
    --bg-body: #070814;
    --bg-section-light: rgba(255,255,255,0.02);
    --border-color: rgba(255,255,255,0.06);
    --text-main: #ffffff;
    --text-muted: rgba(255,255,255,0.75);
    --accent-blue: var(--primary-color, #356DFF);
    --accent-blue-light: rgba(47,107,255,0.08);
    --accent-green: var(--success-color, #22c55e);
    --accent-green-light: rgba(34,197,94,0.06);
    --accent-purple-light: rgba(139,92,246,0.06);
    --accent-orange-light: rgba(255,107,44,0.06);
    --svg-grid: rgba(255,255,255,0.03);
    --svg-baseline: rgba(255,255,255,0.06);
}

[data-theme="dark"] section.hero.py-5 {
    background: var(--bg-body);
}

[data-theme="dark"] .eyebrow-pill {
    background: rgba(47, 107, 255, 0.15);
    color: #60a5fa;
}

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

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

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

/* Dashboard Mock Dark Mode Overrides */
[data-theme="dark"] .dash-card {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}

[data-theme="dark"] .dash-card .border-bottom {
    border-bottom-color: var(--border-color) !important;
}

[data-theme="dark"] .dash-card .bg-light {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-muted) !important;
}

[data-theme="dark"] .dash-sidebar {
    border-right-color: var(--border-color);
}

[data-theme="dark"] .dash-sidebar .item {
    color: var(--text-muted);
}

[data-theme="dark"] .dash-sidebar .item.active {
    background: rgba(47, 107, 255, 0.15);
    color: #60a5fa;
}

[data-theme="dark"] .stat-mini {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

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

[data-theme="dark"] .map-box {
    background: radial-gradient(ellipse at 30% 30%, #0f172a, #0b1120);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .donut {
    background: conic-gradient(#22c55e 0% 68%, rgba(255,255,255,0.1) 68% 100%);
}

[data-theme="dark"] .donut span {
    background: var(--bg-card);
    color: var(--text-main);
}

/* Phone Mock Dark Mode Overrides */
[data-theme="dark"] .hero-phone {
    background: #020617;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .8);
}

[data-theme="dark"] .hero-phone-screen {
    background: #0b1120;
    color: var(--text-main);
}

[data-theme="dark"] .hero-phone-notch {
    background: #020617;
}

[data-theme="dark"] .hero-phone-screen .bg-light {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-muted) !important;
}

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

[data-theme="dark"] .hero-phone-screen .border-bottom {
    border-bottom-color: var(--border-color) !important;
}

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

[data-theme="dark"] .stats-band .card {
    background: var(--bg-card);
    border-color: var(--border-color) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    color: var(--text-main);
}

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

/* Force textual elements to be readable (white) in dark mode */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] a,
[data-theme="dark"] span,
[data-theme="dark"] div {
    color: var(--text-main) !important;
}

[data-theme="dark"] .text-dark { color: var(--text-main) !important; }
[data-theme="dark"] .text-secondary { color: var(--text-muted) !important; }
[data-theme="dark"] .fw-semibold, [data-theme="dark"] .fw-bold { color: var(--text-main) !important; }

/* Buttons that use text classes */
[data-theme="dark"] .btn, [data-theme="dark"] .btn * { color: inherit !important; }