@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* root */
:root {
    /* font */
    --main-font: "Playfair Display", serif;
    --secondary-font: "Poppins", serif;

    /* Primary-color */
    --primary-50: #EAEBE9;
    --primary-100: #BFC0B9;
    --primary-200: #A0A198;
    --primary-300: #757668;
    --primary-400: #5A5C4B;
    --primary-500: #31331E;
    --primary-600: #2D2E1B;
    --primary-700: #232415;
    --primary-800: #1B1C11;
    --primary-900: #15150D;
    /* Secondary-color */
    --secondary-50: #EFEFEB;
    --Secondary-100: #CFCDC2;
    --Secondary-200: #B7B4A5;
    --Secondary-300: #96927C;
    --Secondary-400: #827D62;
    --Secondary-500: #635D3B;
    --Secondary-600: #5A5536;
    --Secondary-700: #46422A;
    --Secondary-800: #363320;
    --Secondary-900: #2A2719;

    /* tertiary-color */
    --tertiary-50: #FBFAF8;
    --tertiary-100: #F2F0EA;
    --tertiary-200: #EBE8E0;
    --tertiary-300: #E2DED1;
    --tertiary-400: #DDD7C9;
    --tertiary-500: #D4CDBB;
    --tertiary-600: #C1BBAA;
    --tertiary-700: #979285;
    --tertiary-800: #757167;
    --tertiary-900: #59564F;

    /* dark-color */
    --dark-50: #F6F6F6;
    --dark-100: #E2E2E2;
    --dark-200: #D5D5D5;
    --dark-300: #C1C1C1;
    --dark-400: #B5B5B5;
    --dark-500: #A3A3A3;
    --dark-600: #949494;
    --dark-700: #747474;
    --dark-800: #5A5A5A;
    --dark-900: #444444;

    /* surface-color */
    --surface-50: #FDFDFD;
    --surface-100: #F8F8F8;
    --surface-200: #F4F4F4;
    --surface-300: #F0F0F0;
    --surface-400: #EDEDED;
    --surface-500: #E8E8E8;
    --surface-600: #D3D3D3;
    --surface-700: #A5A5A5;
    --surface-800: #808080;
    --surface-900: #616161;


    /* Shadow */
    --shadow: 0px 4px 16px #00000015;
}

.linear-gradient {
    color: rgb(118, 60, 34);
    color: linear-gradient(90deg, rgba(118, 60, 34, 1) 0%, rgba(195, 144, 117, 1) 50%, rgba(156, 102, 76, 1) 100%);
}

.wrapper {
    padding: 64px 0;
}

.bg-dark {
    background-color: var(--Secondary-500) !important;
}

.bg-light {
    background-color: var(--tertiary-50) !important;
}

/* Typography */
h1 {
    font-size: 64px;
    font-family: var(--main-font);
}

h2 {
    font-size: 42px;
    font-family: var(--main-font);
}

/* h3 {
    font-size: 39px;
    font-family: var(--main-font);
}

h4 {
    font-size: 31px;
    font-family: var(--main-font);
}

*/

h5 {
    font-size: 24px;
    font-family: var(--secondary-font);
}

h6 {
    font-size: 20px;
    font-family: var(--secondary-font);
}

p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--secondary-font);
}

.small {
    font-size: 14px;
    font-family: var(--secondary-font);
}

a {
    text-decoration: none;
    color: var(--dark-dark);
    font-family: var(--secondary-font);
    display: block;
}

/* Flash / shine hover sweep for all CTA buttons */
.primary-btn,
.secondary-btn,
.tertiary-btn,
.dark-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::after,
.secondary-btn::after,
.tertiary-btn::after,
.dark-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.primary-btn:hover::after,
.secondary-btn:hover::after,
.tertiary-btn:hover::after,
.dark-btn:hover::after {
    left: 125%;
}

.primary-btn {
    font-family: var(--secondary-font);
    padding: 10px 16px;
    font-size: 16px;
    height: 45px;
    width: fit-content;
    line-height: normal;
    color: var(--surface-50);
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #FDFDFD50;
    transition: all ease-in-out 0.5s;
}

