/* 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 #amount {
    border: none !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 0px;
}

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

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: auto !important;
}


.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: 0px !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-orange), #e67e00);
    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-orange);
}

/* 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-orange);
}

.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-orange);
}

/* 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, #1b6e1a 0%, #37a235 100%);
    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, #e67e00, var(--brand-orange));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(55, 162, 53, 0.4);
}

.invest-btn.closed {
    background: #ef4444 !important;
    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-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;
    color: var(--brand-text);
    background: #FFF;
}

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-orange) !important;
    border-color: var(--brand-orange) !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-orange);
    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-orange);
    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-orange) !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-orange);
    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-orange);
    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-orange);
    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-orange);
    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-orange);
}

.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-orange);
}

.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-orange);
    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-orange);
    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-orange);
}

.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-orange);
    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-orange);
}

.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-orange) !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-orange) !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-orange), #e67e00);
    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-orange);
    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-orange);
    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-orange), #e67e00);
    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;
}

/* =======================================================
   INVEST FLOW SECTION — New Design
   ======================================================= */
.invest-flow-section {
    position: relative;
    padding: 100px 0 80px;
    background: #f8faf8;
    overflow: hidden;
}

.invest-flow__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(55, 162, 53, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.invest-flow__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.invest-flow__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(55, 162, 53, 0.25);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-green, #37a235);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(55, 162, 53, 0.08);
}

.invest-flow__badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.invest-flow__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--brand-navy, #0b1e3e);
    line-height: 1.2;
    margin-bottom: 16px;
}

.invest-flow__subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Steps Grid */
.invest-flow__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-bottom: 64px;
}

.invest-flow__card {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.invest-flow__card-inner {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8f0e8;
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.invest-flow__card-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green, #37a235), var(--brand-orange, #f59e0b));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.invest-flow__card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(55, 162, 53, 0.12);
    border-color: rgba(55, 162, 53, 0.2);
}

.invest-flow__card-inner:hover::before {
    transform: scaleX(1);
}

/* Big background step number */
.invest-flow__step-num {
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(55, 162, 53, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'Arial Black', sans-serif;
}

/* Icon */
.invest-flow__icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(55, 162, 53, 0.12) 0%, rgba(245, 158, 11, 0.10) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(55, 162, 53, 0.15);
}

.invest-flow__card-inner:hover .invest-flow__icon-wrap {
    background: linear-gradient(135deg, var(--brand-green, #37a235), #2d8a2c);
    border-color: transparent;
    transform: rotate(-6deg) scale(1.08);
}

.invest-flow__icon-wrap img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.invest-flow__card-inner:hover .invest-flow__icon-wrap img {
    filter: brightness(0) invert(1);
}

.invest-flow__card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-navy, #0b1e3e);
    margin-bottom: 10px;
    line-height: 1.3;
}

.invest-flow__card-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Arrow connector */
.invest-flow__arrow {
    flex-shrink: 0;
    width: 48px;
    color: rgba(245, 158, 11, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    margin-top: -40px;
}

.invest-flow__arrow svg {
    width: 36px;
    height: 14px;
}

/* Bottom Image Strip */
.invest-flow__image-strip {
    display: flex;
    justify-content: center;
}

.invest-flow__image-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    height: 280px;
}

.invest-flow__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.7s ease;
}

.invest-flow__image-wrap:hover img {
    transform: scale(1.04);
}

.invest-flow__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 30, 62, 0.75) 0%, rgba(11, 30, 62, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 48px;
}

.invest-flow__image-overlay span {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 300px;
}

/* Responsive */
@media (max-width: 991px) {
    .invest-flow__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .invest-flow__arrow {
        display: none;
    }

    .invest-flow__card {
        display: block;
    }
}

@media (max-width: 575px) {
    .invest-flow-section {
        padding: 70px 0 60px;
    }

    .invest-flow__grid {
        grid-template-columns: 1fr;
    }

    .invest-flow__image-wrap {
        height: 200px;
    }

    .invest-flow__image-overlay span {
        font-size: 1.2rem;
    }
}

/* =======================================================
   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-orange);
}

.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-orange);
}

.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-orange);
    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-orange) !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-orange) !important;
}

.contact-list__item i {
    color: var(--brand-orange) !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-orange) !important;
    border-color: var(--brand-orange) !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-orange);
    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-orange);
    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-orange);
}

.premium-accordion-button:not(.collapsed)::after {
    content: '\f068';
    /* FontAwesome Minus */
    transform: rotate(180deg);
    background: var(--brand-orange);
    color: #ffffff;
}

