@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
    --heading-font: 'Space Grotesk', sans-serif;
    --body-font: 'Inter', sans-serif;
    --heading: 0 0% 100%;
    --body: 224 26% 75%;
    --border: 220 30% 16%;
    --base-h: 221;
    --base-s: 75%;
    --base-l: 60%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-50: var(--base-h) var(--base-s) calc(var(--base-l) + 25%);
    --base-100: var(--base-h) var(--base-s) calc(var(--base-l) + 20%);
    --base-200: var(--base-h) var(--base-s) calc(var(--base-l) + 15%);
    --base-300: var(--base-h) var(--base-s) calc(var(--base-l) + 10%);
    --base-400: var(--base-h) var(--base-s) calc(var(--base-l) + 5%);
    --base-600: var(--base-h) var(--base-s) calc(var(--base-l) - 5%);
    --base-700: var(--base-h) var(--base-s) calc(var(--base-l) - 10%);
    --base-800: var(--base-h) var(--base-s) calc(var(--base-l) - 15%);
    --base-900: var(--base-h) var(--base-s) calc(var(--base-l) - 20%);
    --gradient-base: linear-gradient(270deg, hsl(var(--base-400)) 0%, hsl(var(--base-600)) 100%);
    --link-color-h: 216;
    --link-color-s: 98%;
    --link-color-l: 52%;
    --link-color: var(--link-color-h) var(--link-color-s) var(--link-color-l);
    --link-color-hover: var(--link-color-h) var(--link-color-s) 38%;
    --accent-h: 260;
    --accent-s: 92%;
    --accent-l: 10%;
    --accent-50: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 25%);
    --accent-100: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 20%);
    --accent-200: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 15%);
    --accent-300: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 10%);
    --accent-400: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 5%);
    --accent: var(--accent-h) var(--accent-s) var(--accent-l);
    --accent-600: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 5%);
    --accent-700: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 10%);
    --accent-800: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 15%);
    --accent-900: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 20%);
    --primary: 245 82% 67%;
    --secondary: 224 40% 27%;
    --success: 147 67% 47%;
    --danger: 360 78% 62%;
    --warning: 29 100% 63%;
    --info: 200 90% 53%;
    --dark: 218 60% 8%;
    --white: 0 0% 100%;
    --light-h: 226;
    --light-s: 60%;
    --light-l: 5%;
    --light-50: var(--light-h) var(--light-s) calc(var(--light-l) + 33%);
    --light-100: var(--light-h) var(--light-s) calc(var(--light-l) + 20%);
    --light-200: var(--light-h) var(--light-s) calc(var(--light-l) + 15%);
    --light-300: var(--light-h) var(--light-s) calc(var(--light-l) + 10%);
    --light-400: var(--light-h) var(--light-s) calc(var(--light-l) + 2%);
    --light: var(--light-h) var(--light-s) var(--light-l);
    --light-600: var(--light-h) var(--light-s) calc(var(--light-l) - 2%);
    --light-700: var(--light-h) var(--light-s) calc(var(--light-l) - 10%);
    --light-800: var(--light-h) var(--light-s) calc(var(--light-l) - 15%);
    --light-900: var(--light-h) var(--light-s) calc(var(--light-l) - 20%);
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: hsl(var(--body));
    line-height: 1.7;
    font-family: var(--body-font);
    background-color: hsl(var(--light)) !important;
}
.text-bold{
    font-weight: 500;
}
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: hsl(var(--base));
}

a:hover {
    color: hsl(var(--base));
}

span,
sub,
sup,
a {
    display: inline-block;
}

@media (max-width: 991px) {
    img {
        max-width: 100%;
    }
}

/* global css strat */
.text--primary {
    color: hsl(var(--primary)) !important;
}

.text--secondary {
    color: hsl(var(--secondary)) !important;
}

.text--success {
    color: hsl(var(--success)) !important;
}

.text--danger {
    color: hsl(var(--danger)) !important;
}

.text--warning {
    color: hsl(var(--warning)) !important;
}

.text--info {
    color: hsl(var(--info)) !important;
}

.text--dark {
    color: hsl(var(--dark)) !important;
}

.text--muted {
    color: hsl(var(--muted)) !important;
}

.text--body {
    color: hsl(var(--body)) !important;
}

.text--base {
    color: hsl(var(--base)) !important;
}

/* background color css start */
.bg--primary {
    background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
    background-color: hsl(var(--secondary)) !important;
}

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

.bg--danger {
    background-color: hsl(var(--danger)) !important;
}

.bg--warning {
    background-color: hsl(var(--warning)) !important;
}

.bg--info {
    background-color: hsl(var(--info)) !important;
}

.bg--dark {
    background-color: hsl(var(--dark)) !important;
}

.bg--light {
    background-color: hsl(var(--light)) !important;
}

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

.border--primary {
    border-color: hsl(var(--primary)) !important;
}

.border--secondary {
    border-color: hsl(var(--secondary)) !important;
}

.border--success {
    border-color: hsl(var(--success)) !important;
}

.border--danger {
    border-color: hsl(var(--danger)) !important;
}

.border--warning {
    border-color: hsl(var(--warning)) !important;
}

.border--info {
    border-color: hsl(var(--info)) !important;
}

.border--dark {
    border-color: hsl(var(--dark)) !important;
}

.border--white,
.border--light {
    border-color: #ffffff !important;
}

.bg--navajowhite {
    background-color: #ffdead82;
}

