/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #FF7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}




.cookies-card {
    width: 400px;
    padding: 25px;
    color: #ffffff;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1060;
    transition: all .5s;
    background: #1a2428;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.cookies-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cookies-card__title {
    font-size: inherit;

}

.cookies-card__close {
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.cookies-card__close:hover {
    color: #ffffff;
}

.cookies-card__icon {
    color: hsl(var(--white));
    font-size: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
    font-size: 13px;
    margin-bottom: 24px;
}

.cookies-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-card__btn-outline {
    /* text-decoration: none;
    padding: 12px 20px;
    color: #001E00; */

}

/* .cookies-card__btn {
    color: #fff !important;
    text-decoration: none;
    padding: 8px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
    background-color: #363636;
    transition: all 0.2s;
} */

/* .cookies-card__btn:hover {
    background-color: #0e0e0e;
} */


@media (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 14px;
        padding: 15px;
        border-radius: 12px;
    }
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    max-width: calc(100vw - 40px);
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}



.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}



.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: #fff;
}

.payment-system-list {
    --thumb-width: 100px;
    --thumb-height: 40px;
    --radio-size: 12px;
    --border-color: #cccccf59;
    --hover-border-color: rgb(var(--main));
    background-color: #fff;
    border-radius: 5px;
    height: 100%;

}


.payment-system-list.is-scrollable {
    max-height: min(388px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: rgb(var(--main));
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    border: 1px solid #fff;
    border-top-color: var(--border-color);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.payment-item:first-child {
    border-top-color: #fff;
    border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid hsl(var(--base));
    border-radius: 0px;
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid hsl(var(--base));
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;

}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    transition: all 0.3s;
}

.payment-item__thumb {
    width: var(--thumb-width);
    height: var(--thumb-height);
    text-align: right;
    padding-left: 10px;

    &:has(.text) {
        width: fit-content;
    }
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}


.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deposit-info__title {
    max-width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__input {
    max-width: 50%;
    text-align: right;
    width: 100%;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
        background: hsl(var(--black)/.1);
    }

}


.deposit-info__input-group .form--control {
    border: 0;
    height: 100%;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
    font-size: 14px;

}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    border: 0;
    border-block: 1px solid var(--border-color);
    border-bottom: 0;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.button-loader .spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

.purchase-option__card {
    display: flex;
    justify-content: space-around;
}

.purchase-option-card__item {
    padding: 40px 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: hsl(var(--secondary)/0.1);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width:425px) {
    .purchase-option-card__item {
        padding: 20px 5px;
    }
}


.purchase-option-card__item:has(.method-input:checked) {
    background-color: hsl(var(--base));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__title {
    color: hsl(var(--title-color));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .balance {
    color: hsl(var(--title-color)) !important;
}

.purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--white));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--black));
}

.purchase-option-card__item .purchase-option-card__icon {
    font-size: 2.2rem;
    margin-bottom: 5px;
    line-height: 1;
}

.purchase-option-card__item .purchase-option-card__icon i {
    color: hsl(var(--base));
}

.plan-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.note-wrapper__output {
    max-height: 450px !important;
    overflow: auto !important;
}

.note-wrapper__output::-webkit-scrollbar {
    width: 5px;
}

.note-wrapper__output::-webkit-scrollbar-thumb {
    background: hsl(var(--base));
    border-radius: 10px;
}

.skeleton-chat-item {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
    background: #f0f0f0;
    border-radius: 8px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-chat-item .thumb {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-right: 10px;
}

.skeleton-chat-item .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.skeleton-chat-item .content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-chat-item .content .name {
    height: 10px;
    width: 35%;
    border-radius: 20px;
    background: #e0e0e0;
    margin-bottom: 5px;
}

.skeleton-chat-item .content .text {
    height: 8px;
    width: 80%;
    border-radius: 20px;
    background: #e0e0e0;
}

.skeleton-chat-item .content .time {
    height: 8px;
    width: 14%;
    border-radius: 20px;
    background: #e0e0e0;
}



@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}


/* Skeleton for contact details */
.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.skeleton-text {
    height: 16px;
    margin: 10px 0;
}

.skeleton-text-md {
    width: 120px;
    height: 20px;
    margin: 10px auto;
}

.skeleton-text-sm {
    width: 100%;
    height: 14px;
}

.skeleton-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.skeleton-btn {
    width: 70px;
    height: 28px;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #f0f0f0;
    }

    100% {
        background-color: #e0e0e0;
    }
}

.table-thumb {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 100%;
}

.apexcharts-menu-item {
    color: #000;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
}

.apexcharts-menu-item:hover {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.apexcharts-menu-item i {
    color: #fff;
}

.apexcharts-menu-item .apexcharts-menu-icon {
    color: #fff;
}

.download-document {
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
}

.crypto-message,
.crypto-message .gateway-currency {
    color: #606576 !important;
}

.pointer {
    cursor: pointer !important;
}

.template-requirements ul {
    list-style: disc !important;
}

.template-requirements ul li {
    font-size: 15px !important;
    color: #606576 !important;
}

.progressModal .progress {
    @apply w-full overflow-hidden rounded;
}

.progressModal .progress-bar {
    @apply transition-all duration-300 ease-linear;
}

.progressModal .bg-success {
    background-color: hsl(var(--base)) !important;
}

.progressModal .progress-bar-striped {
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 1rem 1rem;
}

.progressModal .progress-bar-animated {
    animation: progressModal-progress-bar-stripes 1s linear infinite;
}

@keyframes progressModal-progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }

    100% {
        background-position: 0 0;
    }
}

.table-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-short-form {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black)/0.6);
}

.agent-info strong {
    font-weight: 600;
}

.agent-info .agent-url {
    color: hsl(var(--primary));
    font-weight: 500;
    font-size: 0.875rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px !important;
}

.select2+.select2-container .select2-selection.select2-selection--multiple {
    background: hsl(var(--section-bg));
    border-radius: 8px !important;
}

.dashboard-container .select2+.select2-container .select2-selection.select2-selection--multiple {
    border: 1px solid #c1c9d033 !important;
}

.dashboard-container .select2+.select2-container.select2-container--open .select2-selection__rendered,
.dashboard-container .select2+.select2-container.select2-container--focus .select2-selection.select2-selection--multiple,
.dashboard-container .select2+.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid hsl(var(--base)) !important;
}

.select2+.select2-container .select2-selection--multiple .select2-search.select2-search--inline {
    line-height: 28px;
}

.select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: 25px;
    box-shadow: unset !important;
    background: transparent !important;
    padding-right: 8px;
}

.dashboard-container .select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    border: 0 !important;
}

.select2-container--default .select2-search__field {
    border-radius: 4px;
}

.select2-container--open .select2-dropdown {
    border-radius: 4px !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 0px;
}

.select2-search__field {
    background-color: hsl(var(--section-bg)) !important;
}

.select2-selection--multiple .select2-search__field {
    background-color: transparent !important;
}

.select2+.select2-container:has(.select2-selection.select2-selection--multiple) {
    height: auto;
}


.coupon-apply-button {
    position: absolute;
    right: 0;
    top: 0;
    border-width: 0px;
    width: 25% !important;
    height: calc(100% - 10px);
    margin: 5px;
    border-radius: 4px !important;
    background-color: hsl(var(--success));
    color: hsl(var(--white)) !important;
    cursor: pointer;
    padding-block: 5px;
    display: flex;
    justify-content: center !important;
}

.coupon-apply-button.disable {
    background-color: hsl(var(--black)/0.3) !important;
    color: hsl(var(--secondary)) !important;
    pointer-events: none;
}

.coupon-apply-button.remove {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}
/* ============================================================
   FULL THEME OVERRIDE v5 — Wady.in Dark Style
   Primary: #0a474c | Text: #ffffff
   ============================================================ */

:root {
    --brand:        #27c462;
    --brand-dark:   #1faa53;
    --brand-light:  #e6f9ef;
    --brand-glow:   rgba(39,196,98,0.25);

    --sidebar-bg:   #0a474c;
    --sidebar-hover: rgba(255,255,255,0.08);
    --sidebar-active-bg: #ffffff;
    --sidebar-active-text: #0a474c;

    --header-bg:    #0a474c;
    --body-bg:      #031a1a;
    --card-bg:      rgba(255,255,255,0.06);
    --card-border:  rgba(255,255,255,0.1);
    --card-radius:  16px;
    --card-shadow:  0 8px 32px rgba(0,0,0,0.3);

    --text-main:    #ffffff;
    --text-muted:   rgba(255,255,255,0.65);
    --border:       rgba(255,255,255,0.1);
    --radius:       16px;
    --radius-lg:    20px;
    --shadow:       0 4px 24px rgba(0,0,0,0.25);
    --shadow-md:    0 8px 40px rgba(0,0,0,0.35);
}

