#bad8f7* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: var(--second-font);
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Lora";
    font-display: swap;
    src: url("../fonts/Lora/Lora-Regular.ttf");
}

@font-face {
    font-family: "Rubik";
    font-display: swap;
    src: url("../fonts/Rubik/Rubik-Regular.ttf");
}

:root {
    --primary-theme: #bad8f7;
    --secondary-theme: #2d6fb3;
    --text-white: #fff;
    --text-black: #000;
    --first-font: "Lora";
    --second-font: "Rubik";
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}

body {
    background-color: var(--text-white);
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

.button {
    background-color: var(--secondary-theme);
    color: var(--text-white);
    font-size: 20px;
    line-height: 24px;
    padding: 10px 25px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid var(--secondary-theme);
}

.button:hover {
    color: var(--secondary-theme);
    background: var(--text-white);
}

.header {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
    /* Smooth transition */
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    transition: color 0.3s ease;
    margin-left: auto;
}

.menu-btn.scrolled {
    color: #333;
}

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

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: background-color 0.3s ease;
}

.hamburger.scrolled div {
    background-color: #333;
}

.logo img {
    max-width: 200px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header.scrolled .logo img {
    filter: invert(1) brightness(100);
}

.phone-email {
    animation: 1.2s infinite mobile;
}

.phone-email .button {
    border-color: #2d6fb3;
    font-size: 14px;
    background: linear-gradient(#bbd4f4, #2d6fb3);
    padding: 10px;
    color: #fff;
}

.phone-email .button:hover {
    background: #fff;
    color: #174317;
}

.phone-email img {
    height: 34px;
}

.phone-email h4 a {
    color: rgb(251 234 9);
    margin-left: 5px;
    font-size: 16px;
    font-weight: 600;
}

.phone-email h4 a i {
    filter: invert(0);
}

.phone-email.scrolled h4 a {
    color: #333;
}

.phone-email.scrolled {
    background: transparent;
    border: none;
}

.phone-email.scrolled img {
    filter: brightness(0);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-theme);
    transition: left 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    right: 0;
}

.sidebar .sidebar_logo {
    max-width: 170px;
    position: relative;
    top: 17px;
}

.menu-items {
    list-style: none;
    padding-top: 80px;
}

.menu-items li {
    border-bottom: 1px solid var(--secondary-theme);
}

.menu-items a {
    display: block;
    color: #000;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 18px;
}

.menu-items a:hover {
    background-color: var(--secondary-theme);
    color: var(--primary-theme) !important;
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-btn.scrolled {
    color: #000;
}

.hamburger.scrolled div {
    background-color: #000;
}

.nav-link.scrolled {
    color: #000 !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 150;
}

.overlay.show {
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.main-content {
    margin-top: 80px;
    padding: 40px 20px;
    transition: margin-left 0.4s ease;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.section-title {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.section-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 42px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#carouselExampleIndicators .carousel-item img {
    height: 100vh;
    width: 100%;
}

.slider_section {
    position: relative;
    overflow: hidden;
}

.slider_section::after {
    content: "";
    position: absolute;
    width: 100%;
    z-index: 8;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    opacity: 1;
    width: 60%;
    background: linear-gradient(to right, rgb(0 0 0 / 95%), rgba(0, 0, 0, 0));
}

.project_box {
    position: absolute;
    bottom: 12%;
    left: 2%;
    z-index: 99;
}

.project_box .pro_logo {
    max-width: 300px;
    margin-bottom: 12px;
    filter: invert(1);
}

.invest_in {
    display: none;
}

.project_box h1 {
    font-family: var(--first-font);
    font-size: 58px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.project_box p {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.project_box p img {
    filter: invert(1);
    margin-right: 5px;
}

.project_box h3 {
    background: #b7b7b72e;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 10px;
    line-height: 35px;
    border-radius: 10px;
}

.project_box h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 14px;
}

.project_box h3 span {
    font-size: 28px;
    color: var(--text-white);
}

.project_box ul {
    padding: 0;
    margin: 0;
    align-items: center;
}

.project_box ul li {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-white);
}

.project_box ul li img {
    max-width: 24px;
    margin-right: 5px;
}

.project_box ul li span {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

.carousel-indicators [data-bs-target] {
    height: 5px;
}

.form_section h6 {
    font-size: 19px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.form_section input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 8px;
    border-bottom: 1px solid var(--text-white);
    background: transparent;
    border-radius: 0;
    color: var(--text-white);
}

.form_section input::placeholder {
    color: var(--text-white);
}

.form_section .lg_btn {
    background: rgb(255, 255, 255);
    color: var(--secondary-theme);
}

.form-toggle-btn {
    position: fixed;
    right: 0px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--secondary-theme);
    color: var(--text-white);
    padding: 12px 7px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    writing-mode: vertical-lr;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-theme);
}

.form-toggle-btn:hover {
    background: var(--text-white);
    color: var(--secondary-theme);
}

.slide-form {
    position: absolute;
    right: -400px;
    /* hidden by default */
    bottom: 0;
    z-index: 1000;
    background: var(--secondary-theme);
    padding: 24px;
    border-radius: 0;
    max-width: 350px;
    width: 100%;
    transition: right 0.4s ease;
}

.slide-form.active {
    right: 0;
}

.form-close-btn {
    position: absolute;
    top: -12px;
    right: -4px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 34px;
    cursor: pointer;
}

.carousel-indicators {
    z-index: 999;
}

.projects_section {
    padding: 80px 0 0;
    overflow: hidden;
    background-color: var(--primary-theme);
}

.projects_section .project_card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    max-width: 380px;
    margin: 25px auto;
    display: flex;
    flex-direction: column;
}

.project_image img {
    width: 100%;
    height: 213px;
    object-fit: cover;
    display: block;
}

.project_content {
    padding: 16px 16px;
    background-color: #fff;
}

.project_content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    background: #2d6fb3;
    text-align: center;
    padding: 10px;
}

.project_content h5 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    background: #145c8f08;
    padding: 8px 8px;
}

