*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion';
  src: url('../font/Minion-3-display/minion-3-display-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion';
  src: url('../font/Minion-3-display/minion-3-display-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
    --font-primary: "Montserrat";
    --heading-font: "Minion";
    --theme-color: #F2EDE6;
    --primary-color: #9A7238;
    --accent-color: #222222;
    --black-color: #000000;
    --white-color: #FFFFFF;
}
body{
    font-family: var(--font-primary);
    font-size: 16px;
    background-color: var(--theme-color);
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--heading-font);
}
p{
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 1%;
    text-align: justify;
}
.heading{
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: 2%;
    color: #222222;
    margin-bottom: 0;
}
.small-heading {
    font-family: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: var(--primary-color);
    display: block;
}
.small-heading img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.section-padding{
    padding: 100px 0;
}
.section-header-width{
    max-width: 400px;
    text-align: center;
    margin: auto;
}
.btn{
    padding: 10px 40px;
    background-color: var(--primary-color);
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.7s ease;  
    animation: btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-pulse {
    0%{
        box-shadow: 0 0 0 0 rgb(170 130 50 / 80%);
    }
    50% {
        box-shadow: 0 0 0 0 rgb(170 130 50 / 50%);
    }
     100% {
       box-shadow: 0 0 0 10px rgba(160, 120, 40, 0);
    }
}
.btn:hover{
    background-color: #392300;
    color: var(--white-color);
    transition: background-color 0.7s ease;
}
/*Header CSS Start*/
header {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
header.is-sticky {
    position: fixed;
    top: 0;
    background-color: #392300;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    padding: 7px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-ivr a {
    background: #ffffff57;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    padding: 4px 30px 4px 4px;
    color: var(--black-color);
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
    letter-spacing: 4%;
}
header.is-sticky .header-ivr a {
    color: var(--white-color);
}
.header-ivr a span.call {
    display: flex;
    width: 39px;
    height: 39px;
    background-color: var(--primary-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.logo img {
    width: 170px;
    height: 60px;
    object-fit: contain;
}
header.is-sticky .logo img {
    filter: brightness(0) invert(1);
}
.menu-outer{
  background: #ffffff57;
  border-radius: 100px;
  padding: 4px 30px 4px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.menu-outer a {
    background: var(--primary-color);
    padding: 10px 15px;
    display: flex;
    border-radius:100px;
    color: var(--white-color);
    text-decoration: none;
    gap: 8px;
    align-items: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    letter-spacing: 4%;
    text-transform: uppercase;
}
.menu-outer a span.call img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}
.menu-outer img.bar {
    width: 18px;
    height: 15px;
    cursor: pointer;
    filter: brightness(1) invert(1);
}
header.is-sticky .menu-outer img.bar{
    filter: brightness(0) invert(1);
}
.menu-outer + .menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.menu-outer + .menu.menu-active {
    right: 0;
}
body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.main-menu img {
    padding: 40px 40px 0;
}
.menu-list {
    display: flex;
    flex-direction: column;
    padding: 40px;
    list-style: none;
    margin-bottom: 0;
}
.menu-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.menu ul.menu-list li.menu-item a {
    font-size: 20px;
    font-family: var(--heading-font);
    color: var(--black-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.close-menu-box {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}
.close-menu-box img{
    width: 15px;
    height: 15px;
}
/*Header CSS End*/

/*Hero Section CSS Start*/
.hero-section{
    height: 100vh;
    position: relative;
}
.banner-image {
    height: 100%;
    width: 100%;
    position: relative;
}
.banner-image img {
    width: 100%;
    height: 100%;
    object-position: bottom;
    object-fit: fill;
}

.left-content, .right-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
 .left-content{
    left: 10%;
 }
 .right-content {
    right: 14.5%;
 }
.left-content:before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 115px;
    height: 2px;
    background-color: var(--black-color);
}
.right-content:before{
    content: '';
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 115px;
    height: 2px;
    background-color: var(--black-color);
}
.right-content:after{
    content: '';
    position: absolute;
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: var(--black-color);
    border-radius: 50%;
}
.left-content:after {
     content: '';
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: var(--black-color);
    border-radius: 50%;
}


.left-content h2,  .right-content h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    letter-spacing: 4%;
    margin-bottom: 0;
    color: var(--black-color);
    text-align: center;
}

.left-content h2 span, .right-content h2 span {
    display: block;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2%;
}
.center-content{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.center-content img {display: block;margin: 0 auto 20px;width: 15px;height: 20px;}
.center-content p {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 15px;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 0;
}
/*Hero Section CSS End*/

/*Overview Section CSS Start*/
section.overview-section {
    background-image: url(../images/overview-back.webp);
    position: relative;
    overflow: hidden;
}
section.overview-section::before{
    content: '';
    position: absolute;
    right: -20%;
    top: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(50% 50% at 50% 50%, rgb(227 151 40 / 50%) 0%, rgba(242, 237, 230, 0) 100%);
    opacity: 0.5;
    z-index: 1;
}
section.overview-section::after{
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 379px;
    height: 248px;
    background-image: url('../images/tropic-leaf.webp');
    background-repeat: no-repeat;
        z-index: -1;
}
.overview-content {
    padding-left: 80px;
}

.overview-content p{
    margin: 30px 0;
}
.overview-image-first img {
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}
.overview-image-second img {
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
}
/*Overview Section CSS End*/

/*About Section CSS Start*/
.about-section{
    background-image: url(../images/about-stats.webp);
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}
.about-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg,rgba(0, 0, 0, 1) 0%, rgba(23, 22, 21, 0.19) 51%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.about-section .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}
.about-stats {
    float: right;
    max-width: 400px;
}
.about-stats h3{
    color: var(--white-color);
}
.about-stats ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 30px 0;
}
.about-stats ul li {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 2%;
    width: calc(50% - 25px);
    color: var(--white-color);
}
.about-stats ul li span{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    display: block;
}
/*About Section CSS End*/

/*Highlight Section CSS Start*/
.hightlight-section {
    background-image: url(../images/overview-back.webp);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hightlight-section::before{
    content: '';
    position: absolute;
    right: -20%;
    top: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(50% 50% at 50% 50%, rgb(227 151 40 / 50%) 0%, rgba(242, 237, 230, 0) 100%);
    opacity: 0.5;
    z-index: -1;
}
.hightlight-section::after{
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 379px;
    height: 248px;
    background-image: url('../images/tropic-leaf.webp');
    opacity: 0.5;
    background-repeat: no-repeat;
    z-index: -1;
}
.highlighted-points ul {
    max-width: 960px;
    margin: 80px auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}
.highlighted-points ul li {
    width: calc(50% - 20px);
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    padding-left: 40px;
    position: relative;
}
.highlighted-points ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-image: url('../images/leaf.webp');
    background-repeat: no-repeat;
    background-size: contain;
}
/*Highlight Section CSS End*/

/*Price Section CSS Start*/
.price-section{
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.price-section:before{
    content: '';
    position: absolute;
    left: -5%;
    bottom: 0%;
    width: 379px;
    height: 248px;
    background-image: url('../images/tropic-leaf.webp');
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
}
.price-section:after{
    content: '';
    position: absolute;
    right: -5%;
    bottom: 0%;
    width: 379px;
    height: 248px;
    background-image: url('../images/tropic-leaf.webp');
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
    transform: rotateY(180deg);
}
section.price-section .section-header span.small-heading {
    color: var(--white-color);
}
section.price-section .section-header h3.heading {
    color: var(--white-color);
}
section.price-section .section-header span.small-heading img, section.location-section .section-header span.small-heading img  {
    filter: brightness(0) invert(1);
}
.price-row {
    margin-top: 60px;
}
.price-box {
    background: #F2EDE6;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #F2EDE680;
    text-align: center;
}
.price-box h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: 4%;
    color: var(--primary-color);
    margin-bottom: 0;
    position: relative;
    padding: 20px 0;
}
.price-box h2:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(242, 237, 230, 0.5) 0%, rgba(154, 114, 56, 0.5) 50%, rgba(242, 237, 230, 0.5) 100%);
}
.price-box h2:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(242, 237, 230, 0.5) 0%, rgba(154, 114, 56, 0.5) 50%, rgba(242, 237, 230, 0.5) 100%);
}
.price-box h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.price-box ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.price-box ul li {
    display: flex;
    justify-content: space-between;
    font-family: var(--primary-color);
    line-height: 24px;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #9A7238;
    margin-bottom: 15px;
}

