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

.pt-80 {
    padding-top: 80px !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));
    white-space: nowrap;
    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 ==================== */
/* ══════════════════════════════════════
   PROJECT CARDS — our_offer section
   ══════════════════════════════════════ */
.modern-project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(61, 126, 87, .12);
    border-top: 4px solid #3d7e57;
    box-shadow: 0 4px 20px rgba(23, 61, 36, .07), 0 1px 4px rgba(23, 61, 36, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-top-color .3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(23, 61, 36, .14), 0 4px 12px rgba(23, 61, 36, .08);
    border-top-color: #d4a843;
}

/* ── Image area ── */
.modern-card-header {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #e8f5ee;
}

.project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.modern-project-card:hover .project-image img {
    transform: scale(1.07);
}

/* Gradient overlay at bottom of image */
.modern-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(23, 61, 36, .45), transparent);
    pointer-events: none;
}

/* ── ROI Badge ── */
.roi-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #d4a843, #c49330);
    color: #FFF;
    padding: 5px 13px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    z-index: 3;
    letter-spacing: .04em;
    box-shadow: 0 3px 10px rgba(212, 168, 67, .4);
}

.roi-label {
    margin-right: 3px;
    opacity: .75;
}

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

/* ── Status Badge ── */
.status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 13px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    z-index: 3;
    letter-spacing: .04em;
}

.status-badge.active {
    background: #3d7e57;
    color: #fff;
    box-shadow: 0 3px 10px rgba(61, 126, 87, .4);
}

.status-badge.closed {
    background: #dc2626;
    color: #fff;
}

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

.project-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.35;
}

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

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

/* ── Per Share ── */
.per-share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f8f5;
    border-left: 4px solid #3d7e57;
    border-radius: 0 10px 10px 0;
    padding: 12px 16px;
    margin-bottom: 18px;
}

.per-share-label {
    font-size: .72rem;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.per-share-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #173d24;
}

/* ── Detail rows ── */
.project-details {
    flex: 1;
    margin-bottom: 20px;
}

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

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

.detail-label {
    font-size: .82rem;
    color: #6b7280;
    font-weight: 600;
}

.detail-value {
    font-size: .82rem;
    color: #173d24;
    font-weight: 700;
    text-align: right;
}

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

/* Full-width primary button inside project cards */
.invest-button-section .hero-btn-313-primary {
    width: 100%;
    border-radius: 10px;
}

.invest-btn--closed {
    background: #9ca3af !important;
    color: #fff !important;
    box-shadow: none !important;
    cursor: not-allowed;
    opacity: .75;
}

.invest-btn--closed:hover {
    transform: none !important;
    box-shadow: none !important;
}

.invest-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3d7e57 0%, #2e6040 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(61, 126, 87, .3);
    transition: all .25s ease;
}



.invest-btn:hover {
    background: linear-gradient(135deg, #2e6040, #173d24);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 126, 87, .45);
    text-decoration: none;
}

.invest-btn.closed {
    background: #dc2626 !important;
    cursor: not-allowed;
    box-shadow: none;
    transform: none !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .modern-card-body {
        padding: 18px;
    }

    .project-title {
        font-size: 1rem;
    }

    .per-share-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .roi-badge,
    .status-badge {
        font-size: .65rem;
        padding: 4px 10px;
    }

    .detail-label,
    .detail-value {
        font-size: .78rem;
    }
}

/* ==================== 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: #3d7e57;
    /* 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', 'Hind Siliguri', 'Noto Sans Bengali', 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), #3d7e57) !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, #3d7e57, 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(61, 126, 87, .08);
    padding: 7px 18px;
    border-radius: 100px;
    color: #3d7e57;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1.5px solid rgba(61, 126, 87, .22);
    gap: 2px;
}

.section-heading__sec-name img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: .75;
}

/* Light variant — for dark backgrounds */
.section-heading__sec-name--light {
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
}

.section-heading__sec-name--light img {
    filter: brightness(0) invert(1);
    opacity: .8;
}

.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: #f4f8f5;
    padding: 80px 0;
}

.our-offers {
    padding: 80px 0;
}

.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;
    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,
.btn--login-313 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: hsl(145 63% 42%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 9px 22px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
    letter-spacing: .03em;
    box-shadow: 0 4px 16px rgba(61, 126, 87, .3);
    transition: all .25s ease !important;
    text-decoration: none !important;
}

.navbar-buttons .btn--white i,
.btn--login-313 i {
    font-size: 1.15rem;
    line-height: 1;
}

.navbar-buttons .btn--white:hover,
.btn--login-313:hover {
    background: #c49330 !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(212, 168, 67, .52) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

/* Sticky Header */
.header.fixed-header .header-bottom {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* =======================================================
   OUR VISION (Commitment) SECTION
   ======================================================= */
/* ══════════════════════════════════════
   OUR VISION CARDS
   ══════════════════════════════════════ */
.our-vision {
    background: #f4f8f5;
    position: relative;
}

/* ══════════════════════════════════════
   MISSION / VISION CARDS
   ══════════════════════════════════════ */
.mvcard-313 {
    border-radius: 22px;
    padding: 36px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.mvcard-313:hover {
    transform: translateY(-6px);
}

/* Gold top accent bar */
.mvcard-313::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a843 0%, rgba(212, 168, 67, .2) 100%);
    border-radius: 22px 22px 0 0;
}

/* Decorative circle */
.mvcard-313::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(212, 168, 67, .05);
    pointer-events: none;
}

.mvcard-313--mission {
    background: linear-gradient(150deg, #0f2a1a 0%, #1a4d2e 100%);
    border: 1px solid rgba(212, 168, 67, .12);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
}

.mvcard-313--vision {
    background: linear-gradient(150deg, #173d24 0%, #2e6040 100%);
    border: 1px solid rgba(212, 168, 67, .12);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
}

/* Top row: icon + label */
.mvcard-313__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.mvcard-313__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(212, 168, 67, .15);
    border: 1.5px solid rgba(212, 168, 67, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #d4a843;
    transition: background .3s, transform .3s;
}

.mvcard-313:hover .mvcard-313__icon {
    background: rgba(212, 168, 67, .25);
    transform: scale(1.08);
}

.mvcard-313__label {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #d4a843;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.mvcard-313__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin: 0 0 24px;
    flex: 1;
}

.mvcard-313__footer {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(212, 168, 67, .7);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mvcard-313__footer i {
    font-size: 1rem;
    color: #d4a843;
}

/* ══════════════════════════════════════
   CORE VALUES
   ══════════════════════════════════════ */
.cv-313-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 4px;
}

.cv-313-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 16px 24px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(61, 126, 87, .1);
    border-top: 3px solid #3d7e57;
    box-shadow: 0 4px 18px rgba(23, 61, 36, .06);
    transition: transform .3s, box-shadow .3s, border-top-color .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cv-313-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(61, 126, 87, .04);
    pointer-events: none;
}

.cv-313-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(23, 61, 36, .12);
    border-top-color: #d4a843;
}

.cv-313-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5ee, #c6e6d2);
    border: 2px solid rgba(61, 126, 87, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    color: #3d7e57;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s;
}

.cv-313-card__icon svg {
    width: 28px;
    height: 28px;
}

.cv-313-card:hover .cv-313-card__icon {
    background: linear-gradient(135deg, #3d7e57, #2e6040);
    color: #fff;
    border-color: #3d7e57;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 22px rgba(61, 126, 87, .35);
}

/* Mission / Vision card icon (slightly larger) */
.mvcard-313__icon svg {
    width: 26px;
    height: 26px;
}

.cv-313-card__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #173d24;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cv-313-card__desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .mvcard-313 {
        padding: 28px 24px 28px;
    }

    .mvcard-313__label {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .cv-313-card {
        padding: 22px 12px 20px;
    }

    .cv-313-card__emoji {
        font-size: 1.8rem;
    }

    .mvcard-313__text {
        font-size: .85rem;
    }
}

/* =======================================================
   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), #2e6040);
    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, #3d7e57));
    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
   ======================================================= */
/* ══════════════════════════════════════
   BLOG SECTION — 313 BRAND
   ══════════════════════════════════════ */
.blog-313-section {
    padding: 100px 0 110px;
    background: #fff;
}

/* ── Blog Listing Page ── */
.blog-listing-313 {
    padding: 80px 0 100px;
    background: #f7f9f7;
}

.bl-pagination-313 {
    display: flex;
    justify-content: center;
}

/* ── Blog Detail Page ── */
.bd-313 {
    padding: 72px 0 100px;
    background: #f7f9f7;
}

.bd-313__article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(23, 61, 36, .08);
}

/* Hero image */
.bd-313__hero {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.bd-313__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bd-313__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 16, .55) 0%, transparent 60%);
}

/* Meta bar */
.bd-313__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 28px 40px 0;
    flex-wrap: wrap;
}

.bd-313__meta-date,
.bd-313__meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.bd-313__meta-date {
    color: #3d7e57;
    background: rgba(61, 126, 87, .10);
    padding: 5px 12px;
    border-radius: 100px;
}

.bd-313__meta-sep {
    color: #d1d5db;
}

.bd-313__meta-tag {
    color: #d4a843;
    background: rgba(212, 168, 67, .10);
    padding: 5px 12px;
    border-radius: 100px;
}

/* Title */
.bd-313__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f2a1a;
    line-height: 1.3;
    padding: 20px 40px 0;
    margin: 0;
}

/* Divider */
.bd-313__divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 3px;
    margin: 18px 40px;
}

/* Article body */
.bd-313__body {
    padding: 0 40px 36px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #374151;
}

.bd-313__body h1,
.bd-313__body h2,
.bd-313__body h3,
.bd-313__body h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0f2a1a;
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.bd-313__body h2 {
    font-size: 1.45rem;
}

.bd-313__body h3 {
    font-size: 1.25rem;
}

.bd-313__body p {
    margin-bottom: 1.25rem;
}

.bd-313__body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.bd-313__body ul,
.bd-313__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.bd-313__body li {
    margin-bottom: .5rem;
}

.bd-313__body a {
    color: #3d7e57;
    font-weight: 600;
    text-decoration: underline;
    transition: color .2s;
}

.bd-313__body a:hover {
    color: #d4a843;
}

.bd-313__body blockquote {
    border-left: 4px solid #3d7e57;
    background: rgba(61, 126, 87, .05);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: #374151;
}

/* Share section */
.bd-313__share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 24px 40px;
    border-top: 1.5px solid #f0f4f0;
    background: #f9faf8;
}

.bd-313__share-label {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 7px;
}

.bd-313__share-label i {
    color: #3d7e57;
}

.bd-313__share-btns {
    display: flex;
    gap: 10px;
}

.bd-313__share-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    text-decoration: none;
    color: #fff;
    transition: transform .2s, box-shadow .2s;
}

.bd-313__share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

.bd-313__share-btn--fb {
    background: #1877f2;
}

.bd-313__share-btn--tw {
    background: #1da1f2;
}

.bd-313__share-btn--li {
    background: #0a66c2;
}

.bd-313__share-btn--wa {
    background: #25d366;
}

/* Comments */
.bd-313__comments {
    padding: 32px 40px;
    border-top: 1.5px solid #f0f4f0;
}

/* ── Sidebar ── */
.bd-313__sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 110px;
}

.bd-313__widget {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(23, 61, 36, .08);
}

.bd-313__widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f2a1a;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f4f0;
    position: relative;
}

.bd-313__widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 2px;
}

.bd-313__latest-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bd-313__latest-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
    transition: background .2s;
}

.bd-313__latest-item:hover {
    background: #f7f9f7;
}

.bd-313__latest-thumb {
    width: 76px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.bd-313__latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.bd-313__latest-item:hover .bd-313__latest-thumb img {
    transform: scale(1.07);
}

.bd-313__latest-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bd-313__latest-title {
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #0f2a1a;
    line-height: 1.4;
    margin: 0;
    transition: color .2s;
}

.bd-313__latest-item:hover .bd-313__latest-title {
    color: #3d7e57;
}

.bd-313__latest-date {
    font-size: .78rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* Sidebar CTA card */
.bd-313__cta-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.bd-313__cta-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #071810 0%, #173d24 50%, #2e6040 100%);
}

.bd-313__cta-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 168, 67, .15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(61, 126, 87, .15) 0%, transparent 50%);
}

.bd-313__cta-card-inner {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.bd-313__cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 168, 67, .18);
    border: 1.5px solid rgba(212, 168, 67, .35);
    color: #d4a843;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.bd-313__cta-card-inner h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.bd-313__cta-card-inner p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .70);
    line-height: 1.65;
    margin: 0;
}

.bd-313__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    background: #d4a843;
    color: #071810;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .25s, transform .25s;
}

.bd-313__cta-btn:hover {
    background: #e8bc55;
    transform: translateY(-2px);
    color: #071810;
}

/* Responsive */
@media (max-width: 767px) {
    .bd-313 {
        padding: 48px 0 72px;
    }

    .bd-313__meta,
    .bd-313__title,
    .bd-313__divider,
    .bd-313__body,
    .bd-313__share,
    .bd-313__comments {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bd-313__divider {
        margin-left: 20px;
        margin-right: 20px;
    }

    .bd-313__title {
        font-size: 1.35rem;
    }

    .bd-313__sidebar {
        position: static;
    }
}

.blog-313-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(61, 126, 87, .12);
    box-shadow: 0 4px 20px rgba(23, 61, 36, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-313-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(23, 61, 36, .1);
    border-color: rgba(61, 126, 87, .35);
}

/* Thumbnail */
.blog-313-card__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #e8f5ee;
    text-decoration: none;
}

.blog-313-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.blog-313-card:hover .blog-313-card__thumb img {
    transform: scale(1.07);
}

.blog-313-card__thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 26, .72) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
    opacity: 0;
    transition: opacity .35s ease;
}

.blog-313-card:hover .blog-313-card__thumb-overlay {
    opacity: 1;
}

.blog-313-card__read-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d4a843;
    color: #0f2a1a;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}

/* Card body */
.blog-313-card__body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-313-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: #3d7e57;
    background: rgba(61, 126, 87, .08);
    border: 1px solid rgba(61, 126, 87, .15);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
    width: fit-content;
}

.blog-313-card__date i {
    font-size: .9rem;
}

.blog-313-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #173d24;
    line-height: 1.45;
    margin-bottom: 12px;
}

.blog-313-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color .25s;
}

.blog-313-card__title a:hover {
    color: #3d7e57;
}

.blog-313-card__excerpt {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.blog-313-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #3d7e57;
    text-decoration: none;
    border-top: 1px solid rgba(61, 126, 87, .12);
    padding-top: 18px;
    margin-top: auto;
    transition: gap .25s, color .25s;
}

.blog-313-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform .25s;
}

.blog-313-card__link:hover {
    color: #2e6040;
    gap: 12px;
}

.blog-313-card__link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 575px) {
    .blog-313-section {
        padding: 70px 0 80px;
    }
}

/* ══════════════════════════════════════
   CTA SECTION — 313
   ══════════════════════════════════════ */
