:root {
    --accent-color: #2B2A29;
    --red-color: #67000e;
    --primary-color: #ffffff;
    --primary-color-50: #D8D8D8;
    --secondary-color: #f1b83c;
    --WhatsAppGreen: #9E8E80;
    --Playfair: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 87.5%;
}

body {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    font: 400 1rem "Montserrat", sans-serif;
    overflow-x: hidden;
}

svg:not([fill]) {
    fill: currentColor;
    stroke: currentColor;
}

hr {
    border-top-color: var(--primary-color);
}

p {
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.pt-6 {
    padding-top: 6rem;
}

.pb-6 {
    padding-bottom: 6rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a,
a:hover {
    text-decoration: none;
}

a {
    color: inherit;
    line-height: inherit;
    outline: 0;
    transition: color .25s;
}

a:hover {
    color: var(--primary-color);
}

p a {
    font-style: italic;
    font-weight: 300;
    text-decoration: underline;
}

.has-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
    pointer-events: none;
}

.bg-primary a {
    color: #fff;
}

.bg-primary a:hover {
    color: var(--light-color);
}

img,
video,
iframe {
    width: 100%;
    display: block;
}

.object-cover {
    object-fit: cover;
}

.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded {
    border-radius: 5px !important;
}

.filter-white {
    -ms-filter: brightness(70);
    filter: brightness(70);
}

.filter-dark {
    -ms-filter: grayscale(1) brightness(0);
    filter: grayscale(1) brightness(0);
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 300ms ease-in-out;
    background:#fff;
}

header.fixed {
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}

header .d-flex {
    justify-content: space-between;
    align-items: center;
}

.brand_logo {
    min-height: 1px;
    transition: all 300ms ease-in-out;
    z-index: 2;
}

.brand_logo a {
    display: block;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 200;
    overflow: hidden;
    padding: 5px 0;
    width: 250px;
    transition: all 300ms ease-in-out;
}

header.fixed .brand_logo a {
    width: 130px;
}

header nav {
    column-gap: 20px;
}

.topLinks,
.menu {
    display: flex;
    align-items: center;
    position: relative;
}

.topLinks {
    column-gap: .5rem;
    height: 100%;
}

.topLinks li.topIcons:has(.fa-whatsapp) {
    position: relative;
    z-index: 1;
}

.topLinks li.topIcons:has(.fa-whatsapp) i {
    box-shadow: 0 0 0 100px var(--WhatsAppGreen) inset;
    color: #fff;
    animation: blink 2s cubic-bezier(.55, .76, .27, 1.29) infinite;
}

@keyframes blink {
    50% {
        box-shadow: 0 0 0 1px rgba(61, 127, 251, .45), 0 0 0 0 rgb(11 107 235 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
        color: var(--primary-color)
    }
}

header .menu {
    gap: 2rem;
}

header .menu a {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2B2A29;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

header .menu a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

header .menuBtn {
    width: 40px;
    height: 40px;
    padding: .5rem;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
    color: var(--light);
    background-color: transparent;
    box-shadow: 0 0 0 0 var(--primary-color) inset;
    border: 0;
    overflow: hidden;
}

.menuBtn .menuDots {
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: relative;
    transition: all .3s linear;
}

.menuBtn .menuDots::before,
.menuBtn .menuDots::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    transform-origin: center center;
    transition: all .6s cubic-bezier(.785, .135, .15, .86);
}

.menuBtn:hover .menuDots::before,
.menuBtn:hover .menuDots::after {
    background-color: var(--secondary-color);
}

.menuBtn.closeMenuBtn {
    gap: 2px;
    box-shadow: 0 0 0 50px var(--secondary-color) inset;
}

.menuBtn.closeMenuBtn .menuDots::before,
.menuBtn.closeMenuBtn .menuDots::after {
    height: 20px;
    width: 2px;
    border-radius: 0;
    background-color: var(--primary-color);
}

.menuBtn.closeMenuBtn .menuDots::before {
    transform: translate(6px, 1px) rotate(45deg);
}

.menuBtn.closeMenuBtn .menuDots::after {
    transform: translate(-6px, 1px) rotate(-45deg);
}

.menuBtn.closeMenuBtn .menuDots#menuDot2 {
    display: none;
}

.mobile_menu {
    position: fixed;
    inset: 0;
    z-index: 996;
    background-color: rgba(0, 75, 49, .13);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
}

.mobile_menu .mobile_menu_wrapper {
    position: relative;
    isolation: isolate;
    margin: 0 0 0 auto;
    padding: 120px 2rem 30px;
    width: 100%;
    max-width: 420px;
    overflow-y: auto;
    background-color: #f1b83c;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
    transition: all 300ms ease-in-out;
}

.mobile_menu .mobile_menu_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/logo-stroke-icon.html) center bottom / 100% no-repeat;
    opacity: .125;
    z-index: -1;
}