.primary-btn .angleArrow {
    margin-left: 3px;
    transition: all ease-in-out 0.5s;
}

.primary-btn:hover {
    border-color: var(--surface-50);
}

.primary-btn:hover .angleArrow {
    margin-left: 6px;
}


.tertiary-btn {
    font-family: var(--secondary-font);
    padding: 10px 0;
    padding-right: 8px;
    font-size: 16px;
    height: 45px;
    line-height: normal;
    width: fit-content;
    color: var(--dark-900);
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid #2D2D2D50;
    transition: all ease-in-out 0.3s;
}

.tertiary-btn .angleArrow {
    padding-left: 16px;
    transition: all ease-in-out 0.3s;
}

.tertiary-btn:hover {
    border-color: var(--dark-900);
}

.tertiary-btn:hover .angleArrow {
    padding-left: 24px;
}

.secondary-btn {
    font-family: var(--secondary-font);
    padding: 10px 0;
    padding-right: 8px;
    font-size: 16px;
    height: 45px;
    line-height: normal;
    width: fit-content;
    color: var(--surface-50);
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid #FDFDFD50;
    transition: all ease-in-out 0.3s;
}

.secondary-btn .angleArrow {
    padding-left: 16px;
    transition: all ease-in-out 0.3s;
}

.secondary-btn:hover {
    border-color: var(--surface-50);
}

.secondary-btn:hover .angleArrow {
    padding-left: 24px;
}


.dark-btn {
    border: none;
    font-family: var(--secondary-font);
    padding: 12px 16px;
    font-size: 16px;
    height: auto;
    line-height: normal;
    width: fit-content;
    color: var(--surface-50);
    background-color: var(--primary-500);
    border-radius: 0;
    transition: all ease-in-out 0.3s;
    margin-top: 16px;
}

.dark-btn .angleArrow {
    padding-left: 16px;
    transition: all ease-in-out 0.3s;
}

.dark-btn:hover {
    border-color: var(--dark-900);
}

.dark-btn:hover .angleArrow {
    padding-left: 24px;
}

.float-btn,
.float-btn-int {
    position: fixed;
    z-index: 9999;
    font-family: var(--secondary-font);
    font-weight: 600;
    padding: 12px 22px;
    font-size: 16px;
    height: 48px;
    width: fit-content;
    line-height: normal;
    border-radius: 4px;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all ease-in-out 0.3s;
    bottom: 16px;
    cursor: pointer;
    overflow: hidden;
}

.float-btn {
    color: var(--surface-50);
    background: linear-gradient(90deg, #9C664C 0%, #763C22 100%);
    right: 32px;
}

.float-btn-int {
    color: var(--surface-50);
    background-color: var(--primary-500);
    left: 32px;
}

.float-btn::after,
.float-btn-int::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.float-btn:hover::after,
.float-btn-int:hover::after {
    left: 125%;
}

.float-btn .angleArrow,
.float-btn-int .angleArrow {
    margin-left: 3px;
    transition: all ease-in-out 0.5s;
}

.float-btn:hover,
.float-btn-int:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.float-btn:hover .angleArrow,
.float-btn-int:hover .angleArrow {
    margin-left: 6px;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    z-index: 9999;
    right: 32px;
    bottom: 76px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all ease-in-out 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.section-title-light,
.section-title-dark {
    margin-bottom: 24px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Fullscreen Background Video */
.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.1);
}

/* Gradient Overlay - darker toward the bottom where the text sits, to kill video glare */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 21, 13, 0.45) 0%, rgba(21, 21, 13, 0.65) 55%, rgba(21, 21, 13, 0.88) 100%);
    z-index: 1;
}


