/* 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: 20px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    border-color: rgba(55, 162, 53, 0.2);
}

.modern-card-header {
    position: relative;
    padding: 0;
    background: #f8fafc;
}

/* ROI Badge */
.roi-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--brand-orange), #e65c00);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.3);
    letter-spacing: 0.5px;
}

.roi-label {
    margin-right: 4px;
}

.roi-percentage {
    font-weight: 700;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: linear-gradient(135deg, var(--brand-green), #2a8a29);
    color: white;
    box-shadow: 0 4px 10px rgba(55, 162, 53, 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: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Card Body */
.modern-card-body {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Project Title */
.project-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.project-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-title a:hover {
    color: var(--brand-green);
}

/* Per Share Section */
.per-share-section {
    margin-bottom: 25px;
    text-align: left;
    background: rgba(55, 162, 53, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-green);
}

.per-share-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.per-share-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-green);
}

/* Project Details */
.project-details {
    flex: 1;
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--brand-navy);
    font-weight: 700;
    text-align: right;
}

/* Invest Button */
.invest-button-section {
    margin-top: auto;
}

.invest-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--brand-green), #2c8a2a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(55, 162, 53, 0.2);
}

.invest-btn:hover {
    background: linear-gradient(135deg, #2c8a2a, var(--brand-green));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(55, 162, 53, 0.4);
}

.invest-btn.closed {
    background: #ef4444;
    cursor: not-allowed;
    box-shadow: none;
    transform: 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;
}

/* =======================================================
   NEW REDESIGN BRANDING & VARIABLES
   ======================================================= */
:root {
    --brand-green: #37A235;
    /* Leaf Green */
    --brand-orange: #FF8A00;
    /* Bright Orange */
    --brand-navy: #0F172A;
    /* Navy Blue */
    --brand-bg: #F8FAFC;
    /* Off-white background */
    --brand-surface: #FFFFFF;
    /* Card surface */
    --brand-text: #334155;
    /* Main text color */
    --brand-border: #E2E8F0;
    /* Light border */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--brand-bg);
    color: var(--brand-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-navy);
    font-weight: 700;
}

/* =======================================================
   GLOBAL PREMIUM BUTTON DESIGN
   ======================================================= */
.btn {
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Base (Primary) Button - Orange Gradient */
.btn--base {
    background: linear-gradient(135deg, var(--brand-orange), #e65c00) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.2) !important;
    padding: 12px 28px !important;
}

.btn--base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65c00, var(--brand-orange));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn--base:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4) !important;
    color: #ffffff !important;
}

.btn--base:hover::before {
    opacity: 1;
}

/* Secondary (Outline) Button */
.btn--outline {
    background: transparent !important;
    color: var(--brand-navy) !important;
    border: 2px solid var(--brand-navy) !important;
    box-shadow: none !important;
    padding: 10px 26px !important;
}

.btn--outline:hover {
    background: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(55, 162, 53, 0.3) !important;
}

.text--base {
    color: var(--brand-orange) !important;
}

.bg--base {
    background-color: var(--brand-orange) !important;
}

.btn-outline--base {
    color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
}

.btn-outline--base:hover {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
}

/* Base override for header & generic links to use green */
a {
    color: var(--brand-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-orange);
}

/* =======================================================
   REDESIGNED BANNER SECTION
   ======================================================= */
.banner-section,
.banner-slide__bg {
    position: relative;
}

.banner-section::before,
.banner-slide__overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(26, 147, 46, 0) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    margin-top: 40px;
}