.premium-accordion-body {
    padding: 0 25px 25px 25px;
    background: #ffffff;
}

.premium-accordion-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* =======================================================
   FAQ MODERN — New Design
   ======================================================= */
.faq-modern {
    padding: 100px 0 110px;
    background: #ffffff;
    position: relative;
}

/* Header */
.faq-modern__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.faq-modern__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(55, 162, 53, 0.08);
    border: 1px solid rgba(55, 162, 53, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-green, #37a235);
    margin-bottom: 20px;
}

.faq-modern__badge img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.faq-modern__title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--brand-navy, #0b1e3e);
    line-height: 1.2;
    margin-bottom: 14px;
}

.faq-modern__subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Body — two columns */
.faq-modern__body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Accordion list */
.faq-modern__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-modern__item {
    border-bottom: 1px solid #e8edf2;
    transition: background 0.3s ease;
}

.faq-modern__item:first-child {
    border-top: 1px solid #e8edf2;
}

.faq-modern__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Large ghost number */
.faq-modern__num {
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(55, 162, 53, 0.35);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    width: 32px;
    font-family: 'Arial Black', sans-serif;
    transition: color 0.3s ease;
}

.faq-modern__item.is-open .faq-modern__num,
.faq-modern__q[aria-expanded="true"] .faq-modern__num {
    color: var(--brand-green, #37a235);
}

.faq-modern__q-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-navy, #0b1e3e);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-modern__q[aria-expanded="true"] .faq-modern__q-text {
    color: var(--brand-green, #37a235);
}

.faq-modern__toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-modern__toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.35s ease;
}

.faq-modern__q[aria-expanded="true"] .faq-modern__toggle {
    background: var(--brand-green, #37a235);
    color: #ffffff;
}

.faq-modern__q[aria-expanded="true"] .faq-modern__toggle svg {
    transform: rotate(180deg);
}

.faq-modern__answer {
    padding: 0 0 26px 52px;
}

.faq-modern__answer p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* Side Panel */
.faq-modern__side {
    position: sticky;
    top: 100px;
}

.faq-modern__side-card {
    background: linear-gradient(145deg, var(--brand-navy, #0b1e3e) 0%, #0f2d4a 100%);
    border-radius: 24px;
    padding: 40px 32px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-modern__side-bg-num {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'Arial Black', sans-serif;
}

.faq-modern__side-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.faq-modern__side-icon svg {
    width: 64px;
    height: 64px;
}

.faq-modern__side-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-modern__side-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 28px;
}

.faq-modern__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-orange, #f59e0b);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-modern__cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-modern__cta-btn:hover {
    background: #e08b00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.faq-modern__cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-modern__body {
        grid-template-columns: 1fr;
    }

    .faq-modern__side {
        position: static;
    }

    .faq-modern__side-card {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        padding: 28px 24px;
    }

    .faq-modern__side-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .faq-modern__side-bg-num {
        display: none;
    }
}

@media (max-width: 575px) {
    .faq-modern {
        padding: 70px 0 80px;
    }

    .faq-modern__answer {
        padding-left: 0;
    }

    .faq-modern__q {
        gap: 14px;
    }

    .faq-modern__num {
        display: none;
    }
}

/* =======================================================
   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-orange);
}

.premium-slider-card__desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =======================================================
   PROJECT GRID — New Design
   ======================================================= */
.proj-grid-section {
    padding: 100px 0 110px;
    background: #f0f4f0;
    position: relative;
}

/* Header row */
.proj-grid__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 52px;
}

.proj-grid__header-left {
    max-width: 580px;
}

.proj-grid__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(55, 162, 53, 0.25);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-green, #37a235);
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(55, 162, 53, 0.08);
}

.proj-grid__badge img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.proj-grid__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-navy, #0b1e3e);
    line-height: 1.18;
    margin-bottom: 14px;
}

.proj-grid__subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.proj-grid__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-navy, #0b1e3e);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.proj-grid__view-all svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.proj-grid__view-all:hover {
    background: var(--brand-green, #37a235);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(55, 162, 53, 0.3);
}

.proj-grid__view-all:hover svg {
    transform: translateX(4px);
}

/* Grid layout: 4 cols, first card spans 2 rows */
.proj-grid__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