.cta-313 {
    background: linear-gradient(135deg, #0a1f10 0%, #0f2a1a 40%, #173d24 100%);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.cta-313__watermark {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(10rem, 20vw, 22rem);
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.cta-313__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-313__orb--left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61, 126, 87, .12) 0%, transparent 70%);
    top: -120px;
    left: -100px;
}

.cta-313__orb--right {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, .1) 0%, transparent 70%);
    bottom: -100px;
    right: 15%;
}

.cta-313__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, .12);
    border: 1px solid rgba(212, 168, 67, .35);
    color: #d4a843;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.cta-313__badge i {
    font-size: 1rem;
}

.cta-313__heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.cta-313__heading-gold {
    color: #d4a843;
}

.cta-313__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-313__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
    margin-bottom: 36px;
}

.cta-313__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.cta-313__trust-item i {
    font-size: 1.1rem;
    color: #3d7e57;
}

.cta-313__trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .2);
    margin: 0 18px;
    flex-shrink: 0;
}

.cta-313__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-313__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .3s ease;
}

.cta-313__btn--gold {
    background: #d4a843;
    color: #0f2a1a;
    box-shadow: 0 6px 24px rgba(212, 168, 67, .3);
}

.cta-313__btn--gold:hover {
    background: #e0b84f;
    color: #0f2a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 168, 67, .45);
}

.cta-313__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
}

.cta-313__btn--outline:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px);
}

/* Stats grid */
.cta-313__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-313__stat-card {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .3s, border-color .3s;
}

.cta-313__stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 126, 87, .4);
}

/* .cta-313__stat-card--gold {
    background: rgba(212, 168, 67, .08);
    border-color: rgba(212, 168, 67, .25);
} */

.cta-313__stat-card--gold:hover {
    border-color: rgba(212, 168, 67, .5);
}

.cta-313__stat-icon {
    font-size: 2.6rem;
    color: #3d7e57;
    margin-bottom: 10px;
}

.cta-313__stat-card--gold .cta-313__stat-icon {
    color: #d4a843;
}

.cta-313__stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #d4a843;
    line-height: 1.1;
    margin-bottom: 6px;
}

.cta-313__stat-lbl {
    font-size: .85rem;
    color: #000;
    font-weight: 600;
    letter-spacing: .03em;
}

@media (max-width: 991px) {
    .cta-313 {
        padding: 72px 0 80px;
    }

    .cta-313__stats-grid {
        max-width: 400px;
    }
}

@media (max-width: 575px) {
    .cta-313 {
        padding: 60px 0 70px;
    }

    .cta-313__watermark {
        display: none;
    }

    .cta-313__trust-divider {
        display: none;
    }

    .cta-313__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ══════════════════════════════════════
   FOOTER — 313 BRAND REDESIGN
   ══════════════════════════════════════ */
.footer {
    background: linear-gradient(160deg, #173d24 0%, #1a4d2e 55%, #1e5534 100%) !important;
    position: relative;
    overflow: hidden;
    border-top: none !important;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 6% 30%, rgba(61, 126, 87, .08) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(212, 168, 67, .05) 0%, transparent 40%);
    pointer-events: none;
}

/* ── Footer Contact Topbar ── */
.footer-topbar {
    background: linear-gradient(135deg, #1e5534 0%, #2e6b44 50%, #256040 100%);
    border-bottom: 3px solid #d4a843;
    border-top: none;
    padding: 22px 0;
    position: relative;
    overflow: hidden;
}

.footer-topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, .10) 0%, transparent 65%);
    pointer-events: none;
}

.footer-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 0;
}

.footer-topbar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
}

.footer-topbar__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background .25s, transform .25s, border-color .25s;
}

.footer-topbar__item:hover .footer-topbar__icon {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .5);
    transform: scale(1.08);
}

.footer-topbar__icon--wa {
    background: rgba(37, 211, 102, .2);
    border-color: rgba(37, 211, 102, .45);
    color: #5dde8a;
}

.footer-topbar__item:hover .footer-topbar__icon--wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.footer-topbar__icon--email {
    background: rgba(212, 168, 67, .2);
    border-color: rgba(212, 168, 67, .45);
    color: #f0c96a;
}

.footer-topbar__item:hover .footer-topbar__icon--email {
    background: #d4a843;
    border-color: #d4a843;
    color: #071810;
}

.footer-topbar__label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 3px;
}

.footer-topbar__val {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color .25s;
}

.footer-topbar__val:hover {
    color: #f0c96a;
}

.footer-topbar__divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .footer-topbar__item {
        padding: 0 20px;
    }

    .footer-topbar__divider {
        display: none;
    }

    .footer-topbar__inner {
        justify-content: flex-start;
        gap: 16px;
    }
}

.footer-item__logo img {
    max-width: 80px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-item__title {
    font-family: 'Poppins', sans-serif !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 22px !important;
    position: relative;
    padding-bottom: 12px;
}

.footer-item__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 50px;
}

.footer-item__desc {
    color: rgba(255, 255, 255, .72) !important;
    line-height: 1.75 !important;
    font-size: 1rem !important;
}

.footer-menu__link {
    color: rgba(255, 255, 255, .75) !important;
    font-size: 1rem !important;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .25s, gap .25s !important;
    text-decoration: none;
}

.footer-menu__link::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3d7e57;
    flex-shrink: 0;
    transition: background .25s;
}

.footer-menu__link:hover {
    color: #d4a843 !important;
    gap: 10px !important;
    transform: none !important;
}

.footer-menu__link:hover::before {
    background: #d4a843;
}

.contact-list__link,
.contact-list__text {
    color: rgba(255, 255, 255, .8) !important;
    font-size: 1rem !important;
    transition: color .25s !important;
}

.contact-list__link:hover {
    color: #d4a843 !important;
}

.contact-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-list__item i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF !important;
    border: 1px solid rgba(61, 126, 87, .3);
    color: #3d7e57 !important;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 0 !important;
    padding: 0 !important;
}

/* Call + WhatsApp buttons in footer */
.footer-contact-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.footer-contact-btn--call {
    background: #3d7e57;
    color: #fff;
    border: 1px solid #3d7e57;
}

.footer-contact-btn--call:hover {
    background: #2e6040;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(61, 126, 87, .4);
}

.footer-contact-btn--whatsapp {
    background: rgba(37, 211, 102, .12);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, .3);
}

.footer-contact-btn--whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, .4);
}

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

.social-list__link {
    background: rgba(255, 255, 255, .06) !important;
    color: rgba(255, 255, 255, .7) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    transition: all .3s ease !important;
}

.social-list__link:hover {
    background: #3d7e57 !important;
    border-color: #3d7e57 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.footer-payment-bar {
    padding: 18px 0;
}

.footer-payment-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-payment-bar__img {
    max-width: 100%;
    height: auto;
    display: block;
    background: #FFF;
    padding: 10px;
}

.footer-bottom {
    background: rgba(0, 0, 0, .4) !important;
    border-top: 1px solid rgba(212, 168, 67, .15) !important;
    padding: 22px 0 !important;
}

.footer-bottom__text {
    color: rgba(255, 255, 255, .45) !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

.footer-bottom__text a {
    color: #d4a843 !important;
    text-decoration: none;
}

.footer-top.py-120 {
    padding: 80px 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 SECTION — 313 BRAND
   ══════════════════════════════════════ */
.faq-313 {
    padding: 80px 0 80px;
    background: #f4f8f5;
    position: relative;
}

/* Body — two columns */
.faq-313__body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* Accordion list */
.faq-313__list {
    display: flex;
    flex-direction: column;
}

.faq-313__item {
    border-bottom: 1px solid rgba(61, 126, 87, .15);
}

.faq-313__item:first-child {
    border-top: 1px solid rgba(61, 126, 87, .15);
}

.faq-313__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all .3s ease;
}

.faq-313__num {
    font-size: .78rem;
    font-weight: 800;
    color: rgba(61, 126, 87, .4);
    letter-spacing: .05em;
    flex-shrink: 0;
    width: 28px;
    font-family: 'Poppins', sans-serif;
    transition: color .3s ease;
}

.faq-313__q[aria-expanded="true"] .faq-313__num {
    color: #3d7e57;
}

.faq-313__q-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: #173d24;
    line-height: 1.4;
    transition: color .3s ease;
}

.faq-313__q[aria-expanded="true"] .faq-313__q-text {
    color: #3d7e57;
}

.faq-313__toggle {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(61, 126, 87, .1);
    border: 1px solid rgba(61, 126, 87, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d7e57;
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
}

.faq-313__toggle svg {
    width: 17px;
    height: 17px;
    transition: transform .35s ease;
}

.faq-313__q[aria-expanded="true"] .faq-313__toggle {
    background: #3d7e57;
    color: #fff;
    border-color: #3d7e57;
    box-shadow: 0 4px 14px rgba(61, 126, 87, .35);
}

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

.faq-313__answer {
    padding: 0 0 24px 46px;
}

.faq-313__answer p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

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

.faq-313__side-card {
    background: linear-gradient(145deg, #0f2a1a 0%, #1a4d2e 60%, #2e6040 100%);
    border-radius: 24px;
    padding: 40px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-313__side-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(212, 168, 67, .1) 0%, transparent 55%);
    pointer-events: none;
}

.faq-313__side-watermark {
    position: absolute;
    bottom: -24px;
    right: -8px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'Poppins', sans-serif;
}

.faq-313__side-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.faq-313__side-icon svg {
    width: 60px;
    height: 60px;
}

.faq-313__side-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.faq-313__side-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.faq-313__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d4a843;
    color: #0f2a1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

.faq-313__cta-btn svg {
    width: 17px;
    height: 17px;
    transition: transform .3s ease;
}

.faq-313__cta-btn:hover {
    background: #e0b84f;
    color: #0f2a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, .4);
}

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

/* Contact shortcuts */
.faq-313__side-contacts {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.faq-313__side-contact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .8);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
}

.faq-313__side-contact i {
    font-size: 1.1rem;
}

.faq-313__side-contact:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

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

    .faq-313__side {
        position: static;
    }

    .faq-313__side-watermark {
        display: none;
    }
}

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

    .faq-313__answer {
        padding-left: 0;
    }

    .faq-313__q {
        gap: 12px;
    }

    .faq-313__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, #3d7e57);
    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, #3d7e57);
}

.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, #3d7e57);
    border-color: var(--brand-orange, #3d7e57);
}

.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 / PROPERTY GALLERY — MASONRY + LIGHTBOX
   ══════════════════════════════════════════ */
.award-gallery-313 {
    padding: 100px 0 110px;
    background: #fff;
}

/* ── Masonry Grid ── */
.ag-masonry {
    columns: 3 280px;
    column-gap: 16px;
    margin-bottom: 52px;
}

.ag-mason-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: #0f2a1a;
    display: block;
}

/* Alternating aspect ratios for natural masonry feel */
.ag-mason-item:nth-child(3n+1) {
    aspect-ratio: 4 / 3;
}

.ag-mason-item:nth-child(3n+2) {
    aspect-ratio: 3 / 4;
}

.ag-mason-item:nth-child(3n) {
    aspect-ratio: 16 / 9;
}

.ag-mason-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.23, 1, .32, 1), filter .55s ease;
}

.ag-mason-item:hover img {
    transform: scale(1.07);
    filter: brightness(.72);
}

/* ── Hover Overlay ── */
.ag-mason-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 31, 16, .88) 0%,
            rgba(10, 31, 16, .18) 55%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px 18px 18px;
    opacity: 0;
    transition: opacity .35s ease;
}

.ag-mason-item:hover .ag-mason-item__overlay {
    opacity: 1;
}

.ag-mason-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5px;
}

.ag-mason-item__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.ag-mason-item__date {
    font-size: .85rem;
    color: #d4a843;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Zoom icon — bottom-right */
.ag-zoom-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .25s;
}

.ag-mason-item:hover .ag-zoom-btn {
    background: #d4a843;
    border-color: #d4a843;
    transform: scale(1.1);
}

.ag-zoom-btn svg {
    width: 16px;
    height: 16px;
}

/* ── Lightbox ── */
.ag-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.ag-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.ag-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 16, .93);
    backdrop-filter: blur(4px);
}

.ag-lb-container {
    position: relative;
    z-index: 2;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ag-lb-img-wrap {
    width: 100%;
    max-height: calc(90vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
}

#agLbImg {
    max-width: 100%;
    max-height: calc(90vh - 90px);
    object-fit: contain;
    border-radius: 14px;
    transition: opacity .25s ease;
}

/* Caption bar */
.ag-lb-caption {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px 0;
    gap: 12px;
}

.ag-lb-caption__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#agLbName {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

#agLbDate {
    font-size: .85rem;
    color: #d4a843;
}

.ag-lb-counter {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}

/* Close button */
.ag-lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 3;
}

.ag-lb-close:hover {
    background: #d4a843;
    border-color: #d4a843;
    transform: rotate(90deg);
}

.ag-lb-close svg {
    width: 18px;
    height: 18px;
}

/* Prev / Next */
.ag-lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, opacity .2s;
    z-index: 3;
}

.ag-lb-nav:hover {
    background: #3d7e57;
    border-color: #3d7e57;
}

.ag-lb-nav--hidden {
    opacity: 0;
    pointer-events: none;
}

.ag-lb-prev {
    left: 20px;
}

.ag-lb-next {
    right: 20px;
}

.ag-lb-nav svg {
    width: 22px;
    height: 22px;
}

/* Prevent body scroll when lightbox open */
body.ag-lb-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .ag-masonry {
        columns: 2 220px;
    }
}

@media (max-width: 575px) {
    .award-gallery-313 {
        padding: 70px 0 80px;
    }

    .ag-masonry {
        columns: 2;
        column-gap: 10px;
    }

    .ag-mason-item {
        margin-bottom: 10px;
    }

    .ag-mason-item:nth-child(3n+1),
    .ag-mason-item:nth-child(3n+2),
    .ag-mason-item:nth-child(3n) {
        aspect-ratio: 4 / 3;
    }

    .ag-lb-prev {
        left: 8px;
    }

    .ag-lb-next {
        right: 8px;
    }

    .ag-lb-nav {
        width: 38px;
        height: 38px;
    }
}

/* =======================================================
   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), #2e6040);
    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
   ======================================================= */
/* ══════════════════════════════════════════
   PAGE HEADER / BREADCRUMB — 313 REDESIGN
   ══════════════════════════════════════════ */
.ph-313 {
    position: relative;
    background-color: #0a1f10;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 110px 0 90px;
    overflow: hidden;
    border-bottom: 3px solid #d4a843;
}

/* Main dark overlay */
.ph-313__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(7, 24, 16, .93) 0%,
            rgba(15, 42, 26, .80) 55%,
            rgba(23, 61, 36, .70) 100%);
    pointer-events: none;
    backdrop-filter: blur(2px);
}

/* Radial glow overlay */
.ph-313__overlay--radial {
    background:
        radial-gradient(ellipse at 15% 50%, rgba(61, 126, 87, .18) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(212, 168, 67, .10) 0%, transparent 45%);
}

/* Floating geometric shapes */
.ph-313__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: .08;
}