header.fixed+.mobile_menu .mobile_menu_wrapper {
    padding-top: calc(1.5rem + 51px);
}

.mobile_menu .mobile_navigation a {
    color: #fff;
    transition: all 300ms ease-in-out;
}

.mobile_menu_wrapper .mobile_navigation li:not(:last-child) a {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mobile_menu_wrapper .mobile_navigation a {
    padding: 10px 0;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    position: relative;
}

.mobile_menu_wrapper .mobile_navigation li:hover>a {
    padding: 10px;
    background-color: #fff;
    color: var(--primary-color);
}

.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    70% {
        transform: translateY(0%)
    }

    80% {
        transform: translateY(-15%)
    }

    90% {
        transform: translateY(0%)
    }

    95% {
        transform: translateY(-7%)
    }

    97% {
        transform: translateY(0%)
    }

    99% {
        transform: translateY(-3%)
    }

    100% {
        transform: translateY(0)
    }
}

.hero {
    height: 100vh;
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #1A1A1A 0%, transparent 35%, transparent 65%, #1A1A1A 100%),
        linear-gradient(to right, #1A1A1A 0%, transparent 25%, transparent 75%, #1A1A1A 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation: heroZoomIn 18s ease-in-out infinite alternate;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.09);
    }
}

@keyframes heroZoomOut {
    0% {
        transform: scale(1.09);
    }

    100% {
        transform: scale(1.5);
    }
}

.hero-slide:nth-child(even) .hero-slide-img {
    transform: scale(1.08);
    animation-name: heroZoomOut;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #1A1A1A 0%, transparent 35%, transparent 65%, #1A1A1A 100%),
        linear-gradient(to right, #1A1A1A 0%, transparent 25%, transparent 75%, #1A1A1A 100%);
    z-index: 1;
}

.hero-mobile-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
   
}

.hero-list {
    z-index: 2;
}

.hero-list ul {
    gap: 1rem;
    flex-direction: column;
    font-size: 1.25rem;
}

.rera-info {
    display: inline-flex;
    position: absolute;
    top: 25%;
    right: -250px;
    z-index: 2;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
}

.rera-info.open {
    right: 0;
}

.rera-info .row {
    flex-wrap: nowrap;
}

.rera-info .btn-rera-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    writing-mode: sideways-lr;
    background-color: var(--accent-color);
    font-weight: 600;
    padding: 10px 5px;
    font-size: 12px;
    cursor: pointer;
}

.rera-info .rera-content {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 15px;
    width: 250px;
    height: 100%;
    min-height: 96px;
    text-align: right;
    word-break: break-word;
}

.rera-info .rera-content .rera-text {
    font-size: 12px;
    color: var(--be-black);
}

.rera-info .rera-content .rera-text a {
    color: var(--be-purple);
    text-decoration: underline;
}

.rera-info .rera-qr {
    margin-left: 10px;
}

.rera-info .rera-qr img {
    width: 60px;
    max-height: 60px;
}

.hero .hero-caption {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    max-width: 1024px;
    width: 100%;
    z-index: 9;
}

.small-icon i {
    padding: 5px;
    border: 1px solid rgb(255 255 255 / 15%);
}

.content-item h3 {
    font-size: 1.5rem;

}


.hero .hero-caption .small-icon b {
    word-break: break-word;
}

.common-query-form {
display: none;
}

.common-query-form.stick_to_bottom {
    display: block;
    position: fixed;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
    max-width: 100%;
    z-index:99999;
}

