/* Font 1 */
@font-face {
    font-family: 'Migra';
    /* Name you will use in CSS */
    src: url('../fonts/migra/Migra-Extralight.woff2') format('woff2'),
        url('../fonts/migra/Migra-Extralight.woff') format('woff'),
        url('../fonts/migra/Migra-Extralight.ttf') format('truetype'),
        url('../fonts/migra/Migra-Extralight.otf') format('opentype'),
        /* Optional */
        url('../fonts/migra/Migra-Extralight.eot');
    font-weight: 100;
    font-style: normal;
}

/* Font 2 */
@font-face {
    font-family: 'Century-Gothic';
    src: url('../fonts/century-gothic/SansSerifFLF/SansSerifFLF.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

:root {
    /* --font-familys: "Aleo", sans-serif; */
    --font-family: "Migra", sans-serif;
    --font-family-century: "Century-Gothic", sans-serif;
    --primary-color: #78252F;
    --secondary-color: #45493C;
    --third-color: #CECEAC;
    --light-color: #fdf8f3;
    --pin-height: 230vh;
    --p: 0;
    --r1: 0;
    --r2: 0;
    --r3: 0;
    --pin-height: 320vh;
    /* how long the section scrolls */
    /* --bg: #f7f8fa; */
    --ink: #1f2d3a;

    --min-scale: 0.3;
    /* smallest image size (30%) */
    --max-scale: 1;
    /* original size (100%) */
    --shrink-distance: 600px;
    /* scroll distance over which shrink happens */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-image: url("../media/new-banner.png") !important;
    background-attachment: fixed;
    background-size: cover;
}

::-webkit-scrollbar {
    width: 2px;
    height: 12px;
    /* display: none; */
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::-webkit-scrollbar-track {
    background: rgb(240, 240, 240);
}

.mirai_home {

    height: 100vh;

    position: relative;
}

.Mirai_logo {
    position: relative;
    width: 100%;
    max-width: 50%;
    margin: 0px 0px 0px 0px;
}

.nav_items a {
    position: relative;
    color: var(--light-color);
    font-family: var(--font-family-century);
}

.nav_items a.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -8px;
    opacity: 1;
}

.nav_items a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -8px;
    opacity: 0;
}

.nav_items a:hover::before {
    opacity: 1;
}

.overlay {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    background: #ffffff;
    background: #00000075;
    height: 100vh;
}

.banner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    padding: 0px 0px 0px 0px;
}

.banner__title {
    font-size: 3rem;
    color: var(--light-color);
    -webkit-animation: slide-down 1s forwards;
    animation: slide-down 1s forwards;
}

.banner__description {
    font-size: 1.2rem;
    color: var(--light-color);
    -webkit-animation: slide-down 1.2s forwards;
    animation: slide-down 1.2s forwards;
    font-family: var(--font-family-century);
}

.home_cta span {
    position: relative;
    font-family: var(--font-family-century);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 30px;
    border-radius: 8px;
}

@-webkit-keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* About section */
.mirai_about {
    background-color: #ffffff;
}

.mirai_about h2 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.mirai_about p {
    font-family: var(--font-family-century);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.mirai_project {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 125px;
    grid-auto-flow: dense;
}

.mirai_project .project_list {
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    /* animation base */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

.mirai_project .project_list span {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.horizontal {
    grid-column: span 1;
}

.vertical {
    grid-row: span 2;
}

.big {
    grid-column: span 1;
    grid-row: span 3;
}

/* when visible */
.project_list.show {
    opacity: 1;
    transform: translateY(0);
}


.stats-grid-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;

}

.mirai_about p {
    font-family: var(--font-family-century);
    width: auto;
}

.stat-item-2 {
    position: relative;
    padding: 20px 0;
}

.stat-item-2:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

.stat-number-2 {
    font-size: 3.2rem;
    color: #8b4049;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1;

}

.stat-label-2 {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
    font-family: var(--font-family-century);
}



.divider {
    width: 80px;
    height: 3px;
    background: #8b4049;
    margin: 30px auto;
}

@media (max-width: 1024px) {
    .stats-grid-2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .mirai_about p {
        font-family: var(--font-family-century);
        width: auto;
    }

    .stat-item-2:nth-child(3)::after {
        display: none;
    }

    .banner__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .heading-2 {
        font-size: 3rem;
    }

    .stats-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }

    .stat-item-2:nth-child(even)::after {
        display: none;
    }

    .mirai_about p {
        font-family: var(--font-family-century);
        width: auto;
    }

    .stats-container {
        padding: 40px 25px;
    }

    .description-2 {
        font-size: 1.05rem;
    }

    .banner__title {
        font-size: 2rem;
    }

    /* .mb-lg-5.deepika {
        margin-bottom: 110px !important;
    } */
}

@media (max-width: 480px) {

    .stat-item-2::after {
        display: none !important;
    }

    .heading-2 {
        font-size: 2.2rem;
    }

    /* .mb-lg-5.deepika {
        margin-bottom: 110px !important;
        padding: 0px 0px 0px 15px;
    } */

    .mirai_about p {
        font-family: var(--font-family-century);
        width: auto;
    }

    .banner__title {
        font-size: 2rem;
    }
}

/* ===========================================================Location Section ================================================================= */

.interactive_map {
    background-color: #fffafb;
}

#map {
    height: 95vh;
}