.ph-313__shape--tl {
    width: 380px;
    height: 380px;
    border: 60px solid #3d7e57;
    top: -140px;
    left: -80px;
}

.ph-313__shape--br {
    width: 260px;
    height: 260px;
    border: 40px solid #d4a843;
    bottom: -100px;
    right: 8%;
}

/* Ghost watermark */
.ph-313__watermark {
    position: absolute;
    right: -1%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none;
}

/* Content wrapper — centered */
.ph-313__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* Gold accent top line */
.ph-313__accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a843, transparent);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Page title */
.ph-313__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .35);
    letter-spacing: .01em;
    text-transform: capitalize;
}

/* Gold divider below title */
.ph-313__divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 4px;
    margin: 16px auto 18px;
}

/* Breadcrumb trail */
.ph-313__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.ph-313__bc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .80);
    font-family: 'Poppins', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .25s, background .25s, border-color .25s;
    background: rgba(255, 255, 255, .08);
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.ph-313__bc-link:hover {
    color: #d4a843;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(212, 168, 67, .3);
}

.ph-313__bc-sep {
    color: rgba(255, 255, 255, .35);
    font-size: .75rem;
}

.ph-313__bc-current {
    color: #d4a843;
    font-family: 'Poppins', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    background: rgba(212, 168, 67, .12);
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(212, 168, 67, .25);
}

/* Responsive */
@media (max-width: 767px) {
    .ph-313 {
        padding: 75px 0 60px;
    }

    .ph-313__title {
        font-size: 1.65rem;
        font-weight: 700;
        letter-spacing: 0;
    }

    .ph-313__bc-link,
    .ph-313__bc-current {
        font-size: .8rem;
        padding: 3px 11px;
    }

    .ph-313__shape--tl {
        width: 220px;
        height: 220px;
        border-width: 36px;
        top: -80px;
        left: -60px;
    }

    .ph-313__shape--br {
        display: none;
    }
}

/* 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), #2e6040);
    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) {
    .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), #3d7e57) !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;
}

/* ══════════════════════════════════════════
   AUTH PAGE — 313 BRAND LOGIN / REGISTER
   ══════════════════════════════════════════ */
.auth-313 {
    display: flex;
    min-height: 100vh;
}

/* ── Left Panel ── */
.auth-313__left {
    width: 45%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.auth-313__left-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.auth-313__left:hover .auth-313__left-bg {
    transform: scale(1.08);
}

.auth-313__left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(7, 24, 16, .92) 0%,
            rgba(23, 61, 36, .85) 50%,
            rgba(10, 31, 16, .95) 100%);
}

.auth-313__left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 44px 48px;
}

.auth-313__logo img {
    height: 54px;
    width: auto;
    filter: brightness(0) invert(1);
}

.auth-313__left-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 32px;
}

.auth-313__left-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, .15);
    border: 1px solid rgba(212, 168, 67, .4);
    color: #d4a843;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    width: fit-content;
}

.auth-313__tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.auth-313__tagline-gold {
    color: #d4a843;
}

.auth-313__left-sub {
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 380px;
}

.auth-313__trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-313__trust-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .88);
    font-size: 1rem;
    font-weight: 500;
}

.auth-313__trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(61, 126, 87, .3);
    border: 1.5px solid rgba(61, 126, 87, .5);
    color: #5fbe8c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

/* Stat row at bottom of left panel */
.auth-313__left-footer {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 28px;
}

.auth-313__stat-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.auth-313__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-313__stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4a843;
    line-height: 1;
}

.auth-313__stat span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

.auth-313__stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
}

/* ── Right Panel ── */
.auth-313__right {
    flex: 1;
    background: #f4f6f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    position: relative;
    overflow-y: auto;
}

.auth-313__right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(61, 126, 87, .06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(212, 168, 67, .05) 0%, transparent 40%);
    pointer-events: none;
}

/* Mobile logo (hidden on desktop) */
.auth-313__mobile-logo {
    display: none;
    margin-bottom: 28px;
}

.auth-313__mobile-logo img {
    height: 48px;
    width: auto;
}

/* Form card */
.auth-313__form {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(23, 61, 36, .10);
    padding: 48px 44px;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.auth-313__form-header {
    margin-bottom: 32px;
    text-align: center;
}

.auth-313__welcome {
    display: inline-block;
    background: rgba(61, 126, 87, .10);
    color: #3d7e57;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.auth-313__form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f2a1a;
    margin-bottom: 8px;
}

.auth-313__form-sub {
    color: #64748b;
    font-size: .95rem;
    margin: 0;
}

/* Fields */
.auth-313__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.auth-313__field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-313__label {
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-313__label i {
    color: #3d7e57;
    font-size: 1rem;
}

.auth-313__input {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f2a1a;
    background: #f9fafb;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: border-color .25s, box-shadow .25s, background .25s;
    outline: none;
}

.auth-313__input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.auth-313__input:focus {
    border-color: #3d7e57;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(61, 126, 87, .12);
}

.auth-313__input-wrap {
    position: relative;
}

.auth-313__input-wrap .auth-313__input {
    padding-right: 52px;
}

.auth-313__eye {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color .2s;
}

.auth-313__eye:hover {
    color: #3d7e57;
}

/* Remember me + forgot */
.auth-313__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-313__check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .9rem;
    color: #374151;
    font-weight: 500;
    user-select: none;
}

.auth-313__check input[type="checkbox"] {
    display: none;
}

.auth-313__check-box {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.auth-313__check input:checked+.auth-313__check-box {
    background: #3d7e57;
    border-color: #3d7e57;
}

.auth-313__check input:checked+.auth-313__check-box::after {
    content: '✓';
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
}

.auth-313__forgot {
    font-size: .9rem;
    font-weight: 600;
    color: #3d7e57;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}

.auth-313__forgot:hover {
    color: #d4a843;
}

/* Submit button */
.auth-313__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #3d7e57 0%, #2e6040 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s;
    box-shadow: 0 6px 20px rgba(61, 126, 87, .35);
    margin-bottom: 20px;
}

.auth-313__submit:hover {
    background: linear-gradient(135deg, #2e6040 0%, #173d24 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(61, 126, 87, .45);
}

.auth-313__submit i {
    font-size: 1.2rem;
}

/* Sign up CTA */
.auth-313__signup-cta {
    text-align: center;
    color: #64748b;
    font-size: .95rem;
    margin-top: 16px;
    font-weight: 500;
}

.auth-313__signup-cta a {
    color: #3d7e57;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}

.auth-313__signup-cta a:hover {
    color: #d4a843;
}

/* Back link */
.auth-313__back-link {
    position: absolute;
    top: 22px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
    z-index: 2;
}

.auth-313__back-link:hover {
    color: #3d7e57;
}

/* Responsive */
@media (max-width: 991px) {
    .auth-313__left {
        display: none;
    }

    .auth-313__right {
        padding: 40px 20px;
    }

    .auth-313__mobile-logo {
        display: block;
    }
}

@media (max-width: 575px) {
    .auth-313__form {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .auth-313__form-title {
        font-size: 1.45rem;
    }

    .auth-313__back-link {
        top: 14px;
        left: 16px;
    }
}

/* Red star on required field labels */
.auth-313__field-group:has(input[required]) .auth-313__label::after,
.auth-313__field-group:has(textarea[required]) .auth-313__label::after {
    content: ' *';
    color: #e53e3e;
    font-weight: 700;
}

/* Recover icon (forgot / reset password pages) */
.auth-313__recover-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(61, 126, 87, .12);
    border: 2px solid rgba(61, 126, 87, .25);
    color: #3d7e57;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.auth-313__recover-icon--gold {
    background: rgba(212, 168, 67, .12);
    border-color: rgba(212, 168, 67, .3);
    color: #d4a843;
}

/* Two-column field row (register page) */
.auth-313__two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .auth-313__two-col {
        grid-template-columns: 1fr;
    }
}

/* Policy links inside agreement checkbox */
.auth-313__policy-link {
    color: #3d7e57;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.auth-313__policy-link:hover {
    color: #d4a843;
}

/* 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), #3d7e57) !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), #2e6040) !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: #2e6040 !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;
}

/* ==============================================================
   313 Properties — Branded Logo Preloader
   ============================================================== */
.preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background: linear-gradient(160deg, #0a1e12 0%, #0f2a1a 50%, #1a4d2e 100%) !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

/* hide old loader-p if still present */
.loader-p {
    display: none !important;
}

/* ── Wrapper holds rings + logo centred ── */
.preloader__wrap {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Spinning rings ── */
.preloader__ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.preloader__ring--outer {
    width: 140px;
    height: 140px;
    border-top-color: #d4a843;
    border-right-color: rgba(212, 168, 67, .25);
    animation: pl-spin-cw 1.4s linear infinite;
}

.preloader__ring--inner {
    width: 108px;
    height: 108px;
    border-bottom-color: #d4a843;
    border-left-color: rgba(212, 168, 67, .2);
    animation: pl-spin-ccw 1s linear infinite;
}

/* ── Logo bubble ── */
.preloader__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(212, 168, 67, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pl-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(212, 168, 67, .4);
}

.preloader__logo img {
    width: 54px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) drop-shadow(0 2px 6px rgba(212, 168, 67, .35)) invert(1);

}


/* ── Keyframes ── */
@keyframes pl-spin-cw {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pl-spin-ccw {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes pl-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, .4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 168, 67, .0);
    }
}

@keyframes pl-dot {

    0%,
    80%,
    100% {
        opacity: .2;
        transform: scale(.8);
    }

    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* =======================================================
   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: 900px;
}

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

/* ══════════════════════════════════════════════════════
   CHAIRMAN / ABOUT US SECTION — choose_us
   ══════════════════════════════════════════════════════ */
.chairman-313-section {
    padding: 90px 0 100px;
    background: linear-gradient(0deg, #f4f8f5 0%, #fff 60%);
    position: relative;
    overflow: hidden;
}

/* Decorative background blob */
.chairman-313-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 126, 87, .07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Chairman Card ── */
.chairman-card-313 {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(23, 61, 36, .15), 0 4px 16px rgba(23, 61, 36, .08);
    overflow: hidden;
    border: 1px solid rgba(61, 126, 87, .15);
    transition: transform .3s ease, box-shadow .3s ease;
}

.chairman-card-313:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(23, 61, 36, .2), 0 6px 20px rgba(23, 61, 36, .1);
}

/* Header — layered gradient + geometric pattern */
.chairman-card-313__header {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(212, 168, 67, .14) 0%, transparent 55%), radial-gradient(ellipse at 85% 100%, rgba(61, 126, 87, .5) 0%, transparent 55%), radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .03) 0%, transparent 70%), linear-gradient(145deg, #00e744 0%, #153d21 40%, #36b863 100%);
    padding: 48px 28px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Large decorative rings — top-right */
.chairman-card-313__header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 50px solid rgba(212, 168, 67, .07);
    pointer-events: none;
}

/* Small ring — bottom-left */
.chairman-card-313__header::after {
    content: '';
    position: absolute;
    bottom: -55px;
    left: -55px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 38px solid rgba(255, 255, 255, .05);
    pointer-events: none;
}

/* Dot-grid texture overlay via SVG data URI */
.chairman-card-313__header-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Diagonal gold accent line bottom-right */
.chairman-card-313__header-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, .5));
    pointer-events: none;
}

/* ── Photo wrapper — animated gold ring ── */
.chairman-card-313__photo-wrap {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 22px;
    z-index: 1;
}

/* Spinning gold ring */
.chairman-card-313__photo-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d4a843;
    border-right-color: rgba(212, 168, 67, .4);
    animation: chairRingSpin 4s linear infinite;
}

/* Static outer glow ring */
.chairman-card-313__photo-wrap::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, .2);
}

@keyframes chairRingSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Photo itself */
.chairman-card-313__photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 4px solid rgba(212, 168, 67, .55);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .15),
        0 8px 32px rgba(0, 0, 0, .45),
        inset 0 0 20px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: #d4a843;
    overflow: hidden;
    position: relative;
}

.chairman-card-313__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Title badge */
.chairman-card-313__title-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 168, 67, .3), rgba(212, 168, 67, .15));
    border: 1px solid rgba(212, 168, 67, .55);
    border-radius: 100px;
    padding: 5px 18px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #f0c96a;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(212, 168, 67, .2);
}

.chairman-card-313__title-badge i {
    font-size: .8rem;
}

.chairman-card-313__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.chairman-card-313__loc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.chairman-card-313__loc i {
    color: #d4a843;
}

/* Roles tag strip */
.chairman-card-313__roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 0;
}

.chairman-card-313__roles span {
    font-size: .68rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 100px;
    padding: 3px 10px;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

/* ── Chairman List ── */
.chairman-card-313__body {
    padding: 6px 0;
}

.chairman-list-313 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chairman-list-313 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-bottom: 1px solid #f0f5f2;
    font-size: .875rem;
    color: #374151;
    line-height: 1.35;
    transition: background .15s;
}

.chairman-list-313 li:hover {
    background: #f8fdf9;
}

.chairman-list-313 li:last-child {
    border-bottom: none;
}

.cl-role {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 5px;
    padding: 2px 8px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}

/* Role colour coding */
.cl-role--chairman {
    color: #7a4f00;
    background: #fef3c7;
}

.cl-role--founder {
    color: #fff;
    background: #3d7e57;
}

.cl-role--prop {
    color: #fff;
    background: #2e6040;
}

.cl-role--principal {
    color: #fff;
    background: #1a4d6e;
}

.cl-role--editor {
    color: #fff;
    background: #6b7280;
}

/* ── Footer Badges ── */
.chairman-card-313__footer {
    padding: 18px 22px;
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5ee 100%);
    border-top: 1px solid rgba(61, 126, 87, .12);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cl-badge {
    font-size: .74rem;
    font-weight: 700;
    color: #173d24;
    background: #fff;
    border: 1.5px solid rgba(61, 126, 87, .35);
    border-radius: 100px;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(61, 126, 87, .1);
    letter-spacing: .02em;
}

.cl-badge i {
    color: #d4a843;
    font-size: .9rem;
}

/* ── Right Column: Company Info ── */
.company-info-313 {
    padding-top: 12px;
}

/* Pill-badge eyebrow — left-aligned version used in choose_us */
/* ci-eyebrow-badge — now just aliases section-heading__sec-name (kept for any remaining references) */
.ci-eyebrow-badge {
    display: none;
}

.company-info-313__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: #173d24;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.ci-gold {
    color: #d4a843;
}

.company-info-313__divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 2px;
    margin-bottom: 15px;
}

.divider__center {
    margin-left: auto;
    margin-right: auto;
}

.company-info-313__desc {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.85;
    margin-bottom: 14px;
}

.company-info-313__desc em {
    color: #2e6040;
    font-style: normal;
    font-weight: 700;
    border-bottom: 2px solid rgba(61, 126, 87, .3);
}

/* ── Fact Boxes ── */
.ci-fact-box {
    background: #fff;
    border: 1px solid rgba(61, 126, 87, .15);
    border-top: 3px solid #3d7e57;
    border-radius: 14px;
    padding: 20px 20px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(61, 126, 87, .07);
    transition: box-shadow .25s, transform .25s, border-top-color .25s;
}