.common-query-form>div {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background-color: #67000e;
    color: #fff;
    border-top: 4px solid #f3b544;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 35%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.common-query-form>div::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: url(../images/icons/brand-emblem.svg) center / contain no-repeat; */
    opacity: .1;
    z-index: -1;
}

.consentBox label {
    font-size: .75rem;
    color: var(--accent-color);
}

@media (min-width:768px) {
    
    .common-query-form.stick_to_bottom {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        max-width: 100%
    }

    .common-query-form.stick_to_bottom>div {
        padding: 1rem;
        box-shadow: 0 -10px 2rem rgb(0 0 0 / 30%)
    }

    .common-query-form.stick_to_bottom img {
        display: none
    }

    .common-query-form.stick_to_bottom .cta {
        margin-top: 0
    }

    .common-query-form.stick_to_bottom .consentBox {
        display: none
    }
}

.valueBox figure {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.valueBox figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent, rgb(0 0 0 / 35%));
    z-index: 1;
    pointer-events: none;
}

.valueBox figure figcaption {
    position: absolute;
    inset: auto 1rem 1rem;
    text-align: center;
    font-size: 1.375rem;
    font-family: var(--Playfair);
    color: var(--secondary-color);
    z-index: 1;
}

.swiper-slide.by_numbersBox {
    height: auto;
}

.by_numbersBox .inner {
    height: 100%;
    padding: 2rem;
    aspect-ratio: 3/4;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 300ms linear 300ms;
}

.by_numbersBox .inner img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all 300ms linear;
}

.by_numbersBox .inner:hover img {
    transform: scale(1.15, 1.15);
}

.swiper-slide.swiper-slide-active.by_numbersBox .inner {
    background-color: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}

.by_numbersBox .inner::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    z-index: -1;
    pointer-events: none;
}

.by_numbersBox .inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent, #000);
    z-index: 0;
    pointer-events: none;
}

.by_numbersBox .num {
    display: table;
    margin: 0 0 2rem auto;
    font-weight: 700;
    opacity: .75;
    color: #fff;
    position: relative;
    z-index: 1;
}

.by_numbersBox .by_numbers-num {
    font-size: 3.5rem;
}

