/* GJ Kedia Common Modal */
.gjk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gjk-modal-overlay.active {
    display: flex;
}

.gjk-modal-box {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.gjk-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #14243f;
}

.gjk-modal-box h2 {
    margin: 0 0 8px;
    color: #14243f;
    font-size: 26px;
}

.gjk-modal-box p {
    margin: 0 0 22px;
    color: #555;
    font-size: 15px;
}

.gjk-modal-form input,
.gjk-modal-form textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 13px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.gjk-modal-form textarea {
    min-height: 90px;
    resize: vertical;
}

.gjk-modal-form button {
    width: 100%;
    border: none;
    background: #14243f;
    color: #ffffff;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.gjk-modal-form button:hover {
    background: #b88746;
}

body.gjk-modal-open {
    overflow: hidden;
}

/* ==================================================
   Elegant Nivasa Hero Banner Section
================================================== */

/* Nivasa Banner Section */
.nivasa-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* background: #eaf8ff; */
}

/* Common Image Style */
.nivasa-banner-section img {
    margin-top: 85px;
    inset: 0;
    background-image: var(--desktop-img);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}




/* Desktop Banner */
.nivasa-desktop-banner {
    display: block;
}

/* Mobile Banner Hidden on Desktop */
.nivasa-mobile-banner {
    display: none !important;
}

/* Desktop Overlay */
.nivasa-desktop-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Mobile View */
@media (max-width: 767px) {

    .nivasa-banner-section {
        margin-top: 76px;
    }

    .nivasa-desktop-banner {
        display: none !important;
    }

    .nivasa-mobile-banner {
        display: block !important;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .nivasa-desktop-overlay {
        display: none !important;
    }
}

/* Desktop View */
@media (min-width: 768px) {

    .nivasa-desktop-banner {
        display: block !important;
    }

    .nivasa-mobile-banner {
        display: none !important;
    }
}

/* ==================================================
   Sticky Side Buttons
================================================== */

.sticky-side-buttons {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.side-btn {
    background: #14243f;
    color: #ffffff;
    padding: 14px 12px;
    min-height: 135px;
    width: 44px;
    border: 1px solid #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.side-btn:hover {
    background: #b88746;
    color: #ffffff;
}

/* Mobile Sticky Button */
@media (max-width: 768px) {
    .sticky-side-buttons {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        gap: 0;
    }

    .side-btn {
        width: 100%;
        min-height: auto;
        padding: 14px 10px;
        font-size: 13px;
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
    }
}




.floorplan-card {
    cursor: pointer;
}

.floorplan-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 30px;
}

.floorplan-lightbox.active {
    display: flex;
}

.floorplan-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    z-index: 2;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 55px;
    width: 55px;
    height: 70px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .floorplan-lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-arrow {
        font-size: 40px;
        width: 45px;
        height: 60px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

.nivasa-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("assests/Images/amenities/Nivasa-Banner-page-1.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nivasa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.nivasa-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.nivasa-hero-title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nivasa-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.nivasa-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.nivasa-breadcrumb a:hover {
    color: #d9b26f;
}

.nivasa-breadcrumb .current {
    color: #d9b26f;
}

/* Sticky Side Buttons */
.nivasa-hero .sticky-side-buttons {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nivasa-hero .side-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #b88a44;
    color: #fff;
    padding: 16px 10px;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nivasa-hero .side-btn:hover {
    background: #000;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .nivasa-hero {
        min-height: 300px;
    }

    .nivasa-hero-title {
        font-size: 34px;
    }

    .nivasa-breadcrumb {
        font-size: 14px;
    }

    .nivasa-hero .sticky-side-buttons {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
    }

    .nivasa-hero .side-btn {
        writing-mode: horizontal-tb;
        transform: none;
        width: 50%;
        text-align: center;
        padding: 13px 8px;
        margin: 0;
        font-size: 13px;
    }
}



.construction-highlights {
    padding: 90px 0;
    background: #f7f7f7;
}

.construction-highlights .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.construction-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.construction-head span {
    display: inline-block;
    color: #c59a4b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.construction-head h2 {
    margin: 0;

    font-size: 42px;
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.construction-head p {
    margin: 16px 0 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
}

.construction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.construction-card {
    position: relative;
    background: #ffffff;
    min-height: 235px;
    padding: 38px 24px 32px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.construction-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 4px;
    background: #c59a4b;
}

.construction-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #071b70;
    color: #ffffff;
    border: 4px solid #ead8b5;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    line-height: 1;
}

.construction-card h3 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.construction-card p {
    margin: 0;
    color: #666666;
    font-size: 14.5px;
    line-height: 1.65;
}

/* Tablet */
@media (max-width: 991px) {
    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .construction-head h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .construction-highlights {
        padding: 60px 0;
    }

    .construction-head {
        margin-bottom: 38px;
    }

    .construction-head h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .construction-head p {
        font-size: 15px;
    }

    .construction-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .construction-card {
        min-height: auto;
        padding: 32px 22px 28px;
    }

    .construction-icon {
        width: 68px;
        height: 68px;
        font-size: 29px;
    }

    .construction-card h3 {
        font-size: 18px;
    }
}

.nivasa-why-section {
    padding: 90px 0;
    background: #ffffff;
}

.nivasa-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.nivasa-section-heading {
    text-align: center;
    margin-bottom: 70px;
}



.nivasa-section-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 64px;
    height: 2px;
    background: #caa25c;
    transform: translateX(-50%);
}

.nivasa-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 40px;
}