.hero-section-content {
    height: 100%;
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.navbar {
    background-color: transparent !important;
    color: var(--surface-50);
}

.navbar-nav .nav-item {
    padding: 3px 12px;
}

.nav-link {
    color: var(--surface-50);
    font-size: 16px;
    font-family: var(--secondary-font);
    padding: 3px 0px !important;
    border-bottom: 1px solid transparent;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--surface-50);
    border-color: var(--surface-50);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--surface-50);
    border-color: var(--surface-50);
}

.hero-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    color: var(--surface-50);
}

.hero-content h1 {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-content h6 {
    font-weight: 200;
}

.scroll-down {
    margin-top: 64px;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid #ffffff50;
    color: #ffffff70;
    font-family: var(--secondary-font);
    font-weight: 200;
}

.about-points{
    margin: 8px 0 4px;
}

.about-points .col-12{
    line-height: 1;
}

.about-points .about-point-icon{
    font-size: 18px;
    line-height: 1;
    color: var(--Secondary-500);
    margin-right: 10px;
    flex-shrink: 0;
}

.about-points span{
    font-family: var(--secondary-font);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--primary-800);
}

.map .map-left,
.amenities .amenities-right {
    padding: 64px 64px 64px 100px;
}

.map .map-left .map-point {
    margin: 32px 0px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.map .map-left .map-point .point {
    cursor: pointer;
    width: fit-content;
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    transition: all ease-in-out 0.3s;
}

.map .map-left .map-point .point:hover {
    border-color: var(--Secondary-200);
}

.map .map-left .map-point .point .small {
    color: var(--Secondary-200);
}

.amenities .amenities-right .amenities-usp {
    margin: 42px 0px;
}

.amenities-usp .usp {
    color: var(--surface-50);
    padding: 24px 0px;
    border-top: 1px solid var(--Secondary-300);
    border-bottom: 1px solid var(--Secondary-300);

}

.project-card {
    border: none;
    border-radius: 0px;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px;
    display: flex;
    justify-content: end;
    align-items: start;
    transition: all ease-in-out 0.3s;
}

.project-card-1{
    background-image: url('../asset/project-1.jpg');   
}
.project-card-2:last-child{
    background-image: url('../asset/project-2.jpg');   
}


.project-card .card-content .sub-heading {
    display: none;
    transition: all ease-in-out 0.3s;
}

.project-card:hover .card-content .sub-heading {
    display: block;
}

.moreProjects {
    padding-bottom: 64px;
}

.ex-project {
    cursor: pointer;
    overflow: hidden;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    transition: all ease-in-out 0.3s;
}

.ex-project .img-container {
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
}

.ex-project .img-container img {
    transition: all ease-in-out 0.3s;
}

.ex-project:hover .img-container img {
    transform: scale(1.2);
}

.lead-form-section {
    background-color: var(--tertiary-500);
}

.lead-form-section .lead-form-section-left {
    padding: 64px 64px 64px 100px;
}

.form-control,
.form-select {
    height: 52px;
    background-color: var(--tertiary-300);
    border: none;
    border-bottom: 1px solid var(--tertiary-700);
    font-family: var(--secondary-font);
    border-radius: 0px;
}

.form-check-label {
    font-family: var(--secondary-font);
    font-size: 14px;
}

.cta .cta-section {
    padding: 64px 90px;
    background-image: url('../asset/cta-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta .cta-section h2 {
    font-size: 32px;
}

.footer {
    background-color: var(--primary-800);
    padding-top: 32px;
    padding-bottom: 96px;
}

.footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.footer .msg,
.footer .copyright,
.footer .footer-rera {
    color: var(--primary-300);
    margin: 0px;
    font-family: var(--secondary-font);
}

.footer .footer-rera {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 4px;
    font-size: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid var(--primary-400);
}

.footer .copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    font-size: 13px;
    padding-top: 16px;
    padding-bottom: 8px;
    border-top: 1px solid var(--primary-400);
}

.footer .copyright a {
    display: inline;
    color: var(--tertiary-500);
    text-decoration: underline;
}

.footer .copyright a:hover {
    color: var(--surface-50);
}

.modal-content {
    border: none;
    border-radius: 0px;
    background-color: var(--tertiary-100);
}

/* navbar scroll */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 16px 0px;
    /* Initial transparent background */
}