.ci-fact-box:hover {
    box-shadow: 0 8px 28px rgba(61, 126, 87, .15);
    transform: translateY(-3px);
    border-top-color: #d4a843;
}

.ci-fact-box__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8f5ee, #c6e6d2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #3d7e57;
    margin-bottom: 2px;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.ci-fact-box:hover .ci-fact-box__icon {
    background: linear-gradient(135deg, #3d7e57, #2e6040);
    color: #fff;
}

.ci-fact-box__lbl {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b8f7a;
}

.ci-fact-box__val {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #173d24;
    line-height: 1.3;
}

/* ── CTA Row ── */
.ci-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(61, 126, 87, .12);
}

/* Button overrides — green on white background */
.ci-cta-row .hero-btn-313-primary {
    background: hsl(145 63% 42%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(61, 126, 87, .35);
}

.ci-cta-row .hero-btn-313-primary:hover {
    background: #c49330;
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 168, 67, .52);
}

.ci-cta-row .hero-btn-313-outline {
    color: #2e6040;
    border-color: rgba(61, 126, 87, .5);
}

.ci-cta-row .hero-btn-313-outline:hover {
    color: hsl(145 63% 42%);
    background: rgba(61, 126, 87, .07);
    border-color: hsl(145 63% 42%);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .chairman-313-section {
        padding: 64px 0 72px;
    }

    .company-info-313 {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .chairman-card-313__footer {
        justify-content: center;
    }

    .company-info-313__heading {
        font-size: 1.8rem;
    }

    .chairman-card-313__header {
        padding: 32px 20px 24px;
    }
}

/* =====================================================
   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 PAGE — 313 REDESIGN
   ══════════════════════════════════════════ */

/* ── Quick Contact Cards ── */
.ct-cards-313 {
    background: #fff;
    padding: 60px 0 0;
}

.ct-card-313 {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1.5px solid #e8ede9;
    border-radius: 16px;
    padding: 22px 24px;
    text-decoration: none;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    box-shadow: 0 4px 16px rgba(23, 61, 36, .06);
}

.ct-card-313:hover {
    border-color: #3d7e57;
    box-shadow: 0 8px 28px rgba(23, 61, 36, .12);
    transform: translateY(-3px);
}

.ct-card-313__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ct-card-313__icon--green {
    background: rgba(61, 126, 87, .12);
    color: #3d7e57;
    border: 1.5px solid rgba(61, 126, 87, .2);
}

.ct-card-313__icon--gold {
    background: rgba(212, 168, 67, .12);
    color: #d4a843;
    border: 1.5px solid rgba(212, 168, 67, .2);
}

.ct-card-313__icon--wa {
    background: rgba(37, 211, 102, .12);
    color: #25d366;
    border: 1.5px solid rgba(37, 211, 102, .2);
}

.ct-card-313__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ct-card-313__label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #64748b;
}

.ct-card-313__val {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #0f2a1a;
    line-height: 1.3;
}

.ct-card-313__arrow {
    color: #c8d4cc;
    font-size: 1.1rem;
    transition: color .25s, transform .25s;
}

.ct-card-313:hover .ct-card-313__arrow {
    color: #3d7e57;
    transform: translateX(4px);
}

/* ── Main Split ── */
.ct-split-313 {
    background: #fff;
    padding: 48px 0 80px;
}

/* ── Left Info Panel ── */
.ct-info-313 {
    background: linear-gradient(160deg, #071810 0%, #0f2a1a 50%, #173d24 100%);
    border-radius: 20px 0 0 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.ct-info-313__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(61, 126, 87, .18) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(212, 168, 67, .10) 0%, transparent 45%);
    pointer-events: none;
}

/* Ring decorations */
.ct-info-313::before,
.ct-info-313::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: .06;
}

.ct-info-313::before {
    width: 300px;
    height: 300px;
    border: 50px solid #fff;
    top: -100px;
    right: -80px;
}

.ct-info-313::after {
    width: 200px;
    height: 200px;
    border: 36px solid #d4a843;
    bottom: -70px;
    left: -50px;
}

.ct-info-313__inner {
    position: relative;
    z-index: 2;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.ct-info-313__header {
    margin-bottom: 40px;
}

.ct-info-313__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 168, 67, .14);
    border: 1px solid rgba(212, 168, 67, .35);
    color: #d4a843;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.ct-info-313__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.ct-info-313__title span {
    color: #d4a843;
}

.ct-info-313__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin: 0;
}

/* Contact list */
.ct-info-313__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.ct-info-313__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ct-info-313__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    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.2rem;
    color: #5fbe8c;
    transition: background .25s;
}

.ct-info-313__item:hover .ct-info-313__icon {
    background: rgba(61, 126, 87, .3);
    color: #fff;
}

.ct-info-313__item-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 3px;
}

.ct-info-313__item-val {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .90);
    text-decoration: none;
    line-height: 1.5;
    transition: color .25s;
}

a.ct-info-313__item-val:hover {
    color: #d4a843;
}

/* WhatsApp button */
.ct-info-313__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
    width: fit-content;
}

.ct-info-313__wa-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
    color: #fff;
}

.ct-info-313__wa-btn i {
    font-size: 1.3rem;
}

/* ── Right Form Panel ── */
.ct-form-313 {
    background: #f9faf8;
    border: 1.5px solid #e8ede9;
    border-left: none;
    border-radius: 0 20px 20px 0;
    padding: 56px 52px;
    height: 100%;
}

.ct-form-313__header {
    margin-bottom: 36px;
}

.ct-form-313__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f2a1a;
    margin-bottom: 8px;
}

.ct-form-313__sub {
    font-size: .95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.ct-form-313__req {
    color: #e53e3e;
    font-weight: 700;
}

/* Fields */
.ct-field-313 {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ct-field-313__label {
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: #374151;
}

.ct-field-313__wrap {
    position: relative;
}

.ct-field-313__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #9ca3af;
    pointer-events: none;
    transition: color .25s;
}

.ct-field-313__input {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f2a1a;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.ct-field-313__input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.ct-field-313__input:focus {
    border-color: #3d7e57;
    box-shadow: 0 0 0 4px rgba(61, 126, 87, .12);
}

.ct-field-313__wrap:focus-within .ct-field-313__icon {
    color: #3d7e57;
}

.ct-field-313__textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f2a1a;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    outline: none;
    resize: vertical;
    min-height: 150px;
    transition: border-color .25s, box-shadow .25s;
}

.ct-field-313__textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.ct-field-313__textarea:focus {
    border-color: #3d7e57;
    box-shadow: 0 0 0 4px rgba(61, 126, 87, .12);
}

/* Submit */
.ct-submit-313 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    background: linear-gradient(135deg, #3d7e57 0%, #2e6040 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 6px 20px rgba(61, 126, 87, .35);
}

.ct-submit-313:hover {
    background: linear-gradient(135deg, #2e6040 0%, #173d24 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(61, 126, 87, .45);
    color: #fff;
}

.ct-submit-313 i {
    font-size: 1.1rem;
}

/* Map */
.ct-map-313 {
    padding: 0 0 80px;
    background: #fff;
}

.ct-map-313 .container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(23, 61, 36, .10);
}

.ct-map-313 iframe {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .ct-info-313 {
        border-radius: 20px 20px 0 0;
    }

    .ct-form-313 {
        border-radius: 0 0 20px 20px;
        border-left: 1.5px solid #e8ede9;
        border-top: none;
    }

    .ct-info-313__inner {
        padding: 44px 36px;
    }

    .ct-form-313 {
        padding: 44px 36px;
    }
}

@media (max-width: 575px) {
    .ct-cards-313 {
        padding: 40px 0 0;
    }

    .ct-split-313 {
        padding: 32px 0 60px;
    }

    .ct-info-313__inner,
    .ct-form-313 {
        padding: 36px 24px;
    }

    .ct-info-313__title {
        font-size: 1.5rem;
    }

    .ct-form-313__title {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════════════════
   313 PROPERTIES LIMITED — BRAND STYLES
   Green = Ruji Rojgar | Blue = Libas Capital | Orange = Accent
   ═══════════════════════════════════════════════════════ */

/* ── 313 CSS Variables ── */
:root {
    --g1: #1a7a1a;
    --g2: #2da52d;
    --g3: #3cc43c;
    --g-light: #e8f7e8;
    --g-pale: #f2fbf2;
    --b1: #1565c0;
    --b2: #1e88e5;
    --b-light: #e3f2fd;
    --orange-313: #3d7e57;
    --orange-2: #2e6040;
    --cream-313: #f8fdf8;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
    --radius-313: 14px;
}

/* ── Bangla + Poppins Font Load ── */
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-bangla {
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
}


/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

/* ── WhatsApp Float ── */
@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, .7), 0 0 0 10px rgba(37, 211, 102, .1);
    }
}

.wa-float {
    position: fixed;
    bottom: 100px;
    right: 27px;
    z-index: 9990;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    animation: wa-pulse 2.5s ease-in-out infinite;
    transition: transform .2s;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ── Back to Top (313) ── */
#back-top-313 {
    position: fixed;
    bottom: 30px;
    right: 22px;
    z-index: 9990;
    width: 42px;
    height: 42px;
    background: var(--g1);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, background .2s;
    box-shadow: var(--shadow-sm);
}

#back-top-313.show {
    opacity: 1;
    pointer-events: all;
}

#back-top-313:hover {
    background: var(--orange-313);
}

/* ══════════════════════════════════════
   SISTER COMPANIES / BRANDS SHOWCASE
   ══════════════════════════════════════ */
.sister-brands-313 {
    background: #fff;
    padding: 40px 0 50px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(61, 126, 87, .1);
    border-bottom: 1px solid rgba(61, 126, 87, .1);
}

.sister-brands-313__header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.sister-brands-313__label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #3d7e57;
    margin-bottom: 10px;
}

.sister-brands-313__label span {
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3d7e57);
    border-radius: 2px;
}

.sister-brands-313__label span:last-child {
    background: linear-gradient(90deg, #3d7e57, transparent);
}

.sister-brands-313__sub {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* Marquee row */
.sb-marquee {
    position: relative;
    overflow: hidden;
}

/* Edge fade */
.sb-marquee::before,
.sb-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.sb-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.sb-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Inner track — holds 2× items */
.sb-marquee__inner {
    display: flex;
    width: max-content;
    gap: 0;
}

.sb-marquee__inner {
    animation: sb-scroll 30s linear infinite;
}

.sb-marquee:hover .sb-marquee__inner {
    animation-play-state: paused;
}

@keyframes sb-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Brand card — logo fills the card; its own background becomes the card face */
.sb-card {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    margin-right: 20px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(61, 126, 87, .12);
    box-shadow: 0 4px 18px rgba(23, 61, 36, .08);
    transition: border-color .3s, box-shadow .3s, transform .3s;
    cursor: default;
}

.sb-card:hover {
    border-color: #d4a843;
    box-shadow: 0 12px 36px rgba(23, 61, 36, .16), 0 0 0 3px rgba(212, 168, 67, .15);
    transform: translateY(-6px) scale(1.02);
}

.sb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

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

@media (max-width: 575px) {
    .sister-brands-313 {
        padding: 48px 0 56px;
    }

    .sb-card {
        width: 160px;
        height: 104px;
        margin-right: 14px;
    }

    .sb-marquee::before,
    .sb-marquee::after {
        width: 50px;
    }
}

/* ══════════════════════════════════════
   STATS BRIDGE — banner → projects
   ══════════════════════════════════════ */
.stats-bridge-313 {
    /* background: #f4f8f5; */
    padding: 56px 0 64px;
    position: relative;
    z-index: 99;
    margin-top: -130px;
}

/* Row pulled up so cards overlap / bridge from banner */
.stats-bridge-313 .row {
    margin-top: -40px;
}

.sbridge-313-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(29, 82, 50, .13), 0 2px 8px rgba(29, 82, 50, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px 32px;
    border-top: 4px solid #3d7e57;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    height: 100%;
}

.sbridge-313-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(29, 82, 50, .18), 0 4px 12px rgba(29, 82, 50, .1);
}

/* Icon */
.sbridge-313-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5ee 0%, #c6e6d2 100%);
    border: 2px solid #a8d5ba;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #3d7e57;
    margin-bottom: 16px;
    transition: background .25s, transform .25s;
}

.sbridge-313-card:hover .sbridge-313-card__icon {
    background: linear-gradient(135deg, #3d7e57 0%, #2e6040 100%);
    color: #fff;
    transform: scale(1.1);
}

/* Number */
.sbridge-313-card__num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2rem);
    font-weight: 800;
    color: #173d24;
    line-height: 1;
    margin-bottom: 10px;
}

/* Gold accent under the number */
.sbridge-313-card__num::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #d4a843;
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Label */
.sbridge-313-card__lbl {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .83rem;
    font-weight: 600;
    color: #5a7a68;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .stats-bridge-313 .row {
        margin-top: -24px;
    }
}

@media (max-width: 767px) {
    .stats-bridge-313 {
        padding: 0 0 48px;
    }

    .stats-bridge-313 .row {
        margin-top: 32px;
    }

    .sbridge-313-card {
        padding: 28px 14px 26px;
        border-radius: 12px;
    }

    .sbridge-313-card__num {
        font-size: 1.8rem;
    }
}

/* ══════════════════════════════════════
   313 PROJECTS PREVIEW (LIBAS + RUJI)
   ══════════════════════════════════════ */
.projects-313-section {
    padding: 80px 0;
    background: #fff;
}

.projects-313-section .section-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange-313);
    margin-bottom: 8px;
}

.projects-313-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #111;
    margin-bottom: 10px;
}

.projects-313-section .section-sub {
    color: #666;
    font-size: .95rem;
    margin-bottom: 48px;
}

/* Project Card — Libas (Blue) */
.proj-313-card {
    border-radius: var(--radius-313);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.proj-313-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.proj-313-card__header {
    padding: 28px 28px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.proj-313-card__header::after {
    content: attr(data-watermark);
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    opacity: .08;
    letter-spacing: -2px;
    color: #fff;
    pointer-events: none;
}

.proj-313-card--libas .proj-313-card__header {
    background: linear-gradient(135deg, var(--b1) 0%, var(--b2) 100%);
}

.proj-313-card--ruji .proj-313-card__header {
    background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
}

.proj-313-card__tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
}

.proj-313-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.proj-313-card__tagline {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    font-family: 'Hind Siliguri', sans-serif;
}

.proj-313-card__body {
    padding: 24px 28px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.proj-313-stat-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.proj-313-stat {
    flex: 1;
    min-width: 90px;
    background: var(--g-pale);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
}

.proj-313-card--libas .proj-313-stat {
    background: var(--b-light);
}

.proj-313-stat__val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--g1);
    display: block;
}

.proj-313-card--libas .proj-313-stat__val {
    color: var(--b1);
}

.proj-313-stat__lbl {
    font-size: .65rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.proj-313-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.proj-313-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 1rem;
    color: #444;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Hind Siliguri', sans-serif;
}