.project_content h5 img {
    max-width: 20px;
    margin-right: 5px;
}

.project_content p {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 10px 0 10px 0;
}

.project_content p span {
    font-size: 20px;
}

.project_content ul {
    padding: 0;
    margin: 0;
}

.project_content ul li {
    font-size: 13px;
    margin-bottom: 5px;
    color: #000;
}

.project_content ul li:last-child {
    margin-bottom: 0px;
}

.project_content ul li img {
    max-width: 18px;
    margin-right: 5px;
    filter: invert(1);
}

.project_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.overview_section {
    padding: 80px 0;
}

.section_title {
    font-family: var(--first-font);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(#70a7f0, #2d6fb3);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheading {
    font-family: var(--second-font);
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    color: var(--secondary-theme);
    letter-spacing: 1px;
}

.overview_section .para {
    font-size: 16px;
    margin-bottom: 0;
    text-align: justify;
    text-align-last: center;
}

.label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-block-end: 0.5rem;
}

.value {
    color: #333;
    font-weight: 500;
    font-size: 1.125rem;
}

.decision_corner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.decision_corner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/banner/banner-1.webp") center center / cover no-repeat;
    filter: blur(1px);
    z-index: 1;
}

.decision_corner>.container {
    position: relative;
    z-index: 2;
}

.decision_corner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.decision_corner .section_title {
    color: var(--text-white);
}

.decision_corner .subheading {
    color: var(--text-white);
}

.flex_div {
    display: flex;
    justify-content: center;
}

.boxes {
    padding: 15px;
    text-align: center;
}

.title {
    font-size: 17px;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
    color: var(--text-white);
}