.nivasa-hover-card {
    position: relative;
    min-height: 178px;
    padding: 38px 36px 38px 105px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.45s ease;
}

.nivasa-hover-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #071a68, #06124b);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

.nivasa-hover-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #caa25c;
    transition: width 0.45s ease;
    z-index: 2;
}

.nivasa-hover-card:hover {
    transform: translateY(-8px);
    border-color: #caa25c;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.nivasa-hover-card:hover::before {
    transform: translateY(0);
}

.nivasa-hover-card:hover::after {
    width: 100%;
}

.nivasa-card-icon {
    position: absolute;
    left: 32px;
    top: 40px;
    width: 52px;
    height: 52px;
    border: 1px solid #caa25c;
    background: #ffffff;
    color: #caa25c;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.nivasa-hover-card:hover .nivasa-card-icon {
    background: #caa25c;
    color: #ffffff;
    transform: rotate(45deg);
}

.nivasa-hover-card:hover .nivasa-card-icon {
    font-size: 0;
}

.nivasa-hover-card:hover .nivasa-card-icon::before {
    content: "◆";
    font-size: 15px;
    transform: rotate(-45deg);
}

.nivasa-card-content {
    position: relative;
    z-index: 2;
    height: 100px;
    overflow: hidden;
}

.nivasa-card-content h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000;
    transform: translateY(32px);
    transition: all 0.45s ease;
}

.nivasa-card-content p {
    margin: 16px 0 0;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.8;
    color: #f5f5f5;
    opacity: 0;
    transform: translateY(45px);
    transition: all 0.45s ease;
}

.nivasa-hover-card:hover .nivasa-card-content h3 {
    color: #ffffff;
    transform: translateY(0);
}

.nivasa-hover-card:hover .nivasa-card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 991px) {
    .nivasa-section-heading h2 {
        font-size: 31px;
        letter-spacing: 3px;
    }

    .nivasa-card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .nivasa-why-section {
        padding: 60px 0;
    }

    .nivasa-section-heading {
        margin-bottom: 55px;
    }

    .nivasa-section-heading h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .nivasa-hover-card {
        min-height: 175px;
        padding: 32px 22px 32px 82px;
    }

    .nivasa-card-icon {
        left: 22px;
        top: 34px;
        width: 44px;
        height: 44px;
    }

    .nivasa-card-content h3 {
        font-size: 19px;
    }

    .nivasa-card-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

.project-highlights {
    padding: 80px 0 70px;
    background: #ffffff;
    position: relative;
}

.project-highlights .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;

    margin-bottom: 70px;
}

.highlight-cards {
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 19px;
    align-items: stretch;
}

.highlight-card {
    position: relative;
    background: #ffffff;
    min-height: 210px;
    padding: 78px 22px 35px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: #d6a957;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.35s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #170443;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6a957;
    font-size: 38px;
    z-index: 2;
}

.highlight-icon.active {

    color: #d6a957;
}

.highlight-card h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #d6a957;
    margin: 0 0 20px;
}

.highlight-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #777777;
    margin: 0;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 991px) {
    .highlight-cards {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 80px;
    }

    .section-title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .project-highlights {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 60px;
    }

    .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 18px;
    }

    .highlight-card {
        min-height: 185px;
        padding: 68px 15px 28px;
    }

    .highlight-icon {
        width: 92px;
        height: 92px;
        font-size: 32px;
        top: -46px;
    }

    .highlight-card h3 {
        font-size: 17px;
    }

    .highlight-card p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}

.sticky-side-buttons {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-btn {
    background: #14243f;
    color: #ffffff;
    padding: 14px 12px;
    min-height: 135px;
    width: 44px;
    border: 1px solid #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    transition: all 0.3s ease;
}

.side-btn:hover {
    background: #b88746;
    color: #ffffff;
}

@media (max-width: 768px) {
    .sticky-side-buttons {
        top: auto;
        bottom: 20px;
        right: 10px;
        transform: none;
        gap: 8px;
    }

    .side-btn {
        width: 40px;
        min-height: 120px;
        font-size: 12px;
        padding: 12px 8px;
    }
}




.about-hero {
 position: relative;
    width: 100%;
    height: auto;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: relative;
    z-index: 1;
}




@media (max-width: 768px) {
    .home-banner {
        height: 70vh;
        background-size: contain;
        background-position: center center;
    }
}


.floorplans-gallery {
    padding: 80px 20px;
    background: #22242a;
    font-family: 'Poppins', Arial, sans-serif;
}

.floorplans-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.floorplans-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;
}

