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

#offer-details-offcanvas-sidebar,
#dashboard-offcanvas-sidebar {
    background: #FFF !important;
}

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

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

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

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

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

    100% {
        opacity: 0;
    }
}


.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #d1d1d1;
    border-radius: 5px;
}

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

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

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}


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

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

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

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

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

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

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

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


.show-filter {
    display: none;
}

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

    .show-filter {
        display: block;
    }
}


/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

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

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: hsl(var(--black)/.2) !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.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: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: .3s;
}

.select2-container--default .select2-selection--single {
    border-color: #ced4da !important;
    border-width: 2px !important;
    border-radius: .375rem !important;
    padding: .375rem .75rem !important;
    height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
    transform: rotate(-180deg);
}

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

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

.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 {
    border-color: rgb(var(--main)) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
}

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

.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)) !important;
    border-radius: .375rem !important;
}


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

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

}


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

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

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

}

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

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

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

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

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

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

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

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

}

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

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

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

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


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

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

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

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

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        background-color: transparent;
        border: none;
    }

}

.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 #e0e0e0;
}

.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;
    background-color: hsl(var(--base));
}

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

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

.payment-item__btn-text {
    color: hsl(var(--white));
}

.payment-item__btn__icon {
    color: hsl(var(--white));
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

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

.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: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: .3s;
}

.select2-container--default .select2-selection--single {
    border-color: hsl(var(--black)/.2) !important;
    border-width: 1px !important;
    border-radius: 8px !important;
    padding: .375rem .75rem !important;
    height: 49px !important;
}

.selection {
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: hsl(var(--body-color));
    line-height: 2;
}

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

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

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

.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 {
    border-color: hsl(var(--base-two) / 0.1) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
}

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

.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)) !important;
    border-radius: .375rem !important;
}

.payment-options-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.payment-options-content {
    margin-top: 18px;
    border-radius: 5px;
}

.payment-options {
    background: hsl(var(--black)/0.05);
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    position: relative;
    height: 180px;
    text-align: center;
    width: 100%;
    flex: 1;
    min-width: 270px;

}

.payment-options .active-badge {
    color: hsl(var(--white)) !important;
}

.payment-options-content h4 {
    font-size: 20px;
}

.payment-options-content p {
    font-size: 12px;
}

.payment-options.active {
    border-color: hsl(var(--base));
    position: relative;
}

.payment-options .active-badge {
    display: none;
}

.payment-options.active .active-badge {
    right: 0px;
    top: -1px;
    position: absolute;
    color: #000;
    background: hsl(var(--base));
    text-align: right;
    width: 50px;
    height: 40px;
    padding-right: 4px;
    clip-path: polygon(100% 0, 0 1%, 100% 100%);
    display: block;
}

.btn-close {
    background: unset;
}

.btn-close:active {
    box-shadow: unset !important;
}

.btn-close:focus {
    box-shadow: unset;
}

.custom--modal .modal-icon i {
    font-size: 16px;
    width: 100%;
    height: 100%;
    border-width: 1px;
}

.custom--modal .btn-close {
    width: 25px;
    height: 25px;
}

.btn:has(.btn--icon) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

label.required:after {
    content: '*';
    color: #DC3545 !important;
    margin-left: 2px;
}


/* select2 css start here  */
.select2-container:has(.select2-selection--single) {
    width: 100% !important;
}

/* ==================== Modern Project Card Styles ==================== */
.modern-project-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.modern-card-header {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px 16px 0 0;
}

/* ROI Badge */
.roi-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.roi-label {
    margin-right: 4px;
}