.gallery_section {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.center-slider .gallery-card {
    background-color: var(--secondary-theme);
    border-radius: 10px;
    padding: 3px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.center-slider .gallery-card span {
    position: absolute;
    bottom: 10px;
    right: 2%;
    font-size: 10px;
    color: var(--text-white);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 5px;
    border-radius: 5px;
}

.center-slider .gallery-card img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.center-slider .slick-slide {
    margin: 0 10px;
}

.slide-arrow6.prev-arrow6,
.slide-arrow6.next-arrow6 {
    position: absolute;
    bottom: -50px;
    z-index: 10;
    background: var(--secondary-theme);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    height: 44px;
    width: 44px;
    text-align: center;
}

.slide-arrow6.prev-arrow6 {
    right: 70px;
}

.slide-arrow6.next-arrow6 {
    right: 10px;
}

.slide-arrow6:hover {
    background: #000a2b;
}

.slide-arrow6 img {
    filter: brightness(0) invert(1);
}

/* gallery section css ends here */

/* footer section css starts here */

footer {
    padding: 70px 0px;
    background-color: #333;
}

footer .disclaimer img {
    width: 150px;
}

footer .disclaimer h4,
footer .disclaimer h3 {
    color: var(--text-white);
    font-size: 23px;
    font-weight: 400;
}

footer .disclaimer h3 {
    margin-bottom: 40px;
}

footer .disclaimer p {
    color: var(--text-white);
    font-size: 13px;
    margin-bottom: 10px;
}

footer .disclaimer .moreless-button {
    color: var(--text-white);
    font-size: 13px;
}

footer .rera_details ul {
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

footer .rera_details ul li {
    list-style-type: none;
}

footer .rera_details ul li span {
    display: block;
    font-size: 14px;
    padding-top: 5px;
}

footer .rera_details p {
    color: var(--text-white);
    font-size: 13px;
    margin: 10px 0px;
}

footer .rera_details a {
    color: var(--text-white);
}

footer .rera_details a:hover {
    text-decoration: underline !important;
}

/* modal css starts here */

.modal .modal-header {
    border-bottom: 1px solid var(--secondary-theme);
}

.modal .btn-close {
    opacity: 1;
}

.modal .modal-header h6 {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.modal input {
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--secondary-theme);
    height: 40px;
}

.modal .form-control:focus {
    color: #212529;
    background-color: var(--text-white);
    border-color: var(--secondary-theme);
    outline: 0;
    box-shadow: none;
}

.modal input::placeholder {
    color: #000;
}

.modal .inp-box {
    margin-bottom: 12px;
}

/* footer section css ends here */

.fixedIcons {
    position: fixed;
    z-index: 99;
    bottom: 15px;
    width: fit-content;
    padding: 5px;
    background: #fffcf1;
    border-radius: 50%;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #29a71a;
}

.fixedIcons {
    &.whatsapp {
        left: 15px;
    }
}

.fixedIcons {
    &.phone {
        left: 15px;
        background: var(--text-white);
    }
}

.fixedIcons {
    img {
        width: 40px;
        padding: 5px;
    }
}

.mobile-section-footer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #2d6fb3;
    padding: 5px 0;
}

.typ-bg {
    display: none;
}

.d_view {
    display: block;
}

.m_view {
    display: none;
}

.modal {
    z-index: 9999;
}

section.Connectivity {
    background-color: #f5f0ea;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.listBX {
    padding: 40px 60px;
}

.listBX h3 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.listBX hr {
    width: 120px;
    margin: 0 0 30px 0;
    border-top: 2px solid #fac90a;
}

.listBX ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.listBX ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    margin-left: 0;
}

.imgBGBX iframe {
    width: 100%;
    height: 600px;
    border: 0;
}

.listBX ul li p {
    flex: 1;
    color: #000;
    letter-spacing: 0.5px;
    line-height: 24px;
    font-size: 17px;
}

.listBX ul li .imgMain {
    padding: 13px;
    background-color: #2d6fb3;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.listBX ul li .imgMain img {
    width: 24px;
    height: 24px;
    filter: invert();
}

.overview {
    width: 100%;
    padding: 80px 0 80px;
    background-color: #fff7ef;
}

.overview h1 {
    font-size: 48px;
    font-weight: 600;
    text-shadow: 3px 3px #dbe7fe;
    display: block;
    margin: 0 0 15px 0;
    color: #000;
}

.overview hr {
    width: 120px;
    float: left;
    margin: 0 0 30px 0;
    border-top: 2px solid #000000;
}

.overview ul {
    padding: 0 0 0 0;
    width: 100%;
    clear: both;
}

.overview ul li {
    margin: 0 0 18px 0;
    font-size: 15px;
    list-style-type: none;
    padding: 0 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}

.overview ul li::before {
    content: '';
    position: absolute;
    width: 0;
    top: 0;
    bottom: -18px;
    left: 11px;
    border-right: 1px dashed #454444;
}

.overview ul li span {
    width: 25px;
    z-index: 10;
    height: 25px;
    margin-right: 15px;
    background: #fac90a;
    color: white;
    text-align: center;
    line-height: 26px;
    font-size: 11px;
    border-radius: 50%;
}

.overview ul li i {
    font-style: normal;
    flex: 1;
}

.overview .right_img {
    width: 100%;
    height: 500px;
    float: right;
    object-fit: cover;
}

.overview ul li:last-child::before {
    border-right: none;
}

/*================== Inner Page CSS =====================*/

.roadmap-section {
    position: relative;
    padding-block: 30px;
    background-color: #fff;
}

.roadmap-section::before {
    position: absolute;
    left: 50%;
    top: 61%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    width: 100%;
    content: "";
    background: url("../img/overview-back-line.png") no-repeat;
    background-size: contain;
    z-index: -1;
}

.roadmap-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    z-index: 9;
    position: relative;
}