/* Project Card */
.proj-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #000;
    min-height: 300px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.proj-card--featured {
    grid-row: span 2;
    min-height: 640px;
}

.proj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

/* Image layer */
.proj-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.proj-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.proj-card:hover .proj-card__img img {
    transform: scale(1.07);
}

/* Dark gradient overlay */
.proj-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.20) 40%,
            rgba(11, 30, 62, 0.80) 75%,
            rgba(11, 30, 62, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Top badges */
.proj-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 8px;
}

.proj-card__cat {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.proj-card__roi {
    background: var(--brand-orange, #f59e0b);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 100px;
}

/* Bottom content */
.proj-card__bottom {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 20px 24px 24px;
}

.proj-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.proj-card--featured .proj-card__title {
    font-size: 1.5rem;
}

.proj-card__desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.proj-card--featured .proj-card__desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    font-size: 0.9rem;
}

.proj-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
    gap: 12px;
}

.proj-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proj-card__meta-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

.proj-card__meta-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-orange, #f59e0b);
}

.proj-card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.proj-card__arrow svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
}

.proj-card:hover .proj-card__arrow {
    background: var(--brand-orange, #f59e0b);
    border-color: var(--brand-orange, #f59e0b);
}

.proj-card:hover .proj-card__arrow svg {
    transform: translate(2px, -2px);
}

/* Mobile CTA */
.proj-grid__mobile-cta {
    display: none;
    text-align: center;
    margin-top: 36px;
}

/* Responsive */
@media (max-width: 1199px) {
    .proj-grid__cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .proj-card--featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
}

@media (max-width: 991px) {
    .proj-grid__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .proj-grid__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .proj-grid__view-all {
        display: none;
    }

    .proj-grid__mobile-cta {
        display: block;
    }
}

@media (max-width: 767px) {
    .proj-grid-section {
        padding: 70px 0 80px;
    }

    .proj-grid__cards {
        grid-template-columns: 1fr;
    }

    .proj-card--featured {
        grid-column: span 1;
        min-height: 320px;
    }

    .proj-card {
        min-height: 280px;
    }
}

/* =======================================================
   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-orange);
}

.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-orange);
}

.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-orange);
    color: #ffffff;
}

/* =======================================================
   AWARD SHOWCASE — New Design
   ======================================================= */
.award-showcase {
    padding: 0 0 110px;
    background: #ffffff;
    position: relative;
}

.award-showcase__top-band {
    height: 10px;
    background: linear-gradient(90deg, var(--brand-green, #37a235) 0%, var(--brand-orange, #f59e0b) 100%);
    margin-bottom: 80px;
}

/* Header */
.award-showcase__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.award-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(55, 162, 53, 0.07);
    border: 1px solid rgba(55, 162, 53, 0.2);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-green, #37a235);
    margin-bottom: 20px;
}

.award-showcase__badge img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.award-showcase__title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--brand-navy, #0b1e3e);
    line-height: 1.2;
    margin-bottom: 14px;
}

.award-showcase__subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Grid */
.award-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

/* Card */
.award-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8edf2;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(11, 30, 62, 0.10);
    border-color: rgba(55, 162, 53, 0.25);
}

/* Image wrapper */
.award-card__img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f1;
}

.award-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.award-card:hover .award-card__img-wrap img {
    transform: scale(1.07);
}

/* Ghost number watermark */
.award-card__number {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Card body */
.award-card__body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.award-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-orange, #f59e0b);
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 14px;
    width: fit-content;
}

.award-card__date svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.award-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-navy, #0b1e3e);
    line-height: 1.35;
    margin-bottom: 18px;
    flex: 1;
    transition: color 0.3s ease;
}

.award-card:hover .award-card__name {
    color: var(--brand-green, #37a235);
}

.award-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--brand-navy, #0b1e3e);
    margin-top: auto;
    transition: color 0.3s ease, gap 0.3s ease;
}

.award-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.award-card:hover .award-card__link {
    color: var(--brand-green, #37a235);
    gap: 10px;
}

.award-card:hover .award-card__link svg {
    transform: translateX(3px);
}

/* Bottom accent line on hover */
.award-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green, #37a235), var(--brand-orange, #f59e0b));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.award-card:hover::after {
    transform: scaleX(1);
}

/* CTA */
.award-showcase__cta {
    text-align: center;
}

.award-showcase__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-navy, #0b1e3e);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.award-showcase__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.award-showcase__btn:hover {
    background: var(--brand-green, #37a235);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(55, 162, 53, 0.3);
}