.price-box ul li span {
    font-family: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #9A7238;
}
.price-box ul li strong{
     font-size: 16px;
}
/*Price Section CSS End*/
/*Amenities Section CSS End*/
section.amenities-section .container-fluid {
    padding: 0;
    overflow: hidden;
}
.amenities-image-wrap {
    /* height: 100vh; */
    position: relative;
    background-color: var(--primary-color);
}
.amenities-image-wrap img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: bottom;
    transition: opacity 0.10s ease;
}
.amenities-image-wrap .amenities-img.fading {
    opacity: 0;
     transition: opacity 0.10s ease;
}
.amenities-content {
    height: 100%;
    background: #F2EDE6;
    padding: 70px;
    position: relative;
    z-index: 1;
}
.amenities-content:after{
    content: '';
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 379px;
    height: 248px;
    background-image: url('../images/tropic-leaf.webp');
    background-repeat: no-repeat;
    z-index: -1;
    transform: rotateY(180deg);
    opacity: 0.5;
}
.amenities-content .section-header {
    margin-bottom: 50px;
}
ul.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.amenities-list li.amenity-item {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 2%;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    cursor: pointer;
}
ul.amenities-list li.amenity-item.active {
    font-family: var(--primary-color);
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    color: var(--primary-color);
    transition: all 0.35s ease;
}
/*Amenities Section CSS End*/