.by_numbersBox p,
.by_numbersBox h6 {
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.by_numbersBox .by_numbersBox-flex {
    display: flex;
    flex-wrap: wrap;
}

.by_numbersBox .by_numbersBox-flex article:not(:first-child) {
    border-left: 1px dashed #fff;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
}

.by_numbersBox .inner.bg-primary::after {
    filter: invert(1);
    opacity: .5;
}

.swiper-facility {
    --slide-width: 70%;
    text-align: left;
}

.middle-controls {
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.facilityBox.swiper-slide {
    width: var(--slide-width);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all 300ms linear 300ms;
}

.facilityBox.swiper-slide.swiper-slide-active {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.facilityBox .img-box {
    position: relative;
    isolation: isolate;
}

.facilityBox .img-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.35) 35%, rgba(26, 26, 26, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.facilityBox .img-box video {
    aspect-ratio: 21/9;
    object-fit: cover;
}

.facilityBox .box-title {
    position: absolute;
    inset: 2rem auto auto 5rem;
    width: 100%;
    color: #fff;
    text-align: center;
    transition: all 300ms ease-in-out 300ms;
    opacity: 0;
    z-index: 1;
}

.facilityBox.swiper-slide.swiper-slide-active .box-title {
    opacity: 1;
    left: 2rem;
}

.facilityBox .box-title ul li {
    margin-bottom: 5px;
}

.clubhouse--image {
    margin-top: -5rem;
    z-index: -1 !important;
}

.clubhouse--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 20%);
    background: linear-gradient(var(--secondary-color), rgb(0 0 0 / 0%) 50%);
    z-index: 1;
    pointer-events: none;
}

.fpBox .inner {
    background-color: #fff;
    padding: 2rem;
}

.fpBox .inner img {
    max-width: 250px;
    width: 90%;
    margin: 0 auto;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.fpDetails h3 {
    text-align: center;
    font: 200 2.25rem/1.2 var(--Playfair);
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.fpDetails ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.table {
    --bs-table-border-color: rgb(75 23 20 / 10%);
    table-layout: fixed;
}

.table th,
.table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

.table>:not(caption)>*>*,
.accordion-item,
.accordion-button {
    color: var(--accent-color);
}

.iconsContainer .amenBox.swiper-slide {
    height: auto;
}

.iconsContainer .amenBox figure {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--primary-radius);
    border: 1px solid var(--primary-color);
    transition: all 300ms ease-in-out;
}

.iconsContainer .amenBox figure:hover {
    background-color: #fff;
}

.iconsContainer .amenBox figure .img-fluid {
    max-width: 75px;
    flex: 0 0 75px;
    padding: 10px;
    transition: all 300ms ease-in-out;
}

.iconsContainer .amenBox figure:hover .img-fluid {
    -webkit-filter: brightness(1);
    filter: brightness(1);
}

.iconsContainer .amenBox figure figcaption {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.iconsContainer .amenBox figure figcaption small {
    color: var(--primary-color);
}

.amenities-wrapper--home::after {
    content: "";
    position: absolute;
    inset: 70% 0 0%;
    background: url(../images/texture.html) var(--primary-color);
    z-index: -1;
}

.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.image-slide--inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.image-slide--inner::before {
    content: "";
    position: absolute;
    inset: 0;
}

.image-slide .image-slide--inner,
.image-slide img {
    transition: all 300ms ease-in-out;
}

.image-slide img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.image-slide:hover img {
    transform: scale(1.06);
}

.slide-caption {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.gallSwiper {
    padding-right: 25%;
    position: relative;
}

.gallSwiper .gallBox {
    position: relative;
    overflow: hidden;
}

.gallSwiper .gallBox::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to top, #000000c5, transparent);
    z-index: 1;
}

.gallSwiper .gallBox::after {
    content: "";
    position: absolute;
    left: 0;
    height: 5px;
    bottom: 5px;
    width: 0;
    background: #ffffff;
    z-index: 2;
}

.gallSwiper .swiper-slide-active.gallBox::after {
    animation: borderLeftRight 3s linear infinite;
}

@keyframes borderLeftRight {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.gallSwiper .gallBox img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

.gallSwiper .gallBox:hover img {
    transform: scale(1.2);
}

.gallSwiper .content {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    color: #fff;
    z-index: 2;
    transition: all 0.6s ease;
    max-width: 70%;
    text-align: start;
}

.accordion-button {
    font-size: 1.125rem;
    font-family: var(--Playfair);
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
}

.accordion-button i {
    color: var(--accent-color);
}

.accordion-body ul li {
    margin-bottom: 5px;
}

.mapBox {
    position: relative;
    isolation: isolate;
}

@media (min-width:1200px) {
    .virtual-box img {
        aspect-ratio: 21/9
    }
}

.sun-num:not(:last-of-type) {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.sun-num section {
    text-align: center;
}

.sun-num section h2 {
    font-weight: 700;
    color: var(--third-color);
}

.sun-num section h2 .odometer {
    font-size: 125%;
}

.sun-num section p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-enquiryBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 99;
    background-color: var(--red-color);
    border-top: 1px solid var(--secondary-color);
    text-align: center;
}

.footer-enquiryBtn a {
    width: 100%;
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 5px;
    font-size: 11px;
    text-transform: uppercase;
}

.footer-enquiryBtn a:not(:first-child) {
    border-left: 1px solid var(--primary-color);
}

.section_title {
    display: table;
    position: relative;
    margin-bottom: 1rem;
    z-index: 1;
    color:var(--accent-color);
}

.section_title.d-flex {
    gap: 10px;
}

.title-logo {
    width: 160px;
    margin-bottom: 1rem;
}

.section_title.border-bottom {
    border-bottom-width: 2px !important;
}

.section_title .section_title-logo {
    width: 120px;
    margin: 0 auto 1rem;
}

.section_title h1,
.section_title h2,
.section_title h3,
.section_title h4,
.section_title h5 {
    display: block;
    font-family: var(--Playfair);
    text-transform: uppercase;
        font-weight: 700;
}

.section_title h6 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .75;
    font-family: "Inter", sans-serif;
}

.font-serif {
    font-family: var(--Playfair);
    display: block;
    font-family: var(--Playfair);
    text-transform: uppercase;
    font-weight: 700;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--accent-color) !important;
}

.text-truncate-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--accent-color);
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-silhouette::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image: url(../images/bg-silhouette.png);
    background-size: cover;
    background-position: left center;
    z-index: -1;
    pointer-events: none;
}