.award-showcase__btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .award-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .award-showcase {
        padding-bottom: 70px;
    }

    .award-showcase__top-band {
        margin-bottom: 52px;
    }

    .award-showcase__grid {
        grid-template-columns: 1fr;
    }

    .award-card__img-wrap {
        height: 200px;
    }
}

/* =======================================================
   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-orange);
    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-orange), #e67e00);
    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-orange);
}

.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-orange);
}

.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-orange);
}

/* 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-orange), #e67e00);
    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-orange);
}

.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-orange);
    font-weight: 700;
}

.form-check-input:checked {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

/* 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-orange);
    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-orange);
    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-orange);
    border-color: var(--brand-orange);
    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-orange);
}

.ui-slider .ui-slider-handle {
    background: #ffffff;
    border: 2px solid var(--brand-orange);
    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-orange) 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-orange);
    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-orange) !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-orange);
    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-orange);
}

.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: linear-gradient(135deg, #1b6e1a 0%, #37a235 100%) !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(55, 162, 53, 0.4) !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: 50px 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;
}

.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-orange);
    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-orange);
}

.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-orange), #e67e00) !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-orange);
}

.mobile-bottom-menu a:hover i,
.mobile-bottom-menu a:active i,
.mobile-bottom-menu a.active i {
    transform: translateY(-2px);
    color: var(--brand-orange);
}

.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-orange);
    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-orange) !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: #e67e00 !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;
}

/* ==============================================================
   Premium Preloader Update
   ============================================================== */
.preloader {
    background-color: var(--brand-bg) !important;
}

.loader-p {
    width: 48px !important;
    height: 48px !important;
    aspect-ratio: auto !important;
    background: transparent !important;
    border: 4px solid rgba(255, 138, 0, 0.15) !important;
    border-top: 4px solid var(--brand-orange) !important;
    border-radius: 50% !important;
    animation: premium-spin 1s linear infinite !important;
    -webkit-animation: premium-spin 1s linear infinite !important;
}

@keyframes premium-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes premium-spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =======================================================
   GROWZA BRAND VARIABLES
   ======================================================= */
:root {
    /* Brand palette from logo */
    --g-orange: #E87722;
    --g-orange-lt: rgba(232, 119, 34, 0.10);
    --g-orange-glow: rgba(232, 119, 34, 0.25);
    --g-green: #2E8B3C;
    --g-green-lt: rgba(46, 139, 60, 0.10);
    --g-navy: #0A1628;
    --g-navy-2: #112040;
    --g-navy-3: #1E3268;
    /* Light surfaces */
    --g-bg: #F5F8F3;
    --g-surface: #FFFFFF;
    --g-border: #E0E8D8;
    --g-text: #1E2D3D;
    --g-muted: #627080;
}

/* =======================================================
   HERO SECTION — LIGHT BRAND REDESIGN
   ======================================================= */

/* ── Section shell ── */
.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: var(--g-bg);
    display: flex;
    align-items: stretch;
}

/* Orange underline connects to cert section */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--g-orange) 0%, var(--g-green) 50%, transparent 100%);
    z-index: 10;
}

/* ── Slider shell ── */
.hero-inner {
    position: relative;
    width: 100%;
    min-height: 600px;
}

/* ── Individual slide ── */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    display: flex;
    align-items: stretch;
}

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

/* Image lives only on the right half — true split */
/* Full-bleed background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 9s ease;
}

.hero-bg::before,
.hero-bg::after {
    display: none;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

/* Gradient overlay — opaque left (text area), transparent right (image shows) */
.hero-panel {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg,
            rgba(245, 248, 243, 0.97) 0%,
            rgba(245, 248, 243, 0.95) 32%,
            rgba(245, 248, 243, 0.70) 50%,
            rgba(245, 248, 243, 0.18) 68%,
            transparent 84%);
}