/*Floor-Plan Section CSS Start*/
.floor-plan-section{
    background-color: #F2EDE6;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.floor-plan-section::before{
    content: '';
    position: absolute;
    right: -20%;
    top: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(50% 50% at 50% 50%, rgb(227 151 40 / 50%) 0%, rgba(242, 237, 230, 0) 100%);
    opacity: 0.5;
    z-index: -1;
}
.floor-plan-section:after{
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 379px;
    height: 248px;
    background-image: url('../images/tropic-leaf.webp');
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}
.floor-plan-tabs {
    max-width: 750px;
    margin: 30px auto;
}
.floor-plan-tabs .plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.floor-plan-tabs .plan-tabs .plan-tab {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    background-color: transparent;
    border: 1px solid #F2EDE6;
    border-radius: 100px;
    padding: 7px 25px;
    color: var(--primary-color);
    transition: border 0.35s ease;
}
.floor-plan-tabs .plan-tabs .plan-tab.active, .floor-plan-tabs .plan-tabs .plan-tab:hover{
     border: 1px solid #9A7238;
}
.plan-image-wrap {
    margin: 40px 0;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
}
.plan-image-wrap img {
    width: 100%;
    border-radius: 10px;
    filter: blur(4px);
    transition: opacity 0.3s ease;
}
.plan-image-wrap img.fading{
     opacity: 0;
}
/*Floor-Plan Section CSS End*/

/*Location Section CSS Start*/
.location-section{
    background-color: var(--primary-color);
    z-index: 1;
    position: relative;
}
.location-section span.small-heading {
    color: var(--white-color);
}
.location-section h3.heading {
    color: var(--white-color);
}
.location-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.header-btn a.btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 700;
    animation: whitebtn-pulse 2.5s ease-in-out infinite;
}
@keyframes whitebtn-pulse {
    0%{
        box-shadow: 0 0 0 0 rgb(255 255 255 / 80%);
    }
    50% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 50%);
    }
     100% {
       box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}