.bg-primary-half::before,
.bg-primary-half::after {
    content: "";
    position: absolute;
    inset: 0 0 50%;
    z-index: -1;
}

.bg-primary-half::before {
    background-color: var(--primary-color);
}

.bg-primary-half::after {
    background: url(../images/bg-silhouette.png) left center / cover;
    opacity: .25;
}

.bg-primary-half.bg-bottom::before,
.bg-primary-half.bg-bottom::after {
    inset: 50% 0 0;
}

.bg-image {
    background: center / cover no-repeat fixed;
}

.bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: -1;
}

.scroller {
    overflow: auto;
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--secondary-color);
    border-radius: 10px;
}

.scroller::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.scroller::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.cta {
    width: 100%;
    margin-top: 2rem;
}

.cta.d-flex {
    gap: 10px 1rem;
}

.cta .button {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-transform: uppercase;
    font-size: .875rem;
    font-family: "Inter", sans-serif;
    border-radius: 100px;
    padding: .875rem 1.25rem;
    text-align: center;
    color: #fff;
    background-color: var(--accent-color);
    transition: all ease-in-out .3s;
    overflow: hidden;
}

.cta .button:has(i) {
    padding: 0 1.25rem 0 0;
}

.cta .button i {
    width: 2.75rem;
    height: 2.75rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid white;
    box-shadow: 0 0 0 50px var(--primary-color) inset;
    color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in;
}

.cta .button:hover i {
    color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--primary-color) inset;
}

.cta button {
    border: 0;
}

.cta .button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #f1b83c;
    transform: translate(-100%, -100%);
    transition: all ease-in-out .5s;
    z-index: -1;
}

.cta .button.active::after,
.cta .button:hover::after {
    transform: translate(-20%, -30%);
}

.cta .button.reverse,
.bg-primary .cta .button {
    color: var(--primary-color);
    background-color: var(--red-color);
}

.cta .button:hover {
    color: var(--accent-color);
}

.cta .button.mw-auto {
    min-width: 1px;
    padding: 1rem;
}

.cta .button.text-white {
    border-color: #fff;
    color: #fff;
}

.cta .button.text-white:hover {
    color: var(--third-color) !important;
    background-color: #fff;
    border-color: transparent;
}

.cta .button.accent {
      color: var(--accent-color);
    font-weight: 600;
    background-color: var(--secondary-color);
}

.cta .button.accent::after {
    background-color: #f1b83c !important;
}

/* View on Map â€” map icon slides from left to right on hover */
.cta a.button.btn-view-map {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem 0.875rem 3.25rem;
    overflow: hidden;
    transition: padding 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease-in-out,
        background-color 0.3s ease-in-out;
}

.cta a.button.btn-view-map .btn-view-map__icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta a.button.btn-view-map:hover .btn-view-map__icon {
    left: calc(100% - 2.75rem);
}

.cta a.button.btn-view-map:hover {
    padding: 0.875rem 3.25rem 0.875rem 1.25rem;
}

.cta a.button.btn-view-map .btn-view-map__text {
    position: relative;
    z-index: 1;
}

.position-relative {
    z-index: 1;
}

div[class^="swiper-button"] {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-color);
    transition: all 300ms ease-in-out;
}

div[class^="swiper-button"].sm {
    width: 30px;
    height: 30px;
    background-size: 14px;
}

.bg-primary div[class^="swiper-button"]:hover {
    background-color: color-mix(in srgb, var(--secondary-color), transparent 70%);
    color: var(--secondary-color);
}

.section_title .d-flex {
    gap: 10px;
}

div[class^="swiper-button"]:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

div[class^="swiper-button"]:after {
    color: inherit;
    font-size: 1rem;
}

.swiper-control {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 10px;
}