.proj-313-features li:last-child {
    border-bottom: none;
}

.proj-313-features li .fi {
    color: var(--g2);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.proj-313-card--libas .proj-313-features li .fi {
    color: var(--b2);
}

.proj-313-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    transition: all .25s;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.proj-313-cta--green {
    background: var(--g1);
    color: #fff;
}

.proj-313-cta--green:hover {
    background: var(--g2);
    color: #fff;
}

.proj-313-cta--blue {
    background: var(--b1);
    color: #fff;
}

.proj-313-cta--blue:hover {
    background: var(--b2);
    color: #fff;
}

/* Dividend Bar */
.dividend-bar {
    display: flex;
    height: 28px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 8px;
}

.div-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    gap: 3px;
    white-space: nowrap;
    padding: 0 4px;
}

.div-investor-green {
    background: var(--g1);
    flex: 50;
}

.div-investor-blue {
    background: var(--b1);
    flex: 50;
}

.div-social {
    background: var(--orange-313);
    flex: 10;
}

.div-mgmt-green {
    background: #5cb85c;
    flex: 40;
}

.div-mgmt-blue {
    background: var(--b2);
    flex: 40;
}

.dividend-bar-legend {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: .65rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.div-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 3px;
    vertical-align: middle;
}

/* ══════════════════════════════════════
   VIDEO PREVIEW SECTION
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   VIDEO PREVIEW — TESTIMONIAL SECTION
   ══════════════════════════════════════ */
.video-preview-section {
    background: #0d2318;
    background-image:
        radial-gradient(circle at 15% 80%, rgba(212, 168, 67, .07) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(61, 126, 87, .09) 0%, transparent 40%);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Dark bg override — video preview section */
.video-preview-section .company-info-313__heading {
    color: #fff;
}

.video-preview-section .section-313-header p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
}

.vp-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 14px;
}

.vp-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .62);
    margin: 0;
    line-height: 1.7;
}

/* ── Reel Card ── */
.reel-card-313 {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reel-card-313:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .45);
    border-color: rgba(212, 168, 67, .3);
}

/* Portrait thumbnail */
.reel-card-313__thumb {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

.reel-card-313__bg {
    position: absolute;
    inset: 0;
}

.reel-card-313__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55) 100%);
}

/* Gold play button */
.reel-card-313__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a843, #c49330);
    color: #173d24;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    box-shadow: 0 8px 28px rgba(212, 168, 67, .55);
    transition: transform .25s, box-shadow .25s;
}

.reel-card-313:hover .reel-card-313__play {
    transform: translate(-50%, -50%) scale(1.13);
    box-shadow: 0 12px 36px rgba(212, 168, 67, .7);
}

/* Card number badge */
.reel-card-313__num {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .2);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: .65rem;
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text body */
.reel-card-313__body {
    padding: 18px 18px 20px;
    background: rgba(255, 255, 255, .05);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reel-card-313__tag {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 11px;
    align-self: flex-start;
}

.reel-card-313__quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    font-style: italic;
    line-height: 1.65;
    margin: 0 0 14px;
    flex: 1;
}

.reel-card-313__investor {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .45);
}

.reel-card-313__investor i {
    font-size: 1rem;
    color: #d4a843;
}

/* Stats Strip */
.vp-stats-313 {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 0;
}

.vp-stats-313__item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    padding: 6px 16px;
}

.vp-stats-313__divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, .14);
    align-self: center;
    flex-shrink: 0;
}

.vp-stats-313__num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.85rem;
    color: #d4a843;
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.vp-stats-313__lbl {
    font-family: 'Poppins', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    display: block;
}

@media (max-width: 991px) {
    .video-preview-section {
        padding: 64px 0 72px;
    }

    .vp-heading {
        font-size: 1.9rem;
    }

    .vp-stats-313__divider {
        display: none;
    }

    .vp-stats-313__item {
        min-width: 80px;
    }
}

@media (max-width: 575px) {
    .vp-heading {
        font-size: 1.65rem;
    }

    .reel-card-313__thumb {
        aspect-ratio: 4/3;
    }

    .vp-stats-313 {
        padding: 16px 12px;
    }

    .vp-stats-313__num {
        font-size: 1.4rem;
    }
}

/* ══════════════════════════════════════
   INVEST STEPS (abbreviated for home)
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   INVESTOR FEEDBACK — VIDEO SECTION
   ══════════════════════════════════════ */
.investor-feedback-313 {
    padding: 90px 0 100px;
    background: linear-gradient(160deg, #0f2a1a 0%, #173d24 50%, #1a4d2e 100%);
    position: relative;
    overflow: hidden;
}

.investor-feedback-313::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(212, 168, 67, .07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 126, 87, .1) 0%, transparent 50%);
    pointer-events: none;
}

/* Section header override for dark background */
.investor-feedback-313 .section-313-header h2,
.investor-feedback-313 .company-info-313__heading {
    color: #fff;
}

.investor-feedback-313 .section-313-header p {
    color: rgba(255, 255, 255, .7);
}

/* Card */
.ifb-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ifb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .4);
    border-color: rgba(212, 168, 67, .35);
}

/* Responsive iframe wrapper */
.ifb-card__video {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 16:9 */
    background: #0a1f10;
    overflow: hidden;
}

.ifb-card__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Info row at the bottom */
.ifb-card__info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(255, 255, 255, .08);
    flex: 1;
}

/* Avatar icon */
.ifb-card__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d7e57, #2e6040);
    border: 2px solid rgba(212, 168, 67, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    overflow: hidden;
}

.ifb-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Meta: name + location */
.ifb-card__meta {
    flex: 1;
    min-width: 0;
}

.ifb-card__name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.3;
}

.ifb-card__loc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ifb-card__loc i {
    color: #d4a843;
    font-size: .8rem;
    flex-shrink: 0;
}

/* Verified badge */
.ifb-card__badge {
    flex-shrink: 0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #d4a843;
    background: rgba(212, 168, 67, .12);
    border: 1px solid rgba(212, 168, 67, .3);
    border-radius: 100px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.ifb-card__badge i {
    font-size: .85rem;
}

@media (max-width: 991px) {
    .investor-feedback-313 {
        padding: 64px 0 72px;
    }
}

@media (max-width: 575px) {
    .ifb-card__badge {
        display: none;
    }

    .ifb-card__info {
        padding: 12px 14px;
    }
}

/* ══════════════════════════════════════
   HOW TO INVEST — STEPS
   ══════════════════════════════════════ */
.invest-steps-313 {
    padding: 80px 0 80px;
    background: #fff;
    position: relative;
}

/* Dashed connector line across desktop */
.invest-steps-313 .row {
    position: relative;
}

.invest-steps-313 .row::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    border-top: 2px dashed rgba(61, 126, 87, .25);
    z-index: 0;
    pointer-events: none;
}

/* Card */
.step-313-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 20px 28px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(61, 126, 87, .12);
    box-shadow: 0 4px 20px rgba(23, 61, 36, .07);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    height: 100%;
    z-index: 1;
}

.step-313-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(23, 61, 36, .13);
    border-color: rgba(61, 126, 87, .3);
}

/* Gold top accent on hover */
.step-313-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #d4a843;
    border-radius: 0 0 4px 4px;
    transition: width .3s ease;
}

.step-313-card:hover::before {
    width: 60%;
}

/* Step number badge */
.step-313-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3d7e57, #2e6040);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: .68rem;
    letter-spacing: .04em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(61, 126, 87, .4);
    border: 2px solid #fff;
    z-index: 2;
    transition: background .3s, transform .3s;
}

.step-313-card:hover .step-313-num {
    background: linear-gradient(135deg, #d4a843, #c49330);
    transform: translateX(-50%) scale(1.15);
}

/* Icon circle */
.step-313-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5ee, #c6e6d2);
    border: 2px solid rgba(61, 126, 87, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 10px auto 18px;
    color: #3d7e57;
    transition: background .3s, color .3s, transform .3s, box-shadow .3s;
}

.step-313-card:hover .step-313-icon {
    background: linear-gradient(135deg, #3d7e57, #2e6040);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(61, 126, 87, .3);
}

/* Title */
.step-313-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Description */
.step-313-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* CTA button row */
.invest-steps-313 .text-center a.hero-btn-313-primary {
    min-width: 180px;
    justify-content: center;
}

@media (max-width: 991px) {
    .invest-steps-313 .row::before {
        display: none;
    }

    .invest-steps-313 {
        padding: 64px 0 72px;
    }
}

@media (max-width: 575px) {
    .step-313-card {
        padding: 28px 16px 22px;
    }

    .step-313-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
}

/* ══════════════════════════════════════
   INQUIRY FORM SECTION
   ══════════════════════════════════════ */
.inquiry-section-313 {
    background: linear-gradient(135deg, #0f3d0f 0%, #1a5c1a 50%, #0f2d6b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.inquiry-section-313::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.inquiry-card-313 {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
}

.inquiry-field-313 {
    margin-bottom: 18px;
}

.inquiry-field-313 label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 6px;
}

.inquiry-field-313 input,
.inquiry-field-313 select,
.inquiry-field-313 textarea {
    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    padding: 11px 14px;
    color: #fff;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .9rem;
    transition: border-color .2s;
}

.inquiry-field-313 input::placeholder,
.inquiry-field-313 textarea::placeholder {
    color: rgba(255, 255, 255, .4);
}

.inquiry-field-313 input:focus,
.inquiry-field-313 select:focus,
.inquiry-field-313 textarea:focus {
    outline: none;
    border-color: var(--g3);
    background: rgba(255, 255, 255, .12);
}

.inquiry-field-313 select option {
    background: #1a3d1a;
    color: #fff;
}

.inquiry-btn-313 {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--orange-313), var(--orange-2));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .25s;
    letter-spacing: .03em;
}

.inquiry-btn-313:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 92, 0, .4);
}

.inquiry-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inquiry-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .9rem;
}

.inquiry-info-list li:last-child {
    border-bottom: none;
}

.inquiry-info-list .icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
    color: var(--g3);
}

/* ══════════════════════════════════════
   ABOUT PAGE STYLES
   ══════════════════════════════════════ */
.founder-hero-313 {
    background: linear-gradient(135deg, #0a260a 0%, var(--g1) 60%, #0d3d8a 100%);
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.founder-hero-313::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L61 35 L97 35 L68 57 L79 91 L50 70 L21 91 L32 57 L3 35 L39 35 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 80px;
    pointer-events: none;
}

.founder-hero-313__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-313);
    margin-bottom: 12px;
}

.founder-hero-313__name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.15;
}

.founder-hero-313__sub {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 24px;
}

.founder-hero-313__badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.founder-badge {
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .08);
}

.founder-profile-section {
    padding: 70px 0;
    background: #fff;
}

.chairman-card {
    background: linear-gradient(135deg, var(--g-pale) 0%, var(--b-light) 100%);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0f0e0;
}

.chairman-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g1), var(--b1));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.chairman-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.chairman-title {
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--g1);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.chairman-message-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    border-left: 4px solid var(--g1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
}

.chairman-message-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 5rem;
    color: var(--g-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.chairman-message-body {
    padding-top: 40px;
    font-family: 'Hind Siliguri', sans-serif;
    color: #444;
    font-size: .95rem;
    line-height: 1.8;
}

/* Companies Grid */
.companies-grid-section {
    padding: 70px 0;
    background: var(--g-pale);
}

.company-role-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    border-top: 3px solid var(--g1);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: transform .2s;
}

.company-role-card:hover {
    transform: translateY(-3px);
}

.company-role-card--blue {
    border-top-color: var(--b1);
}

.company-role-card--orange {
    border-top-color: var(--orange-313);
}

.company-role-label {
    font-family: 'Poppins', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g1);
    margin-bottom: 6px;
}

.company-role-card--blue .company-role-label {
    color: var(--b1);
}

.company-role-card--orange .company-role-label {
    color: var(--orange-313);
}

.company-role-name {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.company-role-sub {
    font-size: .8rem;
    color: #666;
    font-family: 'Hind Siliguri', sans-serif;
}

/* ── About Page: Unified Dark Section (Portfolio + Registration) ── */
.about-brands-313 {
    padding: 90px 0 100px;
    background: linear-gradient(160deg, #0a1e12 0%, #0f2a1a 50%, #122e1c 100%);
    position: relative;
    overflow: hidden;
}

/* dot-grid texture */
.about-brands-313::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* radial colour accents */
.about-brands-313::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(212, 168, 67, .07) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(26, 77, 46, .2) 0%, transparent 45%);
    pointer-events: none;
}

.about-brands-313 .section-313-header h2,
.about-brands-313 .company-info-313__heading {
    color: #fff;
}

.about-brands-313 .section-313-header p {
    color: rgba(255, 255, 255, .65);
}

.about-brands-313 .company-info-313__divider {
    background: #d4a843;
}

/* White registration section that follows the dark portfolio */
.govt-reg-white {
    padding: 90px 0 100px;
    background: #fff;
}

/* Portfolio Logo Cards */
.ab-brand-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
}

.ab-brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .45);
    border-color: rgba(212, 168, 67, .45);
}

.ab-brand-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ab-brand-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.ab-brand-card:hover .ab-brand-card__img {
    transform: scale(1.05);
}

/* Gold separator between portfolio and registration */

/* Registration Cards */
.reg-card-313 {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.reg-card-313:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, .45);
}

/* gold accent top bar */
.reg-card-313::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #b8882a 0%, #f0c96a 50%, #b8882a 100%);
}

.reg-card-313__head {
    padding: 22px 24px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1a4d2e 0%, #246437 100%);
}

/* logo container — for 313 (transparent logo on dark) */
.reg-card-313__head-logo {
    width: 72px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* logo container — for Libas (white-bg logo needs white pill) */
.reg-card-313__head-logo--white {
    background: #fff;
    border-radius: 10px;
    padding: 6px 8px;
    width: 100px;
    height: 60px;
}

.reg-card-313__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reg-card-313__head-info {
    flex: 1;
}

.reg-card-313__head-title {
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.reg-card-313__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 168, 67, .12);
    border: 1px solid rgba(212, 168, 67, .38);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: .62rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #d4a843;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-top: 6px;
}

.reg-card-313__body {
    background: #fff;
    padding: 22px 24px 26px;
}

.reg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid #f0f2ee;
}

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

.reg-row__label {
    color: #888;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.reg-row__val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a4d2e;
    font-size: .82rem;
    text-align: right;
}

@media (max-width: 575px) {
    .about-brands-313 {
        padding: 60px 0 70px;
    }

    .ab-brand-card__img-wrap {
        padding: 14px;
    }

    .ab-reg-sep {
        margin-top: 50px;
    }
}

/* Mission Values */
.mission-section-313 {
    padding: 70px 0;
    background: #fff;
}

.value-card-313 {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    border: 1.5px solid;
    transition: transform .25s, box-shadow .25s;
}

.value-card-313:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card-313--green {
    border-color: var(--g2);
    background: var(--g-pale);
}

.value-card-313--blue {
    border-color: var(--b2);
    background: var(--b-light);
}