/* Subtle dot texture limited to the readable text zone */
.hero-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 58%;
    background-image: radial-gradient(rgba(46, 139, 60, 0.07) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ── Row sizing ── */
.hero-row {
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

/* ── Content wrapper ── */
.hero-content {
    padding: 120px 0 100px;
}

/* ── Platform badge ── */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--g-green-lt);
    border: 1px solid rgba(46, 139, 60, 0.25);
    border-radius: 6px;
    padding: 6px 16px;
    color: var(--g-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-tag i {
    font-size: 0.9rem;
}

/* ── Main heading ── */
.hero-heading {
    color: var(--g-navy);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 6px;
    text-shadow: none;
}

/* First line orange highlight via CSS */
.hero-heading em {
    font-style: normal;
    color: var(--g-orange);
}

/* ── Sub-heading ── */
.hero-subheading {
    color: var(--g-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-subheading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--g-orange);
    flex-shrink: 0;
}

/* ── Body text ── */
.hero-desc {
    color: var(--g-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 0;
    font-weight: 400 !important;
}

.hero-desc span {
    color: var(--g-orange);
    font-weight: 700;
}

/* ── CTA row ── */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 32px 0 40px;
}

.hero-btn-primary,
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.28s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.hero-btn-primary {
    background: var(--g-orange);
    color: #ffffff;
    border-color: var(--g-orange);
    box-shadow: 0 6px 20px var(--g-orange-glow);
}

.hero-btn-primary:hover {
    background: #d4691a;
    border-color: #d4691a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px var(--g-orange-glow);
}

.hero-btn-ghost {
    background: transparent;
    color: var(--g-navy);
    border-color: var(--g-navy);
}

.hero-btn-ghost:hover {
    background: var(--g-navy);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ── Metrics / stats strip ── */
.hero-metrics {
    display: inline-flex;
    align-items: stretch;
    border: 1.5px solid var(--g-border);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.07);
}

.hero-metrics__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    text-align: center;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.hero-metrics__item:hover {
    border-top-color: var(--g-orange);
    background: var(--g-bg);
}

/* Odometer numbers */
.hero-num {
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: var(--g-orange) !important;
    line-height: 1 !important;
    margin-bottom: 5px !important;
    font-family: inherit !important;
    text-shadow: none !important;
}

.hero-metrics__item span {
    font-size: 0.68rem;
    color: var(--g-muted);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-metrics__sep {
    width: 1.5px;
    background: var(--g-border);
    flex-shrink: 0;
    margin: 12px 0;
}

/* ── Slider controls ── */
.hero-controls {
    position: absolute;
    bottom: 36px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-ctrl-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1.5px solid var(--g-border);
    border-radius: 50%;
    color: var(--g-navy);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 2px 10px rgba(10, 22, 40, 0.08);
}

.hero-ctrl-btn:hover {
    background: var(--g-orange);
    color: #ffffff;
    border-color: var(--g-orange);
    box-shadow: 0 4px 16px var(--g-orange-glow);
}

.hero-ctrl-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g-border);
    border: 1.5px solid var(--g-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: block;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 4px;
    background: var(--g-orange);
    border-color: var(--g-orange);
    box-shadow: 0 2px 10px var(--g-orange-glow);
}

/* ── Slide-in animations ── */
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.hero-slide.active .hero-tag {
    animation: heroIn 0.5s ease 0.10s both;
}

.hero-slide.active .hero-heading {
    animation: heroIn 0.55s ease 0.22s both;
}

.hero-slide.active .hero-subheading {
    animation: heroIn 0.5s ease 0.32s both;
}

.hero-slide.active .hero-desc {
    animation: heroIn 0.5s ease 0.42s both;
}

.hero-slide.active .hero-actions {
    animation: heroIn 0.5s ease 0.52s both;
}

.hero-slide.active .hero-metrics {
    animation: heroIn 0.5s ease 0.62s both;
}

/* ── Responsive ── */
@media (max-width: 1400px) {
    .hero-heading {
        font-size: 3.8rem;
    }
}

@media (max-width: 1200px) {
    .hero-heading {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.7rem;
        letter-spacing: -1px;
    }

    .hero-panel {
        background: linear-gradient(to right,
                rgba(245, 248, 243, 0.97) 0%,
                rgba(245, 248, 243, 0.92) 40%,
                rgba(245, 248, 243, 0.55) 62%,
                rgba(245, 248, 243, 0.12) 80%,
                transparent 95%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-heading {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-panel {
        background: rgba(245, 248, 243, 0.90);
    }

    .hero-controls {
        right: 16px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-ghost {
        justify-content: center;
    }
}

/* Old banner-content-* rules removed — hero-* replaces them */

@media (max-width: 768px) {
    .banner-slider-wrapper {
        height: 100svh;
        min-height: 600px;
    }

    .banner-content__title {
        font-size: 2.4rem !important;
    }

    .counterup-list {
        width: 100% !important;
        border-radius: 14px !important;
    }

    .counterup-list-item {
        padding: 0 12px !important;
    }

    .counterup-list-item__number {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .banner-content__title {
        font-size: 2rem !important;
    }

    .counterup-list-item {
        padding: 0 8px !important;
    }
}

/* =======================================================
   WHY INVEST — LIGHT BRAND REDESIGN
   ======================================================= */
.why-invest {
    background: var(--g-surface) !important;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* .why-invest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--g-green), var(--g-orange) 60%, transparent 100%);
} */

/* Image panel — dark framed */
.cinematic-thumb {
    border-radius: 24px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5) !important;
    position: relative;
}

.cinematic-thumb::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--g-orange), var(--g-green) 50%, transparent 80%);
    border-radius: 26px;
    z-index: -1;
}

/* .cinematic-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(11, 15, 25, 0.6) 100%);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
} */

/* Section heading — light brand version */
.why-invest .section-heading__sec-name {
    background: var(--g-green-lt) !important;
    border-color: rgba(46, 139, 60, 0.25) !important;
    color: var(--g-green) !important;
}

.why-invest .section-heading__title {
    color: var(--g-navy) !important;
    font-size: 2.5rem !important;
    letter-spacing: -0.5px;
    line-height: 1.2 !important;
}

.why-invest .section-heading__desc {
    color: var(--g-muted) !important;
    font-size: 1rem !important;
}

/* Feature cards */
.why-invest .premium-card {
    background: var(--g-surface) !important;
    border-color: var(--g-border) !important;
    box-shadow: 0 2px 10px rgba(10, 22, 40, 0.05) !important;
    transition: all 0.28s ease !important;
}

.why-invest .premium-card:hover {
    background: var(--g-bg) !important;
    border-color: rgba(232, 119, 34, 0.3) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.09) !important;
}