.location_map {
    position: relative;
}

.selected_locations {
    position: absolute;
    right: 10%;
    top: 14%;
    padding: 0px 0px;
    z-index: 100;
    height: auto;
    width: 100%;
    max-width: 30%;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.selected_locations .accordion {
    min-height: 0px !important;
}

div#accordionExample {
    padding: 15px !important;
}

.loaction_head {
    background: var(--primary-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 10px;
}

.loaction_head span {
    background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--theme-secondary-font);
    font-weight: 600;
    text-align: center;
}

.location-list span.active {
    background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--theme-secondary-font);
}

.location-list span {
    font-size: 13px;
    background: #94949429;
    padding: 2px 9px 3px;
    border-radius: 10px;
    margin: 0px 4px 0px 0px;
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0px;
    row-gap: 3px;
}

#infoPanel {
    border-top: 1px solid #112b471f;
    font-size: 10px;
    margin-top: 8px;
}

/* .connectivity_head {
    padding: 10px 0px 0px 10px;
    width: 100%;
    max-width: 90%;
} */

.connectivity_head h5 {
    font-family: var(--font-family-century);
    color: #000;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.connectivity_head p {
    font-family: var(--font-family-century);
    color: #000;
    letter-spacing: 2px;
    margin: 0px 85px 0px 0px;
}

.connectivity_head h1 {
    color: var(--primary-color);
    letter-spacing: 5px;
    margin-bottom: 15px;
}

/* Initial hidden state */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

/* Flip-down effect */
.flip-down.show {
    opacity: 1;
    transform: rotateX(0) translateY(0);
    transform-origin: top;
}

.flip-down {
    transform: rotateX(-90deg);
}

/* Zoom-in effect */
.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

.zoom-in {
    transform: scale(0.5);
}

/* Small screens (phones) */
@media (max-width: 767px) {
    .selected_locations {
        position: relative !important;
        max-width: 100% !important;
        margin-bottom: 15px;
        margin-left: 30px;
    }

    #map {
        height: auto;
        /* smaller height for phones */
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .selected_locations {
        position: relative;
        max-width: 97%;
        margin-bottom: 15px;
        margin-left: 90px;
    }

    #map {
        height: 400px;
    }
}

/* mobile */
@media (max-width: 480px) {

    #map {
        height: 400px;
        margin-bottom: 30px;
    }

    .interactive_map {
        margin-top: 30px;
    }
}

/* ======================================================Footer Section========================================================================= */
#footer {
    height: 100vh;
    position: relative;
}

.footer-section {
    width: 100%;
    position: relative;
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    background: #ffffff;
    background: linear-gradient(282deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 1) 73%);
    height: 100%;
}

.footer-section .container-fluid {
    position: relative;
    z-index: 1;
}

.footer_items {
    padding: 0px 0px 0px 40px;
}

.footer_items img {
    width: 100%;
    max-width: 25%;
    margin: 0px 0px 25px 0px;
}

.footer_head span {
    color: #a8843c;
    border-bottom: 1px solid #a8843c;
    font-size: 1.4rem;
}