.navbar-scrolled {
    background-color: var(--primary-500) !important;
    /* Change to your desired background color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional: adds a subtle shadow */
}

/* Responsive styles */
.navbar-toggler-icon {
    background: none !important;
    color: var(--surface-50);
    font-size: 32px;
    padding: 0px;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.owl-theme .owl-nav {
    position: absolute;
    margin: 0px;
    bottom: -62px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background: var(--surface-50);
    font-size: 24px;
    line-height: 24px;
    padding: 7px 15px !important;
    border-radius: 32px;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span{
    position:relative;
    bottom:2px;
}
.amenities .col-md-5 {
    position: relative;
}
.amenities .col-md-5 img {
    transition: opacity 0.5s ease;
}
.amenities .col-md-5 img.fade {
    opacity: 0;
}
@media only screen and (max-width: 1024px) {
    .hide-mobile-tablet {
        display: none !important;
    }
}

@media only screen and (max-width: 992px) {
    .navbar-toggler-icon{
        display: flex;
        justify-content: center;
        align-items: center;
        height:32px;
        width:32px;
    }
    .navbar-toggler{
        width:32px;
        padding:0px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 764px) {
    .hero-content h1 {
        font-size: 30px;
        margin-top: 32px;
    }

    .hero-content h6 {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

    .mb-2-mob {
        margin-bottom: 24px !important;
    }

    .mt-2-mob {
        margin-top: 24px !important;
    }

    .width-100-mob {
        width: 100% !important;
    }

    .map .map-left .map-point .point {
        width: 100% !important;
    }

    .cta .cta-section {
        padding: 32px;
    }

    body {
        padding-bottom: 56px;
    }

    .footer {
        padding-bottom: 32px;
    }

    .float-btn,
    .float-btn-int {
        top: auto;
        bottom: 0;
        width: 50%;
        height: 56px;
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 0;
        box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .float-btn {
        right: 0;
    }

    .float-btn-int {
        left: 0;
    }

    .float-btn:hover,
    .float-btn-int:hover {
        transform: none;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 68px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h6 {
        font-size: 16px;
    }

    .map .map-left,
    .amenities .amenities-right {
        padding: 32px;
    }

    .lead-form-section .lead-form-section-left {
        padding: 32px;
    }

    .usp h5{
        font-size: 16px;
    }

    .footer .footer-top {
        flex-direction: column;
        align-items: start;
        row-gap: 24px;
    }
}

@media only screen and (max-width: 416px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h6 {
        font-size: 16px !important;
    }

    .map .map-left,
    .amenities .amenities-right {
        padding: 24px !important;
    }

    .lead-form-section .lead-form-section-left {
        padding: 24px !important;
    }
}



.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in.show {
    opacity: 1;
}

.rotate-icon {
    display: inline-block;
    animation: rotateIn 0.3s ease-in-out;
}

@keyframes rotateIn {
    0% {
        transform: rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

input[readonly] {
    cursor: pointer;
}

label.error {
    color: red;
    font-size: 12px;
    font-weight: 300;
}

#pageloader {
    background: rgba(255, 255, 255, 0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999999;
    top: 0;
}

#pageloader img {
    left: 50%;
    width: 100px;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 50%;
}





/*custom style*/
.hero-main-row{
    margin-top:100px;
}

.hero-usp-row{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 24px;
}

.usp-pill{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(212,205,187,0.4);
    background: rgba(49,51,30,0.55);
    backdrop-filter: blur(4px);
    color: var(--tertiary-50);
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    white-space: nowrap;
}

.usp-pill.highlight{
    background: var(--tertiary-500);
    color: var(--primary-800);
    border-color: var(--tertiary-500);
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-main-row{
        margin-top: 140px;
    }
    .usp-pill{
        font-size: 13px;
        padding: 8px 12px;
        white-space: normal;
    }
}