.value-card-313--orange {
    border-color: var(--orange-313);
    background: #f0f7f3;
}

.value-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.value-card-313--green .value-card-icon {
    background: var(--g-light);
    color: var(--g1);
}

.value-card-313--blue .value-card-icon {
    background: var(--b-light);
    color: var(--b1);
}

.value-card-313--orange .value-card-icon {
    background: #e8f4ed;
    color: var(--orange-313);
}

.value-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.value-card-desc {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .88rem;
    color: #555;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   INVEST PAGE STYLES
   ══════════════════════════════════════ */
.invest-page-hero {
    background: linear-gradient(135deg, var(--g1) 0%, #145c14 60%, #0d3d8a 100%);
    padding: 70px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* ══════════════════════════════════════
   TESTIMONIALS PAGE
   ══════════════════════════════════════ */
.testimonials-hero-313 {
    background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.filter-tabs-313 {
    position: sticky;
    top: 80px;
    z-index: 400;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.filter-tab-313 {
    padding: 9px 20px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    background: #f0f0f0;
    border: 1.5px solid #e0e0e0;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.filter-tab-313:hover,
.filter-tab-313.active {
    background: var(--g1);
    color: #fff;
    border-color: var(--g1);
}

/* Reel Grid */
.reel-grid-313 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 576px) {
    .reel-grid-313 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .reel-grid-313 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.reel-card-313 {
    aspect-ratio: 9/16;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #222;
    cursor: pointer;
}

.reel-card-313 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-card-313__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 30%, transparent 70%);
}

.reel-card-313__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all .2s;
}

.reel-card-313:hover .reel-card-313__play {
    background: rgba(255, 255, 255, .38);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-card-313__meta {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
}

.reel-card-313__tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .6rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 3px;
}

.reel-card-313__name {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Hind Siliguri', sans-serif;
}

.reel-card-313__loc {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
    font-family: 'Hind Siliguri', sans-serif;
}

.reel-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .25);
}

.reel-progress-fill {
    height: 100%;
    background: var(--orange-313);
    width: 0%;
    transition: width .1s linear;
}

/* Skeleton */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

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

.skeleton-313 {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 14px;
}

/* Reel Modal */
.reel-modal-313 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.reel-modal-313.open {
    opacity: 1;
    pointer-events: all;
}

.reel-modal-313__video-wrap {
    max-height: 90vh;
    max-width: min(90vw, calc(90vh * 9/16));
    width: 100%;
    border-radius: 12px;
    position: relative;
}

.reel-modal-313__video-wrap video {
    width: 100%;
    border-radius: 12px;
}

.reel-modal-313__close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    transition: color .2s;
}

.reel-modal-313__close:hover {
    color: var(--orange-313);
}

.reel-modal-313__prev,
.reel-modal-313__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .3);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    z-index: 10;
}

.reel-modal-313__prev {
    left: 14px;
}

.reel-modal-313__next {
    right: 14px;
}

.reel-modal-313__prev:hover,
.reel-modal-313__next:hover {
    background: var(--g1);
}

.reel-modal-313__meta {
    text-align: center;
    margin-top: 14px;
}

/* ══════════════════════════════════════
   TESTIMONIALS PAGE — white background
   ══════════════════════════════════════ */
.investor-feedback-313.tst-313-page {
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.investor-feedback-313.tst-313-page::before {
    display: none;
}

/* Section header — dark text */
.tst-313-page .section-313-header h2,
.tst-313-page .company-info-313__heading {
    color: #1a3a28 !important;
}

.tst-313-page .section-313-header p {
    color: #555 !important;
}

.tst-313-page .section-heading__sec-name--light {
    color: #1a4d2e;
    background: rgba(26, 77, 46, .08);
    border-color: rgba(26, 77, 46, .2);
}

.tst-313-page .section-heading__sec-name--light img {
    filter: none;
    opacity: 1;
}

.tst-313-page .company-info-313__divider {
    background: #d4a843;
}

/* Card overrides for white background */
.tst-313-page .ifb-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
}

.tst-313-page .ifb-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
    border-color: rgba(212, 168, 67, .45);
}

.tst-313-page .ifb-card__info {
    background: #f8f8f6;
    border-top: 1px solid #eeeeee;
}

.tst-313-page .ifb-card__name {
    color: #1a3a28;
}

.tst-313-page .ifb-card__loc {
    color: #666;
}

/* Video thumbnail wrapper */
.tst-313__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tst-313__thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, .35);
}

.tst-313__video-wrap {
    position: relative;
    cursor: pointer;
}

.tst-313__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    transition: background .25s;
}

.tst-313__video-wrap:hover .tst-313__play-overlay {
    background: rgba(0, 0, 0, .42);
}

.tst-313__play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a4d2e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .28);
    transition: transform .2s;
}

.tst-313__video-wrap:hover .tst-313__play-btn {
    transform: scale(1.1);
}

/* Skeleton loading states */
.tst-skeleton__video {
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.tst-skeleton__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.tst-skeleton__meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tst-skeleton__line {
    height: 12px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

.tst-skeleton__line--wide {
    width: 70%;
}

.tst-skeleton__line--narrow {
    width: 40%;
}

/* Load More button */
.tst-313__load-more {
    background: #1a4d2e;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 12px 38px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.tst-313__load-more:hover {
    background: #153d24;
    transform: translateY(-2px);
}

/* Error state text on white bg */
.tst-313-page #reel-grid-313 .text-center {
    color: #888 !important;
}


/* ══════════════════════════════════════
   STATS ROW (home hero strip)
   ══════════════════════════════════════ */
.stats-hero-313 {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-hero-313__item {
    text-align: center;
}

.stats-hero-313__num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    display: block;
}

.stats-hero-313__lbl {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
}

/* ══════════════════════════════════════
   313 SECTION — GENERAL UTILITIES
   ══════════════════════════════════════ */
.section-313-header {
    text-align: center;
    margin-bottom: 52px;
}

/* section-313-header eyebrow now uses .section-heading__sec-name directly in HTML */

.section-313-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: #111827;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.section-313-header p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.btn-313-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--g1);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    transition: all .25s;
    border: none;
    cursor: pointer;
}

.btn-313-green:hover {
    background: var(--g2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-313-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--orange-313), var(--orange-2));
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    transition: all .25s;
    border: none;
    cursor: pointer;
}

.btn-313-orange:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 92, 0, .35);
}

.text-green-313 {
    color: var(--g1);
}

.text-blue-313 {
    color: var(--b1);
}

.text-orange-313 {
    color: var(--orange-313);
}

.bg-green-313 {
    background-color: var(--g1);
}

.bg-blue-313 {
    background-color: var(--b1);
}

/* ══════════════════════════════════════
   CONTACT INFO CARDS (313 style)
   ══════════════════════════════════════ */
.contact-313-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    border-left: 4px solid var(--g1);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: transform .2s;
}

.contact-313-info-card:hover {
    transform: translateX(4px);
}

.contact-313-info-card--blue {
    border-left-color: var(--b1);
}

.contact-313-info-card--orange {
    border-left-color: var(--orange-313);
}

.contact-313-info-card__label {
    font-family: 'Poppins', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g1);
    margin-bottom: 4px;
}

.contact-313-info-card--blue .contact-313-info-card__label {
    color: var(--b1);
}

.contact-313-info-card__val {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: #111;
}

.contact-313-info-card__sub {
    font-size: .78rem;
    color: #888;
    font-family: 'Hind Siliguri', sans-serif;
}

/* ══════════════════════════════════════
   TOP STRIP — 313
   ══════════════════════════════════════ */
.topstrip-313 {
    background: linear-gradient(90deg, #023214 0%, #008f47 45%, #001c3a 100%);
    border-bottom: 2px solid #3d7e57;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .35);
    height: 40px;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.topstrip-313__inner {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 0;
}

.topstrip-313__left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.topstrip-313__contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .75);
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}

.topstrip-313__contact:hover {
    color: #fff;
    text-decoration: none;
}

.topstrip-313__contact-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(61, 126, 87, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #81c784;
    flex-shrink: 0;
}

.topstrip-313__contact-icon--wa {
    background: rgba(37, 211, 102, .2);
    color: #25d366;
}

.topstrip-313__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
    margin: 0 4px;
}

.topstrip-313__ticker {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    padding: 0 16px;
    min-width: 0;
}

.topstrip-313__ticker-label {
    background: #d4a843;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}

.topstrip-313__ticker-track {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.topstrip-313__ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    animation: ticker-scroll 38s linear infinite;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .78rem;
    color: rgba(255, 255, 255, .72);
}

.topstrip-313__ticker-inner:hover {
    animation-play-state: paused;
}

.topstrip-313__sep {
    color: #3d7e57;
    font-size: .55rem;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.topstrip-313__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.topstrip-313__socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topstrip-313__social-link {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: .7rem;
    text-decoration: none;
    transition: all .2s;
}

.topstrip-313__social-link:hover {
    background: #3d7e57;
    border-color: #3d7e57;
    color: #fff;
    transform: translateY(-1px);
}

.topstrip-313__lang .dropdown-toggle {
    width: auto !important;
    background: rgba(61, 126, 87, .18) !important;
    border: 1px solid rgba(61, 126, 87, .5) !important;
    border-radius: 50px !important;
    padding: 4px 12px 4px 8px !important;
    color: rgba(255, 255, 255, .9) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: .72rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all .2s !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
}

.topstrip-313__lang .dropdown-toggle:hover,
.topstrip-313__lang .dropdown-toggle[aria-expanded="true"] {
    background: rgba(61, 126, 87, .4) !important;
    border-color: #3d7e57 !important;
    color: #fff !important;
}

.topstrip-313__lang .dropdown-flag {
    width: 16px;
    height: 11px;
    border-radius: 2px;
}

.topstrip-313__lang .dropdown-menu {
    min-width: 130px;
    top: 6px !important;
    background: #0d2318;
    border: 1px solid rgba(61, 126, 87, .4);
}

.topstrip-313__lang .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, .8);
    font-size: .8rem;
    padding: 8px 12px;
    gap: 8px;
}

.topstrip-313__lang .dropdown-menu .dropdown-item:hover {
    background: rgba(61, 126, 87, .25);
    color: #fff;
}

/* ══════════════════════════════════════
   FOOTER — 313 additions
   ══════════════════════════════════════ */
.footer-313-strip {
    background: var(--g1);
    padding: 10px 0;
    text-align: center;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
}

.footer-313-strip strong {
    color: #fff;
}

/* ══════════════════════════════════════
   HERO BANNER — 313 REDESIGN
   ══════════════════════════════════════ */

/* ════════════════════════════════════════
   HERO BANNER — SPLIT LAYOUT (313)
   ════════════════════════════════════════ */

/* Section shell — solid dark forest green */
/* ════════════════════════════════════════
   HERO — SPLIT LAYOUT (313)
   Section is position:relative; header is
   position:absolute, so we pad for it.
   topstrip=40px + header-bottom=85px = 125px
   ════════════════════════════════════════ */

.hero-section--313 {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #173d24;
    background-image:
        radial-gradient(ellipse 70% 80% at 75% 50%, rgba(61, 126, 87, .15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 5% 90%, rgba(5, 20, 10, .7) 0%, transparent 55%);
}

/* ── Optional: admin uploads bg image via banner.content → image ── */
.hero-section--313.has-bg-img {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-section--313.has-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(5, 18, 10, 0.48) 0%, rgba(5, 18, 10, 0.41) 35%, rgba(5, 18, 10, 0.27) 55%, rgba(5, 18, 10, .18) 75%, rgba(5, 18, 10, .08) 100%), linear-gradient(to bottom, rgba(5, 18, 10, 0) 0%, transparent 18%, transparent 80%, rgba(5, 18, 10, 0) 100%);
}

.hero-section--313.has-bg-img .hero-inner {
    position: relative;
    z-index: 2;
}

/* ── Inner / slide shell ── */
.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-slide {
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    /* vertical centre within section */
}

.hero-slide.active {
    display: flex;
}

/* ── Split row: fixed padding accounts for fixed header ── */
.hero-row-313 {
    padding: 140px 0 220px 0;
    /* 140 = header clearance (125px) + 15px margin */
    align-items: center;
    width: 100%;
}

/* ── Left column ── */
.hero-left-313 {
    padding-right: 40px;
}

/* ── Brand tag ── */
.hero-tag-313 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    padding: 6px 14px 6px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .74rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-tag-313__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 3px rgba(93, 184, 122, .35);
    animation: tag-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes tag-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(93, 184, 122, .35);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(93, 184, 122, .08);
    }
}

.hero-tag-313__badge {
    background: rgb(37, 211, 102);
    color: #fff;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* ── Main heading ── */
.hero-heading-313 {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6), 0 4px 30px rgba(0, 0, 0, .4);
}

.hero-gold-313 {
    color: #d4a843;
    text-shadow: 0 2px 16px rgba(212, 168, 67, .4);
}

/* ── Description ── */
.hero-desc-313 {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 26px;
    max-width: 460px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

/* ── Feature grid ── */
.hero-feats-313 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-feat-313 {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-left: 3px solid #d4a843;
    border-radius: 10px;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background .2s, border-color .2s, transform .2s;
}

.hero-feat-313:hover {
    background: rgba(255, 255, 255, .2);
    border-left-color: #d4a843;
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-2px);
}

.hero-feat-313 i {
    font-size: 1.55rem;
    color: #d4a843;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(212, 168, 67, .3));
}

.hero-feat-313 span {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .82rem;
    color: rgba(255, 255, 255, .92);
    line-height: 1.35;
    font-weight: 600;
}

/* ── CTA buttons ── */
.hero-actions-313 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-btn-313-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(145 63% 42%);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .87rem;
    letter-spacing: .02em;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 6px 22px rgba(61, 126, 87, .35);
    border: none;
}

.hero-btn-313-primary:hover {
    background: #c49330;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, .52);
    text-decoration: none;
}

.hero-btn-313-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .87rem;
    text-decoration: none;
    transition: all .25s;
    border: 2px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(14px);
}

.hero-btn-313-outline:hover {
    border-color: #d4a843;
    color: #d4a843;
    transform: translateY(-3px);
    text-decoration: none;
}

/* ── Right column ── */
.hero-right-313 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
    animation: heroRightIn 1s ease-out both;
}

@keyframes heroRightIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* ── Image frame — elevated above the background overlay ── */
.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    overflow: hidden;
    filter: brightness(1.08) contrast(1.04);
    animation: imgFloat 6s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes imgFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Subtle bottom vignette inside frame */
/* .hero-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(5, 18, 10, .55) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
} */

.hero-img-313 {
    width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 8s ease-out;
}

/* ── Floating investor badge ── */
.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(5, 18, 10, .92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 168, 67, .55);
    border-radius: 14px;
    padding: 12px 18px;
    z-index: 4;
    animation: badgePulse 4s ease-in-out infinite 1.5s;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.hero-img-badge__num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #d4a843;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(212, 168, 67, .4);
}

.hero-img-badge__lbl {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: .78rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 6px 24px rgba(212, 168, 67, .3);
    }
}