/* ---- BODY — clean white background ---- */
body:not(.dashboard) {
    background: #ffffff !important;
    background-attachment: fixed !important;
    color: #111827 !important;
    font-family: 'Nunito', 'Be Vietnam Pro', sans-serif !important;
    min-height: 100vh !important;
}

/* ---- Shape decorations — keep for subtle bg texture ---- */
.banner-section::after,
.banner-section::before {
    display: none !important;
}

/* ============================================================
   BREADCRUMB — Replace dark green image banner with teal gradient
   ============================================================ */
.breadcrumb {
    background-image: none !important;
    background: linear-gradient(135deg, #0F2E2B 0%, #184A45 60%, #21655F 100%) !important;
    padding: 80px 0 60px !important;
    position: relative !important;
}

/* Remove dark overlay */
.breadcrumb::before {
    display: none !important;
    background: transparent !important;
}

/* Breadcrumb title — white */
.breadcrumb__title,
.breadcrumb .breadcrumb__title {
    color: #ffffff !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

/* Breadcrumb nav links */
.breadcrumb__item-text,
.breadcrumb__link,
.breadcrumb__item {
    color: rgba(255,255,255,0.75) !important;
}

.breadcrumb__link:hover {
    color: #ffffff !important;
}

/* Decorative subtle pattern overlay */
.breadcrumb::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 0) !important;
    background-size: 28px 28px !important;
    pointer-events: none !important;
    z-index: 0 !important;
    display: block !important;
    opacity: 1 !important;
}

.breadcrumb .container {
    position: relative !important;
    z-index: 1 !important;
}

/* Mobile breadcrumb */
@media (max-width: 991px) {
    .breadcrumb {
        padding: 100px 0 50px !important;
    }
    .breadcrumb__title {
        font-size: 1.75rem !important;
    }
}
@media (max-width: 575px) {
    .breadcrumb {
        padding: 80px 0 40px !important;
    }
    .breadcrumb__title {
        font-size: 1.45rem !important;
    }
}

/* ============================================================
   INNER PAGES — Content areas styling
   ============================================================ */

/* Section headings on inner pages */
body:not(.dashboard) .section-heading__title {
    color: #111827 !important;
    font-weight: 800 !important;
}

body:not(.dashboard) .section-heading__desc {
    color: #4b5563 !important;
}

/* Contact form inputs */
body:not(.dashboard) .contact-section .form--control,
body:not(.dashboard) .contact-section input,
body:not(.dashboard) .contact-section textarea {
    background: rgba(255,255,255,0.9) !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    color: #111827 !important;
}

body:not(.dashboard) .contact-section .form--control:focus,
body:not(.dashboard) .contact-section input:focus,
body:not(.dashboard) .contact-section textarea:focus {
    border-color: #0a474c !important;
    box-shadow: 0 0 0 3px rgba(10,71,76,0.1) !important;
    background: #ffffff !important;
}