.why-invest .premium-card__title {
    color: var(--g-text) !important;
    font-size: 0.9rem !important;
}

.why-invest .premium-card__icon {
    background: var(--g-orange-lt) !important;
    color: var(--g-orange) !important;
    border-radius: 10px !important;
}

.why-invest .premium-card:hover .premium-card__icon {
    background: var(--g-orange) !important;
    color: #ffffff !important;
}

/* CTA button — brand orange */
.why-invest .btn--base {
    background: var(--g-orange) !important;
    color: #ffffff !important;
    border-color: var(--g-orange) !important;
    font-weight: 800 !important;
    box-shadow: 0 6px 20px var(--g-orange-glow) !important;
}

.why-invest .btn--base:hover {
    background: #d4691a !important;
    border-color: #d4691a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Image frame */
.why-invest .cinematic-thumb::before {
    background: linear-gradient(135deg, var(--g-orange), var(--g-green) 60%, transparent) !important;
}

/* =======================================================
   STATS BRIDGE — floats between hero & next section
   ======================================================= */
.stats-bridge {
    position: relative;
    z-index: 20;
    margin-top: -70px;
    padding-bottom: 0;
}

/* Card */
.sbridge-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 18px 24px;
    text-align: center;
    height: 100%;
    border: 1.5px solid var(--g-border);
    border-top: 4px solid var(--g-orange);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle background shape */
.sbridge-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--g-orange-lt);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.sbridge-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--g-green);
    box-shadow: 0 20px 50px rgba(232, 119, 34, 0.18);
}

.sbridge-card:hover::before {
    background: var(--g-green-lt);
    transform: scale(2);
}