/* Disable float on mobile (prevent layout jank) */
@media (max-width: 767px) {
    .hero-img-wrap {
        animation: none;
    }

    .hero-right-313 {
        display: none;
        animation: none;
    }

    .hero-img-badge {
        animation: none;
    }
}

/* ── Slider controls ── */
.hero-controls {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-ctrl-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    font-size: 1.1rem;
}

.hero-ctrl-btn:hover {
    background: rgba(255, 255, 255, .3);
}

.hero-ctrl-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .25s;
}

.hero-dot.is-active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* ── Scroll-down hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(61, 126, 87, .6);
    background: rgba(61, 126, 87, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    text-decoration: none;
    animation: bounce-hint 2.2s ease-in-out infinite;
    transition: background .2s, border-color .2s, color .2s;
}

.hero-scroll-hint:hover {
    background: rgba(61, 126, 87, .3);
    border-color: #3d7e57;
    color: #fff;
    text-decoration: none;
}

@keyframes bounce-hint {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ══════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════ */
@media (max-width: 767px) {
    .proj-313-card__header {
        padding: 22px 20px 16px;
    }

    .proj-313-card__body {
        padding: 18px 20px;
    }

    .inquiry-card-313 {
        padding: 24px 18px;
    }

    .step-313-connector {
        display: none;
    }

    .section-313-header h2 {
        font-size: 1.55rem;
    }

    .founder-hero-313__name {
        font-size: 1.8rem;
    }

    .page-hero-313__title {
        font-size: 1.7rem;
    }

    .reel-grid-313 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stats-hero-313 {
        gap: 14px;
        padding: 14px 16px;
    }

    .stats-hero-313__num {
        font-size: 1.3rem;
    }

    /* Banner responsive */

    .hero-left-313 {
        padding-right: 0;
        text-align: center;
        order: 2;
    }

    .hero-right-313 {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-img-wrap {
        max-width: 100%;
    }

    .hero-img-313 {
        aspect-ratio: 16/9;
    }

    .hero-feats-313 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .hero-feat-313 {
        align-items: flex-start;
    }

    .hero-actions-313 {
        justify-content: center;
    }

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

    .hero-desc-313 {
        max-width: 100%;
        margin: 0 auto 22px;
    }

    .hero-tag-313 {
        justify-content: center;
    }

    .hero-controls {
        bottom: 76px;
    }
}

/* ══════════════════════════════════════════════════
   PROJECTS LISTING PAGE — prj-page-313
   ══════════════════════════════════════════════════ */
.prj-page-313 {
    padding: 48px 0 100px;
    background: #f7f9f7;
}

/* ── Filter Bar ── */
.prj-filter-313 {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 4px 24px rgba(61, 126, 87, .08);
    border: 1px solid rgba(61, 126, 87, .1);
    margin-bottom: 40px;
}

.prj-filter-313__search {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #f4f8f5;
    border: 1.5px solid rgba(61, 126, 87, .18);
    border-radius: 10px;
    padding: 9px 14px;
    flex: 0 0 220px;
    transition: border-color .2s;
}

.prj-filter-313__search:focus-within {
    border-color: #3d7e57;
}

.prj-filter-313__search i {
    color: #3d7e57;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.prj-filter-313__search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: .88rem;
    color: #173d24;
    width: 100%;
    font-family: inherit;
}

.prj-filter-313__search-input::placeholder {
    color: #9ca3af;
}

.prj-filter-313__filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

/* Chip labels (category / return type) */
.prj-filter-chip {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: #4b5563;
    background: #f4f8f5;
    border: 1.5px solid transparent;
    transition: all .2s;
    user-select: none;
    margin: 0;
}

.prj-filter-chip input[type="checkbox"] {
    display: none;
}

.prj-filter-chip:has(input:checked) {
    background: #3d7e57;
    color: #fff;
    border-color: #3d7e57;
}

.prj-filter-chip:hover {
    border-color: #3d7e57;
    color: #3d7e57;
}

.prj-filter-chip:has(input:checked):hover {
    color: #fff;
}

/* Price range inputs */
.prj-filter-313__price {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f4f8f5;
    border: 1.5px solid rgba(61, 126, 87, .18);
    border-radius: 10px;
    padding: 6px 12px;
}

.prj-filter-313__price-sep {
    color: #9ca3af;
    font-size: .85rem;
}

.prj-filter-313__price-input {
    border: none;
    background: transparent;
    outline: none;
    width: 66px;
    font-size: .82rem;
    font-weight: 600;
    color: #173d24;
    text-align: center;
    font-family: inherit;
}

/* Meta: count + view toggle */
.prj-filter-313__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-shrink: 0;
}

.prj-filter-313__count {
    font-size: .82rem;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
}

.prj-filter-313__count span {
    color: #3d7e57;
    font-weight: 800;
}

.prj-filter-313__view {
    display: flex;
    gap: 6px;
}

.prj-view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid rgba(61, 126, 87, .2);
    background: #f4f8f5;
    color: #6b7280;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    line-height: 1;
}

.prj-view-btn.active,
.prj-view-btn:hover {
    background: #3d7e57;
    border-color: #3d7e57;
    color: #fff;
}

/* ── Funding Progress Bar (on card + list) ── */
.prj-progress-wrap {
    margin-bottom: 16px;
}

.prj-progress-track {
    height: 6px;
    background: #e8f5ee;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}

.prj-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 6px;
    transition: width .6s ease;
}

.prj-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prj-progress-pct {
    font-size: .72rem;
    font-weight: 700;
    color: #3d7e57;
}

.prj-progress-units {
    font-size: .72rem;
    font-weight: 600;
    color: #9ca3af;
}

/* ── List View Card — prj-list-card-313 ── */
.prj-list-card-313 {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(61, 126, 87, .1);
    border-left: 4px solid #3d7e57;
    box-shadow: 0 4px 20px rgba(23, 61, 36, .07);
    transition: transform .3s, box-shadow .3s, border-left-color .3s;
}

.prj-list-card-313:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(23, 61, 36, .12);
    border-left-color: #d4a843;
}

.prj-list-card-313__img {
    width: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.prj-list-card-313__img a {
    display: block;
    height: 100%;
}

.prj-list-card-313__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.prj-list-card-313:hover .prj-list-card-313__img img {
    transform: scale(1.05);
}

.prj-list-card-313__roi {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #d4a843, #c49330);
    color: #0d2a13;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 3px 10px rgba(212, 168, 67, .4);
}

.prj-list-card-313__body {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

.prj-list-card-313__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.prj-list-card-313__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f2a1a;
    margin: 0;
    line-height: 1.3;
}

.prj-list-card-313__title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.prj-list-card-313__title a:hover {
    color: #3d7e57;
}

.prj-list-card-313__status {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.prj-list-card-313__status.active {
    background: rgba(61, 126, 87, .12);
    color: #3d7e57;
}

.prj-list-card-313__status.closed {
    background: rgba(220, 38, 38, .1);
    color: #dc2626;
}

.prj-list-card-313__stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.prj-list-card-313__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prj-list-card-313__stat-lbl {
    font-size: .72rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.prj-list-card-313__stat-val {
    font-size: .95rem;
    font-weight: 800;
    color: #173d24;
}

.prj-list-card-313__stat-val.green {
    color: #3d7e57;
}

.prj-list-card-313__progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex: 1;
    align-items: flex-end;
}

.prj-list-card-313__progress .prj-progress-track {
    flex: 1;
    margin-bottom: 0;
}

.prj-list-card-313__progress .prj-progress-pct {
    white-space: nowrap;
}

.prj-list-card-313__action {
    display: flex;
}

.prj-list-btn-closed {
    background: rgba(220, 38, 38, .1);
    color: #dc2626;
    border: 1.5px solid rgba(220, 38, 38, .2);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    cursor: not-allowed;
    opacity: .8;
}

/* ── Empty state ── */
.prj-empty-313 {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border-radius: 20px;
    border: 2px dashed rgba(61, 126, 87, .2);
}

.prj-empty-313 img {
    width: 90px;
    opacity: .5;
    margin-bottom: 20px;
}

.prj-empty-313 h4 {
    color: #173d24;
    font-weight: 700;
    margin-bottom: 10px;
}

.prj-empty-313 p {
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto;
}

/* ── Pagination ── */
.prj-pagination-313 {
    display: flex;
    justify-content: center;
}

.prj-pagination-313 .pagination {
    gap: 6px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .prj-filter-313 {
        flex-direction: column;
        align-items: stretch;
    }

    .prj-filter-313__search {
        flex: unset;
        width: 100%;
    }

    .prj-filter-313__meta {
        margin-left: 0;
        justify-content: space-between;
    }

    .prj-list-card-313 {
        flex-direction: column;
    }

    .prj-list-card-313__img {
        width: 100%;
        height: 220px;
    }

    .prj-list-card-313__body {
        padding: 20px;
    }
}

/* ════════════════════════════════════════════════════
   PROJECT DETAILS PAGE — pd-313
   ════════════════════════════════════════════════════ */
.pd-313 {
    padding: 48px 0 100px;
    background: #f7f9f7;
}

/* ── Hero Card ── */
.pd-313__hero {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(23, 61, 36, .1);
    border: 1px solid rgba(61, 126, 87, .1);
    margin-bottom: 28px;
}

/* ── Gallery ── */
.hide_mobile {
    display: block;
}

@media (max-width: 991px) {
    .hide_mobile {
        display: none !important;
    }
}

/* Gallery: main image always full-height */
.pd-313__gallery {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.pd-313__gal-hero-link {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pd-313__gal-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pd-313__gal-hero-link:hover .pd-313__gal-hero-img {
    transform: scale(1.04);
}

/* Hover overlay */
.pd-313__gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 26, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.pd-313__gal-hero-link:hover .pd-313__gal-overlay {
    opacity: 1;
}

.pd-313__gal-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* View Gallery button — bottom-left corner */
.pd-313__gal-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .25);
    border-radius: 50px;
    font-family: inherit;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    z-index: 5;
}

.pd-313__gal-btn:hover {
    background: rgba(61, 126, 87, .85);
    border-color: rgba(61, 126, 87, .6);
}

/* ── Info Panel ── */
.pd-313__info {
    padding: 24px 25px;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    border-left: 1px solid rgba(61, 126, 87, .08);
}

.pd-313__info-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pd-313__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.pd-313__status i {
    font-size: .5rem;
}

.pd-313__status.active {
    background: rgba(61, 126, 87, .1);
    color: #3d7e57;
}

.pd-313__status.closed {
    background: rgba(220, 38, 38, .1);
    color: #dc2626;
}

.pd-313__roi-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a843, #c49330);
    color: #FFF;
    box-shadow: 0 2px 8px rgba(212, 168, 67, .3);
}

.pd-313__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0f2a1a;
    line-height: 1.25;
    margin-bottom: 14px;
}

.pd-313__divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 3px;
    margin-bottom: 22px;
}

/* ── Stats Grid ── */
.pd-313__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-313__stat {
    background: #f4f8f5;
    border-radius: 10px;
    padding: 10px 14px;
    border-left: 3px solid #3d7e57;
}

.pd-313__stat-lbl {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
}

.pd-313__stat-val {
    font-size: .92rem;
    font-weight: 800;
    color: #0f2a1a;
}

.pd-313__stat-val.green {
    color: #3d7e57;
}

.pd-313__stat-val.red {
    color: #dc2626;
}

/* ── Progress ── */
.pd-313__progress {
    margin-bottom: 20px;
}

.pd-313__progress-track {
    height: 7px;
    background: #e8f5ee;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 6px;
}

.pd-313__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3d7e57, #d4a843);
    border-radius: 7px;
    transition: width .6s ease;
}

.pd-313__progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: .73rem;
    font-weight: 600;
    color: #9ca3af;
}

.pd-313__progress-meta span:first-child {
    color: #3d7e57;
}

/* ── Mobile invest button ── */
.pd-313__mobile-invest-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #3d7e57, #2e6040);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    box-shadow: 0 4px 16px rgba(61, 126, 87, .3);
    transition: all .25s;
}

.pd-313__mobile-invest-btn:hover {
    background: linear-gradient(135deg, #2e6040, #173d24);
    box-shadow: 0 8px 24px rgba(61, 126, 87, .45);
}

/* ── Tabs Card ── */
.pd-313__card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(61, 126, 87, .1);
    box-shadow: 0 4px 20px rgba(23, 61, 36, .07);
}

.pd-313__tab-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 16px 20px 0;
    gap: 4px;
    border-bottom: 2px solid #f0f5f2;
    flex-wrap: wrap;
}

.pd-313__tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 10px 10px 0 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #6b7280;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    bottom: -2px;
    white-space: nowrap;
}

.pd-313__tab-btn:hover {
    color: #3d7e57;
    background: #f4f8f5;
}

.pd-313__tab-btn.active {
    color: #3d7e57;
    border-bottom-color: #3d7e57;
    background: transparent;
}

.pd-313__tab-badge {
    background: #3d7e57;
    color: #fff;
    padding: 2px 7px;
    border-radius: 50px;
    font-size: .67rem;
    font-weight: 700;
}

.pd-313__tab-content {
    padding: 28px;
}

/* ── Description ── */
.pd-313__desc {
    color: #4b5563;
    line-height: 1.85;
    font-size: .95rem;
    margin-bottom: 28px;
}

.pd-313__desc h2,
.pd-313__desc h3,
.pd-313__desc h4 {
    color: #0f2a1a;
    font-weight: 700;
    margin: 1.4em 0 .6em;
}

.pd-313__desc img {
    max-width: 100%;
    border-radius: 12px;
}

/* ── Share ── */
.pd-313__share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 18px;
    background: #f4f8f5;
    border-radius: 12px;
    border: 1px solid rgba(61, 126, 87, .12);
}

.pd-313__share-lbl {
    font-size: .85rem;
    font-weight: 700;
    color: #3d7e57;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-313__share-btns {
    display: flex;
    gap: 10px;
}

/* ── FAQ ── */
.pd-313__faq-item {
    border: 1px solid rgba(61, 126, 87, .12) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px !important;
}

.pd-313__faq-btn {
    font-weight: 600 !important;
    color: #0f2a1a !important;
    background: #f4f8f5 !important;
    font-size: .9rem !important;
    padding: 14px 18px !important;
    border: none !important;
}

.pd-313__faq-btn:not(.collapsed) {
    background: #3d7e57 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.pd-313__faq-btn:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.pd-313__faq-body {
    color: #4b5563;
    line-height: 1.75;
    font-size: .9rem;
    padding: 14px 18px !important;
}

/* ── Map ── */
.pd-313__map-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 360px;
}