.roadmap-typo-details {
    display: flex;
    align-items: center;
    gap: 80px;
}

.roadmap-content::-webkit-scrollbar {
    display: none;
}

.roadmap-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.key-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 350px;
}

.roadmap-typo-details img.img-fluid {
    width: 720px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.roadmap-typo-details h4 {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-family: var(--vogun);
    font-size: 32px;
}

.roadmap-typo-details .key-points-para {
    color: var(--primary-color);
    letter-spacing: 1px;
    font-size: 16px;
    font-family: var(--daikon);
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.roadmap-section .section-heading {
    text-align: center;
    margin-bottom: 30px;
    position: sticky;
    top: 8%;
    background: #fff;
    z-index: 99;
    padding: 30px;
}

.section-heading span {
    font-size: 20px;
    letter-spacing: 1px;
}

.section-heading span.pro-name {
    color: var(--text-black);
    font-size: 32px;
}

.about-project {
    position: relative;
    min-height: 80vh;
    background-color: #fff !important;
}

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

.section-heading h2 {
    font-size: 28px;
    letter-spacing: 2px;
    color: rgb(32, 61, 59);
}

.section-heading h5 {
    font-size: 18px;
    letter-spacing: 2px;
    padding-top: 18px;
}

.overview-content {
    margin-top: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 99;
    position: relative;
    align-items: self-start;
}

.overview-content p {
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 26px;
}

.overview-images {
    position: relative;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    z-index: 99;
}

.overview-images .img-2 {
    position: absolute;
    left: 5%;
    top: 55%;
    border: 5px solid #f0e9e2;
    border-radius: 0;
}

.p-100 {
    padding: 70px 0px 80px;
}

/* Amenity Section */

.amenity-section {
    position: relative;
    background: url(../img/background-img.png) no-repeat;
    background-size: cover;
}

.amenity-section .query-btn-new {
    display: flex;
    justify-content: center;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* .amenity img{
    width: 500px; height: 300px; object-fit: cover; border-radius: 6px;
} */

.amenity img {
    width: auto;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
}

.amenity .heading {
    margin-block: 16px;
    /* text-transform: uppercase; */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    line-height: 24px;
}

.amenity-section::before {
    position: absolute;
    left: 0;
    bottom: 5%;
    width: 40%;
    height: 90%;
    content: '';
    background: url('../img/background-images.png') no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.8;
}

.amenity-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.amenity-pointers {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.amenity-pointers img {
    height: 36px;
}

.amenity-pointers p {
    font-weight: 500;
}

.amenity-image img {
    border-radius: 5px;
}

.query-btn-amnt a {
    color: #000;
    border-bottom: 1px solid;
    display: block;
    width: fit-content;
    padding: 5px 5px 8px;
    font-size: 15px;
}

.query-btn-amnt a img.img-fluid {
    width: 38px;
}

img.dark-amnt-img {
    filter: invert(1);
    height: 30px;
}

.floor-plan {
    position: relative;
    overflow-x: hidden;
    background-color: #fff7ef;
}

.background-view {
    background-color: #fff;
}

.floor {
    width: 100%;
    margin-bottom: 20px;
}

.floor-plan .floor img {
    width: 100%;
    height: auto;
    height: 590px;
    object-fit: cover;
}

.query-btn a {
    padding: 10px 26px;
    border: 1px solid rgb(32, 61, 59);
    display: inline-block;
    border-radius: 5px;
    background: rgb(32, 61, 59);
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 30px;
}

.floor-plan .query-btn {
    margin-top: 40px;
}

.query-btn.floor-new-btn {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.query-btn {
    display: flex;
    justify-content: center;
}

.floor-plan .floor .heading {
    font-size: 16px;
    text-transform: uppercase;
    padding-block: 16px;
    font-weight: 600;
    text-align: center;
    color: rgb(32, 61, 59);
    letter-spacing: 2px;
}

.floor-plan .floorpla_slider_buttons {
    display: flex;
    gap: 10px;
    margin-top: 0px;
}

.floorpla_slider_buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.floor-plan .floorpla_slider_buttons .prev,
.next {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floorpla_slider_buttons .prev {
    rotate: 180deg;
}

.floorpla_slider_buttons .prev img {
    width: 50%;
}

.prev,
.next {
    font-size: 1rem;
    cursor: pointer;
}

.floorpla_slider_buttons .next img {
    width: 50%;
}

.payment-plan-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    height: 100%;
}

.payment-plan-details .points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    letter-spacing: 1px;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.payment-plan-details p {
    font-size: 14px;
    text-align: center;
}

.payment-plan-details h4 {
    letter-spacing: 2px;
}

.gallery-image img {
    width: 100%;
}

.overview-images .img-1 {
    width: 424px;
}

.overview-images .img-2 {
    width: 360px;
}

#carouselExampleIndicators {
    display: flex;
    flex-direction: column;
}

.carousel-item.active img {
    width: 100%;
}

@media (max-width: 1480px) {
    .project_box {
        bottom: 16%;
        left: 4%;
    }
    .project_box h1 {
        font-size: 38px;
        letter-spacing: 1px;
    }
    .value {
        font-size: 20px;
    }
}

@media (max-width: 1366px) {
    .slick-slide img {
        max-width: 350px;
    }
    .next-arrow6 {
        right: 2%;
    }
    .line-5 {
        left: 617px;
    }
    .line-6 {
        left: 640px;
    }
    .line-7 {
        left: 613px;
    }
    .line-8 {
        left: 610px;
    }
    .fixedIcons {
        &.phone {
            right: 10px;
        }
    }
    .fixedIcons {
        img {
            width: 40px;
        }
    }
    .roadmap-typo-details {
        gap: 60px;
    }
    .roadmap-typo-details img.img-fluid {
        width: 650px;
    }
    .roadmap-typo-details {
        gap: 20px;
        flex-direction: column;
        background: #efe5d8;
        padding: 10px 10px 20px 10px;
        border-radius: 8px;
    }
    .roadmap-content {
        gap: 30px;
    }
    .roadmap-content {
        overflow-y: unset;
        height: auto;
    }
    .roadmap-typo-details img.img-fluid {
        width: 100%;
        height: auto;
    }
    .roadmap-typo-details h4 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .roadmap-typo-details .key-points-para {
        letter-spacing: 1px;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-align: center;
    }
    .amenity img {
        width: 100%;
    }
    .p-100 {
        padding: 30px 0px 30px;
    }
}

@media (max-width: 768px) {
    #carouselExampleIndicators .carousel-inner,
    .carousel-inner img {
        min-height: 300px;
    }
    #carouselExampleIndicators .carousel-indicators {
        display: none;
    }
    .strip img {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .d_view {
        display: none;
    }
    .m_view {
        display: block;
    }
    .invest_in {
        display: block;
        font-size: 25px;
        color: var(--text-black);
        margin-bottom: 6px;
        font-family: var(--first-font);
        font-weight: 700;
    }
    .carousel-indicators {
        z-index: 9;
    }
    .menu-items {
        padding-top: 40px;
    }
    .logo img {
        max-width: 130px;
    }
    .header .menu-btn span {
        display: none;
    }
    .navbar-brand {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-right: 0px;
    }
    .nav-item .nav-link {
        margin-bottom: 0px;
        text-align: center;
    }
    .phone-email {
        display: none !important;
    }
    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, 0.55);
        border: none;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .carousel-inner img {
        min-height: 305px;
    }
    #carouselExampleIndicators .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    .slider_section .project_box {
        position: unset;
        padding: 20px 0px;
        background: var(--primary-theme);
        text-align: center;
    }
    .carousel-indicators {
        bottom: 68%;
    }
    .slider_section .form_section {
        position: unset;
        width: 100%;
        border-radius: 0;
        transform: unset;
        max-width: 100%;
    }
    .slider_section::after {
        background: none;
        width: unset;
        position: unset;
    }
    .project_box h1 {
        font-size: 25px;
        margin-bottom: 10px;
        color: var(--text-black);
    }
    .project_box p {
        margin-bottom: 8px;
        color: var(--text-black);
        font-size: 18px;
    }
    .project_box h3 {
        color: var(--text-black);
        font-size: 18px;
    }
    .project_box h3 span {
        color: var(--text-black);
    }
    .project_box p img {
        filter: unset;
    }
    .project_box ul li {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 3px;
        color: var(--text-black);
        text-align: left;
        margin-left: 25px;
        display: flex;
        align-items: start;
    }
    .project_box ul li img {
        width: 18px;
        filter: invert();
    }
    .feature-description {
        color: #2c3e50;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
        margin-bottom: 0;
    }
    .form-close-btn {
        display: none;
    }
    .form-toggle-btn {
        display: none;
    }
    .section_title {
        font-size: 26px;
    }
    .subheading {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .overview_section {
        padding: 50px 0;
    }
    .overview-grid {
        grid-template-columns: unset;
        gap: 0rem;
        place-items: unset;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .overview-item {
        text-align: center;
        padding: 8px 4px;
        width: 50%;
    }
    .label {
        color: var(--text-black);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0;
        margin-block-end: 0.5rem;
    }
    .decision_corner {
        padding: 50px 0;
    }
    .decision_corner .subheading {
        font-size: 13px;
    }
    .title {
        font-size: 12px;
    }
    .gallery_section {
        padding: 50px 0 80px;
    }
    .slide-arrow6.next-arrow6 {
        right: 36%;
    }
    .slide-arrow6.prev-arrow6 {
        right: 51%;
    }
    footer {
        padding: 50px 0px 70px;
    }
    .footer_form .button {
        padding: 10px 40px;
    }
    .fixedIcons {
        bottom: 54px;
    }
    .fixedIcons {
        img {
            width: 35px;
        }
    }
    .mobile-section-footer {
        display: flex;
        gap: 0 5px;
        justify-content: space-around;
        z-index: 999;
    }
    .mobile-section-footer a {
        display: block;
        font-size: 22px;
        padding: 2px 8px;
        font-weight: 400;
        color: #fff;
        border-radius: 5px 0;
    }
    .decision_corner .button {
        background-color: var(--secondary-theme);
        color: var(--text-white);
        font-size: 16px;
        line-height: unset;
        padding: 10px 10px;
    }
    .icon {
        font-size: 2rem;
    }
    .project_box h4 {
        color: var(--text-black);
    }
    .header {
        background: #00000057;
    }
    .modal .modal-header h6 {
        font-size: 17px;
        margin-bottom: 0px;
    }
    .projects_section {
        padding: 50px 0 0;
    }
    .project_content h4 {
        font-size: 19px;
    }
    section.Connectivity {
        grid-template-columns: 1fr;
    }
    .listBX {
        padding: 40px 30px;
    }
    .listBX ul {
        grid-template-columns: 1fr;
    }
    .section-heading {
        margin-bottom: 0px;
    }
    .overview-content {
        margin-top: 10px;
    }
    .content_over_banner {
        order: 1;
    }
    .form_section.slide-form {
        order: 2;
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
    }
}

@keyframes mobile {
    0%,
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
}