/* Icon */
.sbridge-card__icon {
    width: 70px;
    height: 70px;
    background: var(--g-green-lt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 3rem;
    color: var(--g-green);
    transition: all 0.28s ease;
    position: relative;
    z-index: 1;
}

.sbridge-card:hover .sbridge-card__icon {
    background: var(--g-green);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(46, 139, 60, 0.35);
}

/* Number */
.sbridge-card__number {
    color: var(--g-orange);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

/* Label */
.sbridge-card__label {
    color: var(--g-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .sbridge-card {
        padding: 22px 14px 20px;
    }

    .sbridge-card__number {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .sbridge-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .sbridge-card {
        padding: 18px 10px 16px;
    }

    .sbridge-card__number {
        font-size: 1rem;
    }

    .sbridge-card__label {
        font-size: 0.68rem;
    }
}

/* =======================================================
   CERTIFICATION AT A GLANCE — LIGHT BRAND VERSION
   ======================================================= */
.cert-glance-section {
    background: var(--g-bg);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Top rule — orange left to green center */
.cert-glance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--g-orange) 0%, var(--g-green) 45%, transparent 100%);
}

/* ── Header ── */
.cert-glance-header {
    text-align: center;
    margin-bottom: 60px;
}

.cert-glance-header h2 {
    color: var(--g-navy);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 50px;
}

.cert-glance-header h2 .cert-accent {
    color: var(--g-orange);
}

.cert-glance-header p {
    color: var(--g-muted);
    font-size: 1rem;
    margin-top: 14px;
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ── Org Cards ── */
.cert-org-card {
    background: var(--g-surface);
    border: 1.5px solid var(--g-border);
    border-top: 4px solid var(--g-orange);
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.28s ease;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.cert-org-card:hover {
    border-top-color: var(--g-green);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
    transform: translateY(-4px);
}

.cert-org-title {
    color: var(--g-navy);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--g-border);
    line-height: 1.4;
    margin-top: -15px;
}

.cert-org-title .cert-accent {
    color: var(--g-orange);
}

/* ── Data rows ── */
.cert-data-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-data-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--g-border);
}

.cert-data-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cert-data-label {
    color: var(--g-muted);
    font-size: 0.84rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    flex: 1;
}

.cert-data-label i {
    color: var(--g-green);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cert-data-value {
    color: var(--g-navy);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Stats Row ── */
.cert-stats-row {
    margin-top: 48px;
}

.cert-stat-box {
    background: var(--g-surface);
    border: 1.5px solid var(--g-border);
    border-radius: 14px;
    padding: 28px 14px;
    text-align: center;
    height: 100%;
    transition: all 0.28s ease;
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.05);
}

.cert-stat-box:hover {
    border-color: rgba(232, 119, 34, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(232, 119, 34, 0.12);
}

.cert-stat-icon {
    width: 52px;
    height: 52px;
    background: var(--g-green-lt);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    color: var(--g-green);
    transition: all 0.28s ease;
}

.cert-stat-box:hover .cert-stat-icon {
    background: var(--g-green);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(46, 139, 60, 0.3);
}

.cert-stat-number {
    color: var(--g-orange);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1.15;
}

.cert-stat-label {
    color: var(--g-muted);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .cert-glance-header h2 {
        font-size: 2.2rem;
    }

    .cert-org-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .cert-glance-section {
        padding: 70px 0;
    }

    .cert-glance-header h2 {
        font-size: 1.9rem;
    }

    .cert-glance-header {
        margin-bottom: 40px;
    }

    .cert-stats-row {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .cert-glance-header h2 {
        font-size: 1.65rem;
    }

    .cert-org-title {
        font-size: 1rem;
    }

    .cert-data-value {
        font-size: 0.76rem;
    }
}

/* =====================================================
   Policy / Content Pages
   ===================================================== */
.policy-page {
    background: #f7f9fc;
    min-height: 60vh;
}

.policy-article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
    overflow: hidden;
    margin: 50px 0;
}

.policy-article__body {
    padding: 52px 56px;
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
}

/* Headings inside policy content */
.policy-article__body h1,
.policy-article__body h2,
.policy-article__body h3,
.policy-article__body h4,
.policy-article__body h5,
.policy-article__body h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0b1e3e;
    margin-top: 2.2rem;
    margin-bottom: .75rem;
    line-height: 1.3;
}

.policy-article__body h1 {
    font-size: 2rem;
}

.policy-article__body h2 {
    font-size: 1.55rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid #f0f0f0;
}

.policy-article__body h3 {
    font-size: 1.2rem;
    color: #1f4a38;
}

.policy-article__body h4 {
    font-size: 1rem;
}

/* First heading — no top margin */
.policy-article__body>h1:first-child,
.policy-article__body>h2:first-child {
    margin-top: 0;
}

.policy-article__body p {
    margin-bottom: 1.1rem;
    color: #4b5563;
}

/* Lists */
.policy-article__body ul,
.policy-article__body ol {
    padding-left: 1.4rem;
    margin-bottom: 1.1rem;
}

.policy-article__body ul li {
    list-style: none;
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: .45rem;
    color: #4b5563;
}

.policy-article__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #37a235;
}

.policy-article__body ol li {
    margin-bottom: .45rem;
    color: #4b5563;
}

.policy-article__body li strong {
    color: #0b1e3e;
}

/* Inline highlights */
.policy-article__body strong,
.policy-article__body b {
    color: #0b1e3e;
    font-weight: 600;
}

.policy-article__body a {
    color: #37a235;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-article__body a:hover {
    color: #f97316;
}

/* Horizontal rule */
.policy-article__body hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

/* Blockquote */
.policy-article__body blockquote {
    border-left: 4px solid #37a235;
    background: #f0faf0;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    color: #1f4a38;
    font-style: italic;
}

/* Table */
.policy-article__body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: .93rem;
}