/* background color css end */
.bg_img {
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.bg_fixed {
    background-attachment: fixed !important;
}

.rounded {
    border-radius: 50px !important;
}

a.text-white:hover {
    color: hsl(var(--base));
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.h-40 {
    height: 40px !important;
}

.h-45 {
    height: 45px !important;
}

.h-50 {
    height: 50px !important;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: hsl(var(--dark)/0.8);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

.overlay.show-overlay {
    visibility: visible;
    opacity: 1;
    z-index: 9991;
}

.pt-120 {
    padding-top: clamp(60px, 6vw, 120px);
}

.pt-100 {
    padding-top: clamp(50px, 6vw, 100px);
}

.pt-80 {
    padding-top: clamp(40px, 6vw, 80px);
}

.pt-60 {
    padding-top: clamp(30px, 6vw, 60px);
}

.pt-50 {
    padding-top: clamp(25px, 6vw, 50px);
}

.pb-120 {
    padding-bottom: clamp(60px, 6vw, 120px);
}

.pb-100 {
    padding-bottom: clamp(50px, 6vw, 100px);
}

.pb-80 {
    padding-bottom: clamp(40px, 6vw, 80px);
}

.pb-60 {
    padding-bottom: clamp(30px, 6vw, 60px);
}

.pb-50 {
    padding-bottom: clamp(25px, 6vw, 50px);
}

.notification-item,
.sidebar-menu li a,
.menu,
.header-bottom-area,
.pagination,
.list.list-column {
    display: flex;
    flex-wrap: wrap;
}

.account-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.faq-item__title::before,
.nav-header-link .dropdown-wrapper,
.header-trigger span::after,
.header-trigger span::before,
.header,
.btn,
.cmn--btn,
a,
img,
.title,
.name {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-menu li.has-submenu a::before,
.menu li.has-sub-menu>a::after,
.list.list-style-two li::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
}

.faq-item__title::before,
.list.list-style-one li::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
}

.list.list-column {
    flex-direction: column;
}

.list.list-style-one li {
    position: relative;
    padding: 6px 0;
    padding-left: 25px;
}

.list.list-style-one li::before {
    content: "\f30b";
    left: 0;
    top: 6px;
    color: hsl(var(--base));
}

.list.list-style-one li .label,
.list.list-style-one li .value {
    width: calc(50% - 20px);
}

.list.list-style-one li .value {
    text-align: right;
}

.list.list-style-two li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.list.list-style-two li::before {
    content: "\f101";
    left: 0;
    top: 6px;
    color: hsl(var(--base));
}

.list.list-style-three li {
    position: relative;
    padding: 6px 0;
}

.list.list-style-three li .label,
.list.list-style-three li .value {
    width: calc(50% - 20px);
}

.list.list-style-three li .value {
    text-align: right;
}

.list.list-style-four li {
    position: relative;
    padding: 8px 0;
    padding-left: 25px;
    font-weight: 500;
    font-size: 18px;
}

.list.list-style-four li::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 5px;
    left: 0;
    top: 15px;
    background-color: hsl(var(--base));
}

.list.list-style-four li:nth-of-type(3n + 1) {
    color: hsl(var(--base));
}

.list.list-style-four li:nth-of-type(3n + 1)::before {
    background: linear-gradient(45deg, hsl(var(--base)/0.3) 0%, hsl(var(--base)/1) 80%);
    box-shadow: -1px 3px 5px 2px hsl(var(--base)/0.3);
}

.list.list-style-four li:nth-of-type(3n + 2) {
    color: hsl(var(--info));
}

.list.list-style-four li:nth-of-type(3n + 2)::before {
    background: linear-gradient(45deg, hsl(var(--info)/0.3) 0%, hsl(var(--info)/1) 80%);
    box-shadow: -1px 3px 5px 2px hsl(var(--info)/0.3);
}

.list.list-style-four li:nth-of-type(3n + 3) {
    color: hsl(var(--warning));
}

.list.list-style-four li:nth-of-type(3n + 3)::before {
    background: linear-gradient(45deg, hsl(var(--warning)/0.3) 0%, hsl(var(--warning)/1) 80%);
    box-shadow: -1px 3px 5px 2px hsl(var(--warning)/0.3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    color: hsl(var(--heading));
    font-family: var(--heading-font);
    word-break: break-word;
    letter-spacing: -0.02em;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    color: hsl(var(--heading));
    word-break: break-word;
}

h1 {
    font-size: 4.375rem;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 3.75rem;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.875rem;
    }
}

@media (max-width: 450px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: 3.25rem;
}

@media (max-width: 1199px) {
    h2 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 2.875rem;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 450px) {
    h2 {
        font-size: 2.25rem;
    }
}

h3 {
    font-size: 1.875rem;
}

@media (max-width: 767px) {
    h3 {
        font-size: 1.625rem;
    }
}

@media (max-width: 450px) {
    h3 {
        font-size: 1.5625rem;
    }
}

h4 {
    font-size: 1.375rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

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

.fs--12px {
    font-size: 12px;
}

.fs--13px {
    font-size: 13px;
}

.fs--14px {
    font-size: 14px;
}

.fs--15px {
    font-size: 15px;
}

.fs--16px {
    font-size: 16px;
}

.fs--18px {
    font-size: 18px;
}

.fs--20px {
    font-size: 20px;
}

.fs--25px {
    font-size: 25px;
}

.fs--30px {
    font-size: 30px;
}

.btn,
.cmn--btn {
    padding: 12px 28px;
    font-weight: 600;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 10px;
    z-index: 1;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
}

.btn.btn--lg,
.cmn--btn.btn--lg {
    padding: 14px 38px !important;
    font-size: 18px;
}

@media (max-width: 991px) {

    .btn.btn--lg,
    .cmn--btn.btn--lg {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    .btn.btn--lg,
    .cmn--btn.btn--lg {
        padding: 12px 32px !important;
    }
}

.btn.btn--md,
.cmn--btn.btn--md {
    padding: 9px 26px !important;
    font-size: 15px;
}

.btn.btn--sm,
.cmn--btn.btn--sm {
    padding: 6px 16px !important;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .btn.btn--sm {
        padding: 5px 11px !important;
    }
}

.btn.btn--smd,
.cmn--btn.btn--smd {
    padding: 6px 26px !important;
    font-size: 14px;
}


.btn.btn--xs,
.cmn--btn.btn--xs {
    padding: 2px 12px !important;
    font-size: 13px;
}

.cmn--btn {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border: 2px solid hsl(var(--base));
}

.cmn--btn.btn--outline {
    padding: 10px 35px;
    color: hsl(var(--base));
    background-color: transparent;
    border: 2px solid hsl(var(--base));
}

.cmn--btn.btn--outline:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
    border: 2px solid hsl(var(--base));
}

.cmn--btn:hover:not(button) {
    color: hsl(var(--base));
    background: transparent;
}

.cmn--btn:hover {
    color: hsl(var(--white));
}

.cmn--btn.btn--gradient::before {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
    background: var(--gradient-base);
    box-shadow: 3px 7px 35px 6px hsl(var(--base)/0.3);
}

.cmn--btn.btn--gradient:hover::before {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.cmn--btn.btn--gradient:hover {
    transform: translateY(-3px);
}

.cmn--btn.btn--gradient:active {
    transform: translateY(-1px);
}

.btn--primary {
    background-color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.btn--primary:hover:not(button) {
    color: hsl(var(--primary));
    background-color: transparent;
}

.btn--primary:hover {
    color: hsl(var(--white));
}

.btn--secondary {
    background-color: hsl(var(--secondary));
    border: 2px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.btn--secondary:hover {
    color: hsl(var(--white));
}

.btn--success {
    background-color: hsl(var(--success));
    border: 2px solid hsl(var(--success));
    color: hsl(var(--white));
}

.btn--success:hover:not(button) {
    color: hsl(var(--success));
    background-color: transparent;
}

.btn--success:hover {
    color: hsl(var(--white));
}

.btn--danger {
    background-color: hsl(var(--danger));
    border: 2px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.btn--danger:hover:not(button) {
    color: hsl(var(--danger));
    background-color: transparent;
}

.btn--danger:hover {
    color: hsl(var(--white));
}

.btn--warning {
    background-color: hsl(var(--warning));
    border: 2px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.btn--warning:hover:not(button) {
    color: hsl(var(--warning));
    background-color: transparent;
}

.btn--warning:hover {
    color: hsl(var(--white));
}

.btn--info {
    background-color: var(--info);
    border: 2px solid var(--info);
    color: hsl(var(--white));
}

.btn--info:hover:not(button) {
    color: var(--info);
    background-color: transparent;
}

.btn--info:hover {
    color: hsl(var(--white));
}

.btn--light {
    background-color: hsl(var(--light));
    border: 2px solid hsl(var(--light));
    color: hsl(var(--white));
}

.btn--light:hover:not(button) {
    color: hsl(var(--light));
    background-color: transparent;
}

.btn--light:hover {
    color: hsl(var(--white));
}

.btn--dark {
    background-color: hsl(var(--dark));
    border: 2px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.btn--dark:hover:not(button) {
    color: hsl(var(--dark));
    background-color: transparent;
}

.btn:disabled {
    pointer-events: inherit;
    cursor: no-drop !important;
}
.btn--dark:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--dark) / 0.9);
}

.btn--base {
    background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--base-600)) 100%) !important;
    border: 2px solid hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base:hover {
    color: hsl(var(--white));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--base)/0.3) !important;
}

.btn--base-outline {
    border: 1px solid hsl(var(--base));
    background: transparent !important;
    color: hsl(var(--base)) !important;
    padding: 3px 10px !important;
}

.btn--base-outline:hover {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base2 {
    background-color: hsl(var(--base-600));
    border: 2px solid hsl(var(--base-600));
    color: hsl(var(--white));
}

.btn--base2:hover:not(button) {
    color: hsl(var(--base-600));
    background-color: transparent;
}

.btn--base2:hover {
    color: hsl(var(--white));
}

.btn--base:hover,
.cmn--btn:hover {
    background-color: hsl(var(--base-600));
}

.btn--light {
    color: hsl(var(--base));
}

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

.btn--outline-primary:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

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

.btn--outline-secondary:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-success {
    background-color: transparent;
    border: 2px solid hsl(var(--success));
    color: hsl(var(--success));
}

.btn--outline-success:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-danger {
    background-color: transparent;
    border: 2px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.btn--outline-danger:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-warning {
    background-color: transparent;
    border: 2px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.btn--outline-warning:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-info {
    background-color: transparent;
    border: 2px solid var(--info);
    color: var(--info);
}

.btn--outline-info:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-light {
    background-color: transparent;
    border: 2px solid hsl(var(--light));
    color: hsl(var(--light));
}

.btn--outline-light:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-dark {
    background-color: transparent;
    border: 2px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

.btn--outline-dark:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-base {
    background-color: transparent;
    border: 2px solid hsl(var(--base));
    color: hsl(var(--base));
}

.btn--outline-base:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-base2 {
    background-color: transparent;
    border: 2px solid hsl(var(--base-600));
    color: hsl(var(--base-600));
}

.btn--outline-base2:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.btn--outline-light {
    color: hsl(var(--body));
    border: 2px solid hsl(var(--border));
}

.btn--circle {
    border-radius: 50px;
}

.badge--base {
    background-color: hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.badge--primary {
    background-color: hsl(var(--primary)/0.1);
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.badge--secondary {
    background-color: hsl(var(--secondary)/0.1);
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.badge--success {
    background-color: hsl(var(--success)/0.1);
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.badge--danger {
    background-color: hsl(var(--danger)/0.1);
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.badge--warning {
    background-color: hsl(var(--warning)/0.1);
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.badge--info {
    background-color: hsl(var(--info)/0.1);
    border: 1px solid hsl(var(--info));
    color: hsl(var(--info));
}

.badge--dark {
    background-color: hsl(var(--dark)/0.1);
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

.badge {
    border-radius: 20px;
    padding: 4px 14px;
    font-weight: 600;
    font-size: 13px;
}

.badge.badge--icon {
    width: 1.875rem;
    height: 1.875rem;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.badge.badge--lg {
    padding: 6px 16px;
}

.badge.badge--md {
    padding: 4px 12px;
}

.badge.badge--sm {
    padding: 3px 10px;
}

.badge--fill-primary {
    background-color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.badge--fill-primary:hover {
    color: hsl(var(--white));
}

.badge--fill-secondary {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.badge--fill-secondary:hover {
    color: hsl(var(--white));
}

.badge--fill-success {
    background-color: hsl(var(--success));
    border: 1px solid hsl(var(--success));
    color: hsl(var(--white));
}

.badge--fill-success:hover {
    color: hsl(var(--white));
}

.badge--fill-danger {
    background-color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.badge--fill-danger:hover {
    color: hsl(var(--white));
}

.badge--fill-warning {
    background-color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.badge--fill-warning:hover {
    color: hsl(var(--white));
}

.badge--fill-info {
    background-color: hsl(var(--info));
    border: 1px solid hsl(var(--info));
    color: hsl(var(--white));
}

.badge--fill-info:hover {
    color: hsl(var(--white));
}

.badge--fill-light {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--light));
    color: hsl(var(--white));
}

.badge--fill-light:hover {
    color: hsl(var(--white));
}

.badge--fill-dark {
    background-color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.badge--fill-dark:hover {
    color: hsl(var(--white));
}

.badge--fill-base {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.badge--fill-base:hover {
    color: hsl(var(--white));
}

.table {
    margin: 0;
    font-size: 15px;
    background-color: hsl(var(--white));
    border-radius: 12px;
    overflow: hidden;
}

.table thead tr {
    background: #f8fafc;
}

.table thead tr th {
    text-align: center;
    font-size: 15px;
    padding: 15px;
    color: #0f172a;
    font-family: var(--heading-font);
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.table thead tr th:first-child {
    text-align: left;
}

.table thead tr th:last-child {
    text-align: right;
}

.table tbody {
    border: 0 !important;
}

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 20px 15px;
    border-width: 1px;
    font-family: var(--heading-font);
}

.table tbody tr td::before {
    content: attr(data-label);
    font-family: var(--heading-font);
    font-size: 15px;
    color: hsl(var(--heading));
    font-weight: 500;
    display: none;
}

.table tbody tr td:first-child {
    text-align: left;
}

.table tbody tr td:last-child {
    text-align: right;
}

.table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.table .amount span {
    margin-right: 4px;
}

.domain-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: hsl(var(--white));
    gap: 1rem;
    padding: 0.8rem;
    justify-content: space-between;
    word-break: break-all;
}

.domain-row:not(:last-child) {
    border-bottom: 1px solid #eeeeee;
}

@media (max-width: 767px) {
    .table--responsive--md thead {
        display: none;
    }

    .table tbody tr td:first-child {
        text-align: right;
    }

    .table--responsive--md tbody tr {
        display: block;
    }

    .table--responsive--md tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--border));
    }

    .not-found {
        justify-content: center !important;
    }

}

@media (max-width: 767px) and (max-width: 991px) {
    .table--responsive--md tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .table--responsive--md tbody tr td:last-child {
        border: none;
    }
}

@media (max-width: 767px) {
    .table--responsive--md tbody tr td::before {
        display: block;
    }

    .table--responsive--md tbody tr td.not-found::before {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .table--responsive--md tbody tr td {
        border: 0;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table tbody tr td:first-child {
        text-align: right;
    }

    .table--responsive--lg tbody tr {
        display: block;
    }

    .not-found {
        justify-content: center !important;
    }

    .table--responsive--lg tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--border));
    }
}

@media (max-width: 991px) and (max-width: 991px) {
    .table--responsive--lg tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td:last-child {
        border: none;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td::before {
        display: block;
    }

    .table--responsive--lg tbody tr td.not-found::before {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .table--responsive--lg tbody tr td {
        border: none;
        border-bottom: 1px solid hsl(var(--light-600));
    }

    .table--responsive--lg tbody tr td:first-child {
        border-left: 1px solid hsl(var(--light-600));
    }

    .table--responsive--lg tbody tr td:last-child {
        border-right: 1px solid hsl(var(--light-600));
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table tbody tr td:first-child {
        text-align: right;
    }

    .table--responsive--xl tbody tr {
        display: block;
    }

    .not-found {
        justify-content: center !important;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--border));
    }
}

@media (max-width: 1199px) and (max-width: 991px) {
    .table--responsive--xl tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl tbody tr td:last-child {
        border: none;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl tbody tr td::before {
        display: block;
    }

    .table--responsive--xl tbody tr td.not-found::before {
        display: none !important;
    }

}

@media (min-width: 1200px) {
    .table--responsive--xl tbody tr td {
        border: 0;
    }
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--heading));
}

.form--control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border));
    outline: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form--control:focus {
    border: 1px solid hsl(var(--base));
    box-shadow: 0 0 0 3px hsl(var(--base)/0.15) !important;
}

.form--control.style--two {
    background-color: hsl(var(--light));
}

::placeholder {
    color: #496a93 !important;
    opacity: 0.5 !important;
    font-size: 14px !important;
}

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

textarea.form--control {
    height: 130px;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: rgb(var(--heading));
    transition: background-color 5000s ease-in-out 0s;
}

.custom--radio {
    position: relative;
    padding-left: 0;
}

.custom--radio input[type=radio] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom--radio input[type=radio]:checked~label::before {
    border-width: 2px;
    border-color: hsl(var(--base)) !important;
}

.custom--radio input[type=radio]:checked~label::after {
    opacity: 1;
}

.custom--radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
    font-size: rem(14px);
    font-weight: 400;
}

.custom--radio label::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #888888;
    border-radius: 50%;
}

.custom--radio label::after {
    position: absolute;
    content: "";
    top: 8px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: hsl(var(--base)) !important;
    border-radius: 50%;
    opacity: 0;
}

.custom--checkbox input {
    box-shadow: none !important;
}

.custom--checkbox input:checked {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.custom--checkbox label {
    position: relative;
    margin-bottom: 0;
    line-height: 1;
}

.form--switch input {
    box-shadow: none !important;
    width: 2.5em !important;
    height: 1.3em;
}

.form--switch input:checked {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.form--switch label {
    margin-left: 7px;
}

/* form css end*/
.custom--card {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.custom--card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

.custom--card .card-header,
.custom--card .card-footer {
    background-color: hsl(var(--white));
    padding: 15px 25px;
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 450px) {

    .custom--card .card-header,
    .custom--card .card-footer {
        padding: 15px;
    }
}

.custom--card .card-header .title,
.custom--card .card-footer .title {
    margin: 0;
}

.custom--card .card-body {
    padding: 25px;
}

@media (max-width: 575px) {
    .custom--card .card-body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card .card-body {
        padding: 15px;
    }
}

.custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
    padding: 20px 35px;
}

@media (max-width: 767px) {

    .custom--card.card--lg .card-header,
    .custom--card.card--lg .card-footer {
        padding: 15px 25px;
    }
}

@media (max-width: 575px) {

    .custom--card.card--lg .card-header,
    .custom--card.card--lg .card-footer {
        padding: 10px 20px;
    }
}

@media (max-width: 450px) {

    .custom--card.card--lg .card-header,
    .custom--card.card--lg .card-footer {
        padding: 8px 15px;
    }
}

.custom--card.card--lg .card-body {
    padding: 35px;
}

@media (max-width: 767px) {
    .custom--card.card--lg .card-body {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .custom--card.card--lg .card-body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card.card--lg .card-body {
        padding: 15px;
    }
}

.custom--card.card--md .card-header,
.custom--card.card--md .card-footer {
    padding: 10px 20px;
}

.custom--card.card--md .card-body {
    padding: 20px 20px;
}

.custom--modal .modal--footer,
.custom--modal .modal--body,
.custom--modal .modal--header {
    border-color: hsl(var(--border)) !important;
}

.custom--modal .modal-content {
    border-color: hsl(var(--border)) !important;
    border-radius: 16px;
    overflow: hidden;
}

.custom--modal .modal--footer .modal-title,
.custom--modal .modal--header .modal-title {
    margin: 0;
    color: hsl(var(--heading));
}

.custom--modal .modal--footer .btn-close,
.custom--modal .modal--header .btn-close {
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: hsl(var(--danger)) !important;
}

.pagination {
    justify-content: center;
    gap: 12px;
}

.pagination .page-item {
    text-align: center;
}

.pagination .page-item a,
.pagination .page-item span {
    font-weight: 600;
    width: 42px;
    height: 42px;
    line-height: 42px;
    padding: 0;
    border-radius: 50px !important;
    border-color: hsl(var(--border));
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination .page-item .page-link:focus {
    color: #fff;
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.pagination .page-item.active span,
.pagination .page-item.active a,
.pagination .page-item:hover span,
.pagination .page-item:hover a {
    color: hsl(var(--white));
    border-color: transparent;
}

.pagination .page-item.disabled {
    cursor: no-drop !important;
}

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
    background: hsl(var(--dark)/0.1);
    border: none;
    color: hsl(var(--white));
}

.header {
    position: sticky;
    z-index: 999;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    top: 0;
}

.header.sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-bottom {
    width: 100%;
    padding: 20px 0;
}

@media (max-width: 991px) {
    .header-bottom {
        padding: 15px 0;
    }
}

.header-bottom-area {
    position: relative;
}

.logo img {
    max-width: 180px;
    max-height: 38px;
}

@media (max-width: 1199px) {
    .logo img {
        max-width: 140px;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-width: 110px;
    }
}

.menu {
    align-items: center;
    margin: 0;
    position: relative;
    margin-left: auto;
}

.menu>.has-sub-menu {
    margin-right: 20px;
}

@media (max-width: 1399px) {
    .menu>.has-sub-menu {
        margin-right: 10px;
    }
}

@media (max-width: 1199px) {
    .menu>.has-sub-menu {
        margin-right: 18px;
    }
}

@media (min-width: 1200px) {
    .menu>.has-sub-menu.open .sub-menu {
        display: block !important;
    }
}

.menu .sub-menu li {
    width: 100%;
}

@media (min-width: 1200px) {
    .menu .sub-menu {
        display: block !important;
    }
}

.menu li {
    position: relative;
}

.menu li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu li.has-sub-menu>a {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.menu li.has-sub-menu>a::after {
    content: "\f107";
    right: 0;
    top: 50%;
    transform: translate(8px, -50%);
    font-size: 14px;
}

.menu li a {
    display: block;
    padding: 4px 10px;
    font-size: 15px;
    position: relative;
    font-weight: 500;
    color: #e1e1e1;
    letter-spacing: 0.01em;
}

@media (max-width: 1399px) {
    .menu li a {
        font-size: 14px;
    }
}

.menu li a:hover {
    color: #fff;
}

.menu .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (min-width: 1200px) {
    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0px;
        opacity: 0;
        visibility: hidden;
        min-width: 200px;
        transition: all ease 0.3s;
        transform: translateY(15px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        overflow: hidden;
        z-index: 11;
        padding: 10px;
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
    }

    .sub-menu li {
        padding: 0;
    }

    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        font-size: 14px;
        padding: 7px 15px;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        border-radius: 8px;
    }

    .sub-menu li a:hover {
        padding-left: 20px;
        background-color: hsl(var(--base));
        color: hsl(var(--white)) !important;
    }

    .sub-menu:hover {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .sub-menu .sub-menu {
        visibility: hidden;
        opacity: 0;
        top: 5px;
        left: -100%;
        transform: translateY(-20px);
    }

    .sub-menu.has-sub-menu>a::after {
        transform: translateY(0px);
    }
}

@media (max-width: 1199px) {
    .menu>li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        padding: 20px;
        max-height: calc(100vh - 50px);
        min-width: 200px;
        width: 100%;
        visibility: hidden;
        transform-origin: top;
        transform: translateY(-100px) scaleY(0.6);
        opacity: 0;
        overflow-y: auto;
        transition: all ease 0.3s;
        color: white;
        background: hsl(var(--dark));
        z-index: 999;
        border-radius: 12px;
    }

    .menu.active {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        visibility: visible;
        z-index: 999;
        top: 100%;
        margin-top: 15px;
    }

    .menu .has-sub-menu {
        margin-right: 0;
    }

    .menu .has-sub-menu>a::after {
        transform: translate(-20px, -50%) !important;
    }

    .menu li {
        padding: 3px 0;
        width: 100%;
        border-bottom: 1px solid rgb(var(--white), 0.2);
    }

    .menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu li a {
        padding-left: 0;
        color: var(--white);
    }

    .menu li.has-sub-menu a::after {
        transform: translate(-0px, -50%) !important;
    }

    .sub-menu {
        display: none;
        padding-left: 25px;
    }
}

.header-trigger {
    cursor: pointer;
}

.header-trigger__icon {
    color: hsl(var(--base));
    font-size: 35px;
    line-height: 1;
}

.header-trigger.change-icon .header-trigger__icon i::before {
    content: "\f00d";
}

.header-trigger.active span {
    background: none !important;
}

.header-trigger.active span::before {
    transform: rotate(-45deg) translate(-11px, 0px);
    background: hsl(var(--white));
}

.header-trigger.active span::after {
    transform: rotate(45deg) translate(-11px, 0px);
    background: hsl(var(--white));
}

.header-trigger span {
    width: 25px;
    height: 2px;
    background: hsl(var(--base));
    position: relative;
    transition: all ease 0.3s;
}

.header-trigger span::after,
.header-trigger span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: hsl(var(--base));
}

.header-trigger span::after {
    bottom: -8px;
}

.header-trigger span::before {
    top: -8px;
}

.dashboard-sidebar {
    position: fixed;
    top: 0;
    width: 310px;
    height: 100%;
    padding: 20px;
    border-right: 1px solid hsl(var(--border));
    background-color: hsl(var(--white));
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dashboard-sidebar .profile-info {
    margin: 30px 0px;
    padding: 20px;
}

@media (max-width: 1199px) {
    .dashboard-sidebar {
        width: 280px;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        transition: 0.4s;
        z-index: 111;
    }

    .dashboard-sidebar .logo {
        padding-top: 0;
        padding-inline: 20px;
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
    }

    .dashboard-sidebar .btn-close,
    .dashboard-sidebar .dash-sidebar-close {
        position: absolute;
        right: 8px;
        top: 8px;
        line-height: 1;
        padding: 3px;
    }
}

.dashboard-container {
    max-width: 1140px;
    margin: 0 auto;
}

.dashboard-container .dashboard-inner {
    padding: 40px 20px;
}

.dashboard-wrapper {
    background-color: hsl(var(--light));
    width: calc(100% - 310px);
    margin-left: auto;
}

@media (max-width: 1199px) {
    .dashboard-wrapper {
        width: 100%;
    }
}

.dash-sidebar-toggler {
    font-size: 20px;
}

@media (max-width: 450px) {
    .dash-sidebar-toggler {
        font-size: 18px;
    }
}

.sidebar-menu {
    margin-top: 15px;
    font-weight: bold;
}

.sidebar-menu .sidebar-title {
    margin-left: 20px;
    font-size: 14px;
    border-bottom: 1px solid hsl(var(--base)/0.4);
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 8px;
}

.sidebar-menu li {
    padding: 2px 0;
}

.sidebar-menu li.has-submenu a {
    position: relative;
    padding-right: 20px;
}

.sidebar-menu li.has-submenu a::before {
    content: "\f107";
    right: 20px;
    color: hsl(var(--body)/0.7);
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
}

.sidebar-menu li a {
    padding: 8px 30px;
    align-items: center;
    font-size: 16px;
    border-radius: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-menu li a img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    margin-right: 12px;
    transition: 0;
}

.sidebar-menu li a.active,
.sidebar-menu li a:hover {
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.1);
}

.sidebar-menu li a.active img,
.sidebar-menu li a:hover img {
    filter: invert(45%) sepia(49%) saturate(7409%) hue-rotate(228deg) brightness(101%) contrast(92%);
}

.sidebar-menu .sidebar-submenu {
    padding-left: 30px;
    display: none;
}

.sidebar-menu .sidebar-submenu li a {
    font-size: 15px;
    position: relative;
}

.sidebar-menu .sidebar-submenu li a::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: hsl(var(--body));
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-menu .sidebar-submenu li a:hover::before {
    background-color: hsl(var(--base));
}

.sidebar-menu .sidebar-submenu.active {
    display: block;
}

.alert {
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow: hidden;
    align-items: stretch;
    background-color: #fff;
}

.alert button.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    background: transparent;
}

.alert__message {
    padding: 12px;
    padding-right: 22px;
}

.alert__icon {
    padding: 13px 14px;
}

.dashboard-widget {
    padding: 25px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid transparent;
    border-image: linear-gradient(to bottom, hsl(var(--base)), hsl(var(--base-600))) 1;
    border-image-slice: 0 0 0 3;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-widget:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.cmn--tabs {
    border-bottom: 1px solid hsl(var(--border));
}

.cmn--tabs li {
    padding-right: 25px;
}

.cmn--tabs li a {
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.cmn--tabs li a.active {
    color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.dashboard-nav {
    position: sticky;
    top: 0;
    padding: 15px 25px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0px 3px 15px hsl(var(--base)/0.05);
    z-index: 11;
}

@media (max-width: 767px) {
    .dashboard-nav {
        padding-inline: 20px;
    }
}

@media (max-width: 575px) {
    .dashboard-nav {
        padding-inline: 15px;
        position: relative;
    }
}

@media (max-width: 575px) {
    .langSel {
        font-size: 15px;
    }
}

.nav-header-link li {
    position: relative;
}

.nav-header-link li .link {
    width: 40px;
    height: 40px;
    line-height: 1;
    box-shadow: 0 3px 5px 2px hsl(var(--base)/0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

@media (max-width: 450px) {
    .nav-header-link li .link {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}

.nav-header-link li .link:focus img {
    box-shadow: 0px 4px 15px 4px hsl(var(--base)/0.3);
}

.nav-header-link li .link.notification-link {
    position: relative;
}

.nav-header-link li .link.notification-link::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: hsl(var(--warning));
    border-radius: 50%;
    right: 10px;
    top: 7px;
}

.nav-header-link li .link.notification-link::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: hsl(var(--warning));
    border-radius: 50%;
    right: 7px;
    top: 10px;
    animation: play-button 2s linear infinite;
}

.nav-header-link li a:focus~.dropdown-wrapper,
.nav-header-link li .dropdown-wrapper:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0) scale(1);
}

.nav-header-link li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-header-link .dropdown-wrapper {
    width: 220px;
    background: hsl(var(--white));
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px) scaleY(0.8);
    transform-origin: top;
    z-index: 11;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.nav-header-link .dropdown-wrapper::before {
    position: absolute;
    content: "";
    bottom: 100%;
    right: 5px;
    border: 15px solid transparent;
    border-bottom-color: hsl(var(--white));
}

.nav-header-link .dropdown-wrapper .dropdown-header {
    text-align: center;
    padding-bottom: 10px;
}

.nav-header-link .dropdown-wrapper .links li a {
    display: block;
    padding: 5px 0;
    border-top: 1px solid hsl(var(--border));
    font-size: 15px;
}

.nav-header-link .dropdown-wrapper .links li a:hover {
    color: hsl(var(--base));
}

.nav-header-link .dropdown-wrapper.notification-dropdown {
    width: 250px;
    padding: 0;
}

.notification-item {
    padding: 15px;
}

.notification-item.notification-warning .icon {
    background-color: hsl(var(--warning));
}

.notification-item.notification-success .icon {
    background-color: hsl(var(--success));
}

.notification-item.notification-info .icon {
    background-color: hsl(var(--info));
}

.notification-item:not(:first-child) {
    border-top: 1px solid hsl(var(--border));
}

.notification-item:hover {
    background-color: hsl(var(--base)/0.05);
}

.notification-item .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 18px;
}

.notification-item .content {
    width: calc(100% - 35px);
    padding-left: 10px;
}

.notification-item .content .title {
    font-size: 13px;
}

.notification-item .content .time {
    font-size: 12px;
}

.search-form {
    width: 260px;
}

.search-form ::placeholder {
    font-size: 14px;
}

@media (max-width: 767px) {
    .search-form {
        width: 220px;
    }
}

@media (max-width: 575px) {
    .search-form {
        position: absolute;
        top: 99%;
        left: 50%;
        right: 0;
        padding: 25px;
        background-color: hsl(var(--white));
        width: 100%;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s;
        transform: translate(-50%, -100%);
    }

    .search-form.active {
        transform: translate(-50%, 0);
        opacity: 1;
        visibility: visible;
        z-index: 11;
    }
}

.search-form .form-group {
    position: relative;
}

.search-form .form-group .form--control {
    height: 40px;
}

.search-form .form-group .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 5px 15px;
    color: hsl(var(--body)/0.7);
}

.dashboard-content {
    padding: 25px;
    border-radius: 16px;
    background: hsl(var(--white));
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
}

@media (max-width: 575px) {
    .dashboard-content {
        padding: 0;
        background-color: transparent;
    }
}

@media (max-width: 767px) {
    .dashboard-content .right-content .cmn--btn {
        padding: 6px 20px;
    }

    .dashboard-content .right-content .cmn--btn.btn--outline {
        padding: 4px 20px;
    }
}

.noti-item {
    padding: 20px 0;
}

.noti-item:not(:last-child) {
    border-bottom: 1px solid hsl(var(--border));
}

@media (max-width: 575px) {
    .investment-card .card-header {
        background-color: hsl(var(--white));
    }
}

.plan-item {
    background-color: hsl(var(--white));
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    width: 100%;
    margin: 0 auto;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    transform: translateY(-4px);
}

.dashboard-inner .plan-item {
    box-shadow: none !important;
    border: 1px solid #e2e8f0;
}

.plan-item .rate {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.plan-btn {
    background-color: #2a3962 !important;
    border: 1px solid #2a3962 !important;
    width: 100%;
    border-radius: 10px;
}

.plan-section {
    background: linear-gradient(to top, #f5f6fa 430px, #0a0e27 110px);
}

@media(max-width:767px) {
    .plan-section {
        background: none;
    }
}

@media (min-width: 450px) {
    .plan-item {
        max-width: 450px;
    }
}

@media (min-width: 650px) {
    .plan-item {
        max-width: 100%;
        width: calc(50% - 12px);
    }
}

@media (min-width: 650px) and (max-width: 700px) {
    .plan-item {
        padding: 35px 30px;
    }
}

@media (min-width: 950px) {
    .plan-item {
        width: calc(50% - 12px);
    }
}

@media (min-width: 950px) and (max-width: 1300px) {
    .plan-item {
        padding: 35px 30px;
    }
}

@media (min-width: 1400px) {
    .plan-item {
        width: calc(33.3333333333% - 16px);
    }
}

@media (min-width: 1800px) {
    .plan-item {
        width: calc(25% - 18px);
    }
}

@media (max-width: 450px) {
    .plan-item {
        padding: 35px 30px;
    }
}

.plan-item .plan-name {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 12px;
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.1);
}

.plan-item .price-range {
    padding: 10px 0;
    border-radius: 15px;
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 1399px) {
    .plan-item .price-range {
        font-size: 32px;
    }
}

.plan-item.style--two {
    box-shadow: 0 2px 5px 3px hsl(var(--dark)/0.05);
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.plan-item.style--two .plan-name {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 22px;
}

@media (max-width: 1199px) {
    .plan-item.style--two {
        padding: 40px 25px;
    }

    .plan-item.style--two::before {
        transform: translate(-55%, 55%);
    }
}

.plan-item.style--two .plan-rate .rate {
    color: #2a3962;
    font-size: 60px;
}

.plan-item-two {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border));
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
}

@media (max-width: 1399px) {
    .plan-item-two {
        flex-wrap: wrap;
        flex-flow: column;
        gap: 20px;
        width: calc(33.3333333333% - 16px);
        border: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    }
}

@media (min-width: 1400px) {
    .plan-item-two:not(:last-child) {
        border-bottom: 0;
    }
}

@media (max-width: 991px) {
    .plan-item-two {
        width: calc(50% - 8px);
    }
}

@media (max-width: 650px) {
    .plan-item-two {
        width: 100%;
    }
}

.plan-item-two .plan-inner-div {
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 300px;
}

@media (min-width: 1400px) {
    .plan-item-two .plan-inner-div {
        padding-inline: 10px;
    }
}

@media (max-width: 1399px) {
    .plan-item-two .plan-inner-div {
        flex-grow: 1;
        max-width: 100%;
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }
}

.plan-item-two .plan-label {
    font-weight: 600;
}

.account-section {
    min-height: 100vh;
    background-color: #f2f3f5;
}

.account-section .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.account-form {
    padding: 40px;
    z-index: 1;
    position: relative;
    border-radius: 16px;
    background-color: hsl(var(--white));
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

@media (max-width: 450px) {
    .account-form {
        padding: 20px;
    }
}

.content-item:not(:last-child) {
    margin-bottom: 35px;
}

.content-item .title {
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid hsl(var(--border));
    border-radius: 16px;
    background-color: hsl(var(--white));
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item:not(:last-child) {
    margin-bottom: 24px;
}

.faq-item__title {
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.faq-item__title::before {
    content: "\f067";
    right: 15px;
    top: 18px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__content {
    padding: 20px;
    padding-top: 0;
    display: none;
}

.faq-item.active .faq-item__content {
    display: block;
}

.faq-item.open .faq-item__title::before {
    content: "\f068";
}

.link-color {
    color: hsl(var(--link-color));
}

.link-color:hover {
    color: hsl(var(--link-color-hover));
}

.work-process-card {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

.work-process-card i {
    padding: 15px;
    color: #f5f6fa;
    background: #2a3962;
    border-radius: 50px;
}

.plan-section {
    margin-top: -20px;
}

.menu-btn a {
    background: hsl(var(--base));
    border-radius: 10px;
    padding: 5px 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn a:hover {
    background: hsl(var(--base-h), var(--base-s), 55%);
}


.trx-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 1.625rem;
    margin-right: 12px;
}

.trx-icon.plus {
    background-color: rgba(40, 199, 111, 0.15);
    color: #28c76f;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.trx-icon.minus {
    background-color: rgba(234, 84, 85, 0.15);
    color: #ea5455;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.trx-table .plan-inner-div {
    padding-left: 0
}

.custom-input-box {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 0.125rem 0.5rem;
}

.custom-input-box label {
    color: #a0a0a0;
    font-size: 0.75rem;
    margin-bottom: 0;
}

.custom-input-box select,
.custom-input-box input {
    background-color: transparent;
    width: 100%;
    border: none;
    font-family: 'Inter', sans-serif;
    color: #373e4a;
    font-size: 0.875rem;
    font-weight: 500;
}

.custom-input-box input:focus,
.custom-input-box select:focus {
    outline: none;
}

.referral-link {
    position: relative;
}

.referral-link input {
    width: 100%;
    padding: 5px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.referral-link input:focus {
    outline: none;
    border: 1px solid hsl(var(--base));
    box-shadow: 0 0 0 3px hsl(var(--base)/0.15);
}

.referral-link span {
    text-align: center;
    position: absolute;
    width: 7%;
    top: 6px;
    right: 0;
    cursor: pointer;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto;
}

.breadcrumb-bg {
    background-color: #e9ecef;
}

.anchor-decoration {
    text-decoration: underline;
}

.pb--120 {
    padding-bottom: clamp(40px, 4vw, 40px);
}

.pt--120 {
    padding-top: clamp(40px, 4vw, 40px);
}

.container-1140 {
    max-width: 1140px;

}

.disabled {
    cursor: no-drop;
}

.announcements .announcement article {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-left: 4px solid #ccc;
    border-radius: 8px;
}

.announcements .announcement:last-child {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    border-bottom: none !important;
}

.bg-transparent {
    background: transparent;
}

.domain-search-icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    aspect-ratio: 1;
    padding: 5px;
    display: grid;
    place-items: center;
    color: #888;
}

.domain-search-icon~.form-control {
    padding-left: 45px;
}

.domain-search-icon-reset {
    position: absolute;
    right: 0px;
    transform: translateY(-50%);
    top: 50%;
    color: #888;
    visibility: visible;
    opacity: 1;
    cursor: pointer;
    margin-right: 4px;
    height: auto;
}

.fs-13 {
    font-size: 13px;
}

.custom-radius-10 {
    border-radius: 10px !important;
}

.user-dashboard .custom--card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
}

.widgets-icons-2 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--base)/0.1), hsl(var(--base)/0.2));
    font-size: 27px;
    border-radius: 14px;
}

.rounded--circle {
    border-radius: 50% !important;
}

.text--white {
    color: #fff !important;
}

.ms--auto {
    margin-left: auto !important;
}

.widgets-icons-2 i {
    color: hsl(var(--base));
}

.custom-border-top-success {
    border-top: 3px #198754 solid;
}

.custom-border-top-info {
    border-top: 3px #0dcaf0 solid;
}

.custom-border-top-warning {
    border-top: 3px #ffcd39 solid;
}

.custom-border-top-primary {
    border-top: 3px #4634ff solid;
}

.has-anchor {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.border-left-primary {
    border-left: 5px solid hsl(var(--base)) !important;
}

.menu li a.active {
    color: hsl(var(--base));
}

.subscribe {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 9;
}

@media (max-width: 500px) {
    .subscribe {
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 1630px) {
    .subscribe-btn {
        padding: 0;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
    }

    .subscribe-btn .text {
        display: none;
    }

    .subscribe-btn .icon {
        font-size: 18px;
        animation: ring 2s infinite ease;
    }
}

@keyframes ring {
    0% {
        transform: rotate(35deg);
    }

    12.5% {
        transform: rotate(-30deg);
    }

    25% {
        transform: rotate(25deg);
    }

    37.5% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(15deg);
    }

    62.5% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.subscribe-box {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 16px;
    width: 450px;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 25px;
    z-index: 99;
    border: 1px solid #e2e8f0;
    transform: scale(.95);
    visibility: hidden;
    opacity: 0;
    transition: .2s linear;
}

@media (max-width: 500px) {
    .subscribe-box {
        width: 300px;
        padding: 30px 15px;
    }
}

.subscribe-box::before {
    position: absolute;
    content: "";
    left: 55px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
    z-index: -1;
    border-style: solid;
    border-width: 1px;
    border-color: #0000 #e2e8f0 #e2e8f0 #00800000;
}

@media (max-width: 1630px) {
    .subscribe-box::before {
        left: 20px;
    }
}

.subscribe-box.show {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.subscribe__close {
    border: 0;
    outline: 0;
    background: transparent;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9;
    font-size: 15px;
}

@media (max-width: 500px) {
    .subscribe__close {
        right: 10px;
        top: 10px;
    }
}

.preloader {
    position: relative;
    display: grid;
    place-items: center;
    height: 100vh;
    background-color: hsl(var(--dark));
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9999;
}

.spinner {
    background: transparent;
    width: 80px;
    height: 80px;
    border: 7px solid transparent;
    border-top-color: hsl(var(--base));
    border-right-color: hsl(var(--base-400));
    border-bottom-color: hsl(var(--base-200));
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
    from {}

    to {
        transform: rotate(360deg);
    }
}


.sub-menu {
    min-width: 230px
}

.bg-dark-two {
    background-color: hsl(var(--dark)) !important;
    color: hsl(var(--white));
}

.custom-border-top-dark {
    border-top: 3px hsl(var(--dark)) solid;
}

.section-full {
    flex-grow: 1;
    flex-shrink: 1;
}


@media (max-width: 1199px) {
    .header-buttons {
        width: 100%;
    }

    .header-buttons .menu-btn {
        width: auto;
    }
}


.link-color.anchor-decoration {
    color: #fff;
}


@media (max-width: 991px) {
    .collapable-sidebar {
        position: fixed;
        left: 0;
        min-width: 320px;
        top: 0;
        background-color: hsl(var(--white));
        z-index: 9999;
        transform: translateX(-120%);
        transition: .3s linear;
        margin-right: 40px;
        border-radius: 0 16px 16px 0;
    }

    .collapable-sidebar__inner {
        height: 100vh;
        overflow-y: auto;
    }

    .collapable-sidebar.show {
        transform: translateX(0);
    }

    .collapable-sidebar__close {
        background-color: hsl(var(--base));
        border: 0;
        font-size: 20px;
        line-height: 1;
        color: #fff;
        position: absolute;
        right: -40px;
        top: 0;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0 10px 10px 0;
    }

    .show-sidebar-bar {
        font-size: 30px;
        color: hsl(var(--base));
        line-height: 1;
        display: inline-block;
    }

    .dashboard-bar {
        transform: translateY(-15px);
    }
}

@media (max-width: 424px) {
    .collapable-sidebar {
        min-width: 280px;
    }
}

.announcements .announcement article {
    border-left: 4px solid hsl(var(--base));
}

.widgets-icons-2 i,
.page-link {

    color: hsl(var(--base));
}

.pay-to {
    color: hsl(var(--base)) !important;
}

.page-item.active .page-link {
    background-color: hsl(var(--base));
}

.page-link:hover {
    color: hsl(var(--white)) !important;
    background-color: hsl(var(--base));
}

.badge--icon.disabled {
    background: hsl(var(--dark)/0.1) !important;
    color: hsl(var(--white)) !important;
    border: none;
    cursor: no-drop;
}


.add-cart {
    background-color: hsl(var(--base));
    font-size: 14px;
    padding: 4px 12px !important;
    border-radius: 8px;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

@media (max-width: 575px) {
    .add-cart {
        padding: 4px 6px !important;
        font-size: 12px;
    }
}

.add-cart:hover {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.service-category {
    padding: 50px 0;
}

@media (max-width: 991px) {
    .service-category {
        padding: 25px 0;
    }
}


.domain-card-wrapper {
    background-color: #e9ecef87;
    backdrop-filter: blur(49px);
    border-color: #dddddd94;
    border-radius: 16px;
}

@media only screen and (max-width: 575px) and (min-width: 424px) {
    .col-xsm-6 {
        width: 50%;
    }
}

.domain-card-wrapper:has(:not(.card)) {
    display: none;
}

.domain-card-wrapper:has(.card) {
    display: block;
}

/* Contact Card Css Start */
.contact-card {
    text-align: center;
    background-color: hsl(var(--white));
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

.contact-card:hover .contact-card__icon::before {
    transform: rotate(0deg);
}

.contact-card__icon {
    width: 45px;
    height: 45px;
    color: hsl(var(--base));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 12px;
    position: relative;
    margin: 8px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card__icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 2px solid hsl(var(--base));
    border-radius: inherit;
    transform: rotate(45deg);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card__title {
    padding-top: 15px;
}

.contact-card__desc {
    font-size: 16px;
}

.style-two .card-header {
    border-bottom: 1px solid rgb(80 80 80 / 7%);
}

.style-two {
    border-radius: 16px;
    overflow: hidden;
    border: 0;
}

/* Contact Card Css End */
.prcing-availble {
    position: absolute;
    top: 10px;
    right: 0px;
    padding: 5px;
    border-radius: 10px 0px 0px 10px;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.product-name {
    margin-bottom: 13px;
}

.pricing {
    padding-bottom: 15px;
    border-radius: 12px;
    border-bottom: 1px solid #dddddd6b;
    margin-bottom: 15px;
}

.pricing-header__price {
    margin-bottom: 7px;
}

.pricing-header__price .text {
    font-size: 16px;
    color: #00000091;
    font-weight: 500;
}

.pricing-header__time {
    margin-bottom: 3px;
    color: #00000091;
}

.pricing-header__setup {
    font-weight: 400;
}


select:focus-visible {
    border: 0;
    outline: 0;
}

select.langSel {
    background-color: transparent;
    color: #e1e1e1;
    border: 1px solid #ffffff45;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
}

@media (max-width: 575px) {
    select.langSel {
        padding: 3px;
        min-height: 29px;
    }
}

select.langSel option {
    color: hsl(var(--dark));
}

.contact-form.card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    border-radius: 16px;
}

.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    border-radius: 12px;
    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: hsl(var(--base));
    background-color: #fff;
    border-radius: 12px;
    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: hsl(var(--base));
    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.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

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

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid var(--hover-border-color);
    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.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.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: 10px;
    padding-block: 6px;
}

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

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
    }

}

.deposit-info__input-group .form--control {
    padding: 5px;
    border: 0;
    height: 35px;
    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;
}

.adjust-height .payment-system-list.is-scrollable {
    max-height: 461px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn.social-login-btn:hover {
    border: 1px solid hsl(var(--base));
}

.login-or{
    position: relative;
    padding: 12px 0px;
}
.login-or span{
    padding: 4px 10px;
    background-color: hsl(var(--white));
    z-index: 1;
    font-weight: 500;
}
.login-or:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0px;
    background-color: hsl(var(--dark) / 0.2);
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}


/* Premium Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Utility Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--accent-300)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
	border: 0 !important;
	margin-top: 8px !important;
	border-radius: 12px !important;
	box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.select2-search--dropdown {
	padding: 10px 10px !important;
	border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border-color: #eaeaea !important;
	padding: 10px 20px;
	background: transparent !important;
	color: hsl(var(--white)) !important;
	border-radius: 8px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
	padding: 12px 14px !important;
	border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
	text-align: center !important;
	padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
	width: 8px;
	border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
	background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
	background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
	position: absolute;
	right: 10px;
	top: 50%;
	content: "\f107";
	font-family: "Line Awesome Free";
	font-weight: 900;
	transition: .3s;
	transform: translateY(-50%);
}

.selection {
	width: 100%;
}

.select2-selection.select2-selection--single {
	background: hsl(var(--base-two));
	border-color: #eaeaea !important;
	color: hsl(var(--dark));
	padding: .375rem .75rem !important;
	line-height: 1.2;
	height: 45px !important;
	border-radius: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 45px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
	content: "\f106";
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: hsl(var(--dark)/.7) !important;
	line-height: 32px !important;
}

.select2-results__option:last-child {
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.select2-results__option:first-child {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #f1f1f1 !important;
	color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
	outline: 0 !important;
}

.select2-dropdown .country-flag {
	width: 25px;
	height: 25px;
	border-radius: 8px;
}

.select2-dropdown {
	background-color: #fff !important;
}

.select2-dropdown .gateway-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
	font-size: 12px;
	margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
	border-color: hsl(var(--base)/0.5) !important;
	border-radius: 10px !important;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: hsl(var(--dark) / 0.04) !important;
	color: hsl(var(--dark)) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
	border: 1px solid hsl(var(--dark)/.1) !important;
}

.select2 .dropdown-wrapper {
	display: none;
}

.select2-container:has(.select2-selection--single) {
	width: 100% !important;
}

.select2-results__option.select2-results__option--selected, .select2-results__option--selectable, .select2-container--default .select2-results__option--disabled{
    border-bottom: none !important;
}


.notification-alert .card-header{
    background-color: hsl(var(--dark)) !important;
    color: hsl(var(--white));
    border-radius: 12px 12px 0 0;
}


/* =====================================================================
   ===============  LUXURY DARK THEME OVERRIDES  =======================
   Palette: BG #050814 | Cards #0E1728 | Primary #081120
   Accent #6C4CFF | Blue #3B82F6 | Success #00D084
   Text #fff / #AEB8D0 | Borders rgba(255,255,255,.08)
   ===================================================================== */

/* ---- Base / Body ---- */
body {
    background-color: #050814 !important;
    color: #AEB8D0;
    font-size: 1.0625rem;
    line-height: 1.7;
}
html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
    color: #fff;
    letter-spacing: -0.03em;
}

p { color: #AEB8D0; }

a { color: #AEB8D0; }
a:hover { color: #fff; }

::placeholder { color: rgba(174,184,208,0.45) !important; }

/* ---- Typography scale (large premium headings) ---- */
h1 { font-size: 5rem; }
@media (max-width: 1199px) { h1 { font-size: 3.75rem; } }
@media (max-width: 767px)  { h1 { font-size: 2.75rem; } }
@media (max-width: 450px)  { h1 { font-size: 2.25rem; } }
h2 { font-size: 3rem; }
@media (max-width: 767px)  { h2 { font-size: 2.25rem; } }
h3 { font-size: 2rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.0625rem; }

/* ---- Background utility overrides ---- */
.bg--light { background-color: #050814 !important; }
.bg-white, .bg--white { background-color: #0E1728 !important; }
.bg-transparent { background: transparent !important; }
.breadcrumb-bg { background-color: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06); }
.bg-dark-two { background-color: #081120 !important; color: #fff; }

/* ---- Text utility overrides for dark ---- */
.text--secondary { color: #AEB8D0 !important; }
.text--dark { color: #fff !important; }
.text--muted, .text-muted { color: #7A86A1 !important; }
.text--body { color: #AEB8D0 !important; }

/* ---- Cards ---- */
.card,
.custom--card {
    background-color: #0E1728;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    color: #AEB8D0;
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
}
.card .card-body,
.custom--card .card-body { color: #AEB8D0; }
.custom--card .card-header,
.custom--card .card-footer,
.card .card-header,
.card .card-footer {
    background-color: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.07);
    color: #fff;
}
.card-header { color: #fff; }
.user-dashboard .custom--card,
.custom--card.custom-radius-10,
.custom-radius-10 {
    background-color: #0E1728 !important;
    box-shadow: none !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}
.card.custom-border-top-dark,
.custom-border-top-dark { border-top: 2px solid #6C4CFF !important; }
.contact-card { background-color: #0E1728; box-shadow: none; border: 1px solid rgba(255,255,255,0.08); }
.work-process-card { background: #0E1728; border: 1px solid rgba(255,255,255,0.08); }

/* card hover lift + glow */
.custom--card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(108,76,255,0.16);
    border-color: rgba(108,76,255,0.3);
}

/* ---- Buttons ---- */
.btn--base,
.cmn--btn {
    background: linear-gradient(135deg, #6C4CFF 0%, #3B82F6 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 12px;
    font-weight: 600;
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, opacity .3s;
}
.btn--base:hover,
.cmn--btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(108,76,255,0.4) !important;
    background: linear-gradient(135deg, #6C4CFF 0%, #3B82F6 100%) !important;
    color: #fff !important;
    opacity: .96;
}
.btn--base-outline {
    border: 1px solid rgba(255,255,255,0.15) !important;
    background: transparent !important;
    color: #fff !important;
    border-radius: 12px;
}
.btn--base-outline:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.28) !important;
    color: #fff !important;
}
.btn--outline-base { border-color: rgba(108,76,255,0.5); color: #fff; }
.btn--outline-base:hover { background: #6C4CFF; border-color: #6C4CFF; color: #fff; }
.add-cart {
    background: linear-gradient(135deg, #6C4CFF, #3B82F6);
    border: none;
    border-radius: 10px;
}
.menu-btn a { background: linear-gradient(135deg, #6C4CFF, #3B82F6); border-radius: 50px; }
.menu-btn a:hover { box-shadow: 0 8px 24px rgba(108,76,255,0.4); }
.btn:disabled { opacity: .5; }

/* ---- Forms ---- */
.form--control,
.form-control,
.form-select {
    background-color: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    color: #fff !important;
}
.form--control { height: 52px; }
.form--control:focus,
.form-control:focus,
.form-select:focus {
    border-color: #6C4CFF !important;
    box-shadow: 0 0 0 4px rgba(108,76,255,0.15) !important;
    background-color: rgba(255,255,255,0.06) !important;
    color: #fff !important;
}
.form--control.style--two { background-color: rgba(255,255,255,0.04) !important; }
.form-select option { background-color: #0E1728; color: #fff; }
.form-group label { color: rgba(255,255,255,0.85); }
.input-group-text {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #AEB8D0;
}
.custom-input-box {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}
.custom-input-box input,
.custom-input-box select { color: #fff; }
.custom-input-box label { color: #7A86A1; }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px #0E1728 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* ---- Tables ---- */
.table {
    background-color: #0E1728;
    border-radius: 16px;
    overflow: hidden;
    color: #AEB8D0;
}
.table thead tr { background: rgba(255,255,255,0.03); }
.table thead tr th { color: rgba(255,255,255,0.7); }
.table tbody tr td {
    color: #AEB8D0;
    border-color: rgba(255,255,255,0.06);
}
.table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.table tbody tr td::before { color: #fff; }
.domain-row { background: #0E1728; }
.domain-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ---- Badges ---- */
.badge { border-radius: 20px; }
.badge--base { background-color: rgba(108,76,255,0.15); border: 1px solid rgba(108,76,255,0.3); color: #A78BFA; }
.badge--success { background-color: rgba(0,208,132,0.15); border: 1px solid rgba(0,208,132,0.3); color: #00D084; }
.badge--danger { background-color: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }
.badge--warning { background-color: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: #fbbf24; }
.badge--info { background-color: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); color: #60a5fa; }
.badge--fill-base { background: linear-gradient(135deg,#6C4CFF,#3B82F6); border: none; color: #fff; }

/* ---- Pagination ---- */
.pagination .page-item a,
.pagination .page-item span,
.page-link {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #AEB8D0 !important;
    border-radius: 12px !important;
}
.pagination .page-item.active a,
.pagination .page-item.active span,
.page-item.active .page-link,
.pagination .page-item:hover a,
.pagination .page-item:hover span,
.page-link:hover {
    background: linear-gradient(135deg,#6C4CFF,#3B82F6) !important;
    border-color: transparent !important;
    color: #fff !important;
}

/* ---- Header / Navigation ---- */
.header {
    background-color: transparent !important;
    box-shadow: none;
}
.header.sticky {
    background-color: rgba(8,17,32,0.85) !important;
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.menu li a { color: rgba(255,255,255,0.72); }
.menu li a:hover, .menu li a.active { color: #fff; }
.sub-menu {
    background-color: rgba(12,18,36,0.97) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}
.sub-menu li a { color: rgba(255,255,255,0.78); }
.sub-menu li a:hover {
    background: linear-gradient(135deg, rgba(108,76,255,0.2), rgba(59,130,246,0.12)) !important;
    color: #fff !important;
}
@media (max-width: 1199px) {
    .menu { background: rgba(5,8,20,0.98); }
    .menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .menu li a { color: #fff; }
    .sub-menu { background: transparent !important; border: none; }
}
.header-trigger__icon { color: #fff; }
.langSel, select.langSel {
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
}
select.langSel option { color: #0E1728; }

/* ---- FAQ ---- */
.faq-item {
    background-color: #0E1728;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}
.faq-item.open {
    border-color: rgba(108,76,255,0.35);
    box-shadow: 0 10px 36px rgba(108,76,255,0.12);
}
.faq-item__title .title, .faq-item__title h6 { color: #fff; }
.faq-item__content p { color: #AEB8D0; }

/* ---- Plan items / pricing ---- */
.plan-item, .plan-item-two {
    background-color: #0E1728;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: none;
}
.plan-item .plan-name { background-color: rgba(108,76,255,0.12); color: #A78BFA; }
.plan-item .price-range, .plan-item .rate { color: #fff; }
.plan-section { background: none; }
.plan-btn { background: linear-gradient(135deg,#6C4CFF,#3B82F6) !important; border: none !important; }

/* ---- Dashboard widgets ---- */
.widgets-icons-2 {
    background: linear-gradient(135deg, rgba(108,76,255,0.18), rgba(59,130,246,0.12));
    border-radius: 16px;
}
.widgets-icons-2 i { color: #A78BFA; }
.border-left-primary { border-left: 4px solid #6C4CFF !important; }
.dashboard-widget { background: #0E1728; border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid #6C4CFF; }
.dashboard-content { background: #0E1728; box-shadow: none; border: 1px solid rgba(255,255,255,0.08); }
.dashboard-nav { background-color: #081120; box-shadow: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dashboard-sidebar { background-color: #081120; border-right: 1px solid rgba(255,255,255,0.06); }
.dashboard-wrapper { background-color: #050814; }
.sidebar-menu li a { color: #AEB8D0; }
.sidebar-menu li a.active, .sidebar-menu li a:hover {
    color: #fff;
    background-color: rgba(108,76,255,0.12);
}

/* ---- Alerts ---- */
.alert { background-color: #0E1728; color: #AEB8D0; }
.alert-warning { background-color: rgba(245,158,11,0.1) !important; color: #fbbf24 !important; }
.bg--navajowhite { background-color: rgba(245,158,11,0.08) !important; }

/* ---- Modals ---- */
.modal-content {
    background-color: #0E1728;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    color: #AEB8D0;
}
.modal-header, .modal-footer { border-color: rgba(255,255,255,0.07); }
.modal-title { color: #fff; }
.btn-close {
    filter: invert(1) grayscale(1) brightness(1.5);
}

/* ---- Sidebar (store / collapsible) ---- */
.collapable-sidebar { background-color: transparent; }
@media (max-width: 991px) {
    .collapable-sidebar { background-color: #081120; }
}
.list-group-item {
    background-color: transparent;
    border-color: rgba(255,255,255,0.06);
    color: #AEB8D0;
}
.list-group-item-action:hover { background-color: rgba(108,76,255,0.1); color: #fff; }

/* ---- Account / auth pages ---- */
.account-section { background-color: #050814; }
.account-form {
    background-color: #0E1728;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}
.login-or span { background-color: #0E1728; color: #AEB8D0; }
.login-or:before { background-color: rgba(255,255,255,0.12); }
.btn.social-login-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff;
}

/* ---- Subscribe box ---- */
.subscribe-box {
    background-color: #0E1728;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.subscribe-box::before { background-color: #0E1728; border-color: rgba(255,255,255,0.08); }
.subscribe-box__title { color: #fff; }
.subscribe__close { color: #AEB8D0; }

/* ---- Preloader ---- */
.preloader { background-color: #050814; }
.spinner { border-color: #6C4CFF; border-top-color: transparent; }

/* ---- Overlay ---- */
.overlay { background-color: rgba(5,8,20,0.8); backdrop-filter: blur(6px); }

/* ---- Announcements / blog ---- */
.announcements .announcement article {
    background-color: rgba(255,255,255,0.03);
    border-left: 4px solid #6C4CFF;
    color: #AEB8D0;
}

/* ---- Payment / gateway ---- */
.payment-system-list { background-color: #0E1728; }
.payment-item { border-top-color: rgba(255,255,255,0.06); }
.payment-item:has(.payment-item__radio:checked) { border-left: 3px solid #6C4CFF; }
.payment-item__btn { background: transparent; border-color: rgba(255,255,255,0.06); color: #fff; }
.payment-card-title { background: linear-gradient(135deg,#6C4CFF,#3B82F6); }
.deposit-info__input-group, .deposit-info__input-select { border-color: rgba(255,255,255,0.1); }

/* ---- Misc text on dark ---- */
.fw-bold, strong, b { color: inherit; }
.border, .border-top, .border-bottom, .border-start, .border-end {
    border-color: rgba(255,255,255,0.08) !important;
}
hr { border-color: rgba(255,255,255,0.1); }
.text-dark { color: #fff !important; }
.pay-to { color: #A78BFA !important; }

/* ---- Anchor decoration links (footer/breadcrumb) ---- */
.anchor-decoration.text--base { color: #AEB8D0 !important; }
.anchor-decoration.text--base:hover { color: #6C4CFF !important; }

/* ---- Select2 dark ---- */
.select2-dropdown { background-color: #0E1728 !important; border: 1px solid rgba(255,255,255,0.08) !important; }
.select2-selection.select2-selection--single {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.1) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff !important; }
.select2-results__option { color: #AEB8D0 !important; }
.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgba(108,76,255,0.15) !important;
    color: #fff !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(255,255,255,0.04) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.1) !important;
}

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(.95); } to { opacity:1; transform:scale(1); } }
@keyframes floatY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes glowPulse { 0%,100% { box-shadow:0 0 20px rgba(108,76,255,0.2); } 50% { box-shadow:0 0 40px rgba(108,76,255,0.45); } }
@keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
@keyframes shimmerMove { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }

.animate-fade-up { animation: fadeInUp .6s ease-out both; }
.animate-fade-in { animation: fadeIn .5s ease-out both; }
.animate-scale-in { animation: scaleIn .4s ease-out both; }
.glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(14,23,40,0.7);
    border: 1px solid rgba(255,255,255,0.08);
}
.gradient-text {
    background: linear-gradient(135deg,#6C4CFF,#3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glow-border { border: 1px solid rgba(108,76,255,0.3); box-shadow: 0 0 20px rgba(108,76,255,0.12); }