.swiper-control.sm {
    top: calc(100% - .5rem);
}

.swiper-control *[class^="swiper-"] {
    position: static;
}

.swiper-control .swiper-pagination {
    transform: none;
}

.swiper-control div[class^="swiper-button"] {
    margin-top: 0;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

footer {
    margin: 4rem 0;
    color: #fff;
    font-size: .875rem;
    z-index: 1;
}

.footer-mandate {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    /* max-width: 720px; */
    /* margin: 0 auto 1.5rem; */
    text-align: right;
}

.footer-mandate-text {
    flex: 1 1 auto;
    font-size: 0.875rem;
}

.footer-mandate-text p {
    margin-bottom: 0.15rem;
}

.footer-mandate-text a {
    color: inherit;
    text-decoration: underline;
}

.footer-mandate-text a:hover {
    color: var(--accent-color);
}

.footer-mandate-qr {
    flex: 0 0 auto;
}

.footer-mandate-qr img {
    max-width: 120px;
    height: auto;
}

.footer-mandate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex: 1 1 auto;
}


.footer-logo img {
    max-width: 150px;
    height: auto;
}
@media (max-width: 575.9px) {
    .footer-mandate {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-mandate-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-mandate-qr img {
        max-width: 100px;
    }
}

.copyrights {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: center;
    row-gap: 10px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
font-size: 16px;
}
.disclaimer{color:#fff;}
@media (max-width: 575.9px) {
    .copyrights {
        justify-content: center;
        text-align: center;
    }
}

.copyrights small:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid;
}

.copyrights a {
    text-decoration: 1px underline;
}

.copyrights a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.back_to_top {
    background: rgba(0, 0, 0, .32);
    color: #ffffff;
    font-size: 13px;
    opacity: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    bottom: 6.5rem;
    cursor: pointer;
    z-index: 99;
}

.back_to_top:hover {
    background: var(--accent-color);
}

.flip-x {
    transform: rotateY(180deg);
}

.form-group>div {
    margin-top: 15px;
}

.form-group label {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-group {
    display: flex;
}

.form-group>i,
.form-group>.field-icon {
    max-width: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background-color: #fff;
}

/* Keep border-end visible: don't put flip-x on the same node as border-end (3D flip moves the border). */
.form-group>.field-icon .flip-x {
    display: inline-block;
}

.form-control {
    border-radius: 6px;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid transparent;
}

.form-control:focus {
    box-shadow: none;
    background-color: var(--primary-color-50);
    border-bottom-color: var(--accent-color);
}

.form-control.lg {
    padding: 1.25rem 2.5rem;
}

button:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.modal-backdrop.show {
    opacity: 1;
    background: rgba(0, 2, 12, .894);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

button.close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    border: 0;
    color: #000;
    opacity: 1;
    text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    background-color: #9E8E80;
    color: #fff;
}

.modal-content {
    background-color: var(--secondary-color);
    border-radius: 0;
    border: none;
}

.modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    pointer-events: none;
}

.modal-content .modal-header {
    padding: 0;
    border: none;
}

.modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    background-color: var(--accent-color);
    opacity: 1;
    z-index: 2;
}

.modal-header .close {
    color: #fff;
}

.modal-header {
    background: none;
    border: none;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-logo img {
    max-width: 180px;
    margin: 0 auto;
}

.modal-icons {
    display: flex;
    padding: 2rem;
    text-transform: uppercase;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.modal-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon .img-fluid {
    max-width: 35px;
    flex: 0 0 35px;
    color: var(--secondary-color);
}

.modal-icon span {
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.hero_inside__banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 2rem 0;
    margin-top: 85px;
    z-index: 1;
}

.super_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-bannerLogo {
    position: absolute;
    max-width: 24%;
    z-index: 11;
    left: 37%;
    top: 17%;
}

.page_title {
    font: 200 3rem var(--Playfair);
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-color);
}

.breadcrumb li a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li.active {
    color: var(--primary-color);
}

.highlights-list {
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    background-color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
}

.highlights-list li {
    position: relative;
    margin: 0;
    padding: 0;
}

.highlights-list li+li::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.5rem;
    background-color: rgba(0, 0, 0, 0.25);
    margin-right: 1.5rem;
    vertical-align: middle;
}