.map-connectivity {
    background: #F2EDE60D;
    border-radius: 15px;
    overflow: hidden;
}
.map-connectivity .map-connectivity-head {
    background: var(--white-color);
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
}
.map-connectivity-body{
     padding: 30px;
}
.map-connectivity-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.map-connectivity-row:last-child{
    margin-bottom: 0;
}
.location h4, .drive h4  {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: var(--white-color);
    margin-bottom: 0;
}
.map-connectivity-head .location h4, .map-connectivity-head .drive h4 {
    color: var(--primary-color);
    font-weight: 700;
}
.location-map {
    height: 340px;
}
.location-map img {
       height: 100%;
       width: 100%;
       object-fit: cover;
       border-radius: 15px;
       position: relative;
}
/*Location Section CSS End*/

/*Gallery Section CSS End*/

.gallery-section {
    position: relative;
    overflow: hidden;
    background-color: #F2EDE6;
}
.gallery-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-left: 15%;
    cursor: grab;
    user-select: none;
}
.gallery-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.gallery-slide {
    flex: 0 0 70%;
    scroll-snap-align: start;
    position: relative;
}
.gallery-slide a {
    display: block;
}
.gallery-slide img{
    height: 460px;
    width:100%;
    object-fit: cover;
    border-radius: 15px;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.gallery-nav button {
    width: 48px;
    height: 48px;
    background-color: #9A7238;
    border: 0;
    border-radius: 50%;
}

.gallery-nav button img {
    width: 8px;
    height: 15px;
}
/*Gallery Section CSS End*/

/*About Dev Section CSS Start*/
section.about-dev-section {
    padding-bottom: 100px;
    position: relative;
}

section.about-dev-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(242, 237, 230, 0.25) 0%, rgba(154, 114, 56, 0.25) 50%, rgba(242, 237, 230, 0.25) 100%);
}
.builder-logo-black {
    margin: 30px 0;
}
.about-dev-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 1%;
}
.Developer-counter h4 {
    font-size: 36px;
    line-height: 30px;
}
.Developer-counter p {
    font-size: 12px;
}
/*About Dev Section CSS End*/

/*Contact Section CSS End*/
.contact-form {
    max-width: 900px;
    margin: 70px auto auto;
    border: 1px solid #9A723826;
    background: #E9E1D733;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 70px;
}
.contact-form input {
    border: 1px solid #9A723840; 
    background-color: #FFFFFF80;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    padding: 15px 27px;
    border-radius: 100px;
}
.contact-form .form-check .form-check-input[type=checkbox] {
    padding: 0;
}
.contact-form input::placeholder {
    color: #000;
}

.contact-form .form-check label.form-check-label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 1%;
}
.contact-form button.footer-form-btn {
    border: 1px solid #9A723840;
    background-color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    padding: 15px 27px;
    border-radius: 100px;
    color: var(--white-color);
    width: 100%;
    transition: background-color 0.35s ease-out;
}
.contact-form button.footer-form-btn:hover{
    background-color: var(--black-color);
}
footer{
    background-color: var(--primary-color);
    padding: 60px 0 10px 0;
    text-align: center;
}
footer p{
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 1%;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 0;
}
footer p.rera{
    position: relative;
    padding-bottom: 30px;
}
footer p.rera:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 1px;
    width: 300px;
    background: linear-gradient(90deg, rgba(154, 114, 56, 0.25) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(154, 114, 56, 0.25) 100%);
}
footer p.disclaimer{
     font-size: 13px;
     line-height: 24px;
     position: relative;
     padding: 30px 0;
}
footer p.disclaimer:before{
     content: '';
    position: absolute;
    left: 0%;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(154, 114, 56, 0.25) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(154, 114, 56, 0.25) 100%);
}
footer p.copyright{
    font-size: 13px;
    line-height: 24px;
    padding-top: 10px;
}
footer p.copyright a {
    color: #f1ebe3;
    font-weight: 700;
}
.form-check-input:checked{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.mobile-section {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #392300;
    display: none;
    z-index: 9;
}
.mobile-section a {
    color: var(--white-color);
    font-size: 10px;
    text-decoration: none;
    width: 50%;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid var(--white-color);
}
.mobile-section a:last-child{
    border-right: 0;
}
.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 15, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity .25s ease;
}
.form-overlay.active{
    display:flex;
    opacity:1;
  }