.footer_items p {
    color: var(--light-color);
    width: 100%;
    max-width: 75%;
    font-family: var(--font-family-century);
}

.footer_number {
    color: var(--light-color);
    /* font-size: 1.5rem; */
    font-family: var(--font-family-century);
}

.footer_mail {
    color: var(--light-color);
    /* font-size: 1.5rem; */
    font-family: var(--font-family-century);
}

.footer_address {
    color: var(--light-color);
    font-family: var(--font-family-century);
}

.footer_social_links a {
    color: var(--light-color);
}

.footer_social_links a i {
    font-size: 1.2rem;
}

.footer_bottom_links a {
    color: var(--light-color);
    font-family: var(--font-family-century);
    font-size: 0.8rem;
}

/* Initial hidden state */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

/* Flip-down effect */
.flip-down.show {
    opacity: 1;
    transform: rotateX(0) translateY(0);
    transform-origin: top;
}

.flip-down {
    transform: rotateX(-90deg);
}

/* Zoom-in effect */
.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

.zoom-in {
    transform: scale(0.5);
}

@media (max-width: 480px) {
    .footer_items {
        padding: 40px 0px 0px 20px;
    }

    .footer_social_links a i {
        font-size: 1.2rem;
        margin: 5px;
    }
}

/* =============================================================== About Bulider Section========================================================================= */

.quote-mark {
    display: block;
    font-size: 10rem;
    color: rgba(139, 64, 73, 0.2);
    line-height: 0;
    margin: 0 auto 20px auto;
    text-align: left;
}

.quote-mark::before {
    content: '“';
}

.quote-marks {
    display: block;
    font-size: 10rem;
    color: rgba(139, 64, 73, 0.2);
    line-height: 0;
    margin: 0 auto 20px auto;
    text-align: right;
}

.quote-marks::before {
    content: '”';
}

.mirai_about p {
    /* font-family: var(--font-family-century); */
    width: 100%;
    font-size: 20px;
    max-width: 75%;
}

/* ======================================================Project Highlights Section========================================================================= */
/* #project {
    background: #fffafb;
} */

.option-3 {
    text-align: center;
    /* background: white; */
}

.option-3 .header {
    margin-bottom: 70px;
}

.section-title {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}



.divider {
    width: 80px;
    height: 3px;
    background: #8b4049;
    margin: 25px auto;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 10px;
    font-family: var(--font-family-century);
}

.emphasis {
    font-weight: 600;
    color: #8b4049;
}

.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.category {
    text-align: left;
    font-family: var(--font-family-century);
}

.category-title {
    font-size: 1.4rem;
    color: #8b4049;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8b4049;
    font-weight: 500;
}

.category-list {
    list-style: none;
    font-family: var(--font-family-century);
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    font-family: var(--font-family-century);
}

.category-item::before {
    content: '✦';
    color: #8b4049;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .option-3 {
        padding: 50px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

.amenities-section {
    background-color: #fffafb;
    font-family: var(--font-family-century);
}

.section-header {
    text-align: center;

}


.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8b4049, #6d2f35);
    margin: 25px auto;
    border-radius: 2px;
}