.policy-article__body table th {
    background: #0b1e3e;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}

.policy-article__body table td {
    padding: 9px 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.policy-article__body table tr:nth-child(even) td {
    background: #f9fafb;
}

/* Stray empty bullet from NIC editor */
.policy-article__body ul li:empty,
.policy-article__body p:empty {
    display: none;
}

/* Responsive */
@media (max-width: 767px) {
    .policy-article__body {
        padding: 32px 24px;
    }

    .policy-article__body h1 {
        font-size: 1.5rem;
    }

    .policy-article__body h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .policy-article__body {
        padding: 24px 16px;
    }
}

/* =====================================================
   Contact Page — Split Layout
   ===================================================== */
.contact-split {
    background: #f7f9fc;
    padding: 60px 0;
}

/* ---- Info Panel (left / navy) ---- */
.cinfo-panel {
    background: #0b1e3e;
    border-radius: 20px 0 0 20px;
    padding: 60px 48px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cinfo-panel__deco {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
    background: #fff;
    pointer-events: none;
}

.cinfo-panel__deco--1 {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -100px;
}

.cinfo-panel__deco--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
}

.cinfo-panel__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.cinfo-panel__eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #37a235;
    margin-bottom: 12px;
}

.cinfo-panel__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.cinfo-panel__title span {
    color: #f97316;
}

.cinfo-panel__sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Info list items */
.cinfo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cinfo-list__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.cinfo-list__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #f97316;
    transition: background .3s;
}

.cinfo-list__item:hover .cinfo-list__icon {
    background: rgba(249, 115, 22, .2);
}

.cinfo-list__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cinfo-list__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
}

.cinfo-list__value {
    font-size: .95rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    transition: color .3s;
}

a.cinfo-list__value:hover {
    color: #f97316;
}

/* ---- Form Panel (right / white) ---- */
.cform-panel {
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 60px 52px;
    height: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

.cform-panel__header {
    margin-bottom: 36px;
}

.cform-panel__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #0b1e3e;
    margin-bottom: 8px;
}

.cform-panel__sub {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Form fields */
.cform-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cform-field__label {
    font-size: .82rem;
    font-weight: 700;
    color: #0b1e3e;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cform-field__label.required::after {
    content: ' *';
    color: #f97316;
}

.cform-field__wrap {
    position: relative;
}

.cform-field__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #94a3b8;
    pointer-events: none;
    transition: color .3s;
}

.cform-field__input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: .95rem;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
}

.cform-field__input:focus {
    border-color: #37a235;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(55, 162, 53, .12);
}

.cform-field__input:focus+.cform-field__icon,
.cform-field__wrap:focus-within .cform-field__icon {
    color: #37a235;
}

.cform-field__textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: .95rem;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    resize: vertical;
    min-height: 140px;
    transition: border-color .25s, box-shadow .25s, background .25s;
}

.cform-field__textarea:focus {
    border-color: #37a235;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(55, 162, 53, .12);
}

/* Submit button */
.cform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: linear-gradient(135deg, #37a235 0%, #2d8a2b 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 6px 20px rgba(55, 162, 53, .3);
}

.cform-btn:hover {
    background: linear-gradient(135deg, #2d8a2b 0%, #1f6b1e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(55, 162, 53, .4);
    color: #fff;
}

.cform-btn i {
    font-size: 1.1rem;
}

/* Map */
.contact-map-wrap {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
    padding: 0 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .cinfo-panel {
        border-radius: 20px 20px 0 0;
        padding: 48px 36px;
    }

    .cform-panel {
        border-radius: 0 0 20px 20px;
        padding: 48px 36px;
    }
}

@media (max-width: 575px) {

    .cinfo-panel,
    .cform-panel {
        padding: 36px 24px;
    }

    .cinfo-panel__title {
        font-size: 1.6rem;
    }

    .cform-panel__title {
        font-size: 1.35rem;
    }
}