.banner-content__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content__subtitle {
    font-size: 1.8rem;
    color: var(--brand-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-content__desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.banner-content__button {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.banner-content__button .btn {
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counterup-list {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.counterup-list-item {
    display: flex;
    flex-direction: column;
}

.counterup-list-item__number {
    font-size: 2.5rem;
    color: var(--brand-green);
    font-weight: 800;
    margin-bottom: 5px;
}

.counterup-list-item__number .odometer {
    color: var(--brand-orange);
}

.counterup-list-item__text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =======================================================
   CHOOSE US SECTION (50/50 Premium Redesign)
   ======================================================= */
.why-invest {
    background-color: var(--brand-surface);
    position: relative;
    overflow: hidden;
}

.why-invest::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(55, 162, 53, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cinematic-thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid #ffffff;
}

.cinematic-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cinematic-thumb:hover img {
    transform: scale(1.05);
}

.why-invest__thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-play-btn {
    width: 70px;
    height: 70px;
    background-color: var(--brand-green) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(55, 162, 53, 0.4);
    box-sizing: border-box !important;
}

.premium-play-btn i {
    color: #ffffff !important;
    margin-left: 5px;
    /* Offset play icon visually to center */
}

.premium-play-btn::before,
.premium-play-btn::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    border-radius: 50%;
    border: 2px solid var(--brand-green);
    animation: pulse-ring 2s linear infinite;
    opacity: 0;
    z-index: -1;
    box-sizing: border-box !important;
}

.premium-play-btn::after {
    animation-delay: 1s;
}

.premium-play-btn:hover {
    background-color: var(--brand-orange) !important;
    transform: scale(1.1);
}

.premium-play-btn:hover::before,
.premium-play-btn:hover::after {
    border-color: var(--brand-orange);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.section-heading__sec-name {
    display: inline-flex;
    align-items: center;
    background: rgba(55, 162, 53, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(55, 162, 53, 0.2);
}

.section-heading__title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-heading__desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-invest-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .why-invest-points {
        grid-template-columns: 1fr;
    }
}

.premium-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.premium-card--small {
    padding: 15px;
    align-items: center;
}

.premium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(55, 162, 53, 0.3);
}

.premium-card__icon {
    min-width: 32px;
    height: 32px;
    background: rgba(55, 162, 53, 0.1);
    color: var(--brand-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.premium-card:hover .premium-card__icon {
    background: var(--brand-green);
    color: #ffffff;
}

.premium-card__title {
    font-size: 0.95rem;
    color: var(--brand-navy);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Cleaned up old styles */

/* =======================================================
   PROJECT / OFFER CARD REDESIGN
   ======================================================= */
.project-card {
    background: var(--brand-surface);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--brand-border);
    margin: 10px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(55, 162, 53, 0.3);
}

.project-card__thumb {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
}

.project-card__thumb img {
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-card:hover .project-card__thumb img {
    transform: scale(1.05);
}

.project-card__content {
    padding: 20px 5px 10px;
}

.project-card__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-card__title a {
    color: var(--brand-navy);
}

.project-card__title a:hover {
    color: var(--brand-green);
}

.project-card__desc {
    color: var(--brand-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
}

.section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.section-heading.style-left {
    text-align: left;
}

/* =======================================================
   OUR VISION / COMMITMENT REDESIGN
   ======================================================= */
.our-vision {
    background-color: var(--brand-bg);
}

.our-vision-card {
    background: var(--brand-surface);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--brand-border);
    transition: all 0.3s ease;
    height: 100%;
}

.our-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(25, 147, 46, 0.2);
}

.our-vision-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 147, 46, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.our-vision-card:hover .our-vision-card__icon {
    background: var(--brand-green);
}

.our-vision-card:hover .our-vision-card__icon img {
    filter: brightness(0) invert(1);
}

.our-vision-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--brand-navy);
}

/* =======================================================
   HOW TO INVEST (STEPS) REDESIGN
   ======================================================= */
.how-to-invest__thumb {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.how-to-invest-steps {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    position: relative;
}

.how-to-invest-steps::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(26, 147, 46, 0.2);
}

.how-to-invest-steps__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.how-to-invest-steps__item:last-child {
    margin-bottom: 0;
}

.how-to-invest-steps__icon {
    width: 70px;
    height: 70px;
    background: var(--brand-surface);
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px var(--brand-bg);
    transition: all 0.3s ease;
}

.how-to-invest-steps__item:hover .how-to-invest-steps__icon {
    background: var(--brand-green);
    transform: scale(1.1);
}

.how-to-invest-steps__item:hover .how-to-invest-steps__icon img {
    filter: brightness(0) invert(1);
}

.how-to-invest-steps__content {
    padding-left: 30px;
    padding-top: 10px;
}

.how-to-invest-steps__title {
    font-size: 1.4rem;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.how-to-invest-steps__desc {
    color: var(--brand-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =======================================================
   TESTIMONIALS & FAQ & BLOG REDESIGN
   ======================================================= */
/* Testimonials */
.testimonial-card {
    background: var(--brand-surface);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow-md);
    margin: 20px 10px;
    border: 1px solid var(--brand-border);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 138, 0, 0.1);
}

.testimonial-card__desc {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brand-text);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card__client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card__client-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-green);
}

.testimonial-card__client-name {
    color: var(--brand-navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-card__client-designation {
    color: var(--brand-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--brand-border);
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--brand-surface);
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    color: var(--brand-navy);
    padding: 20px 25px;
    box-shadow: none !important;
    background: transparent !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-green);
    background: rgba(26, 147, 46, 0.05) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2337A235'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 25px 25px;
    color: var(--brand-text);
    line-height: 1.6;
}

/* Blog */
.blog-card {
    background: var(--brand-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--brand-border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-card__thumb img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__thumb img {
    transform: scale(1.08);
}

.blog-card__content {
    padding: 25px;
}

.blog-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card__title a {
    color: var(--brand-navy);
}

.blog-card__title a:hover {
    color: var(--brand-green);
}

.blog-card__meta {
    display: flex;
    gap: 15px;
    color: var(--brand-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =======================================================
   HEADER REDESIGN (Professional)
   ======================================================= */
/* Topbar */
.header-top {
    background-color: var(--brand-navy);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.header-top__text {
    color: #f1f5f9;
    font-size: 0.9rem;
}

.social-list__link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-list__link:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
}

.dropdown--lang .dropdown-toggle {
    color: #ffffff !important;
}

/* Main Header / Bottom */
.header-bottom {
    background-color: var(--brand-surface) !important;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    padding: 0;
}

.header {
    background: transparent;
    /* Remove old green bg */
}

/* Override old template specific structural colors & clip-paths */
.header-bottom::before,
.header-bottom::after {
    display: none !important;
}

.navbar-left {
    background-color: transparent !important;
    clip-path: none !important;
    max-width: 250px !important;
}

.navbar-right {
    background-color: transparent !important;
}

.navbar-right::before,
.navbar-right::after {
    display: none !important;
}

.navbar-brand.logo {
    background: transparent !important;
    padding: 15px 0;
}

.navbar-brand.logo::before,
.navbar-brand.logo::after {
    display: none !important;
}

/* Nav Links */
.nav-menu .nav-item .nav-link {
    color: var(--brand-navy) !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 25px 15px;
    position: relative;
}

.nav-menu .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background-color: var(--brand-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-menu .nav-item .nav-link:hover,
.nav-menu .nav-item .nav-link.active {
    color: var(--brand-green) !important;
}

.nav-menu .nav-item .nav-link:hover::before,
.nav-menu .nav-item .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header Buttons */
.navbar-buttons .btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

.navbar-buttons .btn--white {
    background-color: var(--brand-green) !important;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 10px rgba(55, 162, 53, 0.2);
}

.navbar-buttons .btn--white:hover {
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.3);
    transform: translateY(-2px);
}

/* Sticky Header */
.header.fixed-header .header-bottom {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* =======================================================
   OUR VISION (Commitment) SECTION
   ======================================================= */
.premium-vision-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.premium-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(55, 162, 53, 0.3);
}

.premium-vision-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(55, 162, 53, 0.05), rgba(55, 162, 53, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.premium-vision-card:hover .premium-vision-card__icon {
    background: linear-gradient(135deg, var(--brand-green), #2a8a29);
    border-color: rgba(55, 162, 53, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(55, 162, 53, 0.3);
}

.premium-vision-card__icon img {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.premium-vision-card:hover .premium-vision-card__icon img {
    filter: brightness(0) invert(1);
}

.premium-vision-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.5;
    margin: 0;
}

/* =======================================================
   HOW TO INVEST SECTION
   ======================================================= */
.premium-invest__thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid #ffffff;
    height: 100%;
    min-height: 500px;
}

.premium-invest__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.premium-invest__thumb:hover img {
    transform: scale(1.05);
}

.premium-invest-steps {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    position: relative;
}

/* The vertical connecting line */
.premium-invest-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    /* Center of the 60px icon */
    top: 30px;
    bottom: 40px;
    width: 2px;
    background: rgba(55, 162, 53, 0.1);
    border-left: 2px dashed var(--brand-green);
    z-index: 0;
}

@media (max-width: 575px) {
    .premium-invest-steps::before {
        display: none;
    }
}

.premium-invest-steps__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.premium-invest-steps__item:last-child {
    margin-bottom: 0;
}

.premium-invest-steps__icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 3px solid var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 4px 10px rgba(55, 162, 53, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    /* keep above the line */
}

@media (max-width: 575px) {
    .premium-invest-steps__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .premium-invest-steps__icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.premium-invest-steps__item:hover .premium-invest-steps__icon {
    background: linear-gradient(135deg, var(--brand-green), #2a8a29);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(55, 162, 53, 0.3);
}

.premium-invest-steps__icon img {
    width: 28px;
    height: 28px;
    transition: all 0.4s ease;
}

.premium-invest-steps__item:hover .premium-invest-steps__icon img {
    filter: brightness(0) invert(1);
}

.premium-invest-steps__content {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.premium-invest-steps__item:hover .premium-invest-steps__content {
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(55, 162, 53, 0.3);
    transform: translateX(8px);
}

@media (max-width: 575px) {
    .premium-invest-steps__item:hover .premium-invest-steps__content {
        transform: translateY(-8px);
    }
}

.premium-invest-steps__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* =======================================================
   BLOG SECTION REDESIGN
   ======================================================= */
.premium-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(55, 162, 53, 0.3);
}

.premium-blog-card__thumb {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.premium-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-blog-card:hover .premium-blog-card__thumb img {
    transform: scale(1.08);
}

.premium-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-blog-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    gap: 15px;
}

.premium-blog-meta__item {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 50px;
}

.premium-blog-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.4;
    margin-bottom: 15px;
}

.premium-blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-blog-card__title a:hover {
    color: var(--brand-green);
}

.premium-blog-card__desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.premium-blog-card__footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

/* =======================================================
   FOOTER REDESIGN
   ======================================================= */
.footer {
    background-color: var(--brand-navy) !important;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--brand-green);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(55, 162, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-item__logo img {
    max-width: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-item__title {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-item__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-green);
    border-radius: 50px;
}

.footer-item__desc {
    color: #94a3b8 !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
}

.footer-menu__link {
    color: #cbd5e1 !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
    padding: 5px 0;
    display: inline-block;
}

.footer-menu__link:hover {
    color: var(--brand-green) !important;
    transform: translateX(5px);
}

.contact-list__link,
.contact-list__text {
    color: #cbd5e1 !important;
    transition: all 0.3s ease !important;
}

.contact-list__link:hover {
    color: var(--brand-green) !important;
}

.contact-list__item i {
    color: var(--brand-green) !important;
    background: rgba(55, 162, 53, 0.1);
    padding: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

.social-list__link {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.social-list__link:hover {
    background: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 0 !important;
}

.footer-bottom__text {
    color: #94a3b8 !important;
    margin: 0 !important;
}

/* =======================================================
   FAQ (Accordion) REDESIGN
   ======================================================= */
.premium-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-accordion-item.active {
    border-color: var(--brand-green);
    box-shadow: 0 4px 15px rgba(55, 162, 53, 0.1);
}

.premium-accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-navy);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-accordion-button::after {
    content: '\f067';
    /* FontAwesome Plus */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--brand-green);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(55, 162, 53, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.premium-accordion-button:not(.collapsed) {
    color: var(--brand-green);
}

.premium-accordion-button:not(.collapsed)::after {
    content: '\f068';
    /* FontAwesome Minus */
    transform: rotate(180deg);
    background: var(--brand-green);
    color: #ffffff;
}

.premium-accordion-body {
    padding: 0 25px 25px 25px;
    background: #ffffff;
}

.premium-accordion-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* =======================================================
   PROJECT SLIDER (Your Dream) REDESIGN
   ======================================================= */
.premium-slider-card {
    background: #ffffff;
    border-radius: 20px;
    margin: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.premium-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(55, 162, 53, 0.2);
}

.premium-slider-card__thumb {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.premium-slider-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-slider-card:hover .premium-slider-card__thumb img {
    transform: scale(1.05);
}

.premium-slider-card__content {
    padding: 25px;
}

.premium-slider-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.premium-slider-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-slider-card__title a:hover {
    color: var(--brand-green);
}

.premium-slider-card__desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =======================================================
   AWARDS (Your Dream Our Plan) REDESIGN
   ======================================================= */
.premium-award-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-award-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.premium-award-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    border-color: var(--brand-green);
}

.premium-award-item__thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.premium-award-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-award-item__content {
    flex: 1;
    text-decoration: none;
}

.premium-award-item__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.premium-award-item:hover .premium-award-item__title {
    color: var(--brand-green);
}

.premium-award-item__date {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.premium-award-item__arrow a {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    transition: all 0.3s ease;
}

.premium-award-item:hover .premium-award-item__arrow a {
    background: var(--brand-green);
    color: #ffffff;
}

/* =======================================================
   TESTIMONIALS REDESIGN
   ======================================================= */
.premium-feedback-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.premium-feedback-card:hover {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    border-color: rgba(55, 162, 53, 0.2);
}

.premium-feedback-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.premium-feedback-card__thumb {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(55, 162, 53, 0.1);
}

.premium-feedback-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-feedback-card__info {
    flex: 1;
    position: relative;
}

.premium-feedback-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 4px;
}

.premium-feedback-card__designation {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.premium-feedback-card__designation span {
    color: var(--brand-green);
    font-weight: 600;
}

.premium-feedback-card__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(55, 162, 53, 0.1);
}

.premium-feedback-card__text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* =======================================================
   CONTACT PAGE REDESIGN
   ======================================================= */
.premium-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(55, 162, 53, 0.3);
}

.premium-contact-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-green), #2c8a2a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(55, 162, 53, 0.3);
    transition: transform 0.3s ease;
}

.premium-contact-card:hover .premium-contact-card__icon {
    transform: scale(1.1);
}

.premium-contact-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.premium-contact-card__link,
.premium-contact-card__text {
    font-size: 1rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.premium-contact-card__link:hover {
    color: var(--brand-green);
}

.premium-contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.premium-contact-form-card__body {
    padding: 45px;
}

@media (max-width: 767px) {
    .premium-contact-form-card__body {
        padding: 30px 20px;
    }
}

/* =======================================================
   PAGE TITLE (BREADCRUMB) REDESIGN
   ======================================================= */
.premium-page-title {
    position: relative;
    background-color: var(--brand-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px 0;
    overflow: hidden;
    border-bottom: 4px solid var(--brand-green);
}

.premium-page-title__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.57) 0%, rgba(15, 23, 42, 0) 100%);
    pointer-events: none;
}

.premium-page-title__overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(55, 162, 53, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
}

.premium-page-title__heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.premium-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.premium-breadcrumb-list li {
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 500;
}

.premium-breadcrumb-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-breadcrumb-list li a:hover {
    color: var(--brand-green);
}

/* Modern List Project Card */
.modern-list-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 0 !important;
}

.modern-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(55, 162, 53, 0.3);
}

.modern-list-card__left {
    width: 300px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    margin: 0;
    padding: 0;
}

.modern-list-card__left a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.modern-list-card__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.modern-list-card__roi {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--brand-green), #2c8a2a);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(55, 162, 53, 0.3);
}

.modern-list-card__right {
    flex: 1;
    padding: 25px;
}

.modern-list-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.modern-list-card__title {
    font-weight: 800;
    color: var(--brand-navy);
    font-size: 1.4rem;
    margin: 0;
}

.modern-list-card__title a {
    color: inherit;
    text-decoration: none;
}

.modern-list-card__status {
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.modern-list-card__status.closed {
    background: #f87171;
    color: #ffffff;
}

.modern-list-card__status.active {
    background: #f1f5f9;
    color: #475569;
}

.modern-list-card__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.modern-list-card__stat-box {
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    flex: 1;
}

.modern-list-card__stat-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.modern-list-card__stat-value {
    font-size: 1.2rem;
    font-weight: 800;
}

.modern-list-card__stat-value.green {
    color: var(--brand-green);
}

.modern-list-card__stat-value.navy {
    color: var(--brand-navy);
}

.modern-list-card__action {
    display: flex;
    justify-content: flex-end;
}

.modern-list-card__btn-closed {
    background: #ef4444;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    opacity: 0.8;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 767px) {
    .premium-page-title {
        padding: 70px 0 60px 0;
    }

    .premium-page-title__heading {
        font-size: 2.2rem;
    }

    .modern-list-card {
        flex-direction: column !important;
    }

    .modern-list-card__left {
        width: 100% !important;
        height: 250px !important;
    }

    .modern-list-card__left img {
        border-radius: 20px 20px 0 0;
    }

    .modern-list-card__right>div:nth-child(2),
    .modern-list-card__stats {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

/* Offers Page Styling (Moved from index.blade.php) */
.offers-page {
    background-color: #f8fafc;
}

.offers-control {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.offers-control__results {
    margin-bottom: 0;
    color: #64748b;
    font-size: 1rem;
}

.offers-control__results span {
    font-weight: 700;
    color: var(--brand-navy);
}

/* Sidebar Styling */
.offcanvas-sidebar {
    background: transparent;
}

.offcanvas-sidebar.offcanvas-sidebar--offers .offcanvas-sidebar__body {
    padding: 0;
}

.offcanvas-sidebar.offcanvas-sidebar--offers .offcanvas-sidebar-block {
    padding: 25px !important;
    margin-bottom: 25px !important;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.offcanvas-sidebar-block__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 20px;
    display: block;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.offcanvas-sidebar-list__item {
    margin-bottom: 12px;
}

.form-check-label {
    color: #475569;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check-input:checked~.form-check-label {
    color: var(--brand-green);
    font-weight: 700;
}

.form-check-input:checked {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
}

/* Search Box Styling */
.offers-page .offers-search .input-group.input--group {
    flex-wrap: nowrap;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.offers-page .offers-search .input-group.input--group:focus-within {
    border-color: var(--brand-green);
    box-shadow: 0 4px 20px rgba(55, 162, 53, 0.15);
}

.input-group-text.search-icon {
    background: #ffffff !important;
    border: none;
    padding-left: 20px;
    cursor: pointer;
}

.offers-page .offers-search .input-group-text svg {
    fill: var(--brand-green);
    transition: transform 0.3s ease;
}

.offers-page .offers-search .input-group:focus-within .search-icon svg {
    transform: scale(1.1);
}

.offers-page .offers-search .form-control.form--control {
    padding: 15px 20px 15px 10px;
    background-color: transparent;
    border: none;
    font-weight: 500;
    color: var(--brand-navy);
}

.offers-page .offers-search .form-control.form--control:focus {
    box-shadow: none;
}

.offers-page .offers-search .form-control.form--control::placeholder {
    color: #94a3b8;
}

.offers-page-top {
    margin-bottom: 25px;
}

/* Layout Switcher */
.layout-switcher-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #64748b;
}

.layout-switcher-btn.active,
.layout-switcher-btn:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #ffffff;
}

.layout-switcher-btn svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

/* Range Slider Styling */
.range-slider__inputs {
    gap: 10px;
    margin-top: 20px;
}

.range-slider__inputs .input-group {
    width: 100%;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}

.range-slider__inputs .input-group-text {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.range-slider__inputs .form--control {
    border: none !important;
    background: transparent;
    font-weight: 600;
    color: var(--brand-navy);
    padding-left: 5px;
}

.ui-slider {
    background: #e2e8f0;
    height: 6px;
    border-radius: 10px;
    border: none;
}

.ui-slider .ui-slider-range {
    background: var(--brand-green);
}

.ui-slider .ui-slider-handle {
    background: #ffffff;
    border: 2px solid var(--brand-green);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 3px;
    cursor: grab;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    outline: none;
}

.ui-slider .ui-slider-handle:active {
    cursor: grabbing;
}

@media (max-width:991px) {
    .offcanvas-sidebar {
        background: #f8fafc;
        padding: 20px;
    }

    .offcanvas-sidebar.offcanvas-sidebar--offers .offcanvas-sidebar__header {
        padding: 0 !important;
        margin-bottom: 24px;
    }
}

/* Premium Login & Registration Overrides */
.account {
    background: linear-gradient(135deg, rgba(241, 245, 249, 1) 0%, rgba(226, 232, 240, 1) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    position: relative;
    padding: 40px 15px;
}

.account::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--brand-green) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 0;
}

.account-left {
    display: none !important;
}

.account-right {
    background-color: transparent !important;
    width: 100% !important;
    max-width: 550px !important;
    flex: 0 0 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 auto !important;
    z-index: 1;
}

.account-form {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 50px;
    border: 1px solid #ffffff;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .account-form {
        padding: 40px 25px;
        border-radius: 20px;
    }
}

.account-form-headings {
    text-align: center;
    margin-bottom: 30px;
}

.account-form-headings__subtitle {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.account-form-headings__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 0;
}

.form--control {
    border-radius: 12px !important;
    padding: 14px 20px !important;
    border: 2px solid #e2e8f0 !important;
    background: #f8fafc !important;
    color: var(--brand-navy) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.form--control:focus {
    background: #ffffff !important;
    border-color: var(--brand-green) !important;
    box-shadow: 0 0 0 4px rgba(55, 162, 53, 0.1) !important;
}

.form--label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 14px;
}

.account-form__link {
    color: var(--brand-green);
    font-weight: 700;
    transition: color 0.3s;
}

.account-form__link:hover {
    color: var(--brand-navy);
}

.account-form__cta-text {
    color: #64748b;
    font-weight: 600;
    margin-top: 25px;
    text-align: center;
}

.input-group-btn {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-left: none;
    border-radius: 0 12px 12px 0;
    color: #64748b;
    transition: all 0.3s ease;
}

.input--group-password .form--control {
    border-right: none !important;
}

.input-group:focus-within .input-group-btn {
    background: #ffffff;
    border-color: var(--brand-green);
}

.account-social-login__link {
    border-radius: 12px !important;
    padding: 12px !important;
    border: 2px solid #e2e8f0 !important;
    transition: all 0.3s ease;
}

.account-social-login__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1 !important;
}

.account-form button.btn--base[type="submit"] {
    background: linear-gradient(135deg, var(--brand-orange), #e65c00) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(230, 92, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
}

.account-form button.btn--base[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(230, 92, 0, 0.4) !important;
}

/* Standardize Banner Buttons to equal size */
.banner-content__button {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-content__button .btn {
    margin: 0 !important;
    /* Reset default margin */
    min-height: 60px !important;
    min-width: 200px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
    padding: 0 35px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.banner-content__button .btn-outline--white {
    border: 2px solid #ffffff !important;
}

.banner-content__button .btn--base {
    background: linear-gradient(135deg, var(--brand-orange), #e65c00) !important;
    color: #ffffff !important;
    border: 2px solid transparent !important;
    /* Match border width to ensure equal height */
    box-shadow: 0 8px 20px rgba(230, 92, 0, 0.3) !important;
}

.banner-content__button .btn--base:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(230, 92, 0, 0.4) !important;
}

/* Green gradient for active investment buttons */
.btn--invest-active {
    background: var(--brand-green) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease;
}

.btn--invest-active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4) !important;
    background: var(--brand-orange) !important;
}

/* ==============================================================
   Modern Project Details Page Styles
   ============================================================== */
.premium-details-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.premium-details-text {
    color: #374151;
    line-height: 1.8;
    font-size: 16px;
}

.premium-comments-header-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #0ea5e9;
}

.premium-comments-header-title {
    color: #0369a1;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}

.premium-tab-icon {
    margin-right: 5px;
}

.premium-tab-badge {
    background: #e2e8f0;
    color: #475569;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 5px;
}

.premium-tab-badge--red {
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.premium-tab-content-container {
    background: #fafbfc;
    border-radius: 20px;
    padding: 10px;
    min-height: 300px;
    border: 1px solid #e5e7eb;
}

.premium-tab-container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.premium-tab-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.premium-tab-header-icon {
    margin-right: 10px;
    color: #3b82f6;
}

.premium-tab-header-icon--red {
    margin-right: 10px;
    color: #ef4444;
}

.premium-share-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.premium-share-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-faq-wrapper {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.premium-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    background: #f8fafc;
}

.premium-faq-button {
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    padding: 20px;
    background: #f8fafc !important;
    box-shadow: none !important;
}

.premium-faq-body {
    padding: 0 20px 20px;
    background: #f8fafc;
}

.premium-faq-text {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.premium-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.premium-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.premium-comment-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 25px;
}

.premium-comment-form-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.premium-comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.premium-comment-form {
    flex: 1;
}

.premium-comment-input {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 15px 50px 15px 20px;
    font-size: 14px;
    min-height: 80px;
    resize: vertical;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.premium-comment-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.premium-comment-submit:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.premium-overview-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.project-overview-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.project-overview-flex__col {
    flex: 1;
    min-width: 150px;
    max-width: calc(16.666% - 10px);
}

@media (max-width: 1200px) {
    .project-overview-flex {
        flex-wrap: wrap !important;
    }

    .project-overview-flex>div {
        min-width: calc(33.333% - 10px) !important;
        max-width: calc(33.333% - 10px) !important;
    }
}

@media (max-width: 768px) {
    .project-overview-flex>div {
        min-width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }

    .project-overview-flex>div>div {
        padding: 15px !important;
        height: 100px !important;
    }

    .project-overview-flex>div>div>div:first-child {
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }

    .project-overview-flex>div>div>div:last-child {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .project-overview-flex {
        gap: 8px !important;
    }

    .project-overview-flex>div>div>div:last-child {
        font-size: 14px !important;
    }
}

.invest-btn-wrapper {
    margin-top: 30px;
    text-align: center;
}

.btn--invest-mobile {
    width: 100%;
    padding: 15px 40px;
    border-radius: 30px;
}

.project-details-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 0 0 120px 0;
    min-height: 60vh;
}

.premium-gallery-container {
    background: #ffffff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
    margin-top: 50px;
}

.premium-title-card {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
}

.premium-title-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.status-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.status-badge--large {
    position: static !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    transform: none !important;
}

.premium-gallery-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.premium-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.premium-gallery-link {
    display: block;
    height: 100%;
    overflow: hidden;
}

.premium-gallery-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-gallery-img:hover {
    transform: scale(1.05);
}

.gallery-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    cursor: pointer;
    pointer-events: none;
}

.offer-details-slider-wrapper {
    margin-top: 20px;
}

.slider-img-rounded-15 {
    border-radius: 15px;
}

.slider-img-rounded-10 {
    border-radius: 10px;
}

.premium-content-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.premium-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

/* Premium Metric Cards */
.premium-metric-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.premium-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.premium-metric-card:hover::before {
    opacity: 1;
}

.premium-metric-card__label {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-metric-card__value {
    color: #1f2937;
    font-size: 20px;
    font-weight: 800;
}

.premium-metric-card__value.accent-green {
    color: var(--brand-green);
}

.premium-metric-card__value.accent-orange {
    color: var(--brand-orange);
}

.premium-metric-card__value.accent-red {
    color: #ef4444;
}

/* Premium Tabs */
.premium-tab-nav {
    border: none !important;
    background: #f8fafc;
    border-radius: 20px;
    padding: 8px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.premium-tab-nav .nav-item {
    flex: 1;
    min-width: 120px;
}

.premium-tab-nav .nav-link {
    background: transparent !important;
    color: #64748b !important;
    border: 2px solid transparent !important;
    border-radius: 15px !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    width: 100%;
    text-align: center;
}

.premium-tab-nav .nav-link:hover:not(.active) {
    background: #e2e8f0 !important;
    color: #1f2937 !important;
}

.premium-tab-nav .nav-link.active {
    background: linear-gradient(135deg, var(--brand-green), #2c8a2a) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3) !important;
}

/* Social Share Buttons */
.share-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.share-social-btn--facebook {
    background: #1877f2;
}

.share-social-btn--twitter {
    background: #1da1f2;
}

.share-social-btn--pinterest {
    background: #bd081c;
}

.share-social-btn--linkedin {
    background: #0077b5;
}

.premium-accordion-header {
    margin-bottom: 0;
}

.footer-top.py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
}

#navbarSupportedContent .nav-menu .btn {
    background: hsl(145 63% 42%) !important;
    color: #FFF !important;
}

/* ==============================================================
   Mobile Bottom Navigation Menu (Professional Styling)
   ============================================================== */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #f1f5f9;
}

.mobile-bottom-menu a {
    flex: 1;
    text-align: center;
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-menu i {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-menu a:hover,
.mobile-bottom-menu a:active,
.mobile-bottom-menu a.active {
    color: var(--brand-green);
}

.mobile-bottom-menu a:hover i,
.mobile-bottom-menu a:active i,
.mobile-bottom-menu a.active i {
    transform: translateY(-2px);
    color: var(--brand-green);
}

.mobile-bottom-menu a span {
    color: #5b6e88;
}

/* ==============================================================
   Premium Dashboard Search Box
   ============================================================== */
.premium-search-form .input-group {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.premium-search-form .input-group:focus-within {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(55, 162, 53, 0.1);
}

.premium-search-input {
    border: none !important;
    box-shadow: none !important;
    padding: 10px 16px;
    font-size: 14px;
    background: transparent;
    color: #334155;
}

.premium-search-input::placeholder {
    color: #94a3b8;
}

.premium-search-btn {
    background: var(--brand-green) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 16px;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.premium-search-btn i {
    font-size: 18px;
}

.premium-search-btn:hover {
    background: #2a8a29 !important;
}

@media screen and (max-width: 575px) {
    .premium-search-form {
        max-width: 100% !important;
        margin-top: 10px;
    }
}

/* ==============================================================
   Disabled Button Global Override
   ============================================================== */
.btn:disabled,
.btn[disabled],
.btn.disabled,
fieldset:disabled .btn {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn:disabled::before,
.btn[disabled]::before,
.btn.disabled::before,
fieldset:disabled .btn::before {
    display: none !important;
}