.amenity-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--font-family-century) !important;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-header-custom {
    background: linear-gradient(135deg, #8b4049, #6d2f35);
    color: #fff;
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.card-header-custom:hover {
    background: linear-gradient(135deg, #6d2f35, #8b4049);
    padding-left: 34px;
}

.toggle-icon {
    font-size: 1.3rem;
    transition: transform 0.35s ease;
}

.rotate {
    transform: rotate(180deg);
}

.card-body-custom {
    background: #fafafa;
    padding: 30px 25px;
    border-top: 1px solid #eee;
}

/* Smooth collapse */
.collapse {
    transition: height 0.4s ease;
}

.sub-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.sub-card:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.sub-header {
    background: #f8f8f8;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    color: #333;
}

.sub-header:hover {
    background: #f1f1f1;
    color: #78252F;
}

.sub-body {
    padding: 16px 22px;
    background: #fff;
    border-top: 1px solid #eee;
}

.amenity-item {
    padding: 6px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-item span {
    font-size: 1.3rem;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, #8b4049 0%, #6d2f35 100%);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #6d2f35 0%, #8b4049 100%);
    box-shadow: 0 8px 22px rgba(139, 64, 73, 0.25);
    transform: translateY(-3px);
}

.amenity-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

/* .amenity-list li {
    position: relative;
    padding: 6px 0 6px 6px;
    font-size: 0.95rem;
    color: #444;
    transition: color 0.3s ease;
    list-style-type: none;
} */

/* .amenity-list li::before {

    color: #78252F;
    font-size: 1.1rem;
}

.amenity-list li:hover {
    color: #78252F;
} */

.miraii_bg {
    /*background: url('../media/Vector\ Smart\ Object.png') center center / cover no-repeat !important;*/
    /*background-color: #fffafb !important;*/
    /*background: url("https://pavanimirai.com/55storeys-luxury-apartments-in-financial-district/media/Vector Smart Object.png");*/
    /*background-color: #fffafb !important;*/
    /*background-repeat: no-repeat;*/
    /*background-size: contain;*/
    /*background-position: bottom;*/
    background: #fffafb url("https://pavanimirai.com/55storeys-luxury-apartments-in-financial-district/media/Vector Smart Object.png") no-repeat bottom / contain !important;

}


/*mobile nav*/
/* Mobile Nav Styling */
.mobile-menu {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    animation: fadeIn 0.4s ease-in-out;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #8b4049;
}

/* Bootstrap hamburger customization */
.navbar-toggler {
    background: none;
    color: #fff;
    font-size: 1.5rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*form*/
/* ================= Luxury Visit Form Modal ================= */
.modal-content {
    background: linear-gradient(145deg, #fffdf9, #f9f6f2);
    border-radius: 24px;
    border: none;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeInScale 0.45s ease-in-out;
}

.modal-header {
    background: linear-gradient(90deg, #8b4049, #6d2f35);
    color: #fff;
    border-bottom: none;
    padding: 1.5rem 1.8rem;
}

.modal-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    color: #fff;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Body Styling */
.modal-body {
    padding: 2rem;
    background: #fffdf9;
}

.modal-body label {
    font-family: var(--font-family-century);
    color: #3a3a3a;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: block;
}

.modal-body input,
.modal-body textarea {
    border: 1px solid #e1dfdb;
    border-radius: 14px;
    /* padding: 12px 16px; */
    /* width: 100%; */
    font-family: var(--font-family-century);
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.modal-body input:focus,
.modal-body textarea:focus {
    border-color: #8b4049;
    outline: none;
    box-shadow: 0 0 10px rgba(139, 64, 73, 0.2);
}

/* Validation feedback */
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid {
    border-color: #6d2f35;
}

/* Submit Button */
.schedule-btn {
    background: linear-gradient(135deg, #8b4049, #6d2f35);
    color: #fff !important;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-family: var(--font-family-century);
    font-weight: 600;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
    margin-top: 10px;
}

/* .schedule-btn:hover {
  background: linear-gradient(135deg, #6d2f35, #8b4049);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 64, 73, 0.25);
} */

/* Smooth modal animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Add luxury blur backdrop */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .modal-content {
        border-radius: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

.scroll-loop-gallery {
    background: #fff;
    overflow: auto;
    position: relative;
}

.scroll-loop-gallery h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #0e4b47;
    letter-spacing: 1px;
}

/* Wrapper */
.scroll-loop-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track */
.scroll-loop-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLoop 60s linear infinite;
}

/* Items */
.scroll-loop-item {
    flex-shrink: 0;
    width: 360px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.scroll-loop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scroll-loop-item:hover img {
    transform: scale(1.05);
}

/* Pause on Hover */
.scroll-loop-wrapper:hover .scroll-loop-track {
    animation-play-state: paused;
}

/* Infinite Scroll */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Lightbox */
.scroll-loop-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.scroll-loop-lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-loop-item {
        width: 240px;
        height: 160px;
    }

    .scroll-loop-gallery h2 {
        font-size: 1.5rem;
    }

    .scroll-loop-track {
        animation: scrollLoop 45s linear infinite;
    }
}


/* ===== ABOUT SECTION ===== */
/*.mirai_about {*/
/*    background: url("../media/58927.jpg") center/cover no-repeat;*/
/*    position: relative;*/
/*}*/

/*.mirai_about::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 0;*/
/*}*/

.mirai_about .container {
    position: relative;
    z-index: 2;
}

/* ===== PROJECT HIGHLIGHTS ===== */
/* #project {
  background: url("../media/58927.jpg") center/cover no-repeat;
  position: relative;

} */

/* #project::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

#project .container {
  position: relative;
  z-index: 2;
} */

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    background: url("../media/58927.jpg") center/cover no-repeat;
    position: relative;

}

.amenities-section::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 0;
}

.amenities-section .container {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {

    .mirai_about,
    /* #project, */
    .amenities-section {
        background-attachment: scroll;
        /* disable parallax on mobile */
        background-position: center top;
    }

    /*.mirai_about::before,*/
    /* #project::before, */
    .amenities-section::before {
        background: rgba(255, 255, 255, 0.614);
    }
}

/* #project::before, */
.amenities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    /* 0 = fully transparent, 1 = solid */
    z-index: 0;
    background-attachment: fixed;
}

/* 
.project-section {
  background: url("../media/58927.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 100px 0;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 0;
}

.project-section .container {
  position: relative;
  z-index: 2;
} */


.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    font-size: 1.1rem;
    padding: 8px 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .project-section {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .category-item {
        font-size: 1rem;
    }
}

@media (min-width: 2560px) {
    .stats-section {
        position: relative;
        width: 100%;
        padding: 600px 0 150px 0;
        background: url(./media/timeline.png) no-repeat center top;
        background-size: 100% auto;
        overflow: visible;
    }
}

/* Project Highlights */
.project-steps_one,
.project-steps_two,
.project-steps_three {
    border-bottom: 1px solid #a8843c;
    padding: 40px 0px;
    background-color: #fff;
}

.project_head {
    font-family: var(--font-family);
    color: #6d2f35;
    width: 75%;
}

.project_head h2 {
    font-size: 3rem;
}

.project_head p {
    color: #000;
    font-family: var(--font-family-century);
}

.project_header {
    position: sticky;
    top: 45px;
}

.project-steps_one {
    position: sticky;
    top: 150px;
    z-index: 1;
}

.project-steps_two {
    position: sticky;
    top: 190px;
    z-index: 2;
}

.project-steps_three {
    position: sticky;
    top: 210px;
    z-index: 3;
}

.project-steps_one img,
.project-steps_two img,
.project-steps_three img {
    max-width: 65%;
}

/* Amenities section */

:root {
    --bg-dark: #050608;
    --primary: #7b1220;
    --muted: #b3b3b3;
    --text-main: #ffffff;
    --text-secondary: #dcdcdc;
}

/* * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Playfair Display", Georgia, serif;
      background: #f5f3f0;
      color: #222;
    } */

.amenities-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.amenities-shell {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* LEFT – VERTICAL TABS */

.vertical-tabs {
    min-width: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.vertical-tabs-group {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 28px;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    color: #999;
    transition: color 0.25s ease;
}

.vertical-tabs-group::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    max-width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    transform-origin: left;
    transform: scaleX(0.6);
    transition: transform 0.25s ease, background 0.25s ease;
}

.vertical-tabs-group.is-active {
    color: var(--primary);
}

.vertical-tabs-group.is-active::after {
    background: var(--primary);
    transform: scaleX(1);
}

/* RIGHT – DISPLAY */

.amenities-display {
    flex: 1;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    border-radius: 8px;
    color: var(--text-main);
}

.amenities-visual {
    position: relative;
    min-height: 420px;
    padding: 40px 40px 90px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}

/* Actual photo layer – we will update this on hover */
.amenities-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    border-radius: 20px;
}


/* Gradient overlay on top of the image */
/* .amenities-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.15), transparent),
                  linear-gradient(to bottom, rgba(0, 0, 0, 0.4), #020203);
      z-index: -1;
    } */

/* Background change animation */
@keyframes bgFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.03);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.amenities-bg.animates {
    animation: bgFadeIn 0.45s ease-out;
}

.amenities-label {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.amenities-title {
    font-size: 26px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.amenity-list {
    list-style: none;
    max-width: 380px;
    font-size: 13px;
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    color: var(--text-secondary);
}

.amenity-list li {
    position: relative;
    padding: 6px 0;
    opacity: 0;
    color: #fff;
    transform: translateY(18px);
    cursor: pointer;
    font-family: var(--font-family-century);
}

/* .amenity-list li::before {
      content: "•";
      margin-right: 8px;
      font-size: 12px;
      vertical-align: middle;
    } */

.amenity-list li:hover {
    color: #ffffff;
}

/* LIST ITEM STAGGER ANIMATION */

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.amenity-list.animates li {
    animation: slideUpFade 0.45s forwards ease-out;
}

.amenity-list.animates li:nth-child(1) {
    animation-delay: 0.05s;
}

.amenity-list.animates li:nth-child(2) {
    animation-delay: 0.12s;
}

.amenity-list.animates li:nth-child(3) {
    animation-delay: 0.19s;
}

.amenity-list.animates li:nth-child(4) {
    animation-delay: 0.26s;
}

.amenity-list.animates li:nth-child(5) {
    animation-delay: 0.33s;
}

.amenity-list.animates li:nth-child(6) {
    animation-delay: 0.40s;
}

.amenity-list.animates li:nth-child(7) {
    animation-delay: 0.47s;
}

.amenity-list.animates li:nth-child(8) {
    animation-delay: 0.53s;
}

.amenity-list.animates li:nth-child(9) {
    animation-delay: 0.60s;
}

.amenity-list.animates li:nth-child(10) {
    animation-delay: 0.67s;
}

/* LEVEL TABS */

.level-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.94); */
    display: flex;
    justify-content: space-between;
    gap: 40px;
    /* padding: 18px 16px 20px; */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.level-tab {
    font-family: var(--font-family-century);
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    color: rgba(255, 255, 255, 0.65);
    padding-bottom: 6px;
    white-space: nowrap;
    transition: color 0.25s ease;
    padding: 10px;
    width: 25%;
    text-align: center;
}

/* .level-tab::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 0.5px;
    background: rgba(255, 255, 255, 0.22);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease, background 0.25s ease;
} */

.level-tab.is-active {
    color: #ffffff;
    /* background-color: #75757591; */
    background-color: #6d2f35;
}

/* .level-tab.is-active::after {
    background: #ffffff;
    transform: scaleX(1);
} */

/* hide level bar when not needed */
.level-bar.is-hidden {
    display: none;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .amenities-shell {
        flex-direction: column;
        gap: 36px;
    }

    .vertical-tabs {
        flex-direction: row;
        justify-content: flex-start;
        gap: 24px;
    }

    .vertical-tabs-group::after {
        width: 100%;
    }

    .amenities-visual {
        min-height: 360px;
        padding: 32px 24px 90px;
    }
}

@media (max-width: 768px) {
    .vertical-tabs {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .vertical-tabs-group {
        font-size: 14px;
        letter-spacing: 0.18em;
    }

    .amenities-title {
        font-size: 22px;
        letter-spacing: 0.16em;
    }

    .amenity-list {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .level-bar {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 24px;
        padding-inline: 20px;
    }

    .level-bar::-webkit-scrollbar {
        height: 4px;
    }

    .level-bar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .amenities-wrapper {
        margin-top: 24px;
    }

    .amenities-visual {
        min-height: 320px;
        padding-inline: 18px;
    }

    .amenities-title {
        font-size: 18px;
        letter-spacing: 0.14em;
    }

    .amenity-list {
        max-width: 100%;
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap {
    position: fixed;
    right: 90px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--primary-color);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: var(--primary-color);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--light-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.sticky_btn {
    position: fixed;
    z-index: 2;
    right: -74px;
    top: 50%;
    rotate: 270deg;
    cursor: pointer;
}
.rera_no span{
    letter-spacing: 2px;
    color: #a8843c;
}
.rera_no{
    font-size: 13px !important;
}
.mirai_plans{
    position: relative;
    border: 1px dashed var(--primary);
    border-radius: 14px;
}
.mirai_plans img{
    height: 420px;
    filter: blur(4px);
}
.mirai_plans .home_cta{
    position: absolute;
    top: 40%;
    left: 30%;
    bottom: auto;
    cursor: pointer;
}
.home_cta{
    cursor: pointer;
}