.highlights-list span {
    color: #000;
}

@media (max-width: 575.9px) {
    .highlights-list {
        border-radius: 6px;
    }
}





/*Brands Slider*/
.brands-section{
   
    background:#fff;
}

.brands-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.brands-header h2{
    color: #2B2A29;
    font-weight:700;
font-family: var(--Playfair);
    text-transform: uppercase;
    margin:0;
}

.brands-nav{
    display:flex;
    gap:15px;
}

.brands-nav button{
    width:58px;
    height:58px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    transition:.3s;
    font-size:20px;
}

.brands-nav button:hover{
    background:#c19c4c;
    color:#fff;
    border-color:#c19c4c;
}

.brands-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.brands-slider::-webkit-scrollbar{
    display:none;
}

.brand-card{
    min-width:240px;
    height:170px;
    background:#fff;
    overflow:hidden;
    border-radius:6px;
    padding: 8px;
    flex-shrink:0;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}


.brand-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}


.ft{background-color:#f1b83c ;}

@media(max-width:767px){

    /* Hide desktop slider arrows */
    .brands-nav{
        display:none;
    }


    /* Disable horizontal slider */
    .brands-slider{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        overflow:visible;
    }


    .brand-card{
        min-width:unset;
        width:100%;
        height:120px;
        border-radius:8px;
    }


    .brand-card img{
        width:100%;
        height:100%;
        object-fit:cover;
    }


    /* Remove cursor drag effect */
    .brands-slider{
        cursor:default;
    }

}
















/*Prime Location Advantage*/

.location-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    border-bottom:1px solid #c19c4c;
}

.location-left{
    display:flex;
    align-items:center;
    gap:18px;
    width:80%;
}

.location-left i{
    width:40px;
    text-align:center;
    font-size:24px;
    color:#f1b83c;
}

.location-left span{
  font-weight: 500;
    line-height: 1.2;
    color: var(--accent-color);
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.location-distance{
  font-weight: 500;
    line-height: 1.2;
    color: var(--accent-color);
    white-space:nowrap;
}

@media (max-width:768px){
.builder-line{display: inline-block;}
    .location-item{
        padding:18px 0;
    }

    .location-left span,
    .location-distance{
        font-size:16px;
    }

    .location-left i{
        font-size:20px;
        width:28px;
    }
}





/*Project Highlights*/

.highlights-wrapper{
    position:relative;
    padding:80px 0 0;
    overflow:hidden;
    background:#fff;
}


/* Background Image Overlay */
.highlights-wrapper::before{
    content:"";
    position:absolute;
    inset:0;

    z-index:0;
}


.highlights-wrapper .container-lg{
    position:relative;
    z-index:2;
}


/* Heading */

.highlights-wrapper .section_title h2{
    color:#222;
    line-height:1.25;
    font-weight:600;
    margin-top:15px;
}


.highlights-wrapper .section_title p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}


.sub_title{
    color:#b28a45;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}


/* Highlight Cards */

.highlight-item{

    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 20px;

    background:#ffffff;

    border:1px solid #ededed;

    border-radius:12px;

    transition:all .35s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);

}


.highlight-item:hover{

    transform:translateY(-6px);

    border-color:#c49a52;

    box-shadow:
    0 18px 40px rgba(0,0,0,.12);

}


/* Icon */

.highlight-item i{

    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    background:var(--red-color);

    color:#fff;

    border-radius:50%;

    font-size:21px;

}


/* Text */

.highlight-item h4{

    margin:0 0 6px;

    font-size:18px;

    font-weight:600;

    color:#222;

}


.highlight-item p{

    margin:0;

    font-size:14px;

    line-height:1.5;

    color:#666;

}



/* Bottom Image */

.clubhouse--image{

    margin-top:70px;

    position:relative;

    z-index:2;

}


.clubhouse--image img{

    width:100%;

    height:auto;

    display:block;

}















/*Price List*/

.price-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:420px;
}

.price-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.price-card:hover img{
    transform:scale(1.08);
}

.price-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    padding:30px;

   background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 15%,
        rgba(0,0,0,.35) 35%,
        rgba(0,0,0,0) 100%
    );
}