.form-modal .contact-form {
    max-width: 500px;
    padding: 40px;
    background-color: var(--theme-color);
    position: relative;
}
.form-modal .contact-form .row {
    justify-content: center;
}
.logo-block {
    text-align: center;
    margin-bottom: 30px;
}
.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 28px;
}
label.invalid-data.existingCheck {
    background-color: transparent !important;
    font-size: 14px;
    padding-top: 10px;
}
section.builder-detail {
    position: relative;
    z-index: 1;
}
section.builder-detail:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/kusum-leaf.webp');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: bottom center;
    opacity: 0.3;
    z-index: -1;
}
.image-wrapper {
    position: relative;
}
span.artistic-impression {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: #fff;
}

.hightlight-section .tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 20px;
}
.hightlight-section .tabs button.tab-btn {
    background-color: transparent;
    border: 1px solid #9A7238;
    padding: 7px 30px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: all 0.35s ease;
}
.hightlight-section .tabs button.tab-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    opacity:0;
    display: none;
       transition: all 0.35s ease;
}
.hightlight-section .tabs button.tab-btn.active{
    background-color:  var(--primary-color);
    color:  var(--white-color);
       transition: all 0.35s ease;
}
.hightlight-section .tabs button.tab-btn.active img{
    opacity:1;
    display: inline-block;
    filter : brightness(0) invert(1);
    transition: all 0.35s ease;
}
div#panel-specifications {
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 80px auto;
}
.specificationstab-content h6 {
    font-size: 24px;
}
.specificationstab-content h3 {
    text-align: center;
    padding: 20px 0;
    font-size: 36px;
}
.specificationstab-content ul {
    list-style: none;
    padding: 0;
}
.specificationstab-content ol {
    list-style: none;
    padding: 20px;
}
.specificationstab-content ul li{
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    padding-left: 30px;
    position: relative;
}
.specificationstab-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/leaf.webp);
    background-repeat: no-repeat;
    background-size: contain;
}
a.fixedIcons.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
    border-radius: 50%;
    animation: whatsapp-btn-pulse 2.5s ease-in-out infinite;
}
@keyframes whatsapp-btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(41 167 26 / 86%);
    }
    50% {
        box-shadow: 0 0 0 0 rgb(41 167 26 / 50%);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(160, 120, 40, 0);
    }
}
a.fixedIcons.whatsapp svg {
    width: 100%;
    height: 100%;
}
.video-section {
    height: 600px;
    position: relative;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.video-section:before {
    content: "";
    background: linear-gradient(135deg, #0000009c, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.video-section-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}
.video-section-text h3 {
    font-size: 55px;
    text-align: center;
    color: var(--white-color);
    line-height: 60px;
    margin-bottom: 30px;
}
footer img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
/*Contact Section CSS End*/
@media (max-width: 1500px){
     .gallery-track {
        margin-left: 5%;
    }
    .left-content:after {
        right: -30px;
    }
    .left-content:before {
         right: -100px;
        width: 70px;
    }
    .right-content:before {
        left: -80px;
        width: 60px;
    }
    .right-content:after {
        left: -20px;
    }
}
@media (max-width: 1366px){
    ul.amenities-list li.amenity-item {
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    ul.amenities-list li.amenity-item.active {
        font-size: 26px;
    }    
    .gallery-track {
        margin-left: 8%;
    }
    .section-padding{
        padding: 60px 0;
    }
    .heading {
        font-size: 34px;
        line-height: 48px;
    }
    .location h4, .drive h4 {
    font-size: 14px;
    line-height: 16px;
    }
    .amenities-image-wrap img {
        height: 700px;
    }
    .right-content:before {
        left: -75px;
        width: 60px;
    }
    .left-content:before {
        right: -90px;
        width: 60px;
    }
    .price-box h3 {
        font-size: 16px;
    }
}
@media (max-width: 1280px){
    .left-content h2, .right-content h2 {
        font-size: 46px;
    }
    .left-content:before {
        right: -50px;
    }
     .left-content:after {
        right: -15px;
    }
}
@media (max-width: 991px){
    .container{
        max-width: 100%;
    }
    .left-content::before, .left-content:after, .right-content:before, .right-content:after{
        display: none;
    }
}
@media (max-width: 768px){
    a.fixedIcons.whatsapp{
        display: none;
    }
    p {
        font-size: 14px;
        line-height: 24px;
    }
    .btn {
        padding: 6px 30px;
        font-size: 14px;
        line-height: 24px;
        margin: auto;
        display: block;
        width: max-content;
    }
    .logo img {
        width: 120px;
        height: 50px;
        object-fit: contain;
    }
    .hero-section {
        height: 100%;
        position: relative;
    }
    .banner-image {
        height: 100%;
    }
    .banner-image img{
        object-fit: cover;
        height: 525px;
    }
    .hero-section .container {
        background-color: #392300;
        padding: 30px 20px 40px;
        text-align: center;
    }
    .left-content, .right-content, .center-content {
        position: relative;
        left: initial;
        right: initial;
        top: initial;
        bottom: initial;
        transform: none;
    }
   .right-content {
        border: 1px solid #fff;
        background-color: #f2ede6;
        border-radius: 15px;
        margin-bottom: 30px;
        padding: 10px 0;
    }
    
    .right-content h2 {
        font-size: 36px;
        font-weight: 500;
        color: #332000;
    }
    .left-content h2 span, .right-content h2 span{
        display: block;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .left-content h2{
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 500;
        color: var(--white-color);
    }
    span.small-left-heading {
        color: #f2ede6;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 5px;
        display: block!important;
        position: relative;
        background-color: #332000;
        z-index: 1;
        margin-bottom: 15px;
    }
    span.small-left-heading:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -15px;
        transform: translateX(-50%);
        height: 1px;
        width: 300px;
        background: linear-gradient(90deg, rgb(154 114 56 / 0%) 0%, rgb(255 255 255 / 58%) 50%, rgb(154 114 56 / 0%) 100%);
    }
    .center-content img {display: inline-block;vertical-align: middle;margin-bottom: 0;margin-right: 10px;}
.center-content p {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
    .header-ivr, .menu-outer a {
        display: none;
    }   
    .menu-outer {
        padding: 12px;
    }
    
    .overview-image-first {
        display: none;
    }
    .section-padding {
        padding: 40px 0;
    }
    .menu-item{
        padding: 10px 0;
    }
    .menu ul.menu-list li.menu-item a {
        font-size: 16px;
    }
    .overview-image-second img {
        height: 250px;
        width: 100%;
    }
    .overview-content {
        padding-left: 0;
        padding-top: 40px;
    }
    .heading {
        font-size: 26px;
        line-height: 36px;
        text-align: center;
    }
    .small-heading{
        text-align: center;
    }
    .overview-content p {
        margin: 20px 0;
    }
    .about-section {
        height: auto;
        padding-top: 100px;
        background-position: left;
    }
    .about-section:before {
        background: linear-gradient(0deg, rgb(0 0 0 / 94%) 0%, rgb(23 22 21 / 43%) 51%, rgb(0 0 0 / 55%) 100%);
    }
    .about-section .container {
        height: auto;
    }
     .about-stats {
        padding: 60px 0 40px 0;
    }
    .about-stats h3{
        position: absolute;
        top: 50px;
        left: 0;
    }
    .aboutsection-mobile-image {
        height: 350px;
    }
    .aboutsection-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }
    .about-stats ul {
        gap: 20px;
        justify-content: center;
    }
    .about-stats ul li {
        font-size: 24px;
        line-height: 24px;
        text-align: center;
    }
    .about-stats ul li span {
        font-size: 12px;
        line-height: 24px
    }

   .highlighted-points ul {
      margin: 40px auto;
      gap: 15px;
   }
   .highlighted-points ul li {
        font-size: 14px;
        line-height: 24px;
        padding-left: 35px;
        width: 100%;
    }
    .highlighted-points ul li:before {
        width: 24px;
        height: 24px;
    }
    .price-section:after{
        display: none;
    }
    .price-section:before {
        bottom: -10%;
    }
    .price-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    .price-box h3 {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .price-box h2 {
        font-size: 24px;
        line-height: 20px;
    }
    .amenities-image-wrap {
         height: 250px;
    }
    .amenities-image-wrap img {
        height: 100%;
    }
    .amenities-content .section-header {
        margin-bottom: 20px;
    }
    .amenities-content {
        padding: 40px 25px;
    }
     ul.amenities-list li.amenity-item {
        font-size: 14px;
        line-height: 36px;
        margin-bottom: 0;
    }
    ul.amenities-list li.amenity-item.active {
        font-size: 20px;
    }
    .floor-plan-tabs .plan-tabs{
        display: block;
    }
    .floor-plan-tabs .plan-tabs button.plan-tab {
        width: 100%;
        border: 1px solid #9A7238;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 20px;
    }
    .floor-plan-tabs .plan-tabs .plan-tab.active, .floor-plan-tabs .plan-tabs .plan-tab:hover{
        background-color: var(--primary-color);
        color: var(--white-color);
    }
    .plan-image-wrap{
        height: 250px;
        padding: 20px;
    }
    .location-section .section-header, .map{
        margin-bottom: 20px;
    }
    .location-map {
        height: 200px;
        margin-bottom: 30px;
    }
    .map-connectivity .map-connectivity-head{
        padding: 10px;
    }
    .map-connectivity-body {
        padding: 20px 10px;
    }
    .location-map img {
        margin-top: 0;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    .location h4, .drive h4 {
        font-size: 14px;
        line-height: 18px;
    }
    .gallery-section {
        padding-bottom: 100px;
    }
    .gallery-track {
        margin-left: 20px;
    }
    .gallery-nav button {
        width: 35px;
        height: 35px;
    }
    .gallery-nav {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
    .gallery-slide img {
        height: 250px;
    }
    .builder-logo-black {
        margin: 20px auto;
        display: block;
    }
    section.about-dev-section .section-header {
        margin-bottom: 20px;
    }
    section.about-dev-section {
        padding-bottom: 40px;
    }
    .about-dev-content p {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-form {
        margin: 40px auto auto;
        padding: 40px 20px;
    }
    footer p.rera {
        padding-bottom: 20px;
    }
    footer p.disclaimer{
        padding: 20px 0;
    }
    footer p.copyright {
        font-size: 10px;
    }
    .mobile-section{
        display: flex;
    }
    .form-modal .contact-form {
        max-width: 100%;
        padding: 20px;
    }
    .logo-block img {
        width: 100px;
    }
    .contact-form input, .contact-form button.footer-form-btn{
        font-size: 14px;
        padding: 10px 15px;
    }
    .hightlight-section .tabs {
    display: block;
}

.hightlight-section .tabs button.tab-btn {
    width: 100%;
    border: 1px solid #9A7238;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
}

.specificationstab-content ul li {
    font-size: 14px;
    line-height: 24px;
    padding-left: 35px;
    width: 100%;
}

div#panel-specifications {
    margin: 40px  auto;
}

.specificationstab-content h3 {
    font-size: 30px;
    padding: 0 0 20px;
}
footer {
    padding: 60px 0 40px 0;
}
.video-section {
    height: 350px;
}
.video-section-text {
    width: 100%;
}
.video-section-text h3 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 25px;
}
}