.roi-percentage {
    font-weight: 700;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.status-badge.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.status-badge.closed {
    background: #ef4444;
    color: white;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

/* Project Image */
.project-image {
    padding: 5px;
    text-align: center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image a {
    display: block;
}

.project-image img {
    object-fit: contain;
    border-radius: 8px;
}

/* Card Body */
.modern-card-body {
    padding: 10px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Project Title */
.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
}

.project-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-title a:hover {
    color: #3b82f6;
}

/* Per Share Section */
.per-share-section {
    margin-bottom: 10px;
    text-align: center;
    background: #f8fffe;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #dcfce7;
}

.per-share-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.per-share-price {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

/* Project Details */
.project-details {
    flex: 1;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
    text-align: right;
}

/* Invest Button */
.invest-button-section {
    margin-top: auto;
}

.invest-btn {
    display: block;
    width: 100%;
    padding: 10px 24px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 45px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.invest-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.invest-btn.closed {
    background: #ef4444;
    cursor: not-allowed;
}

.invest-btn.closed:hover {
    background: #ef4444;
    transform: none;
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .modern-project-card {
        margin-bottom: 20px;
    }

    .project-image {
        padding: 0px 5px 5px;
        min-height: 120px;
    }

    .project-image img {}

    .modern-card-body {
        padding: 20px;
    }

    .project-title {
        font-size: 18px;
    }

    .per-share-price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .roi-badge,
    .status-badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .detail-label,
    .detail-value {
        font-size: 13px;
    }
}

/* ==================== Banner Slider Styles ==================== */
.banner-slider-section {
    position: relative;
    overflow: hidden;
}

.banner-slider-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: white;
}

.banner-content__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content__subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-content__desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.banner-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

.banner-slider-prev,
.banner-slider-next {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.banner-slider-prev {
    left: 25px;
}

.banner-slider-next {
    right: 25px;
}

.banner-slider-prev:hover,
.banner-slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Slider Dots */
.banner-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.banner-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.banner-slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.banner-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Button Styles in Slider */
.banner-content__button {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner-content__button .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.banner-content__button .btn--base:hover {
    background: transparent;
    color: hsl(var(--base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banner-content__button .btn-outline--white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.banner-content__button .btn-outline--white:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Counter List Styling */
.counterup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.counterup-list-item {
    text-align: center;
    color: white;
}

.counterup-list-item__number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--base));
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counterup-list-item__text {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-content__title {
        font-size: 3rem;
    }

    .banner-content__subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .banner-slider-wrapper {
        height: 80vh;
        min-height: 500px;
    }

    .banner-content__title {
        font-size: 2.5rem;
    }

    .banner-content__subtitle {
        font-size: 1.4rem;
    }

    .banner-content__desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .banner-slider-wrapper {
        height: 70vh;
        min-height: 450px;
    }

    .banner-content__title {
        font-size: 2rem;
    }

    .banner-content__subtitle {
        font-size: 1.2rem;
    }

    .banner-content__desc {
        font-size: 1rem;
    }

    .banner-content__button {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-content__button .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .banner-slider-prev,
    .banner-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        display: none;
    }

    .banner-slider-nav {
        padding: 0 15px;
    }

    .counterup-list {
        gap: 20px;
        justify-content: center;
    }

    .counterup-list-item__number {
        font-size: 2rem;
    }

    .counterup-list-item__text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .banner-slider-wrapper {
        height: 60vh;
        min-height: 400px;
    }

    .banner-content__title {
        font-size: 1.8rem;
    }

    .banner-content__subtitle {
        font-size: 1.1rem;
    }

    .banner-slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .banner-slider-dots {
        bottom: 20px;
    }

    .banner-content__button .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Animation for Content */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-slide.active .banner-content__title {
    animation: slideInUp 0.6s ease 0.2s both;
}

.banner-slide.active .banner-content__subtitle {
    animation: slideInUp 0.6s ease 0.4s both;
}

.banner-slide.active .banner-content__desc {
    animation: slideInUp 0.6s ease 0.6s both;
}

.banner-slide.active .banner-content__button {
    animation: slideInUp 0.6s ease 0.8s both;
}

.banner-slide.active .counterup-list {
    animation: slideInUp 0.6s ease 1s both;
}

/* --- Bonoloy Design System --- */
:root {
    --gc-bg: #ffffff;
    --gc-bg-alt: #f4faf4;
    --gc-bg-card: #ffffff;
    --gc-gold: #3a9436;
    --gc-gold-bright: #2e7d2e;
    --gc-text: #4a5568;
    --gc-title: #1a3c1a;
    --gc-border: rgba(58, 148, 54, 0.3);
    --gc-border-light: rgba(58, 148, 54, 0.15);
    --gc-font-title: 'Playfair Display', serif;
    --gc-font-body: 'Outfit', sans-serif;
    --gc-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gc-accent-gold: #fc5701;
    /* Package / installment accent — the logo orange. Kept separate from
       --gc-gold because the-project page overrides that token to a golden. */
    --pkg-accent: #fc5701;
    --pkg-accent-dark: #d84800;
    --pkg-accent-soft: rgba(252, 87, 1, .10);
    --pkg-accent-line: rgba(252, 87, 1, .30);
}

body {
    background-color: var(--gc-bg);
    color: var(--gc-text);
    font-family: 'Hind Siliguri', 'Outfit', sans-serif;
}

/* Base Headings Style */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Hind Siliguri', serif;
    color: var(--gc-title);
}

/* Global Section Title & Subtitle Styling */
.section-title {
    font-family: 'Playfair Display', 'Hind Siliguri', serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #1a3c1a !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
}

.section-subtitle {
    font-family: 'Outfit', 'Hind Siliguri', sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: #fc5701 !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    display: inline-block !important;
}

.section-desc {
    font-family: 'Outfit', 'Hind Siliguri', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    max-width: 700px !important;
    margin: 0 auto 50px auto !important;
    color: #4a5568 !important;
}

/* Pillars Cards Styling */
.pillar-card-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #1a3c1a !important;
}

.pillar-card-desc {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
}

/* ==========================================================================
   Redesigned Centered Login & Register Forms
   ========================================================================== */

/* Full-screen Account Container */
.account {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    padding: 60px 20px !important;
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
}

/* Background overlay with deep green gradient and glassmorphism backdrop blur */
.account::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(16, 72, 40, 0.65) 0%, rgba(10, 38, 21, 0.8) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: -1 !important;
}

/* Hide the old left split-screen pane */
.account-left {
    display: none !important;
}

/* Style account-right as a wrapper centering its content */
.account-right {
    width: 100% !important;
    max-width: 100% !important;
    background-color: transparent !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
}

/* Centered Form Card */
.account-form {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin: 0 auto !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 40px 35px !important;
    width: 100% !important;
    max-width: 480px !important;
    /* Width for Login Form */
    transition: all 0.3s ease !important;
}

/* Registration Form layout can be slightly wider for side-by-side fields */
.account-form.account-register-form {
    max-width: 650px !important;
}

/* Header logo and title styling */
.account-form__header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 25px !important;
}

.account-form__header .account-logo {
    display: inline-block !important;
    margin-bottom: 12px !important;
    transition: transform 0.3s ease !important;
}

.account-form__header .account-logo:hover {
    transform: scale(1.05) !important;
}

.account-form__header .account-logo img {
    max-height: 55px !important;
    width: auto !important;
}

.account-form-headings {
    width: 100% !important;
    text-align: center !important;
}

.account-form-headings__subtitle {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 4px !important;
    display: block !important;
    font-family: 'Outfit', sans-serif !important;
}

.account-form-headings__title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a3c1a !important;
    margin: 0 !important;
    font-family: 'Playfair Display', serif !important;
}

/* Form Input Controls styling */
.account-form .form--control {
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    color: #2d3748 !important;
    background-color: #f7fafc !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Outfit', sans-serif !important;
}

.account-form .form--control:focus {
    border-color: hsl(var(--base)) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px hsla(var(--base), 0.15) !important;
    outline: 0 !important;
}

.account-form .form-group {
    margin-bottom: 20px !important;
}

.account-form label.form--label,
.account-form label.form-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Password Eye Toggle Input Group */
.account-form .input-group-password {
    position: relative !important;
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
}

.account-form .input-group-password .form--control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    flex: 1 1 auto !important;
    width: 1% !important;
}

.account-form .input-group-password .input-group-btn {
    background-color: #f7fafc !important;
    border: 1px solid #cbd5e0 !important;
    border-left: none !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    color: #718096 !important;
    padding: 0 16px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
}

.account-form .input-group-password:focus-within .input-group-btn {
    border-color: hsl(var(--base)) !important;
    background-color: #ffffff !important;
}

/* Checkbox & Agree/Remember styling */
.account-form .form--check .form-check-input {
    border-color: #cbd5e0 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 16px !important;
    height: 16px !important;
    margin-top: 3px !important;
}

.account-form .form--check .form-check-input:checked {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
}

.account-form .form-check-label {
    font-size: 13.5px !important;
    color: #4a5568 !important;
    cursor: pointer !important;
    font-family: 'Outfit', sans-serif !important;
    padding-left: 6px !important;
    user-select: none !important;
}

.account-form .form-check-label a {
    color: hsl(var(--base)) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.account-form .form-check-label a:hover {
    text-decoration: underline !important;
}

/* Action Button styling */
.account-form .btn--action {
    background-color: hsl(var(--base)) !important;
    border: 1px solid hsl(var(--base)) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 12px 24px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px hsla(var(--base), 0.15) !important;
    font-family: 'Outfit', sans-serif !important;
}

.account-form .btn--action:hover {
    filter: brightness(0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px hsla(var(--base), 0.25) !important;
}

/* Links & CTA text styling */
.account-form__link {
    color: hsl(var(--base)) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-size: 13.5px !important;
    font-family: 'Outfit', sans-serif !important;
}

.account-form__link:hover {
    color: hsl(var(--base)) !important;
    text-decoration: underline !important;
    filter: brightness(0.85) !important;
}

.account-form__cta-text {
    font-size: 14px !important;
    color: #718096 !important;
    margin-top: 25px !important;
    text-align: center !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Social Login section styling */
.account-form-social-login {
    margin-top: 25px !important;
    text-align: center !important;
}

.account-form-social-login__title {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #718096 !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    font-family: 'Outfit', sans-serif !important;
}

.account-form-social-login__title::before,
.account-form-social-login__title::after {
    content: "" !important;
    flex: 1 !important;
    height: 1px !important;
    background-color: #e2e8f0 !important;
}

.account-form-social-login__title::before {
    margin-right: 15px !important;
}

.account-form-social-login__title::after {
    margin-left: 15px !important;
}

.account-social-login {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}

.account-social-login__link {
    flex: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border: 1px solid #cbd5e0 !important;
    background-color: #ffffff !important;
    color: #4a5568 !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif !important;
}

.account-social-login__link:hover {
    background-color: #f7fafc !important;
    border-color: #cbd5e0 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.account-social-login__link.google {
    color: #db4437 !important;
}

.account-social-login__link.google:hover {
    border-color: #db4437 !important;
    background-color: rgba(219, 68, 55, 0.02) !important;
}

.account-social-login__link.facebook {
    color: #4267b2 !important;
}

.account-social-login__link.facebook:hover {
    border-color: #4267b2 !important;
    background-color: rgba(66, 103, 178, 0.02) !important;
}

.account-social-login__link.linkedin {
    color: #0077b5 !important;
}

.account-social-login__link.linkedin:hover {
    border-color: #0077b5 !important;
    background-color: rgba(0, 119, 181, 0.02) !important;
}

/* Extra responsive tweaks */
@media (max-width: 575px) {
    .account-form {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }

    .account-form__header {
        margin-bottom: 20px !important;
    }

    .account-form-headings__title {
        font-size: 20px !important;
    }
}

/* ==========================================================================
   Premium Onboarding / User Data Form Card Redesign
   ========================================================================== */

.premium-form-card {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    padding: 40px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.premium-form-card .card-body {
    padding: 0 !important;
}

/* Header style inside the card */
.premium-card-header {
    text-align: center !important;
    margin-bottom: 35px !important;
}

.premium-card-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #1a3c1a !important;
    margin-bottom: 8px !important;
    font-family: 'Playfair Display', serif !important;
}

.premium-card-subtitle {
    font-size: 14px !important;
    color: #718096 !important;
    font-family: 'Outfit', sans-serif !important;
    margin: 0 !important;
}

/* General inputs inside user-section */
.user-section .form--control {
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    padding: 11px 16px !important;
    font-size: 14.5px !important;
    color: #2d3748 !important;
    background-color: #f7fafc !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Outfit', sans-serif !important;
}

.user-section .form--control:focus {
    border-color: hsl(var(--base)) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px hsla(var(--base), 0.15) !important;
    outline: 0 !important;
}

.user-section label.form-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: 'Outfit', sans-serif !important;
}

.user-section .form-group {
    margin-bottom: 22px !important;
}

/* Mobile Input Group overrides */
.user-section .input-group {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
}

.user-section .input-group .mobile-code {
    background-color: #f7fafc !important;
    border: 1px solid #cbd5e0 !important;
    border-right: none !important;
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    color: #4a5568 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.25s ease !important;
    font-family: 'Outfit', sans-serif !important;
}

.user-section .input-group .form--control {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    flex: 1 1 auto !important;
    width: 1% !important;
}

.user-section .input-group:focus-within .mobile-code {
    border-color: hsl(var(--base)) !important;
    background-color: #ffffff !important;
}

/* Custom Select2 Dropdown Styling */
.user-section .select2-container--default .select2-selection--single {
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    height: 48px !important;
    background-color: #f7fafc !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.user-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #2d3748 !important;
    font-size: 14.5px !important;
    padding-left: 16px !important;
    font-family: 'Outfit', sans-serif !important;
}

.user-section .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 12px !important;
}

.user-section .select2-container--default.select2-container--focus .select2-selection--single,
.user-section .select2-container--default.select2-container--open .select2-selection--single {
    border-color: hsl(var(--base)) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px hsla(var(--base), 0.15) !important;
    outline: 0 !important;
}

/* Submit Button styling */
.user-section .btn--base {
    background-color: hsl(var(--base)) !important;
    border: 1px solid hsl(var(--base)) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px hsla(var(--base), 0.15) !important;
    font-family: 'Outfit', sans-serif !important;
    margin-top: 10px !important;
}

.user-section .btn--base:hover {
    filter: brightness(0.9) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px hsla(var(--base), 0.25) !important;
}

/* Responsiveness for premium card */
@media (max-width: 768px) {
    .premium-form-card {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }

    .premium-card-title {
        font-size: 22px !important;
    }
}

/* ==========================================================================
   Dashboard Premium Brand Color Overrides
   ========================================================================== */

/* Top Navigation Bar */
.page-wrapper.default-version .navbar-wrapper {
    background: linear-gradient(135deg, #1a3c1a 0%, #2e7d34 100%) !important;
    border-bottom: 2px solid #dfb15b !important;
    /* Premium Gold Accent Line */
    box-shadow: 0 4px 12px rgba(26, 60, 26, 0.15) !important;
}

/* Search bar inside header */
.page-wrapper.default-version .navbar-wrapper .navbar-search-field {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.page-wrapper.default-version .navbar-wrapper .navbar-search-field:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #dfb15b !important;
    box-shadow: 0 0 0 3px rgba(223, 177, 91, 0.25) !important;
}

/* Sidebar active item styling */
.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-menu-item.active>a {
    background: linear-gradient(135deg, #1a3c1a 0%, #3a9436 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(26, 60, 26, 0.2) !important;
}

.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-submenu .sidebar-menu-item.active>a {
    background: linear-gradient(135deg, #1a3c1a 0%, #3a9436 100%) !important;
    color: #ffffff !important;
}

/* Sidebar dropdown chevron icon color */
.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-dropdown>a::before {
    color: #3a9436 !important;
}

/* Submenu container background */
.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-submenu {
    background: rgba(58, 148, 54, 0.06) !important;
    border-radius: 8px !important;
}

/* Sidebar brand version label */
.page-wrapper.default-version .sidebar .version-info .text--primary {
    color: #1a3c1a !important;
    font-weight: 700 !important;
}

.page-wrapper.default-version .sidebar .version-info .text--success {
    color: #3a9436 !important;
}

/* Analytics Cards general improvements */
.page-wrapper.default-version .dashboard-analytics-card {
    border: 1px solid rgba(58, 148, 54, 0.15) !important;
    box-shadow: 0 8px 30px rgba(26, 60, 26, 0.04) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.page-wrapper.default-version .dashboard-analytics-card:hover {
    border-color: #3a9436 !important;
    box-shadow: 0 12px 35px rgba(26, 60, 26, 0.09) !important;
    transform: translateY(-4px) !important;
}

.page-wrapper.default-version .dashboard-analytics-card__name {
    color: #1a3c1a !important;
    /* Deep forest green */
}

/* SVG icon background inside dashboard cards */
.page-wrapper.default-version .dashboard-analytics-card__thumb {
    background: rgba(58, 148, 54, 0.07) !important;
    border: 1px solid rgba(58, 148, 54, 0.18) !important;
    color: #3a9436 !important;
}

.page-wrapper.default-version .dashboard-analytics-card__thumb svg path {
    fill: #3a9436 !important;
}

/* Gradient effect on numbers/amounts */
.page-wrapper.default-version .dashboard-analytics-card__total {
    background: linear-gradient(135deg, #1a3c1a 0%, #3a9436 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Buttons in dashboard */
.page-wrapper.default-version .btn--outline {
    border: 1px solid #3a9436 !important;
    color: #3a9436 !important;
    background: transparent !important;
    transition: all 0.25s ease !important;
}

.page-wrapper.default-version .btn--outline:hover {
    background: #3a9436 !important;
    color: #ffffff !important;
    border-color: #3a9436 !important;
}

/* Section Title & Underlines */
.page-wrapper.default-version .card-title,
.page-wrapper.default-version h5.card-title,
.page-wrapper.default-version h6.card-title,
.page-wrapper.default-version h4.card-title {
    color: #1a3c1a !important;
}

/* Tables design */
.page-wrapper.default-version table thead tr th {
    background-color: #1a3c1a !important;
    /* Deep green */
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 14px 16px !important;
}

.page-wrapper.default-version table thead tr {
    background-color: #1a3c1a !important;
}

/* Scrollbar customization in sidebar */
.page-wrapper.default-version .sidebar__menu-wrapper::-webkit-scrollbar-track {
    background: #11341a !important;
}

.page-wrapper.default-version .sidebar__menu-wrapper::-webkit-scrollbar-thumb {
    background: #3a9436 !important;
}

.page-wrapper.default-version .sidebar__menu-wrapper::-webkit-scrollbar-thumb:hover {
    background: #dfb15b !important;
    /* Gold on hover! */
}

/* Sidebar Hover Overrides (Fixing blue text and blue shadows) */
.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-menu-item>a:hover {
    background-color: rgba(58, 148, 54, 0.05) !important;
    color: #3a9436 !important;
}

.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-menu-item>a:hover .menu-icon {
    color: #3a9436 !important;
    text-shadow: none !important;
    /* Remove blue shadow */
}

.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-menu-item>a:hover .menu-title {
    color: #3a9436 !important;
}

/* Sidebar submenu link hover */
.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-submenu .sidebar-menu-item>a:hover {
    background-color: rgba(58, 148, 54, 0.1) !important;
    color: #3a9436 !important;
}

.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-submenu .sidebar-menu-item>a:hover .menu-icon {
    color: #3a9436 !important;
    text-shadow: none !important;
}

/* Disable duplicate CSS chevron on sidebar dropdowns */
.page-wrapper.default-version .sidebar .sidebar__menu .sidebar-dropdown>a::before {
    display: none !important;
    content: none !important;
}

/* Premium Button Styling (Force white text on active base buttons) */
.btn--base,
.page-wrapper.default-version .btn--base {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1a3c1a 0%, #3a9436 100%) !important;
    border: none !important;
}

.btn--base:hover,
.page-wrapper.default-version .btn--base:hover,
.btn--base:focus,
.page-wrapper.default-version .btn--base:focus,
.btn--base:active,
.page-wrapper.default-version .btn--base:active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #122b12 0%, #2e7a2b 100%) !important;
}

/* Force correct style on disabled buttons */
.btn--base:disabled,
.page-wrapper.default-version .btn--base:disabled,
.btn:disabled,
.page-wrapper.default-version .btn:disabled,
.btn.disabled,
.page-wrapper.default-version .btn.disabled {
    background-color: #e2e8f0 !important;
    background: #e2e8f0 !important;
    color: #a0aec0 !important;
    border: 1px solid #cbd5e0 !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}

.btn--base:disabled:hover,
.page-wrapper.default-version .btn--base:disabled:hover,
.btn:disabled:hover,
.page-wrapper.default-version .btn:disabled:hover {
    background-color: #e2e8f0 !important;
    background: #e2e8f0 !important;
    color: #a0aec0 !important;
    border-color: #cbd5e0 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   Generic Page Header (Policy / Cookie Policy / CMS pages)
   ========================================================================== */
.breadcrumb {
    background: url('/assets/images/frontend/breadcrumb/66ebd313565dc1726731027.jpg') center/cover no-repeat !important;
    padding: 200px 0 150px 0 !important;
}

.breadcrumb::before {
    background: rgba(10, 40, 10, 0.65) !important;
}

.breadcrumb__title {
    font-family: 'Playfair Display', 'Hind Siliguri', serif !important;
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 120px 0 60px 0 !important;
    }

    .breadcrumb__title {
        font-size: 32px !important;
    }
}

/* User Dashboard: plain heading, no hero photo */
.page-wrapper.default-version .breadcrumb {
    background: transparent !important;
    padding: 0 0 0 0 !important;
}

.page-wrapper.default-version .breadcrumb::before {
    display: none !important;
}

.page-wrapper.default-version .breadcrumb__title {
    color: #1a3c1a !important;
    font-family: 'Playfair Display', 'Hind Siliguri', serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    text-align: left !important;
    margin: 0 !important;
}

/* Policy / CMS Page Content */
.offer-details-desc {
    color: #4a5568;
    font-family: 'Outfit', 'Hind Siliguri', sans-serif;
    line-height: 1.7;
}

.offer-details-desc h3 {
    font-family: 'Playfair Display', 'Hind Siliguri', serif;
    color: #1a3c1a;
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.offer-details-desc h6:empty,
.offer-details-desc h6 {
    display: none;
}

.offer-details-desc ul {
    padding-left: 20px;
}

.offer-details-desc li {
    margin-bottom: 12px;
}

.offer-details-desc li:empty,
.offer-details-desc li:has(> br:only-child) {
    display: none;
}

.offer-details-desc hr {
    border-color: rgba(58, 148, 54, 0.2);
    margin: 30px 0;
}

/* ==========================================================================
   Align legacy .section-heading blocks (Testimonial, Featured In) with the
   Bonoloy Design System used by every other homepage section
   ========================================================================== */
.section-heading__sec-name {
    font-family: 'Outfit', 'Hind Siliguri', sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: #fc5701 !important;
    font-weight: 600 !important;
}

.section-heading__sec-name img {
    display: none;
}

.section-heading__title {
    font-family: 'Playfair Display', 'Hind Siliguri', serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #1a3c1a !important;
    line-height: 1.3 !important;
}

.section-heading__title span {
    color: #3a9436 !important;
}

.section-heading__desc {
    font-family: 'Outfit', 'Hind Siliguri', sans-serif !important;
    color: #4a5568 !important;
}

@media (max-width: 768px) {
    .section-heading__title {
        font-size: 32px !important;
    }
}
/* ---------- Installment context banner (checkout) ---------- */
.installment-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 18px 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gc-bg-alt, #f4faf4) 0%, #ffffff 100%);
    border: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-left: 4px solid var(--gc-gold, #3a9436);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(26, 60, 26, .05);
}

.installment-banner__main {
    min-width: 0;
}

.installment-banner__badge {
    display: inline-block;
    padding: 3px 12px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1.6;
    color: #fff;
    background: var(--gc-gold, #3a9436);
    border-radius: 30px;
}

.installment-banner__title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
    line-height: 1.4;
}

.installment-banner__package {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gc-gold-bright, #2e7d2e);
    background: rgba(58, 148, 54, .1);
    border-radius: 20px;
    vertical-align: middle;
}

.installment-banner__meta {
    margin: 0;
    font-size: 14px;
    color: var(--gc-text, #4a5568);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.installment-banner__meta i {
    color: var(--gc-gold, #3a9436);
    font-size: 16px;
}

.installment-banner__amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
}

.installment-banner__amount-label {
    font-size: 13px;
    color: var(--gc-text, #4a5568);
    margin-bottom: 2px;
}

.installment-banner__amount-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gc-title, #1a3c1a);
}

/* Overdue variant */
.installment-banner--overdue {
    background: linear-gradient(135deg, #fdf3f3 0%, #ffffff 100%);
    border-color: rgba(220, 53, 69, .2);
    border-left-color: #dc3545;
}

.installment-banner--overdue .installment-banner__badge {
    background: #dc3545;
}

.installment-banner--overdue .installment-banner__meta i {
    color: #dc3545;
}

.installment-banner__overdue-tag {
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #dc3545;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .installment-banner {
        padding: 16px 18px;
    }

    .installment-banner__amount {
        align-items: flex-start;
        text-align: left;
        margin-left: 0;
        width: 100%;
        padding-top: 12px;
        border-top: 1px dashed var(--gc-border-light, rgba(58, 148, 54, .15));
    }

    .installment-banner__amount-value {
        font-size: 21px;
    }
}

/* ---------- In-panel investment page ---------- */
/* Detail page */
.invest-detail__thumb {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--gc-bg-alt, #f4faf4);
}

.invest-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invest-detail__title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.invest-detail__meta {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.invest-detail__meta li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--gc-border-light, rgba(58, 148, 54, .15));
}

.invest-detail__meta li:last-child {
    border-bottom: 0;
}

.invest-detail__meta span {
    color: var(--gc-text, #4a5568);
}

.invest-detail__meta strong {
    color: var(--gc-title, #1a3c1a);
    font-weight: 600;
}

.invest-detail__desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gc-text, #4a5568);
}

/* project descriptions are pasted HTML, so keep their spacing sane */
.invest-detail__desc > *:first-child {
    margin-top: 0;
}

.invest-detail__desc > *:last-child {
    margin-bottom: 0;
}

.invest-detail__desc h1,
.invest-detail__desc h2,
.invest-detail__desc h3,
.invest-detail__desc h4,
.invest-detail__desc h5,
.invest-detail__desc h6 {
    margin: 22px 0 10px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.invest-detail__desc p {
    margin-bottom: 12px;
}

.invest-detail__desc ul,
.invest-detail__desc ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.invest-detail__desc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.invest-detail__desc table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* ---------- Manual payment confirmation ---------- */
.manual-pay__summary {
    height: 100%;
    padding: 24px;
    background: linear-gradient(160deg, var(--gc-bg-alt, #f4faf4) 0%, #ffffff 60%);
    border: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-radius: 12px;
}

.manual-pay__method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
}

.manual-pay__method img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-radius: 10px;
    padding: 6px;
}

.manual-pay__method-label {
    display: block;
    font-size: 12px;
    color: var(--gc-text, #4a5568);
}

.manual-pay__method-name {
    margin: 2px 0 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.manual-pay__context {
    padding: 14px 16px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-left: 3px solid var(--gc-gold, #3a9436);
    border-radius: 8px;
}

.manual-pay__context-badge {
    display: inline-block;
    padding: 2px 11px;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--gc-gold, #3a9436);
    border-radius: 20px;
}

.manual-pay__context-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.manual-pay__context-title span {
    display: inline-block;
    margin-left: 5px;
    padding: 1px 9px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gc-gold-bright, #2e7d2e);
    background: rgba(58, 148, 54, .1);
    border-radius: 20px;
    vertical-align: middle;
}

.manual-pay__context-meta {
    margin: 0;
    font-size: 13px;
    color: var(--gc-text, #4a5568);
}

.manual-pay__context-meta i {
    color: var(--gc-gold, #3a9436);
}

.manual-pay__rows {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.manual-pay__rows li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--gc-border-light, rgba(58, 148, 54, .15));
}

.manual-pay__rows li:last-child {
    border-bottom: 0;
}

.manual-pay__rows span {
    color: var(--gc-text, #4a5568);
}

.manual-pay__rows strong {
    color: var(--gc-title, #1a3c1a);
    font-weight: 600;
    text-align: right;
}

.manual-pay__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--gc-gold, #3a9436);
    border-radius: 10px;
    color: #fff;
}

.manual-pay__total > span {
    font-size: 14px;
    /* The user panel loads admin/app.css and user-fullscreen.css after this
       file, so the label needs an explicit colour to stay readable on green. */
    color: #fff !important;
    opacity: .92;
}

.manual-pay__total > strong {
    font-size: 20px;
    font-weight: 700;
    color: #fff !important;
    text-align: right;
}

.manual-pay__trx {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--gc-text, #4a5568);
    text-align: center;
}

.manual-pay__trx span {
    font-family: monospace;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.manual-pay__instructions {
    padding: 16px 18px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--gc-title, #1a3c1a);
    background: var(--gc-bg-alt, #f4faf4);
    border: 1px dashed var(--gc-border, rgba(58, 148, 54, .3));
    border-radius: 10px;
    overflow-wrap: anywhere;
}

.manual-pay__instructions p:last-child {
    margin-bottom: 0;
}

.manual-pay__form .form-group {
    margin-bottom: 18px;
}

.manual-pay__form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gc-title, #1a3c1a);
    margin-bottom: 6px;
}

/* File inputs come from the dynamic form builder, so style them generically */
.manual-pay__form input[type="file"] {
    width: 100%;
    height: auto !important;
    display: flex;
    align-items: center;
    padding: 14px 16px !important;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gc-text, #4a5568) !important;
    background: var(--gc-bg-alt, #f4faf4);
    border: 2px dashed var(--gc-border, rgba(58, 148, 54, .3));
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--gc-transition, all .3s ease);
}

.manual-pay__form input[type="file"]:hover {
    border-color: var(--gc-gold, #3a9436);
    background: #fff;
}

.manual-pay__form input[type="file"]::file-selector-button {
    /* Bootstrap sets negative margins here sized to its own padding, which
       drags the button out of a taller drop zone. Reset them. */
    margin: 0 14px 0 0 !important;
    padding: 9px 20px !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff !important;
    background: var(--gc-gold, #3a9436) !important;
    border: 0 !important;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--gc-transition, all .3s ease);
}

.manual-pay__form input[type="file"]:hover::file-selector-button {
    background: var(--gc-gold-bright, #2e7d2e) !important;
}

/* The form builder emits the mime hint as <pre>, which renders as raw code */
.manual-pay__form pre {
    margin: 8px 0 0;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    color: var(--gc-text, #4a5568) !important;
    background: transparent;
    border: 0;
    white-space: normal;
}

.manual-pay__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
}

.manual-pay__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--gc-text, #4a5568);
    text-align: center;
}

.manual-pay__note i {
    color: var(--gc-gold, #3a9436);
}

@media (max-width: 991px) {
    .manual-pay__summary {
        margin-bottom: 4px;
    }
}

/* ---------- Package purchase / installment plan ---------- */
.pkg-purchase__heading {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
    color: var(--gc-title, #1a3c1a);
}

.pkg-list {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.pkg-card {
    display: block;
    margin: 0;
    cursor: pointer;
}

.pkg-card .pkg-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.pkg-card__body {
    position: relative;
    display: block;
    padding: 18px 20px;
    background: #fff;
    border: 1.5px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-radius: 12px;
    transition: var(--gc-transition, all .3s ease);
}

.pkg-card:hover .pkg-card__body {
    border-color: var(--gc-border, rgba(58, 148, 54, .3));
    box-shadow: 0 6px 18px rgba(26, 60, 26, .07);
}

.pkg-radio:checked + .pkg-card__body {
    border-color: var(--pkg-accent, #fc5701);
    background: linear-gradient(160deg, var(--gc-bg-alt, #f4faf4) 0%, #fff 55%);
    box-shadow: 0 8px 22px rgba(252, 87, 1, .16);
}

/* selected tick */
.pkg-card__tick {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: transparent;
    background: transparent;
    border: 2px solid var(--gc-border, rgba(58, 148, 54, .3));
    border-radius: 50%;
    transition: var(--gc-transition, all .3s ease);
}

.pkg-radio:checked + .pkg-card__body .pkg-card__tick {
    color: #fff;
    background: var(--pkg-accent, #fc5701);
    border-color: var(--pkg-accent, #fc5701);
}

.pkg-card__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 34px;
    margin-bottom: 6px;
}

.pkg-card__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--gc-title, #1a3c1a);
    line-height: 1.3;
}

.pkg-card__size {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gc-text, #4a5568);
    background: var(--gc-bg-alt, #f4faf4);
    border-radius: 20px;
}

.pkg-card__price {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pkg-accent, #fc5701);
}

.pkg-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding-top: 12px;
    border-top: 1px dashed var(--gc-border-light, rgba(58, 148, 54, .15));
}

.pkg-card__facts > span {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.pkg-card__facts small {
    font-size: 12px;
    color: var(--gc-text, #4a5568);
}

.pkg-card__facts b {
    font-size: 14px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.pkg-card__offer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--pkg-accent-dark, #d84800);
    background: var(--pkg-accent-soft, rgba(252,87,1,.10));
    border-radius: 20px;
}

/* fields */
.pkg-field {
    margin-bottom: 18px;
}

.pkg-field__label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

/* payment option toggle */
.pkg-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pkg-toggle__item {
    margin: 0;
    cursor: pointer;
}

.pkg-toggle__item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.pkg-toggle__item > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    height: 100%;
    padding: 14px 12px;
    text-align: center;
    background: #fff;
    border: 1.5px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-radius: 10px;
    transition: var(--gc-transition, all .3s ease);
}

.pkg-toggle__item i {
    font-size: 22px;
    color: var(--pkg-accent-line, rgba(252, 87, 1, .30));
    transition: var(--gc-transition, all .3s ease);
}

.pkg-toggle__item b {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.pkg-toggle__item small {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--gc-text, #4a5568);
}

.pkg-toggle__item:hover > span {
    border-color: var(--gc-border, rgba(58, 148, 54, .3));
}

.pkg-toggle__item input:checked + span {
    background: var(--pkg-accent, #fc5701);
    border-color: var(--pkg-accent, #fc5701);
    box-shadow: 0 6px 16px rgba(252, 87, 1, .24);
}

.pkg-toggle__item input:checked + span i,
.pkg-toggle__item input:checked + span b,
.pkg-toggle__item input:checked + span small {
    color: #fff;
}

/* schedule timeline */
.pkg-schedule {
    padding: 16px 18px;
    margin-bottom: 18px;
    background: var(--gc-bg-alt, #f4faf4);
    border: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-radius: 12px;
}

.pkg-schedule__head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gc-title, #1a3c1a);
}

.pkg-schedule__head i {
    color: var(--pkg-accent, #fc5701);
    font-size: 18px;
}

.pkg-schedule__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
}

.pkg-schedule__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--gc-border-light, rgba(58, 148, 54, .18));
}

.pkg-schedule__list li:last-child {
    border-bottom: 0;
}

.pkg-schedule__no {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--pkg-accent-dark, #d84800);
    background: var(--pkg-accent-soft, rgba(252,87,1,.10));
    border-radius: 50%;
}

.pkg-schedule__list li.is-paid .pkg-schedule__no {
    color: #fff;
    background: var(--pkg-accent, #fc5701);
}

.pkg-schedule__info {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    min-width: 0;
}

.pkg-schedule__info b {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.pkg-schedule__info small {
    font-size: 12px;
    color: var(--gc-text, #4a5568);
}

.pkg-schedule__amt {
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--gc-title, #1a3c1a);
    white-space: nowrap;
}

/* summary */
.pkg-summary {
    margin-bottom: 18px;
}

.pkg-summary__list {
    list-style: none;
    margin: 0;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    border-radius: 12px;
}

.pkg-summary__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--gc-text, #4a5568);
}

.pkg-summary__list li b {
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
    text-align: right;
}

.pkg-summary__list li.is-save b {
    /* money saved reads green, matching .text--success on the package card */
    color: #2e7d2e;
}

.pkg-summary__list li.is-total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gc-border-light, rgba(58, 148, 54, .15));
    font-size: 15px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.pkg-summary__list li.is-total b {
    font-size: 21px;
    font-weight: 700;
    color: var(--pkg-accent, #fc5701);
}

.pkg-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    font-size: 15.5px;
    font-weight: 600;
}

.payment-options.selected {
    border-color: hsl(var(--base));
}

.payment-options.selected .active-badge {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .pkg-toggle {
        grid-template-columns: 1fr;
    }

    .pkg-card__price {
        font-size: 21px;
    }
}

/* ---------- Quantity stepper ---------- */
.qty-stepper {
    display: flex;
    align-items: stretch;
    max-width: 220px;
    border: 1.5px solid var(--gc-border-light, rgba(58, 148, 54, .18));
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.qty-stepper__btn {
    flex: 0 0 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: var(--pkg-accent, #fc5701);
    background: var(--gc-bg-alt, #f4faf4);
    border: 0;
    cursor: pointer;
    transition: var(--gc-transition, all .25s ease);
}

.qty-stepper__btn:hover:not(:disabled) {
    color: #fff;
    background: var(--pkg-accent, #fc5701);
}

.qty-stepper__btn:disabled {
    color: #b9c2cc;
    cursor: not-allowed;
    opacity: .7;
}

.qty-stepper__input.form--control,
.qty-stepper__input {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent;
    box-shadow: none !important;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-stepper:focus-within {
    border-color: var(--pkg-accent, #fc5701);
}

/* Sold-out notice */
.invest-soldout {
    padding: 34px 22px;
    text-align: center;
    background: var(--gc-bg-alt, #f4faf4);
    border: 1px dashed var(--gc-border, rgba(58, 148, 54, .3));
    border-radius: 12px;
}

.invest-soldout i {
    display: block;
    margin-bottom: 8px;
    font-size: 40px;
    color: var(--gc-border, rgba(58, 148, 54, .45));
}

.invest-soldout h6 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--gc-title, #1a3c1a);
}

.invest-soldout p {
    margin: 0;
    font-size: 14px;
    color: var(--gc-text, #4a5568);
}

.pkg-field__max {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--pkg-accent, #fc5701);
}