.price-overlay h3{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}


.price-overlay .button{
    min-width:210px;
    justify-content:center;
}

.price-card:hover .button{
    transform:translateY(-2px);
}












/*About Saya Homes*/

.about-builder{
    padding:70px 0;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.builder-box{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    padding:0 20px;
}

.builder-image{
    width:45%;
    position:relative;
    z-index:2;
}

.builder-image img{
    width:100%;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.builder-content{
    width:60%;
    margin-left:-60px;
    padding:45px 45px 45px 100px;
    background:#fff;
    border-radius:20px;
    border:1px solid #eee;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.builder-tag{
    color:#b88a3d;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.builder-content h2{
    font-size:36px;
    line-height:1.25;
    color:#222;
    margin:12px 0 18px;
}

.builder-line{
    width:65px;
    height:3px;
    background:#b88a3d;
    margin-bottom:20px;
}

.builder-content p{
    color:#666;
    font-size:15.5px;
    line-height:1.8;
}

.builder-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 32px;
    background:#222;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    transition:.3s;
}

.builder-btn:hover{
    background:#b88a3d;
    color:#fff;
}


/* Responsive */

@media(max-width:991px){

.builder-box{
    flex-direction:column;
}

.builder-image{
    width:90%;
}

.builder-image img{
    height:300px;
}

.builder-content{
    width:100%;
    margin:-40px 0 0;
    padding:70px 30px 35px;
}

.builder-content h2{
    font-size:30px;
}

}


@media(max-width:576px){

.about-builder{
    padding:50px 0;
}

.builder-image{
    width:100%;
    padding: 10px;
}
.builder-box{    padding: 0 0;}
.pt-6{    padding-top: 1rem;}
.builder-content{
    padding:60px 20px 30px;
}

.builder-content h2{
    font-size:25px;
}

.builder-btn{
    width:100%;
    text-align:center;
}

}


















.section-divider{
    width:100%;
    height:1px;
    background:linear-gradient(to right, transparent, #ffffff, transparent);
}









.hero-slider {
    position:relative;
    width:100%;
    overflow:hidden;
}

.slide {
    display:none;
    animation: slideEffect 0.8s ease;
}

.slide.active {
    display:block;
}

.slide img {
    width:100%;
    display:block;
}


/* Slide animation */
@keyframes slideEffect {
    from {
        opacity:0;
        transform:translateX(40px);
    }
    to {
        opacity:1;
        transform:translateX(0);
    }
}


/* Desktop arrows */
.slider-btn {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.45);
    color:#fff;
    border:0;
    padding:12px 18px;
    font-size:25px;
    cursor:pointer;
    z-index:5;
}

.prev {
    left:20px;
}

.next {
    right:20px;
}


/* Mobile dots */
.dots {
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.dot {
    width:10px;
    height:10px;
    background:#ddd;
    border-radius:50%;
    cursor:pointer;
}

.active-dot {
    background:#000;
}


/* Mobile */
@media(max-width:767px){

    .slider-btn {
        display:none;
    }

    .dots {
        display:flex;
    }
    .popup-banner-img{display: none;}

}


/* Desktop hide dots */
@media(min-width:768px){

    .dots {
        display:none;
    }

}

.p-5 {
    padding: 2rem !important;
}
































/*whatsapp icon right side fixed start*/
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 9999;

    text-decoration: none;
    display: flex;
    align-items: center;
}

.whatsapp-float i {
    width: 54px;      /* reduced from 62px */
    height: 54px;     /* reduced from 62px */

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;  /* reduced from 34px */

    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);

    animation: whatsappPulse 2s infinite;
}

.whatsapp-text {
    position: absolute;
    right: 68px; /* adjusted for smaller icon */

    background: #fff;
    color: #333;

    padding: 10px 14px;
    border-radius: 12px;

    white-space: nowrap;

    box-shadow: 0 8px 25px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);
    transition: all .3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.small-text {
    font-size: 11px;
    color: #666;
}

.main-text {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.45);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width:768px) {
    .whatsapp-float {
       display: none;
    }

  
}
/*whatsapp icon right side fixed end*/
