body:not(.dashboard) .contact-section label {
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

body:not(.dashboard) .contact-section .btn--base {
    background: #0a474c !important;
    border-color: #0a474c !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
}

/* Contact info cards */
body:not(.dashboard) .contact-info-box,
body:not(.dashboard) .contact-item {
    background: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(10,71,76,0.1) !important;
    border-radius: 16px !important;
}

/* Blog listing cards */
body:not(.dashboard) .blog-card,
body:not(.dashboard) .blog__item {
    background: rgba(255,255,255,0.9) !important;
    border: 1px solid rgba(10,71,76,0.08) !important;
    border-radius: 16px !important;
}

body:not(.dashboard) .blog-card__title,
body:not(.dashboard) .blog__title {
    color: #111827 !important;
}

body:not(.dashboard) .blog-card p,
body:not(.dashboard) .blog__desc {
    color: #4b5563 !important;
}

/* Blog detail page */
body:not(.dashboard) .blog-details__content,
body:not(.dashboard) .blog-details {
    background: rgba(255,255,255,0.9) !important;
    border-radius: 20px !important;
    padding: 40px !important;
}

body:not(.dashboard) .blog-details__content h1,
body:not(.dashboard) .blog-details__content h2,
body:not(.dashboard) .blog-details__content h3,
body:not(.dashboard) .blog-details p {
    color: #111827 !important;
}

/* Pricing page — ensure cards visible */
body:not(.dashboard) .pricing-section .pricing-card:not(.popular) {
    background: rgba(255,255,255,0.92) !important;
    border: 1.5px solid rgba(10,71,76,0.1) !important;
}

/* Features page */
body:not(.dashboard) .feature-section .feature-item,
body:not(.dashboard) .features-page .feature-item {
    background: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(10,71,76,0.1) !important;
    border-radius: 16px !important;
}

/* Policy pages */
body:not(.dashboard) .policy-section,
body:not(.dashboard) .policy-content {
    background: rgba(255,255,255,0.9) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    border: 1px solid rgba(10,71,76,0.08) !important;
}

body:not(.dashboard) .policy-section h2,
body:not(.dashboard) .policy-section h3,
body:not(.dashboard) .policy-content h2,
body:not(.dashboard) .policy-content h3 {
    color: #111827 !important;
}

body:not(.dashboard) .policy-section p,
body:not(.dashboard) .policy-content p,
body:not(.dashboard) .policy-section li {
    color: #4b5563 !important;
}

/* Ticket / support pages */
body:not(.dashboard) .ticket-section .form--control,
body:not(.dashboard) .ticket-section input,
body:not(.dashboard) .ticket-section textarea,
body:not(.dashboard) .ticket-section select {
    background: rgba(255,255,255,0.9) !important;
    border: 1.5px solid #e5e7eb !important;
    color: #111827 !important;
    border-radius: 10px !important;
}

/* All frontend form controls globally */
body:not(.dashboard) .frontend .form--control,
body:not(.dashboard) .frontend input:not([type=checkbox]):not([type=radio]),
body:not(.dashboard) .frontend textarea,
body:not(.dashboard) .frontend select {
    background: rgba(255,255,255,0.9) !important;
    border: 1.5px solid #e5e7eb !important;
    color: #111827 !important;
    border-radius: 10px !important;
}

body:not(.dashboard) .frontend .form--control:focus,
body:not(.dashboard) .frontend input:focus,
body:not(.dashboard) .frontend textarea:focus {
    border-color: #0a474c !important;
    box-shadow: 0 0 0 3px rgba(10,71,76,0.1) !important;
    background: #ffffff !important;
}

body:not(.dashboard) .frontend label {
    color: #374151 !important;
    font-weight: 600 !important;
}

body:not(.dashboard) .frontend .btn--base {
    background: #0a474c !important;
    border-color: #0a474c !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
}

/* All cards / boxes on inner pages */
body:not(.dashboard) .frontend .card,
body:not(.dashboard) .frontend .box,
body:not(.dashboard) .frontend .inner-box {
    background: rgba(255,255,255,0.9) !important;
    border: 1px solid rgba(10,71,76,0.08) !important;
    border-radius: 16px !important;
}

.shape-bg {
    opacity: 0.04 !important;
}

/* ============================================================
   AUTH PAGES — LOGIN / REGISTER (match home page style)
   ============================================================ */

/* Remove dark background overlays on auth pages */
body:not(.dashboard) .account.banner-bg,
body:not(.dashboard) .account.section-shape,
body:not(.dashboard) .account {
    background: transparent !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

body:not(.dashboard) .account.banner-bg::before,
body:not(.dashboard) .account.banner-bg::after,
body:not(.dashboard) .account.section-shape::before,
body:not(.dashboard) .account.section-shape::after {
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

/* Auth card — clean white card like home page */
body:not(.dashboard) .account-inner {
    background: #ffffff !important;
    border: 1px solid rgba(10,71,76,0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 40px rgba(10,71,76,0.10) !important;
    padding: 40px !important;
}

/* Auth image side */
body:not(.dashboard) .account-thumb {
    border-radius: 16px !important;
    overflow: hidden !important;
    height: 100% !important;
}

body:not(.dashboard) .account-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
}

/* Auth form title & desc */
body:not(.dashboard) .account-form__title {
    color: #111827 !important;
    font-weight: 800 !important;
    font-size: 1.75rem !important;
}

body:not(.dashboard) .account-form__desc {
    color: #4b5563 !important;
    font-size: 0.95rem !important;
}

/* Form labels */
body:not(.dashboard) .account .form-group label,
body:not(.dashboard) .account label {
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    margin-bottom: 6px !important;
}

/* Form inputs */
body:not(.dashboard) .account .form--control,
body:not(.dashboard) .account .form-control {
    background: #f9fafb !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    color: #111827 !important;
    font-size: 0.9rem !important;
    padding: 12px 16px !important;
}

body:not(.dashboard) .account .form--control:focus,
body:not(.dashboard) .account .form-control:focus {
    border-color: #0a474c !important;
    box-shadow: 0 0 0 3px rgba(10,71,76,0.12) !important;
    background: #ffffff !important;
}

body:not(.dashboard) .account .form--control::placeholder,
body:not(.dashboard) .account .form-control::placeholder {
    color: #9ca3af !important;
}

/* Submit button */
body:not(.dashboard) .account .btn--base {
    background: #0a474c !important;
    border-color: #0a474c !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s !important;
}

body:not(.dashboard) .account .btn--base:hover {
    background: #083b3f !important;
    box-shadow: 0 4px 16px rgba(10,71,76,0.3) !important;
    transform: translateY(-1px) !important;
}

/* Remember me checkbox */
body:not(.dashboard) .account .form--check label,
body:not(.dashboard) .account .form-check-label {
    color: #4b5563 !important;
    font-weight: 400 !important;
}

/* Forgot password link */
body:not(.dashboard) .account .forgot-password__link,
body:not(.dashboard) .account .text--base {
    color: #0a474c !important;
    font-weight: 600 !important;
}

/* "Don't have an account" text */
body:not(.dashboard) .account .have-account__text {
    color: #4b5563 !important;
}

body:not(.dashboard) .account .have-account__link {
    color: #0a474c !important;
    font-weight: 700 !important;
}

/* Social login separator */
body:not(.dashboard) .account .social-link-wrapper .text,
body:not(.dashboard) .account .or-text,
body:not(.dashboard) .account p[style*="text-align: center"] {
    color: #9ca3af !important;
    font-size: 0.8rem !important;
}

/* Password show/hide icon */
body:not(.dashboard) .account .toggle-password {
    color: #6b7280 !important;
}

/* Mobile — auth inner full width */
@media (max-width: 991px) {
    body:not(.dashboard) .account-inner {
        padding: 28px 20px !important;
        max-width: 480px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    body:not(.dashboard) .account-inner {
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }
    body:not(.dashboard) .account-form__title {
        font-size: 1.4rem !important;
    }
}

/* ============================================================
   HEADER / NAVBAR — Dark teal sticky
   ============================================================ */
.header {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.header .navbar-nav .nav-link,
.header .nav-menu .nav-link,
.header .nav-item > a {
    color: #374151 !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
}

.header .navbar-nav .nav-link:hover,
.header .nav-menu .nav-link:hover,
.header .nav-item > a:hover {
    color: #0a474c !important;
}

/* Header active nav link */
.header .nav-item.active > .nav-link,
.header .nav-item.active > a {
    color: #0a474c !important;
    font-weight: 600 !important;
}

/* Header login/outline button */
.header .btn--white,
.header .btn-outline--base {
    background: transparent !important;
    color: #0a474c !important;
    border: 1.5px solid #0a474c !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    transition: all 0.2s !important;
}

.header .btn--white:hover,
.header .btn-outline--base:hover {
    background: #0a474c !important;
    color: #ffffff !important;
}

/* Header CTA / primary button */
.header .btn--base,
.header .btn--base-two {
    background: #0a474c !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border: none !important;
    transition: all 0.2s !important;
}

.header .btn--base:hover,
.header .btn--base-two:hover {
    background: #0d5a60 !important;
    box-shadow: 0 4px 16px rgba(10,71,76,0.3) !important;
}

/* Hamburger icon */
.header-button .navbar-toggler-icon,
.header-button {
    color: #374151 !important;
    border-color: #d1d5db !important;
}

/* ============================================================
   BANNER / HERO SECTION
   ============================================================ */
.banner-section {
    background: transparent !important;
    padding-top: 100px !important;
    padding-bottom: 60px !important;
}

.banner-content__title {
    color: #ffffff !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.banner-content__title span {
    color: #4fd1c5 !important;
}

.banner-content__desc {
    color: #374151 !important;
    font-size: 1.125rem !important;
    line-height: 1.75 !important;
    margin-top: 16px !important;
}

.banner-content__button .btn--base-two,
.banner-content__button .btn {
    background: #ffffff !important;
    color: #0a474c !important;
    border-radius: 10px !important;
    padding: 14px 36px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(255,255,255,0.15) !important;
    transition: all 0.2s !important;
}

.banner-content__button .btn--base-two:hover,
.banner-content__button .btn:hover {
    background: rgba(255,255,255,0.92) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(255,255,255,0.2) !important;
}

/* ============================================================
   SECTION HEADINGS — white on dark
   ============================================================ */
.section-heading {
    text-align: center !important;
    margin-bottom: 48px !important;
}

.section-heading__title,
.section-header__title {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.section-heading__title span {
    color: #0a474c !important;
}

.section-heading__desc,
.section-header__desc {
    color: #4b5563 !important;
    font-size: 1rem !important;
}

/* General headings inside sections */
body:not(.dashboard) h1,
body:not(.dashboard) h2,
body:not(.dashboard) h3,
body:not(.dashboard) h4,
body:not(.dashboard) h5 {
    color: #111827 !important;
}

body:not(.dashboard) p {
    color: #4b5563 !important;
}

/* Pehle yahan `body:not(.dashboard) span` bhi tha -- yaani marketing site ke
   HAR span par grey !important. Iraada body-copy ka tha, par span structural
   bhi hote hain: avatar ke initials, star rating, odometer ke digits,
   divider, chip, icon. Naapa gaya: 355 grey spans me se 322 par class thi
   (zps-odo-n 120, zpc-odo-d, zh-avatar, zh-stars, ...) -- yaani lagbhag
   saare collateral damage the. Isliye ab sirf bina-class wala span, jo asli
   inline text hota hai. */
body:not(.dashboard) span:not([class]) {
    color: #4b5563 !important;
}

/* ============================================================
   FEATURE SECTION — clean cards on gradient bg
   ============================================================ */
.feature-section {
    background: transparent !important;
}

.feature-item {
    background: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(10,71,76,0.1) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s !important;
}

.feature-item:hover {
    background: #ffffff !important;
    border-color: rgba(10,71,76,0.2) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(10,71,76,0.12) !important;
}

.feature-item__icon {
    background: #e6f5f0 !important;
    border-radius: 12px !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    color: #0a474c !important;
}

.feature-item__icon i,
.feature-item__icon svg {
    color: #0a474c !important;
    fill: #0a474c !important;
    font-size: 1.4rem !important;
}

.feature-item__title {
    color: #111827 !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    margin-bottom: 10px !important;
}

.feature-item__desc {
    color: #4b5563 !important;
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-work-section {
    background: transparent !important;
    padding: 80px 0 !important;
}

.how-work-item {
    background: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(10,71,76,0.12) !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    backdrop-filter: blur(40px) !important;
    transition: all 0.3s !important;
    text-align: center !important;
}

.how-work-item:hover {
    background: #ffffff !important;
    transform: translateY(-4px) !important;
    border-color: rgba(10,71,76,0.2) !important;
    box-shadow: 0 12px 32px rgba(10,71,76,0.12) !important;
}

.how-work-item__icon {
    background: #e6f5f0 !important;
    border-radius: 14px !important;
    width: 64px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
}

.how-work-item__icon i,
.how-work-item__icon svg {
    color: #0a474c !important;
    fill: #0a474c !important;
    font-size: 1.5rem !important;
}

.how-work-item__title {
    color: #111827 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 8px !important;
}

.how-work-item__desc {
    color: #4b5563 !important;
    font-size: 0.875rem !important;
    line-height: 1.65 !important;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    background: transparent !important;
    padding: 80px 0 !important;
}

.pricing-card {
    background: rgba(255,255,255,0.9) !important;
    border: 1.5px solid rgba(10,71,76,0.1) !important;
    border-radius: 20px !important;
    padding: 36px 28px !important;
    backdrop-filter: blur(40px) !important;
    transition: all 0.3s !important;
}

.pricing-card:hover {
    background: #ffffff !important;
    transform: translateY(-4px) !important;
    border-color: rgba(10,71,76,0.2) !important;
    box-shadow: 0 12px 32px rgba(10,71,76,0.12) !important;
}

.pricing-card.popular {
    background: #0a474c !important;
    border: 1.5px solid rgba(255,255,255,0.25) !important;
    box-shadow: 0 8px 40px rgba(10,71,76,0.5) !important;
    transform: scale(1.04) !important;
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-4px) !important;
}

/* Popular card — white text on dark bg */
.pricing-card.popular .pricing-card__number,
.pricing-card.popular .yearly_price,
.pricing-card.popular .monthly_price {
    color: #ffffff !important;
}
.pricing-card.popular .pricing-card__title,
.pricing-card.popular .pricing-card__name {
    color: rgba(255,255,255,0.9) !important;
}
.pricing-card.popular .pricing-card__desc {
    color: rgba(255,255,255,0.65) !important;
}
.pricing-card.popular .pricing-list {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.12) !important;
}
.pricing-card.popular .pricing-list__item {
    color: rgba(255,255,255,0.8) !important;
    border-bottom-color: rgba(255,255,255,0.1) !important;
}

.pricing-card__number,
.pricing-card .yearly_price,
.pricing-card .monthly_price {
    color: #111827 !important;
    font-weight: 800 !important;
    font-size: 2.4rem !important;
}

.pricing-card__title,
.pricing-card__name {
    color: #111827 !important;
    font-weight: 600 !important;
}

.pricing-card__desc {
    color: #4b5563 !important;
}

.pricing-list {
    background: rgba(10,71,76,0.04) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(10,71,76,0.08) !important;
}

.pricing-list__item {
    color: #374151 !important;
    border-bottom: 1px solid rgba(10,71,76,0.08) !important;
    padding: 10px 0 !important;
}

.pricing-card .btn--base,
.pricing-card .btn {
    width: 100% !important;
    background: #0a474c !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.2s !important;
}

.pricing-card .btn--base:hover,
.pricing-card .btn:hover {
    background: #0d5a60 !important;
}

.pricing-card.popular .btn--base,
.pricing-card.popular .btn {
    background: #ffffff !important;
    color: #0a474c !important;
    border: none !important;
    font-weight: 700 !important;
}

.pricing-card.popular .btn--base:hover,
.pricing-card.popular .btn:hover {
    background: rgba(255,255,255,0.92) !important;
}

/* Pricing toggle */
.pricing-card-top__text {
    color: #374151 !important;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
    background: transparent !important;
    padding: 80px 0 !important;
}

.feedback-item,
.testimonial-card,
.testi-card {
    background: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(10,71,76,0.12) !important;
    border-radius: 16px !important;
    padding: 28px 24px !important;
    backdrop-filter: blur(40px) !important;
}

.feedback-item p,
.testimonial-card p,
.testi-card p {
    color: #374151 !important;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: #0a474c !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 20px !important;
    margin: 40px auto !important;
    padding: 70px 40px !important;
    position: relative !important;
    overflow: hidden !important;
}

body:not(.dashboard) .cta-section *,
body:not(.dashboard) .cta-section h1,
body:not(.dashboard) .cta-section h2,
body:not(.dashboard) .cta-section h3,
body:not(.dashboard) .cta-section p,
body:not(.dashboard) .cta-section span {
    color: #ffffff !important;
}

body:not(.dashboard) .cta-section .btn--white,
body:not(.dashboard) .cta-section .btn--base,
body:not(.dashboard) .cta-section a.btn {
    background: #ffffff !important;
    color: #0a474c !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
    transition: all 0.2s !important;
}

body:not(.dashboard) .cta-section .btn--white:hover,
body:not(.dashboard) .cta-section .btn--base:hover,
body:not(.dashboard) .cta-section a.btn:hover {
    background: rgba(255,255,255,0.92) !important;
    transform: translateY(-2px) !important;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog {
    background: transparent !important;
    padding: 80px 0 !important;
}

.blog-card {
    background: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(10,71,76,0.12) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    backdrop-filter: blur(40px) !important;
    transition: all 0.3s !important;
}

.blog-card:hover {
    background: #ffffff !important;
    transform: translateY(-4px) !important;
    border-color: rgba(10,71,76,0.2) !important;
    box-shadow: 0 12px 32px rgba(10,71,76,0.12) !important;
}

.blog-card__content {
    padding: 20px !important;
}

.blog-card__title {
    color: #111827 !important;
    font-weight: 700 !important;
}

.blog-card p,
.blog-card span {
    color: #4b5563 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-area {
    background: #020f0f !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-area,
.footer-area p,
.footer-area span,
.footer-area li {
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.875rem !important;
}

.footer-area a {
    color: rgba(255,255,255,0.55) !important;
    transition: color 0.15s !important;
}

.footer-area a:hover {
    color: #ffffff !important;
}

.footer-area h4,
.footer-area h5,
.footer-area h6,
.footer-area .footer-item__title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.9375rem !important;
    margin-bottom: 16px !important;
}

.footer-bottom,
.footer-area .footer-bottom {
    background: rgba(255,255,255,0.04) !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding: 16px 0 !important;
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn--base {
    background: #0a474c !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.2s !important;
}

.btn--base:hover {
    background: #083a3e !important;
    transform: translateY(-1px) !important;
}

.btn--base-two {
    background: #ffffff !important;
    color: #0a474c !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    border: none !important;
}

.btn--base-two:hover {
    background: rgba(255,255,255,0.9) !important;
}

.btn-outline--base {
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    background: transparent !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.btn-outline--base:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* ============================================================
   SECTION BACKGROUNDS — alternating dark teal shades
   ============================================================ */
.section-bg,
.banner-bg,
.section-bg-2 {
    background: transparent !important;
}

/* Remove green glow blob from section-shape */
body:not(.dashboard) .section-shape::before,
body:not(.dashboard) .section-shape::after {
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

/* ============================================================
   ALL HOME CARDS — glassmorphism base
   ============================================================ */
body:not(.dashboard) .feature-item,
body:not(.dashboard) .how-work-item,
body:not(.dashboard) .pricing-card,
body:not(.dashboard) .testimonial-card,
body:not(.dashboard) .testi-card,
body:not(.dashboard) .blog-card {
    border-radius: 16px !important;
    transition: transform 0.25s, box-shadow 0.25s !important;
}

/* ============================================================
   SECTION PADDING
   ============================================================ */
body:not(.dashboard) section,
body:not(.dashboard) .section {
    padding: 80px 0 !important;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion-button,
.faq-item__header {
    background: rgba(255,255,255,0.9) !important;
    color: #111827 !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    border: 1px solid rgba(10,71,76,0.12) !important;
}

.accordion-button:not(.collapsed) {
    background: #0a474c !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: none !important;
}

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

.accordion-item,
.faq-item {
    border: 1px solid rgba(10,71,76,0.1) !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    background: rgba(255,255,255,0.8) !important;
}

.accordion-body {
    color: #374151 !important;
    background: rgba(255,255,255,0.95) !important;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop,
.scroll-to-top {
    background: #0a474c !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
    color: #ffffff !important;
}

/* ============================================================
   FOOTER EMAIL INPUT
   ============================================================ */
.footer-area .form-control {
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.07) !important;
    color: #ffffff !important;
}

.footer-area .form-control::placeholder {
    color: rgba(255,255,255,0.4) !important;
}

/* ============================================================
   MOBILE APP SECTION
   ============================================================ */
.app-download-section {
    background: transparent !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar-thumb {
    background: #0a474c !important;
    border-radius: 4px !important;
}


/* =====================================================
   USER DASHBOARD + SIDEBAR — AiSensy Style
   ===================================================== */

/* ---- 1. USER SIDEBAR — Dark Teal like AiSensy ---- */
/* ═══════════════════════════════════════════
   SIDEBAR — Wati/AiSensy Premium Style
   ═══════════════════════════════════════════ */

/* Sidebar container */
.dashboard .sidebar-menu {
    background: #0d1b2a !important;
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 4px 0 24px rgba(0,0,0,0.3) !important;
}

/* Logo area */
.dashboard .sidebar-menu .sidebar-logo {
    background: #0d1b2a !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    padding: 20px 16px !important;
}
.dashboard .sidebar-menu .sidebar-logo img {
    filter: brightness(0) invert(1) !important;
    max-height: 36px !important;
}

/* Section labels */
.dashboard .sidebar-menu .sidebar-menu-list__title,
.dashboard .sidebar-menu .sidebar-label,
.sidebar-menu-list .label-text {
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    padding: 18px 16px 5px !important;
    display: block !important;
}

/* All nav links base */
.dashboard .sidebar-menu-list__link,
.dashboard .sidebar-menu-list__item > a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 9px 12px !important;
    margin: 1px 8px !important;
    border-radius: 8px !important;
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: background .15s ease, color .15s ease !important;
    border: none !important;
}

/* Text inside link */
.dashboard .sidebar-menu-list__link .text,
.dashboard .sidebar-menu-list__link span.text,
.dashboard .sidebar-menu-list__item > a .text,
.dashboard .sidebar-menu-list__item > a span.text {
    color: inherit !important;
    font-size: inherit !important;
}

/* Icon inside link */
.dashboard .sidebar-menu-list__link .icon,
.dashboard .sidebar-menu-list__link .icon i,
.dashboard .sidebar-menu-list__link i,
.dashboard .sidebar-menu-list__item > a .icon i,
.dashboard .sidebar-menu-list__item > a i {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.95rem !important;
    width: 18px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    transition: color .15s !important;
}

/* Hover state */
.dashboard .sidebar-menu-list__link:hover,
.dashboard .sidebar-menu-list__item > a:hover {
    background: rgba(255,255,255,0.07) !important;
    color: #ffffff !important;
}
.dashboard .sidebar-menu-list__link:hover .icon i,
.dashboard .sidebar-menu-list__link:hover i,
.dashboard .sidebar-menu-list__item > a:hover .icon i,
.dashboard .sidebar-menu-list__item > a:hover i {
    color: #ffffff !important;
}

/* Active state — green accent pill like Wati */
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link,
.dashboard .sidebar-menu-list__item > .sidebar-menu-list__link.active,
.dashboard .sidebar-menu-list__item.active > a {
    background: rgba(16,185,129,0.15) !important;
    color: #10b981 !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
}
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link .text,
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link span.text,
.dashboard .sidebar-menu-list__item.active > a .text,
.dashboard .sidebar-menu-list__item.active > a span.text {
    color: #10b981 !important;
}
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link .icon i,
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link i,
.dashboard .sidebar-menu-list__item.active > a .icon i,
.dashboard .sidebar-menu-list__item.active > a i {
    color: #10b981 !important;
}

/* Dropdown chevron */
.dashboard .sidebar-menu-list__item.has-dropdown > .sidebar-menu-list__link::after {
    border-color: rgba(255,255,255,0.3) !important;
    margin-left: auto !important;
}
.dashboard .sidebar-menu-list__item.has-dropdown.active > .sidebar-menu-list__link::after {
    border-color: #10b981 !important;
}

/* Submenu container */
.dashboard .sidebar-submenu-list {
    background: rgba(255,255,255,0.03) !important;
    border-left: 2px solid rgba(16,185,129,0.2) !important;
    margin: 2px 8px 2px 20px !important;
    border-radius: 0 6px 6px 0 !important;
    padding: 4px 0 !important;
}

/* Submenu links */
.dashboard .sidebar-submenu-list__link,
.dashboard .sidebar-submenu-list__item > a {
    display: flex !important;
    align-items: center !important;
    padding: 7px 12px !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    border-radius: 6px !important;
    transition: color .15s !important;
    text-decoration: none !important;
}
.dashboard .sidebar-submenu-list__link .text,
.dashboard .sidebar-submenu-list__link span.text {
    color: inherit !important;
}
.dashboard .sidebar-submenu-list__link:hover,
.dashboard .sidebar-submenu-list__item > a:hover {
    color: #ffffff !important;
    background: transparent !important;
}
.dashboard .sidebar-submenu-list__item.active .sidebar-submenu-list__link,
.dashboard .sidebar-submenu-list__item.active > a {
    color: #10b981 !important;
    font-weight: 600 !important;
}
.dashboard .sidebar-submenu-list__item.active .sidebar-submenu-list__link .text,
.dashboard .sidebar-submenu-list__item.active > a .text {
    color: #10b981 !important;
}

/* Remove dot before submenu items */
.dashboard .sidebar-submenu-list__link::before {
    display: none !important;
}

/* Scrollbar */
.dashboard .sidebar-menu::-webkit-scrollbar { width: 3px !important; }
.dashboard .sidebar-menu::-webkit-scrollbar-track { background: transparent !important; }
.dashboard .sidebar-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1) !important; border-radius: 4px !important; }

/* ---- 2. USER TOPBAR — Dark Teal matching sidebar ---- */
.dashboard .dashboard-header,
.dashboard-header {
    background: #0a474c !important;
    background-color: #0a474c !important;
    background-image: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15) !important;
}

.dashboard .dashboard-header__shape {
    display: none !important;
}

/* Title text → white */
.dashboard .dashboard-header .user-name,
.dashboard .auth-header-title,
.dashboard-header__title,
.dashboard-header .user-info .name,
.dashboard .dashboard-header .title {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* User info name/email */
.dashboard .dashboard-header .user-info__name,
.dashboard .dashboard-header .user-info__desc {
    color: rgba(255,255,255,0.85) !important;
}

/* Notification/icon buttons */
.dashboard .dashboard-header .header-icon,
.dashboard .dashboard-header .icon-btn,
.dashboard .dashboard-header .notification-icon {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.8) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 8px !important;
}

.dashboard .dashboard-header .header-icon:hover,
.dashboard .dashboard-header .icon-btn:hover {
    background: rgba(255,255,255,0.18) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.25) !important;
}

/* Hamburger menu icon */
.dashboard .dashboard-header .dashboard-body__bar-icon {
    color: rgba(255,255,255,0.8) !important;
}

/* ---- 3. USER STAT CARDS — AiSensy style ---- */
.dashboard .dashboard-widget,
.dashboard .widget-blue,
.dashboard .widget-purple,
.dashboard .widget-red,
.dashboard .widget-yellow,
.dashboard .widget-orange,
.dashboard .widget-pink {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04) !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
}

.dashboard .dashboard-widget__icon,
.dashboard .widget-blue .dashboard-widget__icon,
.dashboard .widget-purple .dashboard-widget__icon,
.dashboard .widget-red .dashboard-widget__icon,
.dashboard .widget-yellow .dashboard-widget__icon,
.dashboard .widget-orange .dashboard-widget__icon,
.dashboard .widget-pink .dashboard-widget__icon {
    background: var(--brand-light) !important;
    color: var(--brand) !important;
    border-radius: 10px !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.dashboard .dashboard-widget:hover {
    box-shadow: 0 4px 20px rgba(39,196,98,0.12), 0 1px 4px rgba(0,0,0,0.06) !important;
    border-color: var(--brand) !important;
    transform: translateY(-2px) !important;
}

/* ---- 4. DASHBOARD BODY ---- */
.dashboard .dashboard__right,
.dashboard-body {
    background: #f5f7fa !important;
}

.dashboard-container {
    background: transparent !important;
}

/* Tables inside dashboard */
.dashboard .table-responsive,
.dashboard .card,
.dashboard .custom--card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04) !important;
}

.dashboard .card-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 16px 20px !important;
}

.dashboard table thead th {
    background: #f9fafb !important;
    color: #6b7280 !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.dashboard table tbody td {
    vertical-align: middle !important;
    border-bottom: 1px solid #f3f4f6 !important;
    font-size: 0.875rem !important;
    color: #111827 !important;
    padding: 14px 16px !important;
}

.dashboard table tbody tr:hover td {
    background: #f9fafb !important;
}

/* Dashboard page titles */
.dashboard .page-title,
.dashboard .dashboard-container h4,
.dashboard h4.mb-1 {
    color: #111827 !important;
    font-weight: 700 !important;
}

/* ---- 5. MOBILE RESPONSIVENESS ---- */
@media (max-width: 991px) {
    /* Sidebar overlay */
    .sidebar-overlay {
        background: rgba(0,0,0,.45) !important;
    }

    /* Sidebar mobile — slides in from left */
    .dashboard .sidebar-menu {
        z-index: 1050 !important;
        box-shadow: 4px 0 24px rgba(0,0,0,.15) !important;
    }

    /* Dashboard content full width on mobile */
    .dashboard .dashboard__right {
        padding-left: 0 !important;
        width: 100% !important;
    }

    /* Header hamburger */
    .dashboard .dashboard-header .hamburger-icon,
    .dashboard .sidebar-toggle,
    .dashboard .header-menu-btn {
        display: flex !important;
        color: #1a1f2e !important;
    }

    /* Stat cards 2 per row on mobile */
    .dashboard .widget-col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 575px) {
    .dashboard .widget-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .dashboard-header {
        padding: 10px 16px !important;
    }
}

/* ---- MODAL BUTTON SPACING ---- */
.modal .modal-footer {
    gap: 8px;
}
.modal .modal-footer .btn {
    margin: 0;
}

/* ---- ICON SIZE CONSISTENCY ---- */
button i, .btn i, a.btn i {
    font-size: 1em;
    vertical-align: -0.1em;
}

/* ---- HOMEPAGE MOBILE NAVBAR TOGGLER FIX ---- */
/* Header has white background — hamburger must be dark colored */
.header .navbar-toggler,
.header .header-button.navbar-toggler {
    color: #1a1f2e !important;
    border-color: rgba(26,31,46,.25) !important;
    background: transparent !important;
}

.header .navbar-toggler .navbar-toggler-icon,
.header .navbar-toggler span {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2C31%2C46%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---- MOBILE NAV MENU — White bg pe nav links dark karo ---- */
@media (max-width: 991px) {
    /* Collapsed nav area background */
    .header .navbar-collapse,
    .header #navbarSupportedContent {
        background: #ffffff !important;
        border-top: 1px solid #e5e7eb !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,.10) !important;
        padding: 16px !important;
    }

    /* Nav links dark on white bg */
    .header .navbar-nav .nav-link,
    .header .navbar-nav .nav-item > a {
        color: #1a1f2e !important;
        font-weight: 500 !important;
        padding: 10px 4px !important;
        border-bottom: 1px solid #f3f4f6 !important;
        display: block !important;
    }

    .header .navbar-nav .nav-link:hover,
    .header .navbar-nav .nav-item > a:hover {
        color: #27c462 !important;
    }

    .header .navbar-nav .nav-item.active > .nav-link {
        color: #27c462 !important;
        font-weight: 600 !important;
    }
}

/* ============================================================
   HOME PAGE — MOBILE RESPONSIVE
   ============================================================ */

/* Tablet (max 991px) */
@media (max-width: 991px) {
    /* Sections padding */
    body:not(.dashboard) section,
    body:not(.dashboard) .section {
        padding: 56px 0 !important;
    }

    /* Banner section */
    .banner-section .row {
        flex-direction: column !important;
    }
    .banner-section .col-lg-6,
    .banner-section [class*="col-lg"] {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    .banner-section h1 {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
    }
    .banner-section p {
        font-size: 1rem !important;
    }
    .banner-content__button,
    .banner-section .d-flex.gap-3,
    .banner-section .button-group {
        justify-content: center !important;
    }

    /* Section headings */
    h2.section-heading, .section-title,
    .how-work-section h2,
    .feature-section h2,
    .pricing-section h2,
    .testimonials h2,
    .customer-management-section h2,
    .faq-section h2,
    .blog h2 {
        font-size: 1.9rem !important;
    }

    /* How it works steps — 2 per row */
    .how-work-section .row > [class*="col-lg"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* Feature cards — 2 per row */
    .feature-section .row > [class*="col-lg"],
    .feature-section .row > [class*="col-md"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* CTA section */
    .cta-section {
        padding: 50px 24px !important;
        margin: 20px 16px !important;
        text-align: center !important;
    }
    .cta-section .row {
        flex-direction: column !important;
        align-items: center !important;
    }
    .cta-section [class*="col-lg"] {
        width: 100% !important;
        max-width: 100% !important;
    }
    .cta-section img, .cta-section .banner-img {
        margin-top: 30px !important;
        max-width: 100% !important;
    }

    /* Blog cards — 1 per row */
    .blog .row > [class*="col-lg"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Pricing — centered single card */
    .pricing-section .container {
        max-width: 500px !important;
    }

    /* Testimonials */
    .testimonials .testimonial-card,
    .testimonials .testi-card {
        padding: 24px 16px !important;
    }

    /* FAQ */
    .faq-section .nav-pills {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    body:not(.dashboard) section,
    body:not(.dashboard) .section {
        padding: 48px 0 !important;
    }

    /* Banner */
    .banner-section h1 {
        font-size: 1.85rem !important;
    }
    .banner-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* How it works — 1 per row on small phones */
    .how-work-section .row > [class*="col"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .how-work-section .how-work-connector {
        display: none !important;
    }

    /* Feature cards — 1 per row */
    .feature-section .row > [class*="col"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Section titles */
    h2.section-heading, .section-title,
    .how-work-section h2,
    .feature-section h2,
    .pricing-section h2,
    .testimonials h2,
    .faq-section h2,
    .blog h2 {
        font-size: 1.65rem !important;
    }

    /* CTA */
    .cta-section {
        border-radius: 16px !important;
        padding: 36px 20px !important;
        margin: 16px 12px !important;
    }
    .cta-section h2 {
        font-size: 1.5rem !important;
    }

    /* Blog — 1 per row */
    .blog .row > [class*="col"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* FAQ section nav pills stacked */
    .faq-section .nav-pills .nav-item {
        width: 100% !important;
    }
    .faq-section .nav-pills .nav-link {
        width: 100% !important;
        text-align: center !important;
    }

    /* Mobile app section — stack columns */
    .customer-management-section .row,
    .app-download-section .row {
        flex-direction: column !important;
    }
    .customer-management-section [class*="col-lg"],
    .app-download-section [class*="col-lg"] {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    .customer-management-section img,
    .app-download-section img {
        max-width: 80% !important;
        margin: 0 auto 24px !important;
        display: block !important;
    }

    /* App store buttons — center */
    .app-btn-grp, .app-download-section .d-flex {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* Comparison / ROI / integrations tables — scroll horizontal */
    .comparison-table,
    .roi-calculator,
    .integrations-section .row {
        overflow-x: auto !important;
    }

    /* General row stacking */
    .how-work-section .row,
    .feature-section .row {
        gap: 16px !important;
    }

    /* Chatbot builder */
    .chatbot-builder-section .row,
    .chatbot_builder .row {
        flex-direction: column !important;
    }
    .chatbot-builder-section [class*="col-lg"],
    .chatbot_builder [class*="col-lg"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Integrations */
    .integrations-section .integration-icon,
    .integrations-section .integration-item {
        width: 60px !important;
        height: 60px !important;
    }

    /* Footer newsletter input */
    .footer-area .input-group {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .footer-area .input-group .btn {
        width: 100% !important;
        border-radius: 8px !important;
    }
    .footer-area .input-group .form-control {
        border-radius: 8px !important;
    }
}

/* Small phones (max 480px) */
@media (max-width: 480px) {
    .banner-section h1 {
        font-size: 1.55rem !important;
    }
    .banner-content__button .btn,
    .banner-section .button-group .btn {
        width: 100% !important;
        text-align: center !important;
    }
    .banner-content__button,
    .banner-section .d-flex.gap-3,
    .banner-section .button-group {
        flex-direction: column !important;
        width: 100% !important;
    }

    /* Header nav buttons on mobile */
    .header .d-flex.gap-2,
    .header .header-btn-grp {
        gap: 6px !important;
    }
    .header .btn--base,
    .header .btn--base-two {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }

    /* Pricing card */
    .pricing-card {
        padding: 24px 16px !important;
    }

    /* Testimonial author */
    .testimonial-slider .slick-slide,
    .testimonials .testimonial-card {
        padding: 20px 12px !important;
    }
}



/* ══════════════════════════════════════════════════════════════
   ZupiChat Dashboard — Wati / Interakt Premium Style
   White + Green, Smooth, Clean, Professional
   ══════════════════════════════════════════════════════════════ */

:root {
    --zc-green:       #00c48c;
    --zc-green-light: #e8faf4;
    --zc-green-mid:   #00a87a;
    --zc-sidebar-w:   240px;
    --zc-topbar-h:    60px;
    --zc-text-dark:   #1a202c;
    --zc-text-mid:    #64748b;
    --zc-text-light:  #94a3b8;
    --zc-border:      #e8ecf0;
    --zc-bg:          #f7f9fc;
    --zc-white:       #ffffff;
    --zc-shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --zc-shadow-md:   0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --zc-radius:      10px;
    --zc-radius-lg:   16px;
}

/* ── Reset body for dashboard ── */
.zc-dashboard, .zc-dashboard * { box-sizing: border-box; }

/* ════════════════════════════
   LAYOUT
   ════════════════════════════ */
.zc-dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--zc-bg);
}
.zc-main {
    flex: 1;
    margin-left: var(--zc-sidebar-w);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--zc-bg);
    transition: margin-left .25s ease;
}

/* ════════════════════════════
   SIDEBAR
   ════════════════════════════ */
.zc-sidebar {
    width: var(--zc-sidebar-w);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    background: var(--zc-white);
    border-right: 1px solid var(--zc-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transition: transform .25s ease;
    box-shadow: var(--zc-shadow-sm);
}

/* Logo area */
.zc-sidebar-logo {
    height: var(--zc-topbar-h);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--zc-border);
    flex-shrink: 0;
}
.zc-sidebar-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
}
.zc-sidebar-close {
    background: none; border: none;
    color: var(--zc-text-light); font-size: 16px;
    cursor: pointer; padding: 4px; line-height: 1;
}

/* User card */
.zc-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin: 10px 8px 4px;
    background: var(--zc-green-light);
    border-radius: var(--zc-radius);
    border: 1px solid rgba(0,196,140,.15);
    flex-shrink: 0;
}
.zc-user-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,196,140,.3);
    flex-shrink: 0;
}
.zc-user-info { min-width: 0; }
.zc-user-name {
    font-size: 12.5px; font-weight: 700;
    color: var(--zc-text-dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.2;
}
.zc-plan-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    background: var(--zc-green); color: #fff;
    padding: 1px 8px; border-radius: 20px;
    margin-top: 3px; line-height: 1.5;
}
.zc-plan-badge.free {
    background: #e2e8f0; color: #64748b;
}

/* Nav scroll area */
.zc-nav {
    flex: 1;
    overflow-y: auto;
    padding: 6px 8px 24px;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}
.zc-nav::-webkit-scrollbar { width: 3px; }
.zc-nav::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 3px; }

/* Section label */
.zc-nav-section {
    font-size: 10px; font-weight: 800;
    color: var(--zc-text-light);
    text-transform: uppercase; letter-spacing: .12em;
    padding: 16px 10px 5px;
    line-height: 1;
}

/* Nav item */
.zc-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8.5px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--zc-text-mid);
    text-decoration: none !important;
    transition: background .12s, color .12s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    margin-bottom: 1px;
    line-height: 1.4;
}
.zc-nav-item:hover {
    background: #f1f5f9;
    color: var(--zc-text-dark);
    text-decoration: none !important;
}
.zc-nav-item:hover .zc-nav-icon { color: var(--zc-text-dark); }

.zc-nav-item.active {
    background: var(--zc-green-light);
    color: var(--zc-green-mid);
    font-weight: 700;
}
.zc-nav-item.active .zc-nav-icon {
    color: var(--zc-green);
}
.zc-nav-item.zc-nav-logout { color: var(--zc-text-light); }
.zc-nav-item.zc-nav-logout:hover { background: #fff1f2; color: #ef4444; }
.zc-nav-item.zc-nav-logout:hover .zc-nav-icon { color: #ef4444; }

.zc-nav-icon {
    width: 17px;
    text-align: center;
    font-size: 13.5px;
    color: var(--zc-text-light);
    flex-shrink: 0;
    transition: color .12s;
}
.zc-nav-label { flex: 1; }
.zc-chevron {
    font-size: 9px; color: #cbd5e1;
    transition: transform .2s; flex-shrink: 0;
}

/* Nav group */
.zc-nav-group { margin-bottom: 1px; }
.zc-nav-group.open > .zc-nav-parent { background: #f8fafc; color: var(--zc-text-dark); }
.zc-nav-group.open > .zc-nav-parent .zc-chevron { transform: rotate(90deg); color: var(--zc-green); }
.zc-nav-group.open > .zc-nav-parent .zc-nav-icon { color: var(--zc-text-dark); }

.zc-nav-children {
    display: none;
    padding: 2px 0 2px 38px;
    border-left: 2px solid var(--zc-green-light);
    margin-left: 21px;
    margin-top: 2px;
    margin-bottom: 2px;
}
.zc-nav-group.open .zc-nav-children { display: block; }

.zc-nav-child {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6.5px 10px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--zc-text-mid);
    text-decoration: none !important;
    transition: all .12s;
    margin-bottom: 1px;
}
.zc-nav-child i.fa-circle-dot { font-size: 5px; color: #cbd5e1; flex-shrink: 0; }
.zc-nav-child:hover { background: #f1f5f9; color: var(--zc-text-dark); text-decoration: none !important; }
.zc-nav-child:hover i.fa-circle-dot { color: var(--zc-green); }
.zc-nav-child.active { color: var(--zc-green-mid); font-weight: 700; }
.zc-nav-child.active i.fa-circle-dot { color: var(--zc-green); }

/* ════════════════════════════
   TOP BAR
   ════════════════════════════ */
.zc-topbar {
    height: var(--zc-topbar-h);
    background: var(--zc-white);
    border-bottom: 1px solid var(--zc-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0; z-index: 100;
    flex-shrink: 0;
    box-shadow: var(--zc-shadow-sm);
}
.zc-topbar-left { display: flex; align-items: center; gap: 14px; }
.zc-topbar-right { display: flex; align-items: center; gap: 6px; }

.zc-menu-toggle {
    background: none; border: none;
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--zc-text-mid); font-size: 16px; cursor: pointer;
    transition: background .12s;
}
.zc-menu-toggle:hover { background: var(--zc-bg); }

.zc-page-title { font-size: 15px; font-weight: 700; color: var(--zc-text-dark); }

.zc-icon-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none;
    color: var(--zc-text-mid); font-size: 15px;
    cursor: pointer; text-decoration: none;
    transition: background .12s, color .12s;
    position: relative;
}
.zc-icon-btn:hover { background: var(--zc-bg); color: var(--zc-text-dark); }

.zc-notif-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #ef4444;
    position: absolute; top: 7px; right: 7px;
    border: 2px solid #fff;
    animation: zc-pulse-dot 2s ease infinite;
}
@keyframes zc-pulse-dot {
    0%,100%{ transform: scale(1); opacity: 1; }
    50%{ transform: scale(1.3); opacity: .7; }
}

/* User dropdown */
.zc-user-dropdown { position: relative; }
.zc-user-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--zc-bg); border: 1px solid var(--zc-border);
    border-radius: 40px; padding: 4px 12px 4px 4px;
    cursor: pointer; transition: all .15s;
}
.zc-user-btn:hover { border-color: #cbd5e1; box-shadow: var(--zc-shadow-sm); }
.zc-user-thumb {
    width: 28px; height: 28px;
    border-radius: 50%; object-fit: cover;
}
.zc-user-menu {
    display: none;
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--zc-white);
    border: 1px solid var(--zc-border);
    border-radius: var(--zc-radius-lg);
    padding: 6px;
    min-width: 210px;
    box-shadow: var(--zc-shadow-md);
    z-index: 9999;
    animation: zc-drop-in .15s ease;
}
@keyframes zc-drop-in {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
}
.zc-user-menu.show { display: block; }
.zc-user-menu-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px;
    font-size: 13px; font-weight: 500; color: var(--zc-text-dark);
    text-decoration: none !important;
    transition: background .1s;
}
.zc-user-menu-item:hover { background: var(--zc-bg); color: var(--zc-text-dark); text-decoration: none !important; }
.zc-user-menu-item i { font-size: 13px; color: var(--zc-text-light); width: 16px; text-align: center; }
.zc-user-menu-item.text-danger { color: #ef4444 !important; }
.zc-user-menu-item.text-danger i { color: #ef4444 !important; }

/* ════════════════════════════
   CONTENT AREA
   ════════════════════════════ */
.zc-content {
    padding: 24px;
    flex: 1;
}

/* ════════════════════════════
   DASHBOARD WIDGET UPGRADES
   ════════════════════════════ */
.zc-dashboard .dashboard-body__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.zc-dashboard .dashboard-body__top .text {
    font-size: 14px;
    color: var(--zc-text-mid) !important;
    margin: 0;
}
.zc-dashboard .btn--base {
    background: var(--zc-green) !important;
    border-color: var(--zc-green) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 9px 18px !important;
    box-shadow: 0 4px 12px rgba(0,196,140,.3) !important;
    transition: all .2s !important;
}
.zc-dashboard .btn--base:hover {
    background: var(--zc-green-mid) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,196,140,.4) !important;
}
.zc-dashboard .btn--info {
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 9px 18px !important;
}

/* Widget cards */
.zc-dashboard .dashboard-widget {
    background: var(--zc-white) !important;
    border: 1px solid var(--zc-border) !important;
    border-radius: var(--zc-radius-lg) !important;
    padding: 20px !important;
    box-shadow: var(--zc-shadow-sm) !important;
    transition: transform .2s, box-shadow .2s !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    text-decoration: none !important;
}
.zc-dashboard .dashboard-widget:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--zc-shadow-md) !important;
    text-decoration: none !important;
    border-color: rgba(0,196,140,.2) !important;
}
.zc-dashboard .dashboard-widget__icon-box { flex-shrink: 0; }
.zc-dashboard .dashboard-widget__icon {
    width: 48px !important; height: 48px !important;
    border-radius: 12px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 20px !important;
}
.zc-dashboard .dashboard-widget__content { flex: 1; min-width: 0; }
.zc-dashboard .dashboard-widget__text {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--zc-text-mid) !important;
    margin: 0 0 4px !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}
.zc-dashboard .dashboard-widget__number .text {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: var(--zc-text-dark) !important;
    display: block !important;
    line-height: 1.2 !important;
}
/* Remove extra separators from number */
.zc-dashboard .dashboard-widget__number .text::after,
.zc-dashboard .dashboard-widget__number .text:last-child::after { display: none !important; }

/* Widget color variants — green accent */
.zc-dashboard .widget-blue   .dashboard-widget__icon { background: rgba(37,99,235,.1)  !important; color: #2563eb !important; }
.zc-dashboard .widget-purple .dashboard-widget__icon { background: rgba(124,58,237,.1) !important; color: #7c3aed !important; }
.zc-dashboard .widget-red    .dashboard-widget__icon { background: rgba(220,38,38,.1)  !important; color: #dc2626 !important; }
.zc-dashboard .widget-green  .dashboard-widget__icon { background: var(--zc-green-light) !important; color: var(--zc-green) !important; }
.zc-dashboard .widget-yellow .dashboard-widget__icon { background: rgba(217,119,6,.1)  !important; color: #d97706 !important; }
.zc-dashboard .widget-orange .dashboard-widget__icon { background: rgba(234,88,12,.1)  !important; color: #ea580c !important; }
.zc-dashboard .widget-pink   .dashboard-widget__icon { background: rgba(219,39,119,.1) !important; color: #db2777 !important; }
.zc-dashboard .widget-teal   .dashboard-widget__icon { background: rgba(15,118,110,.1) !important; color: #0f766e !important; }
.zc-dashboard .widget-lime   .dashboard-widget__icon { background: rgba(77,124,15,.1)  !important; color: #4d7c0f !important; }
.zc-dashboard .widget-cyan   .dashboard-widget__icon { background: rgba(8,145,178,.1)  !important; color: #0891b2 !important; }
.zc-dashboard .widget-indigo .dashboard-widget__icon { background: rgba(79,70,229,.1)  !important; color: #4f46e5 !important; }
.zc-dashboard .widget-brown  .dashboard-widget__icon { background: rgba(120,53,15,.1)  !important; color: #78350f !important; }
.zc-dashboard .widget-gray   .dashboard-widget__icon { background: rgba(100,116,139,.1)!important; color: #64748b !important; }
.zc-dashboard .widget-sky    .dashboard-widget__icon { background: rgba(2,132,199,.1)  !important; color: #0284c7 !important; }
.zc-dashboard .widget-rose   .dashboard-widget__icon { background: rgba(225,29,72,.1)  !important; color: #e11d48 !important; }

/* Subscription/plan banner */
.zc-dashboard .subscription-plan {
    background: linear-gradient(135deg, var(--zc-green) 0%, #00a87a 100%) !important;
    border-radius: var(--zc-radius-lg) !important;
    border: none !important;
    color: #fff !important;
}

/* Section titles inside dashboard */
.zc-dashboard .dashboard-section__title,
.zc-content .section-title,
.zc-content h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--zc-text-dark) !important;
}

/* Cards & panels in other pages */
.zc-dashboard .card,
.zc-dashboard .custom-card {
    border-radius: var(--zc-radius-lg) !important;
    border: 1px solid var(--zc-border) !important;
    box-shadow: var(--zc-shadow-sm) !important;
}

/* Tables */
.zc-dashboard .table { border-radius: var(--zc-radius-lg); overflow: hidden; }
.zc-dashboard .table thead th {
    background: var(--zc-bg) !important;
    color: var(--zc-text-mid) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    border-bottom: 1px solid var(--zc-border) !important;
    padding: 12px 16px !important;
}
.zc-dashboard .table td {
    font-size: 13px !important;
    color: var(--zc-text-dark) !important;
    padding: 12px 16px !important;
    border-color: var(--zc-border) !important;
    vertical-align: middle !important;
}
.zc-dashboard .table tbody tr:hover { background: var(--zc-bg) !important; }

/* Buttons */
.zc-dashboard .btn--base,
.zc-dashboard .btn-base {
    background: var(--zc-green) !important;
    border-color: var(--zc-green) !important;
    color: #fff !important;
}
.zc-dashboard .badge--success,
.zc-dashboard .badge--base { background: var(--zc-green-light) !important; color: var(--zc-green-mid) !important; }

/* Form controls */
.zc-dashboard .form--control,
.zc-dashboard .form-control,
.zc-dashboard select.form--control {
    border-radius: 9px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 13px !important;
    padding: 9px 14px !important;
    color: var(--zc-text-dark) !important;
    transition: border .15s, box-shadow .15s !important;
}
.zc-dashboard .form--control:focus,
.zc-dashboard .form-control:focus {
    border-color: var(--zc-green) !important;
    box-shadow: 0 0 0 3px rgba(0,196,140,.12) !important;
    outline: none !important;
}
.zc-dashboard label { font-size: 12px !important; font-weight: 600 !important; color: var(--zc-text-mid) !important; }

/* Pagination */
.zc-dashboard .pagination .page-item.active .page-link {
    background: var(--zc-green) !important;
    border-color: var(--zc-green) !important;
    color: #fff !important;
}
.zc-dashboard .pagination .page-link { color: var(--zc-text-mid) !important; border-radius: 8px !important; margin: 0 2px !important; }
.zc-dashboard .pagination .page-link:hover { background: var(--zc-green-light) !important; color: var(--zc-green-mid) !important; }

/* Alerts */
.zc-dashboard .alert--success { background: var(--zc-green-light) !important; border-color: rgba(0,196,140,.2) !important; color: var(--zc-green-mid) !important; }

/* ════════════════════════════
   HIDE OLD LAYOUT ELEMENTS
   ════════════════════════════ */
.zc-dashboard .sidebar-menu          { display: none !important; }
.zc-dashboard .dashboard__right      { padding-left: 0 !important; background: transparent !important; }
.zc-dashboard .dashboard__inner      { display: contents !important; }
.zc-dashboard .dashboard-header      { display: none !important; }
.zc-dashboard .dashboard-body        { padding: 0 !important; background: transparent !important; }
.zc-dashboard .body-overlay          { display: none !important; }
.zc-dashboard .sidebar-overlay       { display: none !important; }

/* ════════════════════════════
   MOBILE
   ════════════════════════════ */
.zc-sidebar-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 999;
    display: none;
}
.zc-sidebar-overlay.show { display: block; }

@media (max-width: 991px) {
    .zc-sidebar { transform: translateX(-100%); box-shadow: none; }
    .zc-sidebar.mobile-open { transform: translateX(0); box-shadow: 4px 0 24px rgba(0,0,0,.15); }
    .zc-main { margin-left: 0 !important; }
    .zc-content { padding: 16px; }
    .zc-topbar { padding: 0 16px; }
}

/* ════════════════════════════
   CRM LAYOUT
   ════════════════════════════ */
.crm-right {
    margin-left: var(--zc-sidebar-w) !important;
    background: #0c1222 !important;
}
@media(max-width:991px){ .crm-right { margin-left: 0 !important; } }
.crm-topnav { margin-left: 0 !important; }

/* ══════════════════════════
   DASHBOARD FIX v2 — STRONGER VISIBILITY
   ══════════════════════════ */

/* Force white sidebar bg + proper sizing */
.zc-sidebar {
    background: #ffffff !important;
    border-right: 1px solid #e2e8f0 !important;
}

/* Section labels — visible */
.zc-nav-section {
    font-size: 10px !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: .12em !important;
    padding: 16px 12px 6px !important;
    display: block !important;
}

/* Nav items — stronger states */
.zc-nav-item {
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}
.zc-nav-item:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}
.zc-nav-item.active,
a.zc-nav-item.active {
    background: #e8faf4 !important;
    color: #059669 !important;
    font-weight: 700 !important;
}
.zc-nav-item.active .zc-nav-icon,
a.zc-nav-item.active .zc-nav-icon { color: #00c48c !important; }
.zc-nav-icon { color: #94a3b8 !important; }

/* Widget cards — STRONG visible styling */
.zc-dashboard .dashboard-widget,
.dashboard.zc-dashboard .dashboard-widget {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 14px !important;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05) !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    transition: transform .2s, box-shadow .2s !important;
    cursor: pointer !important;
    text-decoration: none !important;
    height: 100% !important;
}
.zc-dashboard .dashboard-widget:hover,
.dashboard.zc-dashboard .dashboard-widget:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06) !important;
    border-color: #00c48c !important;
    text-decoration: none !important;
}

/* Icon circles — colored backgrounds */
.zc-dashboard .dashboard-widget__icon,
.dashboard.zc-dashboard .dashboard-widget__icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    flex-shrink: 0 !important;
}

/* Icon color overrides based on widget classes */
.zc-dashboard .dashboard-widget.widget-blue .dashboard-widget__icon { background: #eff6ff !important; color: #2563eb !important; }
.zc-dashboard .dashboard-widget.widget-purple .dashboard-widget__icon { background: #f5f3ff !important; color: #7c3aed !important; }
.zc-dashboard .dashboard-widget.widget-green .dashboard-widget__icon,
.zc-dashboard .dashboard-widget.widget-success .dashboard-widget__icon { background: #ecfdf5 !important; color: #059669 !important; }
.zc-dashboard .dashboard-widget.widget-red .dashboard-widget__icon,
.zc-dashboard .dashboard-widget.widget-danger .dashboard-widget__icon { background: #fef2f2 !important; color: #dc2626 !important; }
.zc-dashboard .dashboard-widget.widget-yellow .dashboard-widget__icon,
.zc-dashboard .dashboard-widget.widget-warning .dashboard-widget__icon { background: #fffbeb !important; color: #d97706 !important; }
.zc-dashboard .dashboard-widget.widget-orange .dashboard-widget__icon { background: #fff7ed !important; color: #ea580c !important; }
.zc-dashboard .dashboard-widget.widget-pink .dashboard-widget__icon { background: #fdf2f8 !important; color: #db2777 !important; }
.zc-dashboard .dashboard-widget.widget-teal .dashboard-widget__icon { background: #f0fdfa !important; color: #0d9488 !important; }
.zc-dashboard .dashboard-widget.widget-indigo .dashboard-widget__icon { background: #eef2ff !important; color: #4f46e5 !important; }
.zc-dashboard .dashboard-widget.widget-two .dashboard-widget__icon {
    background: #ecfdf5 !important;
    color: #059669 !important;
}

/* Widget text */
.zc-dashboard .dashboard-widget__text,
.zc-dashboard .dashboard-widget .dashboard-widget__text {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    margin: 0 0 6px !important;
    display: block !important;
}
.zc-dashboard .dashboard-widget__number .text,
.zc-dashboard .dashboard-widget .dashboard-widget__number .text {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    display: block !important;
}

/* Content bg */
.zc-content { background: #f7f9fc !important; min-height: calc(100vh - 60px) !important; }
.zc-main { background: #f7f9fc !important; }

/* Topbar */
.zc-topbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.05) !important;
}
.zc-page-title { font-size: 16px !important; font-weight: 700 !important; color: #0f172a !important; }

/* CSS_LOAD_TEST_v114 */
.zc-main { background: #f0fdf4 !important; }
.zc-sidebar { outline: 3px solid #00c48c !important; }