.floorplans-head span {
    display: inline-block;
    color: #c7a456;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.floorplans-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
}

.floorplans-head p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 12px 0 0;
}

.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.floorplan-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}

.floorplan-card:hover {
    transform: translateY(-8px);
    border-color: #c7a456;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.floorplan-img {
    background: #f7f7f7;
    padding: 12px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floorplan-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floorplan-info {
    padding: 18px 20px;
    background: linear-gradient(135deg, #ffffff, #f8f4eb);
    border-top: 1px solid rgba(199, 164, 86, 0.25);
    position: relative;
}

.floorplan-info h3 {
    margin: 0 0 5px;
    color: #1b0f44;
    font-size: 20px;
    font-weight: 700;
}

.floorplan-info p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.floorplan-info strong {
    display: inline-block;
    margin-top: 10px;
    background: #1b0f44;
    color: #c7a456;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

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

    .floorplans-head h2 {
        font-size: 30px;
    }

    .floorplan-img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .floorplans-gallery {
        padding: 55px 14px;
    }

    .floorplans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .floorplans-head h2 {
        font-size: 25px;
    }

    .floorplan-img {
        height: auto;
        min-height: 280px;
    }
}


.amenities-modern {
    padding: 70px 20px;
    background: #f8f4eb;

}

.amenities-modern .container {
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.amenities-title span {
    color: #c7a456;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.amenities-title h2 {
    margin: 8px 0;
    font-size: 38px;
    color: #1b0f44;
    text-transform: uppercase;
}

.amenities-title p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.amenities-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    align-items: center;
}

/* Left Menu */
.amenities-menu {
    position: sticky;
    top: 90px;
    background: #1b0f44;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(27, 15, 68, 0.18);
}

.amenity-tab {
    width: 100%;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.amenity-tab:hover,
.amenity-tab.active {
    background: #c7a456;
    color: #1b0f44;
}

/* Right Content */
.amenities-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    min-height: 420px;
}

.amenity-panel {
    display: none;
    animation: fadeUp 0.35s ease;
}

.amenity-panel.active {
    display: block;
}

.panel-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(199, 164, 86, 0.35);
}

.panel-head h3 {
    margin: 0 0 6px;
    color: #1b0f44;
    font-size: 26px;
    font-weight: 700;
}

.panel-head p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Compact Amenity Rows */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.amenity-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #faf7f0;
    border: 1px solid rgba(199, 164, 86, 0.28);
    border-radius: 16px;
    padding: 13px 14px;
    min-height: 72px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amenity-row::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    right: -26px;
    bottom: -26px;
    background: rgba(199, 164, 86, 0.18);
    border-radius: 50%;
}

.amenity-panel {
    display: none;
}

.amenity-panel.active {
    display: block;
}

.amenity-row:hover {
    background: #1b0f44;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(27, 15, 68, 0.18);
}

.amenity-row img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Make icons bigger and boxes fully occupied */
.amenity-row {
    min-height: 140px;
    /* increase box height */
    padding: 20px 16px;
    /* more padding for full coverage */
}

.amenity-row img {
    width: 60px;
    /* larger icon */
    height: 60px;
    margin-bottom: 16px;
}

.amenity-row span {
    font-size: 16px;
    /* larger text */
    font-weight: 600;
}

.amenity-row span {
    color: #222;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.35;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.amenity-row::before {
    width: 90px;
    height: 90px;
    right: -30px;
    bottom: -30px;
}

.amenity-row:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.08);
}

.amenity-row:hover span {
    color: #ffffff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

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

    .amenities-menu {
        position: relative;
        top: 0;
        display: flex;
        overflow-x: auto;
        gap: 8px;
        border-radius: 18px;
    }

    .amenity-tab {
        white-space: nowrap;
        min-width: max-content;
        margin-bottom: 0;
    }

    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .amenities-modern {
        padding: 50px 14px;
    }

    .amenities-title h2 {
        font-size: 30px;
    }

    .amenities-content {
        padding: 18px;
        border-radius: 18px;
    }

    .panel-head h3 {
        font-size: 21px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .amenity-row {
        min-height: 64px;
        padding: 11px 12px;
    }

    .amenity-row img {
        width: 36px;
        height: 36px;
    }
}



.project-highlights {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7f4ec 0%, #ffffff 55%, #f3ead9 100%);

}

.project-highlights .container {
    max-width: 1180px;
    margin: 0 auto;
}

.highlights-head {
    text-align: center;
    margin-bottom: 35px;
}

.highlights-head span {
    display: inline-block;
    color: #c7a456;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.highlights-head h2 {
    margin: 0;
    color: #1b0f44;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.highlight-item {
    position: relative;
    min-height: 105px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(199, 164, 86, 0.35);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 15, 68, 0.08);
    transition: all 0.35s ease;
}