.pd-313__map {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Comments ── */
.pd-313__comments-hd {
    font-size: 1rem;
    font-weight: 800;
    color: #0f2a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f5f2;
}

.pd-313__comments-hd i {
    color: #3d7e57;
}

.pd-313__comment-form-wrap {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.pd-313__comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(61, 126, 87, .2);
}

.pd-313__comment-form {
    flex: 1;
}

.pd-313__comment-input {
    width: 100%;
    padding: 12px 52px 12px 16px;
    border: 1.5px solid rgba(61, 126, 87, .2);
    border-radius: 12px;
    resize: none;
    min-height: 72px;
    font-family: inherit;
    font-size: .9rem;
    color: #173d24;
    background: #f4f8f5;
    transition: border-color .2s;
    display: block;
}

.pd-313__comment-input:focus {
    outline: none;
    border-color: #3d7e57;
    background: #fff;
}

.pd-313__comment-submit {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #3d7e57;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.pd-313__comment-submit:hover {
    background: #2e6040;
    transform: scale(1.05);
}

/* ── Load More ── */
.pd-313__load-more {
    padding: 10px 28px;
    border: 2px solid rgba(61, 126, 87, .25);
    border-radius: 50px;
    background: transparent;
    color: #3d7e57;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.pd-313__load-more:hover {
    background: #3d7e57;
    border-color: #3d7e57;
    color: #fff;
}

/* ── Related ── */
.pd-313__related {
    margin-top: 56px;
}

.pd-313__related-hd {
    margin-bottom: 24px;
}

.pd-313__related-hd h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f2a1a;
    margin-bottom: 10px;
}

/* ── Sidebar brand override ── */
#offer-details-offcanvas-sidebar {
    background: #fff !important;
    border-radius: 20px;
    border: 1px solid rgba(61, 126, 87, .1);
    box-shadow: 0 4px 20px rgba(23, 61, 36, .07);
    overflow: hidden;
}

.btn--invest-active {
    background: linear-gradient(135deg, #3d7e57 0%, #2e6040 100%) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(61, 126, 87, .35) !important;
    transition: all .25s !important;
}

.btn--invest-active:hover {
    background: linear-gradient(135deg, #2e6040, #173d24) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(61, 126, 87, .45) !important;
}

/* ── Mobile hero image ── */
.pd-313__mobile-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.pd-313__mobile-hero .pd-313__gal-hero-link {
    height: 100%;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .dropdown--lang .dropdown-toggle {
        color: var(--brand-navy) !important;
    }

    .pd-313 {
        padding: 32px 0 60px;
    }

    .pd-313__hero {
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .pd-313__info {
        padding: 22px 20px 24px;
        border-left: none;
        border-top: 2px solid rgba(61, 126, 87, .08);
        min-height: unset;
    }

    .pd-313__stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .pd-313__title {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .pd-313__stats {
        grid-template-columns: 1fr 1fr;
    }

    .pd-313__tab-content {
        padding: 16px;
    }

    .pd-313__info {
        padding: 18px 16px 22px;
    }

    .pd-313__tab-nav {
        padding: 12px 12px 0;
        gap: 2px;
    }

    .pd-313__tab-btn {
        padding: 8px 12px;
        font-size: .78rem;
    }

    .pd-313__mobile-hero {
        height: 220px;
    }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE HOTFIXES — full-site audit
   ══════════════════════════════════════════════════════════ */

/* ── 1. About page — Founder hero name too large on phones ── */
@media (max-width: 575px) {
    .founder-hero-313 {
        padding: 60px 0 40px;
    }

    .founder-hero-313__name {
        font-size: 1.6rem;
    }

    .founder-hero-313__sub {
        font-size: .95rem;
    }

    .founder-badge {
        font-size: .65rem;
        padding: 5px 12px;
    }
}

/* ── 2. About page — Chairman message padding on mobile ── */
@media (max-width: 575px) {

    .chairman-card,
    .chairman-message-card {
        padding: 24px 20px;
    }

    .chairman-message-body {
        padding-top: 32px;
        font-size: .9rem;
    }

    .founder-profile-section {
        padding: 48px 0;
    }
}

/* ── 3. About page — Registration row wrap on small screens ── */
@media (max-width: 400px) {
    .reg-row {
        flex-wrap: wrap;
        gap: 2px;
    }

    .reg-row__val {
        text-align: right;
    }

    .reg-card-313__body {
        padding: 16px;
    }
}

/* ── 4. Hero metrics — flex-wrap + mobile padding ── */
@media (max-width: 767px) {
    .hero-metrics {
        flex-wrap: wrap;
        border-radius: 10px;
    }

    .hero-metrics__item {
        padding: 14px 18px;
        flex: 1 1 40%;
    }

    .hero-metrics__sep {
        display: none;
    }

    .hero-num {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .hero-metrics__item {
        flex: 1 1 100%;
        border-bottom: 1px solid var(--g-border);
        border-top: none;
    }

    .hero-metrics__item:last-child {
        border-bottom: none;
    }
}

/* ── 5. Project details — gallery image height ── */
@media (max-width: 767px) {
    .premium-gallery-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .premium-gallery-img {
        height: 180px;
    }

    .premium-gallery-grid {
        grid-template-columns: 1fr;
    }

    .premium-gallery-container {
        padding: 16px;
        border-radius: 16px;
    }
}

/* ── 6. Project details — map height on mobile ── */
@media (max-width: 575px) {
    .premium-map-wrap {
        height: 250px !important;
    }
}

/* ── 7. Certification — heading font on tablet ── */
@media (max-width: 991px) {
    .cert-glance-header h2 {
        font-size: 2rem;
        letter-spacing: -.5px;
        line-height: 1.25;
    }
}

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

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

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

/* ── 8. Policy pages — padding on mobile ── */
@media (max-width: 767px) {
    .policy-article__body {
        padding: 36px 28px;
    }
}

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

/* ── 9. Modern list card — intermediate tablet breakpoint ── */
@media (min-width: 576px) and (max-width: 767px) {
    .modern-list-card__left {
        width: 220px !important;
        height: 180px !important;
    }

    .modern-list-card__title {
        font-size: 1.15rem;
    }

    .modern-list-card__right {
        padding: 16px 18px;
    }
}

/* ── 10. Section headings — tighten on xs phones ── */
@media (max-width: 400px) {
    .section-313-header p {
        font-size: .88rem;
    }

    .company-info-313__heading,
    .section-313-header h2 {
        font-size: 1.65rem !important;
    }
}

/* ── 11. FAQ side card — ensure no sticky on mid tablets ── */
@media (max-width: 767px) {
    .faq-313__side {
        position: static !important;
    }
}

/* ── 12. Invest flow cards — tighter padding on xs ── */
@media (max-width: 400px) {
    .invest-flow__card-inner {
        padding: 24px 18px 20px;
    }
}

/* ── 13. Testimonials page — ifb-card mobile tweaks ── */
@media (max-width: 400px) {
    .tst-313-page .ifb-card__info {
        padding: 10px 12px;
        gap: 8px;
    }

    .ifb-card__name {
        font-size: .88rem;
    }

    .ifb-card__badge {
        display: none;
    }
}

/* ── 14. Mobile bottom menu — ensure above content but below modals ── */
.mobile-bottom-menu {
    z-index: 1040;
}

/* ── 15. Global — tap highlight & touch UX ── */
a,
button,
.btn,
.ifb-card,
.proj-card,
.ab-brand-card,
.ifb-card__video {
    -webkit-tap-highlight-color: transparent;
}

/* ── 16. Overflow guard — prevent horizontal scroll on all pages ── */
body {
    overflow-x: hidden;
}

.container-fluid,
.row {
    overflow-x: clip;
}

/* ═══════════════════════════════════════════════════════
   Investment Packages — sidebar package cards
═══════════════════════════════════════════════════════ */
.pkg-card {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, background .2s;
    background: #fff;
}

.pkg-card:hover {
    border-color: hsl(var(--main));
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.pkg-card.active {
    border-color: hsl(var(--main));
    background: hsl(var(--main) / .05);
    box-shadow: 0 2px 14px hsl(var(--main) / .18);
}

.pkg-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.pkg-card__name {
    font-weight: 700;
    font-size: .95rem;
    color: #1e293b;
}

.pkg-card__sqft {
    font-size: .75rem;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 2px 8px;
    color: #64748b;
}

.pkg-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(var(--main));
}

.pkg-card__offer {
    margin-top: 6px;
    font-size: .78rem;
    color: #16a34a;
    background: #f0fdf4;
    border-radius: 6px;
    padding: 4px 8px;
}

.pkg-card__offer i {
    margin-right: 4px;
}

/* Payment option selector */
.pkg-pay-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkg-pay-opt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: #fff;
}

.pkg-pay-opt i {
    font-size: 1.4rem;
    color: #94a3b8;
    margin-top: 2px;
}

.pkg-pay-opt:hover,
.pkg-pay-opt.active {
    border-color: hsl(var(--main));
    background: hsl(var(--main) / .05);
}

.pkg-pay-opt.active i {
    color: hsl(var(--main));
}

.pkg-pay-opt strong {
    font-size: .88rem;
    display: block;
}

.pkg-pay-opt small {
    font-size: .78rem;
    color: #64748b;
}

/* Package pills in project info panel */
.pd-313__pkg-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pd-313__pkg-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: hsl(var(--main) / .08);
    border: 1px solid hsl(var(--main) / .25);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: .78rem;
    line-height: 1.4;
}

.pd-313__pkg-pill strong {
    color: #1e293b;
}

.pd-313__pkg-pill span {
    color: hsl(var(--main));
    font-weight: 600;
}

.offcanvas-sidebar.offcanvas-sidebar--offer-details .offcanvas-sidebar__body .amount-detail-item {
    padding-left: 14px;
    padding-right: 14px;
}

.offcanvas-sidebar.offcanvas-sidebar--offer-details .offcanvas-sidebar__body {
    padding: 30px 20px;
}

/* ── Native app: hide web-only floating widgets ── */
html.in-app .wa-float,
html.in-app .scroll-top {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════
   AFFILIATE SYSTEM — brand styling
   ═══════════════════════════════════════════════════════ */

.aff-page {
    background: var(--cream-313);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.aff-card {
    background: #fff;
    border: none;
    border-radius: var(--radius-313);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.aff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--g1), var(--g3), var(--orange-313));
}

.aff-card__body {
    padding: 40px;
}

@media (max-width: 767.98px) {
    .aff-card__body {
        padding: 24px;
    }
}

.aff-card__title {
    font-weight: 700;
    color: #1a2e22;
    margin-bottom: 4px;
}

.aff-card__subtitle {
    color: #6b7c72;
    margin-bottom: 28px;
}

.aff-section-heading {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--g1);
    margin-top: 44px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--g-light);
}

.aff-page .form-label {
    font-weight: 500;
    color: #33473c;
    font-size: .9rem;
}

.aff-page .form-control,
.aff-page .form-select {
    border: 1.5px solid #e3ece5;
    border-radius: 10px;
    padding: 10px 14px;
    background: var(--g-pale);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.aff-page .form-control:focus,
.aff-page .form-select:focus {
    border-color: var(--g2);
    box-shadow: 0 0 0 3px var(--g-light);
    background: #fff;
}

.aff-page .form-check-input:checked {
    background-color: var(--g1);
    border-color: var(--g1);
}

.aff-btn-brand {
    background: linear-gradient(135deg, var(--g1), var(--g2));
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 28px;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 6px 18px rgba(26, 122, 26, .25);
}

.aff-btn-brand:hover,
.aff-btn-brand:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(26, 122, 26, .32);
}

.aff-btn-brand:disabled {
    background: #d5dcd8;
    color: #9aa8a0;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.aff-btn-copy {
    background: #fff;
    border: 1.5px solid var(--g2);
    color: var(--g1);
    font-weight: 600;
    font-size: .85rem;
    border-radius: 8px;
    padding: 8px 18px;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    white-space: nowrap;
}

.aff-btn-copy:hover,
.aff-btn-copy:focus {
    background: var(--g1);
    border-color: var(--g1);
    color: #fff;
    transform: translateY(-1px);
}

.aff-btn-copy.is-copied {
    background: var(--g1);
    border-color: var(--g1);
    color: #fff;
}

.aff-link,
button.aff-link {
    color: var(--g1) !important;
    font-weight: 600;
    text-decoration: underline;
}

.aff-link:hover {
    color: var(--orange-2);
    text-decoration: underline;
}

.aff-link:disabled {
    color: #9aa8a0;
    cursor: not-allowed;
}

.aff-link:disabled:hover {
    color: #9aa8a0;
    text-decoration: none;
}

/* Dashboard shell */
.aff-dash-head {
    background: #fff;
    border-radius: var(--radius-313);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.aff-dash-head__id {
    color: var(--g1);
    font-weight: 700;
}

.aff-nav-pills {
    background: #fff;
    border-radius: var(--radius-313);
    box-shadow: var(--shadow-sm);
    padding: 10px;
}

.aff-nav-pills .nav-link {
    color: #4b5d54;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 16px;
}

.aff-nav-pills .nav-link.active {
    background: var(--g1);
    color: #fff;
}

.aff-stat-card {
    background: #fff;
    border-radius: var(--radius-313);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    height: 100%;
    border-left: 4px solid var(--g2);
}

.aff-stat-card__label {
    color: #7a8a80;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
    margin-bottom: 6px;
}

.aff-stat-card__value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2e22;
    margin: 0;
}

.aff-stat-card--warning {
    border-left-color: #f0ad4e;
}

.aff-stat-card--muted {
    border-left-color: #b9c4be;
}

.aff-table-card {
    background: #fff;
    border-radius: var(--radius-313);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.aff-table-card .table {
    margin-bottom: 0;
}

.aff-table-card .table thead th {
    background: var(--g-pale);
    color: #4b5d54;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 2px solid var(--g-light);
    padding: 12px 16px;
    white-space: nowrap;
}

.aff-table-card .table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid #eef3ef;
    color: #33473c;
}

.aff-table-card .table tbody tr:last-child td {
    border-bottom: none;
    padding-bottom: 20px;
}

.aff-table-card .table tbody tr:hover {
    background: var(--g-pale);
}

.aff-table-card .card-header {
    background: #fff;
    border-bottom: 1px solid var(--g-light);
    font-weight: 600;
    color: #1a2e22;
}

/* ── Affiliate: document upload zone ── */
.aff-upload-zone {
    border: 2px dashed var(--g2);
    border-radius: 12px;
    background: var(--g-pale);
    padding: 16px;
    text-align: center;
    transition: border-color .25s ease, background .25s ease;
    position: relative;
    height: 100%;
}

.aff-upload-zone:hover {
    border-color: var(--g1);
    background: var(--g-light);
}

.aff-upload-zone.has-file {
    border-style: solid;
    border-color: var(--g1);
    background: #fff;
}

.aff-upload-preview {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
}

.aff-upload-placeholder {
    padding: 14px 0 10px;
    color: #888;
}

.aff-upload-placeholder i {
    font-size: 2.2rem;
    color: var(--g2);
    display: block;
    margin-bottom: 6px;
}

.aff-upload-placeholder span {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    color: #33473c;
    margin-bottom: 4px;
}

.aff-upload-placeholder small {
    font-size: .72rem;
    color: #9aa8a0;
}

.aff-upload-filename {
    display: block;
    font-size: .78rem;
    color: var(--g1);
    font-weight: 600;
    margin-bottom: 8px;
    word-break: break-all;
}

.aff-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--g1), var(--g2));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    margin-top: 2px;
}

.aff-upload-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 122, 26, .28);
    color: #fff;
}