.highlight-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1b0f44, #34206f);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 0;
}

.highlight-item::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: -28px;
    top: -28px;
    background: rgba(199, 164, 86, 0.18);
    border-radius: 50%;
    z-index: 1;
}

.highlight-item .icon,
.highlight-item p {
    position: relative;
    z-index: 2;
}

.highlight-item .icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #1b0f44;
    color: #c7a456;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.highlight-item p {
    margin: 0;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    transition: all 0.35s ease;
}

.highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(27, 15, 68, 0.22);
    border-color: transparent;
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item:hover .icon {
    background: #c7a456;
    color: #1b0f44;
    transform: scale(1.08);
}

.highlight-item:hover p {
    color: #ffffff;
}

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

    .highlights-head h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .project-highlights {
        padding: 45px 14px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .highlight-item {
        min-height: 95px;
        padding: 15px 10px;
        border-radius: 12px;
    }

    .highlight-item .icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .highlight-item p {
        font-size: 12.5px;
    }
}


/* about us new section css */
/* Elegant Nivasa About Section - New Design */
.nivasa-about-v2 {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(135deg, #fbf8f1 0%, #ffffff 45%, #f4efe3 100%);
    position: relative;
    overflow: hidden;
}

.nivasa-about-v2::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(212, 171, 82, 0.16);
    top: -160px;
    left: -120px;
}

.nivasa-about-v2::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(20, 52, 75, 0.08);
    right: -120px;
    bottom: -140px;
}

.nivasa-about-v2-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 65px;
    position: relative;
    z-index: 2;
}

.nivasa-about-v2-content {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(212, 171, 82, 0.22);
    border-radius: 28px;
    padding: 46px 42px;
    box-shadow: 0 25px 70px rgba(32, 32, 32, 0.08);
    backdrop-filter: blur(10px);
}

.nivasa-about-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #f4e5bf;
    color: #6f5116;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.nivasa-about-v2-title {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f2b35;
}

.nivasa-about-v2-title span {
    color: #c2922e;
}

.nivasa-about-v2-text {
    margin: 0;
    color: #3d4650;
    font-size: 17px;
    line-height: 1.9;
    max-width: 620px;
}

.nivasa-about-v2-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0 34px;
}

.nivasa-about-v2-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #26313a;
    font-size: 15px;
    font-weight: 600;
}

.nivasa-about-v2-point span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #d4ab52;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nivasa-about-v2-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nivasa-about-v2-btn {
    border: none;
    outline: none;
    cursor: pointer;
    background: #d4ab52;
    color: #111111;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 14px 30px rgba(212, 171, 82, 0.35);
    transition: all 0.3s ease;
}

.nivasa-about-v2-btn:hover {
    background: #bd9037;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(212, 171, 82, 0.48);
}

.nivasa-about-v2-link {
    color: #1f2b35;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #d4ab52;
    padding-bottom: 4px;
}

.nivasa-about-v2-visual {
    position: relative;
}

.nivasa-about-v2-img-card {
    position: relative;
    padding: 18px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.13);
}

.nivasa-about-v2-img-card::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(212, 171, 82, 0.45);
    border-radius: 38px;
    z-index: -1;
}

.nivasa-about-v2-img-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.nivasa-about-v2-floating {
    position: absolute;
    left: -28px;
    bottom: 34px;
    background: #1f2b35;
    color: #ffffff;
    padding: 20px 22px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    max-width: 240px;
}

.nivasa-about-v2-floating strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #d4ab52;
    margin-bottom: 7px;
}

.nivasa-about-v2-floating p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #f2f2f2;
}

.nivasa-about-v2-mini {
    position: absolute;
    right: -18px;
    top: 34px;
    background: #ffffff;
    color: #1f2b35;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
    border-left: 5px solid #d4ab52;
}

/* Responsive */
@media (max-width: 991px) {
    .nivasa-about-v2 {
        padding: 65px 18px;
    }

    .nivasa-about-v2-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .nivasa-about-v2-content {
        padding: 36px 28px;
    }

    .nivasa-about-v2-title {
        font-size: 38px;
    }

    .nivasa-about-v2-img-card img {
        height: 360px;
    }

    .nivasa-about-v2-floating {
        left: 18px;
        bottom: 22px;
    }

    .nivasa-about-v2-mini {
        right: 18px;
        top: 26px;
    }
}

@media (max-width: 575px) {
    .nivasa-about-v2 {
        padding: 50px 15px;
    }

    .nivasa-about-v2-content {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .nivasa-about-v2-title {
        font-size: 32px;
    }

    .nivasa-about-v2-text {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .nivasa-about-v2-points {
        grid-template-columns: 1fr;
    }

    .nivasa-about-v2-btn {
        width: 100%;
    }

    .nivasa-about-v2-link {
        width: 100%;
        text-align: center;
    }

    .nivasa-about-v2-img-card {
        padding: 12px;
        border-radius: 24px;
    }

    .nivasa-about-v2-img-card img {
        height: 285px;
        border-radius: 17px;
    }

    .nivasa-about-v2-floating,
    .nivasa-about-v2-mini {
        position: static;
        margin-top: 14px;
        max-width: 100%;
    }
}



  .maestros-section {
    --maestros-bg: #15120f;
    --maestros-accent: #bca38c;
    --maestros-text: #ffffff;
    --maestros-muted: rgba(255, 255, 255, 0.76);
    background:
      radial-gradient(circle at 15% 20%, rgba(188, 163, 140, 0.16), transparent 32%),
      var(--maestros-bg);
    padding: 40px 0px;
    overflow: hidden;
  }

  .maestros-container {
    width: min(1380px, calc(100% - 40px));
    margin-inline: auto;
  }

  .maestros-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(32px, 5vw, 60px);
  }

  .maestros-eyebrow {
    margin: 0 0 12px;
    color: var(--maestros-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .maestros-heading h2 {
    margin: 0;
    color: var(--maestros-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 400;
    line-height: 1.02;
  }

  .maestros-heading h2 span {
    color: var(--maestros-accent);
    font-style: italic;
  }

  .maestros-slider-viewport {
    width: 100%;
    overflow: hidden;
  }

  .maestros-slider {
    display: flex;
    margin-inline: -12px;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
  }

  .maestros-slide {
    flex: 0 0 33.333333%;
    min-width: 0;
    padding-inline: 12px;
    box-sizing: border-box;
  }

  .maestros-card {
    position: relative;
    /* height: clamp(480px, 55vw, 720px); */
    overflow: hidden;
    background: #211d19;
    cursor: pointer;
    isolation: isolate;
    outline: none;
  }

  .maestros-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
    transition: border-color 0.4s ease, inset 0.4s ease;
  }

  .maestros-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.82) contrast(1.02);
    transform: scale(1.001);
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
  }

  .maestros-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: clamp(24px, 3vw, 42px);
    background:
      linear-gradient(180deg,
        rgba(10, 8, 7, 0.02) 10%,
        rgba(10, 8, 7, 0.28) 48%,
        rgba(10, 8, 7, 0.96) 100%);
  }

  .maestros-content {
    color: var(--maestros-text);
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .maestros-number {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--maestros-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .maestros-content h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 2.3vw, 42px);
    font-weight: 400;
    line-height: 1.08;
  }

  .maestros-content p {
    max-width: 520px;
    margin: 0;
    color: var(--maestros-muted);
    font-size: 15px;
    line-height: 1.75;
  }

  .maestros-card:hover img,
  .maestros-card:focus-visible img,
  .maestros-card.is-active img {
    filter: saturate(1) contrast(1.05);
    transform: scale(1.075);
  }

  .maestros-card:hover .maestros-content,
  .maestros-card:focus-visible .maestros-content,
  .maestros-card.is-active .maestros-content {
    opacity: 1;
    transform: translateY(0);
  }

  .maestros-card:hover::after,
  .maestros-card:focus-visible::after {
    inset: 10px;
    border-color: rgba(188, 163, 140, 0.8);
  }

  .maestros-card:focus-visible {
    box-shadow: 0 0 0 3px var(--maestros-accent);
  }

  .maestros-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 34px;
  }

  /* Keep both slider arrows on the left, away from floating WhatsApp buttons. */
  .maestros-prev {
    order: 1;
  }

  .maestros-next {
    order: 2;
  }

  .maestros-progress {
    order: 3;
    width: min(320px, calc(100% - 132px));
    margin-left: 4px;
  }

  .maestros-arrow {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 21px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }

  .maestros-arrow:hover,
  .maestros-arrow:focus-visible {
    border-color: var(--maestros-accent);
    background: var(--maestros-accent);
    color: #15120f;
    outline: none;
  }

  .maestros-progress {
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
  }

  .maestros-progress-bar {
    width: 25%;
    height: 100%;
    display: block;
    background: var(--maestros-accent);
    transition: width 0.45s ease;
  }

  /* Native slider layout */
  .maestros-slider.is-dragging {
    transition: none;
  }

  @media (max-width: 1199px) {
    .maestros-slide {
      flex-basis: 50%;
    }
  }

  @media (max-width: 991px) {
    .maestros-card {
      height: 590px;
    }

    .maestros-slider-controls {
      justify-content: flex-start;
    }
  }

  @media (max-width: 767px) {
    .maestros-section {
      padding: 64px 0;
    }

    .maestros-container {
      width: min(100% - 24px, 1380px);
    }

    .maestros-heading {
      display: block;
    }

    .maestros-slider {
      margin-inline: -6px;
    }

    .maestros-slide {
      flex-basis: 100%;
      padding-inline: 6px;
    }

    .maestros-card {
      height: min(650px, 135vw);
    }

    /* Mobile has no hover, so text remains visible */
    .maestros-content {
      opacity: 1;
      transform: none;
    }

    .maestros-overlay {
      padding: 24px;
    }

    .maestros-slider-controls {
      justify-content: flex-start;
      gap: 10px;
      margin-top: 24px;
    }

    .maestros-progress {
      width: auto;
      flex: 1;
      margin-left: 2px;
    }

    .maestros-arrow {
      width: 46px;
      height: 46px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    .maestros-card img,
    .maestros-content,
    .maestros-card::after,
    .maestros-progress-bar,
    .maestros-arrow {
      transition: none;
    }
  }

    .floorplans-gallery .container {
        max-width: 1468px;
        margin: 0 auto;
    }

    .floorplans-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .skyven-gallery-section {
        padding: 70px 20px;
        background: #f8f5ef;
    }

    .skyven-gallery-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .gallery-header h2 {
        font-size: 36px;
        font-weight: 600;
        color: #1d1d1d;
        margin-bottom: 10px;
    }

    .gallery-header p {
        font-size: 16px;
        color: #666;
    }

    .gallery-carousel {
        position: relative;
        display: flex;
        align-items: center;
    }

    .gallery-track-wrapper {
        overflow: hidden;
        width: 100%;
        border-radius: 24px;
    }

    .gallery-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .gallery-slide {
        min-width: 33.333%;
        padding: 10px;
        box-sizing: border-box;
    }

    .gallery-slide img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .gallery-btn {
        position: absolute;
        z-index: 2;
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: #1d1d1d;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .gallery-btn:hover {
        background: #b58b45;
    }

    .gallery-btn.prev {
        left: -18px;
    }

    .gallery-btn.next {
        right: -18px;
    }

    .gallery-dots {
        text-align: center;
        margin-top: 25px;
    }

    .gallery-dots button {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        border: none;
        border-radius: 50%;
        background: #c9c9c9;
        cursor: pointer;
    }

    .gallery-dots button.active {
        background: #b58b45;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .gallery-slide {
            min-width: 50%;
        }

        .gallery-slide img {
            height: 300px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .skyven-gallery-section {
            padding: 50px 15px;
        }

        .gallery-header h2 {
            font-size: 28px;
        }

        .gallery-slide {
            min-width: 100%;
        }

        .gallery-slide img {
            height: 260px;
        }

        .gallery-btn {
            width: 38px;
            height: 38px;
            font-size: 18px;
        }

        .gallery-btn.prev {
            left: 5px;
        }

        .gallery-btn.next {
            right: 5px;
        }
    }

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

    .construction-grid {
        display: grid;
        gap: 26px;
    }

    .skyven-amenities {
        padding: 90px 0;
        background: linear-gradient(180deg, #fffaf3 0%, #f5eee4 100%);
        position: relative;
    }

    .skyven-amenities-wrap {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .skyven-section-title {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 45px;
    }

    .skyven-section-title span {
        display: inline-block;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #9a7440;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .skyven-section-title h2 {
        font-size: 42px;
        line-height: 1.2;
        color: #2b2118;
        margin: 0 0 14px;
        font-family: Georgia, serif;
        font-weight: 500;
    }

    .skyven-section-title p {
        font-size: 16px;
        line-height: 1.7;
        color: #6b5a48;
        margin: 0;
    }

    .skyven-amenities-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }

    .skyven-amenity-box {
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(154, 116, 64, 0.18);
        border-radius: 16px;
        padding: 24px 14px 20px;
        min-height: 132px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 12px 30px rgba(43, 33, 24, 0.08);
        transition: all 0.3s ease;
    }

    .skyven-amenity-box:hover {
        transform: translateY(-6px);
        border-color: rgba(154, 116, 64, 0.55);
        box-shadow: 0 18px 40px rgba(43, 33, 24, 0.15);
        background: #ffffff;
    }

    .skyven-amenity-box img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        margin-bottom: 14px;
        filter: brightness(0) saturate(100%) opacity(0.85);
    }

    .skyven-amenity-box h4 {
        margin: 0;
        font-size: 14px;
        line-height: 1.35;
        color: #4b3826;
        font-weight: 600;
    }

    /* Laptop */
    @media (max-width: 1200px) {
        .skyven-amenities-grid {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    /* Tablet */
    @media (max-width: 991px) {
        .skyven-amenities {
            padding: 70px 0;
        }

        .skyven-amenities-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .skyven-section-title h2 {
            font-size: 34px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {
        .skyven-amenities {
            padding: 55px 0;
        }

        .skyven-section-title {
            margin-bottom: 30px;
        }

        .skyven-section-title h2 {
            font-size: 28px;
        }

        .skyven-section-title p {
            font-size: 14px;
        }

        .skyven-amenities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .skyven-amenity-box {
            min-height: 118px;
            padding: 18px 10px;
            border-radius: 14px;
        }

        .skyven-amenity-box img {
            width: 34px;
            height: 34px;
            margin-bottom: 10px;
        }

        .skyven-amenity-box h4 {
            font-size: 12.5px;
        }
    }
.bank-partners-section {
    position: relative;
    padding: 48px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.bank-partners-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(20, 73, 126, 0.06);
}

.bank-partners-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bank-partners-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.bank-partners-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #b78b3e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bank-partners-heading h2 {
    margin: 0 0 12px;
    color: #172b4d;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.bank-partners-heading p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}

.bank-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.bank-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 125px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.bank-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(183, 139, 62, 0.45);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}

.bank-logo-card img {
    display: block;
    width: 100%;
    max-width: 135px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bank-logo-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 1100px) {
    .bank-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bank-partners-section {
        padding: 60px 16px;
    }

    .bank-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .bank-logo-card {
        min-height: 110px;
        padding: 18px;
    }

    .bank-logo-card img {
        max-width: 120px;
        height: 55px;
    }
}

@media (max-width: 420px) {
    .bank-logo-grid {
        grid-template-columns: 1fr;
    }
}


/* index -page css  */

    .gkhLegacy2026 {
        width: 100%;
        padding: 90px 20px;
        background: linear-gradient(135deg, #f7f4ee 0%, #ffffff 48%, #eef3f7 100%);
        position: relative;
        overflow: hidden;
    }

    .gkhLegacy2026::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 360px;
        height: 360px;
        background: rgba(0, 38, 84, 0.08);
        border-radius: 50%;
    }

    .gkhLegacyWrap2026 {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 70px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .gkhLegacyLeft2026 {
        padding: 45px 40px;
        background: #ffffff;
        border-left: 6px solid #082b55;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    }

    .gkhMiniLabel2026 {
        display: inline-block;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #8b1a1a;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .gkhLegacyLeft2026 h2 {
        font-family: math;
        font-size: 33px;
        line-height: 1.25;
        color: #06264d;
        font-weight: 800;
        margin: 0;
        font-style: normal;
    }

    .gkhAccentLine2026 {
        width: 90px;
        height: 4px;
        background: #8b1a1a;
        margin: 28px 0;
    }

    .gkhLegacyLeft2026 p {
        font-size: 18px;
        line-height: 1.7;
        color: #333;
        margin: 0;
        max-width: 520px;
    }

    .gkhLegacyRight2026 {
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(8px);
        padding: 45px;
        border-radius: 22px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    }

    .gkhLegacyRight2026 h3 {
        font-size: 30px;
        color: #06264d;
        margin: 0 0 22px;
        font-weight: 750;
    }

    .gkhLegacyRight2026 p {
        font-size: 17px;
        line-height: 1.9;
        color: #222;
        margin: 0 0 18px;
        text-align: justify;
    }

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

    .gkhStatsBox2026 {
        max-width: 1180px;
        margin: 60px auto 0;
        background: #06264d;
        border-radius: 26px;
        padding: 45px;
        position: relative;
        z-index: 2;
        box-shadow: 0 25px 70px rgba(6, 38, 77, 0.22);
    }

    .gkhStatsHead2026 {
        text-align: center;
        margin-bottom: 35px;
    }

    .gkhStatsHead2026 span {
        display: inline-block;
        color: #d9b36c;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .gkhStatsHead2026 h3 {
        color: #ffffff;
        font-size: 34px;
        margin: 0;
        font-weight: 800;
    }

    .gkhStatsGrid2026 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .gkhStatCard2026 {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 18px;
        padding: 30px 22px;
        text-align: center;
        transition: 0.3s ease;
    }

    .gkhStatCard2026:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.13);
    }

    .gkhStatCard2026 h4 {
        font-size: 34px;
        color: #ffffff;
        margin: 0 0 12px;
        font-weight: 850;
    }

    .gkhStatCard2026 h4 span {
        font-size: 22px;
        font-weight: 700;
    }

    .gkhStatCard2026 p {
        color: #e8edf4;
        font-size: 15px;
        line-height: 1.5;
        margin: 0;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .gkhLegacy2026 {
            padding: 70px 18px;
        }

        .gkhLegacyWrap2026 {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .gkhLegacyLeft2026 h2 {
            font-size: 34px;
        }

        .gkhLegacyRight2026 {
            padding: 35px;
        }

        .gkhStatsGrid2026 {
            gap: 18px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {
        .gkhLegacy2026 {
            padding: 55px 15px;
        }

        .gkhLegacyLeft2026 {
            padding: 32px 24px;
            border-left: 4px solid #082b55;
        }

        .gkhLegacyLeft2026 h2 {
            font-size: 28px;
            line-height: 1.35;
        }

        .gkhLegacyLeft2026 p {
            font-size: 15px;
        }

        .gkhLegacyRight2026 {
            padding: 28px 22px;
            border-radius: 18px;
        }

        .gkhLegacyRight2026 h3 {
            font-size: 24px;
        }

        .gkhLegacyRight2026 p {
            font-size: 15px;
            line-height: 1.8;
            text-align: left;
        }

        .gkhStatsBox2026 {
            margin-top: 35px;
            padding: 32px 20px;
            border-radius: 20px;
        }

        .gkhStatsHead2026 h3 {
            font-size: 26px;
        }

        .gkhStatsGrid2026 {
            grid-template-columns: 1fr;
        }

        .gkhStatCard2026 {
            padding: 26px 18px;
        }
    }

    .gjk-left-stats-box {
        width: 100%;
        margin-top: 45px;
    }

    .gjk-left-stats-inner {
        width: 100%;
        background: #ffffff;
        padding: 22px 6px 39px;
        box-sizing: border-box;
    }

    .gjk-left-stats-title {
        font-size: 31px;
        line-height: 1.25;
        font-weight: 700;

        color: #082550;
        text-align: center;
        margin: 0 0 55px;
    }

    .gjk-left-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        align-items: start;
    }

    .gjk-left-stat-item {
        text-align: center;
    }

    .gjk-left-stat-item h3 {
        margin: 0 0 10px;

        line-height: 1.15;
        font-weight: 700;
        color: #8b1616;
    }

    .gjk-left-stat-number,
    .gjk-left-stat-suffix {
        font-size: 26px;
        line-height: 1.15;
        color: #8b1616;
    }

    .gjk-left-stat-item p {
        margin: 0;
        font-size: 13px;
        line-height: 1.4;
        color: #333333;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .gjk-left-stats-inner {
            padding: 45px 25px;
        }

        .gjk-left-stats-title {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .gjk-left-stats-grid {
            gap: 18px;
        }

        .gjk-left-stat-item h3,
        .gjk-left-stat-number,
        .gjk-left-stat-suffix {
            font-size: 23px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {
        .gjk-left-stats-box {
            margin-top: 30px;
        }

        .gjk-left-stats-inner {
            padding: 40px 20px;
        }

        .gjk-left-stats-title {
            font-size: 25px;
            margin-bottom: 35px;
        }

        .gjk-left-stats-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .gjk-left-stat-item h3,
        .gjk-left-stat-number,
        .gjk-left-stat-suffix {
            font-size: 26px;
        }
    }

    /* ===============================
   HOME BANNER SLIDER FINAL FIX
   =============================== */

    /* Home Banner Slider */
    /* Home Banner Slider */
    .home-banner-slider {
        position: relative;
        width: 100%;
        aspect-ratio: 2048 / 858;
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .home-slide {
        margin-top: 75px;
        position: absolute;
        inset: 0;
        background-image: var(--desktop-img);
        background-size: 100% 100%;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease-in-out;
    }

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

    /* Slider Buttons */
    .home-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .home-slider-btn.prev {
        left: 25px;
    }

    .home-slider-btn.next {
        right: 25px;
    }

    /* Mobile View */
    @media (max-width: 767px) {
        .home-banner-slider {
            width: 100%;
            aspect-ratio: 9 / 16;
            height: auto;
            min-height: 0;
        }

        .home-slide {
            background-image: var(--mobile-img);
            background-size: 100% 100%;
            background-position: center center;
        }

        .home-slider-btn {
            width: 34px;
            height: 34px;
            font-size: 18px;
        }

        .home-slider-btn.prev {
            left: 10px;
        }

        .home-slider-btn.next {
            right: 10px;
        }
    }

    /* Homepage Video Box */
    .home-main-video-section {
        padding: 33px 20px;
        background: #f7f3ed;
    }

    .home-main-video-container {
        max-width: 1120px;
        margin: 0 auto;
    }

    .home-main-video-box {
        margin-left: 58px;
        width: 86%;
        aspect-ratio: 18 / 10;
        background: #fff;
        padding: 16px;
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
        overflow: hidden;
    }

    .home-main-video-box iframe {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 12px;
    }

    /* Mobile */
    @media (max-width: 767px) {
        .home-banner-slider {
            height: 520px;
            min-height: 520px;
        }

        .home-slider-btn {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }

        .home-slider-btn.prev {
            left: 12px;
        }

        .home-slider-btn.next {
            right: 12px;
        }

        .home-main-video-section {
            padding: 45px 14px;
        }

        .home-main-video-box {
            padding: 8px;
            border-radius: 12px;
        }

        .home-main-video-box iframe {
            border-radius: 8px;
        }
    }
