@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


/* font-family: "Playfair Display", serif; */
/* font-family: "Bebas Neue", sans-serif; */
* {
    font-family: "Spline Sans", sans-serif;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.header {
    position: fixed;
    top: 0px;
    width: 100%;
    padding-block: 10px;
    padding-inline: 20px;
    z-index: 999;
    background: url(../images/top-bg.png) repeat-x;
    height: 100dvh;
}

.banner {
    height: 100dvh;
    overflow: hidden;
}

.video-banner {
    height: 506px;
    border-radius: 15px;
}

video {
    /* position: absolute;
    top: 50%;
    left: 50%; */
    width: 100%;
    /* height: 100dvh; */
    object-fit: cover;
    /* transform: translate(-50%, -50%);
    z-index: -1; */
}

/* responsive menu  */
.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 0px;
    padding: 0px;
}

.menu ul li {
    list-style-type: none;
    /* padding-block: 15px; */
    line-height: 77px;
}

.dropdown-content li {
    padding-block: 0px !important;
}

.menu ul li a {
    text-decoration: none;
    color: #FFFF;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

#mySidenav {
    /* height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.9;
    overflow-x: hidden; */
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.92);
    overflow-x: hidden;
    opacity: 0;
    transform: translateX(-100%);
    /* transition: opacity 1.3s ease 0.4s, transform 1.3s ease 0.4s; */
    transition: opacity 2s ease, transform 2s ease;
    z-index: 1000;
    pointer-events: none;
}

#mySidenav.active {
    width: 25%;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

#mySidenav2 {
    /* height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.9;
    overflow-x: hidden; */
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.92);
    overflow-x: hidden;
    opacity: 0;
    transform: translateX(-100%);
    /* transition: opacity 1.3s ease 0.4s, transform 1.3s ease 0.4s; */
    transition: opacity 1s ease, transform 1s ease;
    z-index: 1000;
    pointer-events: none;
}

#mySidenav2.active {
    width: 25%;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.sidenav .desk-openmenu,
.sidenav .main-menu {
    opacity: 0;
    /* transform: translateX(-10px);
  transition: opacity 1.3s ease 0.4s, transform 1.3s ease 0.4s; */
    transform: translateX(-40px);
    /* transition: opacity 2s ease 0.8s, transform 2s ease 0.8s; */
    transition: opacity 2s ease, transform 2s ease;
}

/* After sidenav opens */
.sidenav.active .desk-openmenu,
.sidenav.active .main-menu {
    opacity: 1;
    transform: translateX(0);
}

.sidenav .logo img {
    padding-inline: 10px;
}

.sidenav a {
    padding: 8px 0px;
    text-decoration: none;
    font-size: 18px;
    color: #8d8d8d;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s;
}

.sidenav ul .active a {
    color: #ffff;
}

.desk-title {
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.main-menu ul {
    padding: 0px;
}

.main-menu p {
    color: #8d8d8d;
}

.mobopen-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 9px;
}

.mob-close {
    margin-right: 30px;
}

.mob-openmenu {
    margin-left: 30px;
    margin-top: 30px;
}

.sidenav li {
    list-style-type: none;
}

.hamburger span {
    cursor: pointer;
}

.hamburger span img {
    width: 50px;
    padding: 10px;
    filter: brightness(0) invert(1);
}

.closebtn img {
    width: 50px;
    padding: 10px;
}

.closebtnmob img {
    width: 25px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desk-menu {
    margin-block: 50px;
    margin-inline: 100px;
}

.desk-openmenu {
    display: flex;
    align-items: center;
    padding-block: 10px;
    padding-inline: 22px;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* responsive end  */

/* header-2 start  */
.header-2 {
    display: none;
    position: fixed;
    top: 0px;
    width: 100%;
    /* padding-block: 9px; */
    /* padding-inline: 20px; */
    z-index: 999;
    background: #642f35;
}

.communication-top {
    background: antiquewhite;
    padding: 5px;
}

.communication-top h5 {
    margin: 0 !important;
    text-align: center;
}

.closebtn {
    cursor: pointer;
}

.header-2 .menu ul li a {
    color: #ffffff;
}

.header-2 .contact-button a {
    color: #ffffff;
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* header-2 end  */


/* common-css */
.p-0 {
    padding-inline: 0px;
}

/* .welcome section css start  */
.welcome {
    padding-block: 80px;
    position: relative;
}

.welcome-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 75px;
    color: #b5b5b5;
    margin-bottom: 30px;
    line-height: 80px;
}

.welcome-content span {
    font-family: "Playfair Display", serif;
    color: #000;
}

.welcome-content h5 {
    font-family: "Playfair Display", serif;
    margin-bottom: 0px;
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 600;
}

.side-image {
    position: absolute;
    right: 60px;
    bottom: 0px;
}

.side-image img {
    width: 220px;
}

.contact-button a {
    color: #ffff;
    text-decoration: none;
    font-weight: 600;
}

/* .welcome section css end */

/* project-list css Start  */
.project-list {
    position: relative;
    overflow-x: clip;
}

.tab-project {
    background: rgb(189 37 42 / 88%);
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

#projecttab {
    border: 0px;
    justify-content: space-evenly;
    align-items: center;
    /* padding-block: 10px; */
}

#projecttab li button {
    background: transparent;
    color: #ffff;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

#projecttab li .active::after {
    content: "";
    display: inherit;
    width: 50%;
    margin: 10px auto 0px auto;
    border-top: 3px solid #ffffff;
}

.more-det {
    position: absolute;
    top: 42%;
    right: 0px;
    background: #642F35;
    height: 78px;
    line-height: 79px;
}

.more-det a {
    padding: 30px 70px;
    text-transform: uppercase;
    color: #ffff;
    font-size: 15px;
    letter-spacing: 0.1px;
    font-weight: 600;
    text-decoration: none;
}

.pro-bigtext h1 {
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 110px;
    position: absolute;
    color: #FFF;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transform: rotate(270deg);
    top: 37%;
    left: -100px;
}

/* project-list css End  */

/* retail section Css Start  */
.retail {
    background-color: #000;
}

.retail-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #ffff;
    font-size: 37px;
    margin-bottom: 20px;
}

.retail-full {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.retail-content {
    padding-inline: 150px;
}

.retail-content p {
    color: #ffff;
    font-weight: 300;
    margin-bottom: 20px;
}

.retail-content a {
    text-transform: uppercase;
    text-decoration: none;
    color: #ffff;
    font-weight: 600;
    position: relative;
}

.retail-content a:after {
    content: "";
    display: inherit;
    position: absolute;
    width: 45px;
    height: 2px;
    background: #BD2228;
    right: -50px;
    bottom: 4px;
}

.retail-images {
    position: relative;
}

.retail-images h2 {
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 110px;
    position: absolute;
    color: #FFF;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transform: rotate(270deg);
    top: 37%;
    right: -10px;
}

/* retail section Css End  */


/* hospitality section css start  */
.hospitality {
    background-color: #ffff;
}

.hospitality-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #000;
    font-size: 37px;
    margin-bottom: 20px;
}

.hospitality-full {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hospitality-content {
    padding-inline: 150px;
}

.hospitality-content p {
    color: #444444;
    font-weight: 400;
    margin-bottom: 20px;
}

.hospitality-content a {
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    position: relative;
}

.hospitality-content a:after {
    content: "";
    display: inherit;
    position: absolute;
    width: 45px;
    height: 2px;
    background: #BD2228;
    right: -50px;
    bottom: 4px;
}

.hospitality-images {
    position: relative;
}

.hospitality-images h2 {
    text-transform: uppercase;
    font-size: 110px;
    font-family: "Bebas Neue", sans-serif;
    position: absolute;
    color: #FFF;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transform: rotate(270deg);
    top: 37%;
    left: -100px;
}

/* hospitality section css end  */


/* history section css start  */
.history {
    background: url(../images/history-overlay.jpg);
    background-repeat: no-repeat;
    background-position: center;
    /* height: 100vh; */
    padding-block: 80px;
}

.history-all {
    margin-top: 120px;
}

.history-text {
    position: relative;
}

.history-text h1 {
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 350px;
    line-height: 285px;
    margin-bottom: 50px;
    color: #FFF;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

.history-text h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #ffff;
    font-size: 37px;
    margin-bottom: 20px;
}

.history-text p {
    color: #ffff;
    font-weight: 400;
    margin-bottom: 20px;
}

.history-text a {
    text-transform: uppercase;
    text-decoration: none;
    color: #ffff;
    font-weight: 600;
    position: relative;
}

.history-text a:after {
    content: "";
    display: inherit;
    position: absolute;
    width: 45px;
    height: 2px;
    background: #BD2228;
    right: -50px;
    bottom: 4px;
}

.history-text {
    margin-bottom: 10px;
}

/* history section css end  */

/* resources section css start  */
.resources {
    padding-block: 80px;
}

.section-tit h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    text-align: center;
    font-size: 49px;
    line-height: 37px;
}

.section-tit {
    margin-bottom: 40px;
}

.resources-card img {
    margin-bottom: 15px;
}

.resources-card h6 {
    font-size: 19px;
    color: #3B4357;
    font-weight: 500;
    margin-bottom: 0px;
}

/* resources section css end  */

/* footer section css start  */
.footer {
    background: #000;
}

.footer-top {
    padding-block: 40px;
    border-bottom: 1px solid #3f3f3f;
}

.footer-links h4 {
    color: #ffff;
    font-size: 18px;
}

.footer-links h4 a {
    color: #fff;
    text-decoration: none;
}

.footer-links ul {
    padding: 0px;
    margin-bottom: 0px;
}

.footer-links ul li {
    list-style-type: none;
    line-height: 34px;
}

.footer-links ul li a {
    color: #ffff;
    text-decoration: none;
}

.footer-alllinks {
    display: flex;
    justify-content: space-between;
}

.social-links {
    line-height: 45px;
    float: right;
}

.social-links a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    background: #ffff;
    border-radius: 50px;
    margin-inline: 7px;
}

.footer-middle {
    padding-block: 30px;
    border-bottom: 1px solid #3f3f3f;
}

.footer-contact-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-con-icon i {
    font-size: 40px;
    color: #ffff;
    margin-right: 10px;
}

.footer-con-content h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffff;
    font-weight: 300;
    margin-bottom: 1px;
}

.footer-con-content h4 {
    margin-bottom: 0px;
}

.footer-con-content h4 a {
    text-decoration: none;
    color: #ffff;
    font-weight: 600;
}

.copyright p {
    margin-bottom: 0px;
    color: #868686;
}

.copyright p a {
    text-decoration: none;
    color: #868686;
}

.footer-bottom {
    padding-block: 20px;
}

/* footer section css end */

/* fixed footer start */

.bottom-menu-fixed {
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    width: 100%;
}

.top-menu {
    background: #FFF;
    text-align: center;
    padding: 0px;
}

.top-menu-pad {
    padding: 15px 0px;
}

.top-menu a {
    text-decoration: none;
    color: #595758;
    font-size: 12px;
    font-weight: 600;
}

.top-menu img {
    width: 22%;
}

.bottom-menu {
    background: #642F35;
    text-align: center;
    padding: 8px 0px;
}

.bottom-menu img {
    width: 22%;
}

.bottom-menu a {
    text-decoration: none;
    color: #FFF;
    font-size: 13px;
}

.bor-left {
    border-left: 1px solid #c9c9c9;
}

.bor-right {
    border-right: 1px solid #c9c9c9;
}

.wi-100 {
    width: 100%;
}

/* fixed footer end */

.menu-img img {
    height: 100vh;
}

#floor-tab .nav-item .nav-link {
    text-transform: uppercase;
    background: none !important;
    padding-inline: 0px;
    padding-block: 5px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
    color: #642F35;
}

#floor-tab .nav-item .active {
    border-bottom: 3px solid #642F35;
}

#floor-tab {
    justify-content: center;
    gap: 30px;
}

#current-tab .nav-item .nav-link {
    text-transform: uppercase;
    background: none !important;
    padding-inline: 0px;
    padding-block: 5px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
    color: #642F35;
}

#current-tab .nav-item .active {
    border-bottom: 3px solid #642F35;
}

#current-tab {
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.error,
.autopop-error {
    color: red;
}

#autopop-form #mandatory_checkbox-error {
    font-size: 12px;
    position: relative;
    top: -45px;
    left: 30px;
}

#mandatory_checkbox-error {
    font-size: 10px;
    position: relative;
    top: -19px;
    left: 18px;
}

@media(min-width:1000px) and (max-width:1600px) {
    .history-text h1 {
        font-size: 350px;
    }
}

/* media quiry css end  */

.project-det {
    gap: 6px;
    display: flex;
    flex-direction: column;
}

/* Project details Page Css Start  */
.project-detbanner {
    margin-top: 145px;
}

.blink-text {
    color: #184432;
    /* pink/red shade */
    animation: blink 2.5s infinite;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Blinking effect */
@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.small-banner {
    margin-bottom: 10px;
}

.big-banner img,
.small-banner img,
.small-banner-2 img {
    border-radius: 10px;
    min-height: 250px;
}

.small-banner-2 img {
    min-height: 245px !important;
}

.pi-5 {
    padding-inline: 5px;
}

.project-det h1 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 50px;
    color: #3B4357;
    margin-bottom: 10px;
}

.project-det p {
    font-weight: 400;
    color: #3B4357;
    margin-bottom: 20px;
}

.ptb-50 {
    padding-block: 50px;
}

.det-button {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.det-button .red {
    color: #ffff;
    display: inline-block;
    line-height: 52px;
    font-size: 14px;
    height: 52px;
    width: 100%;
    text-decoration: none;
}

.det-button .white {
    width: 100%;
    color: #642F35;
    display: inline-block;
    line-height: 52px;
    font-size: 14px;
    height: 52px;
    width: 100%;
    text-decoration: none;
}

.red-button {
    background: #642F35;
    text-align: center;
    /* line-height: 52px;
    height: 52px; */
    border: 1px solid #642F35;
}

.white-button {
    background: #ffff;
    text-align: center;
    /* line-height: 52px;
    height: 52px; */
    border: 1px solid #642F35;
}

.threesixty-button {
    background: #642F35;
    text-align: center;
    border: 1px solid #ffff;
    width: 235px;
    margin: 0px auto;
}

.project-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-item {
    margin-bottom: 10px;
}

.pro-item h4 {
    font-size: 13px;
    color: #818694;
    font-weight: 400;
}

.pro-item h5 {
    font-size: 17px;
    color: #3B4357;
    font-weight: 600;
}

.pro-features {
    padding-block: 80px;
    background: #F5F6F7;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.grid-item {
    background-color: #ffff;
    padding: 50px 10px;
    text-align: center;
    min-height: 220px;
}

.features-grid .grid-item img {
    width: 70px;
    margin-bottom: 20px;
}

.features-grid .grid-item:hover h6 {
    color: #642f35;
}

.features-grid .grid-item:hover {
    box-shadow: 0px 0px 6px 0px #dcdcdc;
}


.features-grid .grid-item h6 {
    font-weight: 500;
    color: #9a9a9a;
    margin-bottom: 0px;
}

.pro-specification {
    padding-top: 80px;
    padding-bottom: 45px;
    background: #642F35;
}

.pro-specdetail img {
    border-radius: 6px;
    margin-bottom: 15px;
    height: 275px;
    object-fit: cover;
    width: 100%;
}

.pro-specdetail {
    color: #ffff;
}

.pro-specdetail h5 {
    font-weight: 500;
    color: #F5F6F7;
    font-size: 20px;
}

.pro-specdetail p {
    color: #ffff;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
}

.pro-specdetail {
    margin-bottom: 35px;
}

.pro-bg {
    overflow-x: clip;
}

.pro-floorplan {
    padding-block: 80px;
}

.pro-currentstatus {
    background: #F5F6F7;
    padding-block: 80px;
    overflow-x: clip;
}

.enquiry-section {
    padding-block: 80px;
}

.map-section {
    padding-block: 80px;
}

/* Faq */
.pro-faq {
    background: #F5F6F7;
    padding-block: 80px;
}

.pro-faq h2 .accordion-button {
    font-weight: 500;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    margin-bottom: 20px;
    box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
}

.accordion-button:not(.collapsed) {
    color: #642F35;
    background-color: #f7f7f7;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

/* end faq */

.form-floating input,
.form-floating select {
    height: 65px !important;
    margin-bottom: 15px;
    background: #F4F4F4 !important;
    color: #3B4357 !important;
    border-radius: 6px;
    border: 1px solid #CECECE !important;
    width: 100%;
}

.form-floating>.form-control:focus~label::after,
.form-floating>.form-select~label::after {
    position: absolute;
    inset: 1rem 0.375rem;
    z-index: -1;
    height: 1em;
    content: "";
    background-color: #F4F4F4;
}

.form-submit button {
    background: #642F35;
    color: #ffff;
    padding: 15px 50px;
    border: none;
    font-weight: 600;
    border-radius: 0px;
    text-transform: uppercase;
    width: fit-content;
}

.form-submit button:hover,
.form-submit button:focus,
.form-submit button:active {
    background: #642F35 !important;
    color: #ffff !important;
}

.footer-enquire h5 {
    margin-bottom: 20px;
    font-weight: 400;
}

.flex-direction-nav a:before,
.flex-direction-nav a:after {
    font-size: 33px !important;
}

.project-logo {
    display: flex;
    justify-content: center;
}

.pro-bg {
    height: 475px;
    background: url(../images/pro-bg.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

#carousel {
    margin-bottom: 0px !important;
}

.flexslider img {
    cursor: pointer;
}

/* #slider{
    height: 380px;
} */
#current-status .item img {
    cursor: pointer;
}

.current-status .owl-item.active {
    opacity: 1;
}

.current-status .owl-item {
    opacity: 0.3;
}

.current-status .owl-stage {
    padding-left: 0 !important;
}

.bg-none {
    background: none !important;
}

/* Project details Page Css End  */

/* project details new page  */
.pro-specification-2 {
    padding-top: 80px;
    padding-bottom: 45px;
    background: #353535;
}

.feature-list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 45px;
    padding-block: 23px;
    transition: all .3s ease-in-out;
}

.feature-list img {
    width: 65px;
}

.feature-listcon h4 {
    font-size: 22px;
    color: #353535;
    margin-bottom: 0px;
}

.feature-listcon p {
    margin-bottom: 0px;
    margin-top: 10px;
    display: none;
    transition: all .3s ease-in-out;
}

.feature-con {
    margin-inline: 55px;
}

.feature-con-2 {
    margin-left: 20px;
    margin-right: 60px;
}

.feature-list:hover>.feature-listcon p {
    display: block;
    transition: all .3s ease-in-out;
}

.feature-list:hover>.feature-listcon h4 {
    color: #642F35;
}

.features-grid-1 {
    margin-bottom: 50px;
}

.fe-img {
    border-radius: 10px;
}

.readmoreSpec {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.enquiry-float1 {
    background: #642F35;
    color: #FFF;
    position: fixed;
    right: -45px;
    color: #FFF;
    transform: rotate(-90deg);
    top: 48%;
    padding: 8px;
    z-index: 15;
    border-radius: 5px;
}

.enquiry-float1 a {
    color: #FFF;
    text-decoration: none;
    line-height: 24px;
    text-transform: uppercase;
}

/* project details new page  */


/* new css  */

.cs-item img {
    height: 370px;
    width: 100%;
    object-fit: cover;
}

.nav-item .active {
    text-transform: uppercase;
    background: none !important;
    padding-inline: 0px;
    padding-block: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #ffff;
    border-radius: 0px;
    border-bottom: 3px solid #ffff;
}

.nav-item .spectabs {
    text-transform: uppercase;
    background: none !important;
    padding-inline: 0px;
    padding-block: 5px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
    color: #ffff;
}

.spectotab .nav-item {
    margin-inline: 20px;
}

.spectotab {
    margin-bottom: 30px;
    justify-content: center;
}

.dropdown-container {
    position: absolute;
    width: 100%;
    text-align: left;
    justify-content: center;
    top: 73px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.2s ease-out;
}

.main-menu li:hover .dropdown-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@-webkit-keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

.dropdown-menu {
    width: 100%;
    gap: 45px !important;
    border: none;
    background: #f5f6f7;
}

.dropdown-menu li {
    line-height: 65px !important;
    padding-block: 0px !important;
}

.dropdown-menu li a {
    color: #000 !important;
}

.dropdown-menu li a:hover {
    color: #BD2228 !important;
}

.det-button img {
    width: 22px;
    position: relative;
    bottom: 3px;
}

.menu ul li a:hover {
    color: #BD2228;
}

.menu ul .active a:first-child {
    color: #BD2228;
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 200px;
    grid-gap: 2px;
}

.grid-gallery img {
    object-fit: cover;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.grid-gallery a:nth-child(2n):not(:last-of-type) {
    grid-row-end: span 2;
}

.gallery-section {
    padding-block: 80px;
    background: #f5f6f7;
}

.viewmore-btn {
    margin-top: 50px;
}

.viewmore img {
    width: 22px;
}

#modal-tab .nav-item .active {
    border-bottom: 3px solid #642F35;
}

#modal-tab .nav-item .nav-link {
    text-transform: uppercase;
    background: none;
    padding-inline: 10px;
    padding-block: 5px;
    margin-inline: 5px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
    color: #642F35;
}

#modal-tab {
    margin-block: 30px;
}

.small-banner-2 {
    position: relative;
}

.view-images {
    position: absolute;
    top: 0;
    display: flex;
    background: rgb(0 0 0 / 61%);
    width: 100%;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-radius: 10px;
}

.view-images h4 {
    font-size: 38px;
    font-weight: 400;
    line-height: 25px;
    color: #ffff;
}

.view-images h5 {
    color: #ffff;
}

.fa-instagram {
    font-weight: 600 !important;
}

.ellipsis-2-lines {
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    overflow: hidden;
    position: relative;
    line-height: 1.5em;
    /* Adjust based on your font size */
    max-height: 52px;
    /* 2 lines * line-height */
    padding-bottom: 1.5em;
    /* Space for the read more link */
}

.read-more {
    position: absolute;
    bottom: 0;
    /* right: 0; */
    width: 100%;
    background: #642F35;
    /* Match the background color */
    /* padding-left: 5px; */
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    display: none;
}

/* media quiry css start  */
@media(max-width:798px) {

    /* .banner{  
        height: 100vh;
    } */
    .header {
        padding-inline: 0px;
        /* height: 54dvh !important; */
        height: 30dvh !important;
    }

    .det-button {
        margin-bottom: 10px;
    }

    .threesixty-button {
        background: #642F35;
        text-align: center;
        border: 1px solid #ffff;
        width: 235px;
        margin: 0px auto;
        margin-top: 10px;
    }

    .retail-content {
        padding-inline: 40px;
        padding-block: 50px;
    }

    .hospitality-content {
        padding-inline: 40px;
        padding-block: 50px;
    }

    .welcome-content h1 {
        font-size: 33px;
        line-height: 44px;
    }

    .side-image img {
        width: 90px;
    }

    .welcome-content h5 {
        font-size: 20px;
    }

    .side-image {
        position: absolute;
        right: 10px;
        bottom: 0px;
    }

    .welcome {
        padding-block: 50px;
        position: relative;
    }

    .retail-content h2 {
        font-size: 30px;
    }

    .retail-content p {
        font-size: 15px;
    }

    .retail-content a {
        font-size: 15px;
    }

    .hospitality-content h2 {
        font-size: 30px;
    }

    .hospitality-content p {
        font-size: 15px;
    }

    .hospitality-content a {
        font-size: 15px;
    }

    .history-text h2 {
        font-size: 30px;
    }

    .history-text p {
        font-size: 15px;
    }

    .history-text a {
        font-size: 15px;
    }

    .history {
        padding-block: 50px;
    }

    .resources {
        padding-top: 50px;
        padding-bottom: 20px;
    }

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

    .section-tit {
        margin-bottom: 25px;
    }

    .history-text h1 {
        font-size: 140px;
        line-height: 120px;
        margin-bottom: 20px;
    }

    .resources-card {
        margin-bottom: 40px;
    }

    .resources-card img {
        margin-bottom: 10px;
    }

    .footer-links ul li a {
        font-size: 15px;
    }

    .footer-links h4 {
        font-size: 20px;
    }

    .footer-alllinks {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-links {
        width: 45%;
        margin-bottom: 30px;
    }

    .social-links {
        float: left;
        line-height: 43px;
    }

    .footer-top {
        padding-block: 40px;
    }

    .footer-middle {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footer-contact-div {
        display: flex;
        justify-content: start;
        gap: 6px;
        margin-bottom: 25px;
    }

    .more-det a {
        padding: 12px 15px;
        font-size: 11px;
    }

    .more-det {
        top: 40%;
        height: 36px;
        line-height: 35px;
    }

    #projecttab {
        flex-wrap: nowrap;
        padding-block: 5px;
        overflow: scroll;
    }

    #projecttab li button {
        margin-bottom: 0px;
        width: max-content;
        font-size: 11px;
    }

    #projecttab li .active::after {
        margin: 2px auto 0px auto;
        border-top: 2px solid #ffffff;
    }

    .footform-mob #mandatory_checkbox-error {
        font-size: 10px;
        position: relative;
        top: -15px;
        left: 18px;
    }

    #myMobSidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: #000;
        overflow-x: hidden;
        transition: 0.5s;
        /* padding-bottom: 30px; */
    }

    .hamburger span {
        margin-right: 10px;
        float: right;
    }

    .main-menu {
        margin-bottom: 50px;
    }

    .header-2 {
        padding-inline: 0px;
        padding-block: 10px;
    }

    .sidenav .logo img {
        padding-inline: 0px;
        width: 175px;
        filter: brightness(0) invert(1);
    }

    .footer-bottom {
        padding-bottom: 5px;
    }

    .mob-banner {
        width: 430px;
    }

    .hospitality-images h2 {
        font-size: 60px;
        position: absolute;
        top: 37%;
        left: -60px;
    }

    .retail-images h2 {
        text-transform: uppercase;
        font-size: 60px;
        position: absolute;
        top: 37%;
        right: -10px;
    }

    .pro-bigtext h1 {
        font-size: 60px;
        position: absolute;
        top: 37%;
        left: -60px;
    }

    .history-all {
        margin-top: 60px;
    }

    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 15px;
        gap: 7px;
    }

    .flex-direction-nav a:before {
        font-size: 26px !important;
    }

    .pro-features {
        padding-block: 50px;
    }

    .pro-specification {
        padding-top: 50px;
        padding-bottom: 15px;
        background: #642F35;
    }

    .pro-floorplan {
        padding-block: 50px;
    }

    .flexslider {
        margin: 0px !important;
    }

    .pro-currentstatus {
        padding-top: 50px;
        padding-bottom: 65px;
    }

    .enquiry-section {
        padding-block: 50px;
    }

    .map-section {
        padding-block: 50px;
    }

    .location-map {
        margin-bottom: 30px;
    }

    .pro-all {
        margin-top: 15px;
    }

    .pro-item {
        padding-top: 15px;
        margin-bottom: 0px;
    }

    .pro-item h5 {
        margin-bottom: 0px;
        line-height: 30px;
    }

    .pro-bhk {
        background: url(../images/bhk.jpg);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 40px;
        padding-left: 55px;
        min-height: 30px;
    }

    .pro-status {
        background: url(../images/status.jpg);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 40px;
        padding-left: 55px;
        min-height: 30px;
    }

    .pro-locat {
        background: url(../images/location.jpg);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 40px;
        padding-left: 55px;
        min-height: 30px;
    }

    .pro-rera {
        background: url(../images/rara.jpg) no-repeat center left;
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 40px;
        padding-left: 55px;
        min-height: 30px;
    }

    .pro-border {
        padding-block: 10px;
        border-bottom: 1px solid #ccc;
    }

    .project-det h1 {
        font-size: 31px;
    }

    .features-grid .grid-item img {
        width: 50px;
    }

    .project-logo {
        display: flex;
        justify-content: start !important;
    }

    .project-logo img {
        width: 125px;
        margin-bottom: 10px;
    }

    .pro-specdetail h5,
    .pro-specdetail p,
    .pro-specdetail .read-more {
        padding-inline: 25px;
    }

    .pro-bg {
        height: 250px;
        background-size: cover;
        background-position: left center;
    }

    .grid-item {
        padding: 25px 10px;
        min-height: 177px;
    }

    .model-gallery img {
        width: 26px;
    }

    .proban-slider {
        position: relative;
    }

    .ban-overlay {
        position: absolute;
        bottom: 65px;
        z-index: 10;
        padding: 10px 20px;
    }

    .ban-overlay h4 {
        font-size: 16px;
        color: #ffff;
        /* margin-bottom: 12px; */
        margin-bottom: 4px;
    }

    .ban-overlay h5 {
        font-size: 14px;
        color: #ffff;
        margin-bottom: 8px;
        font-weight: 300;
    }

    .ban-overlay h3 a {
        font-size: 20px;
        color: #ffff;
        text-decoration: none;
    }

    .project-tit span {
        font-size: 20px;
        font-weight: 700;
        color: #ffff;
    }

    .features-grid .grid-item h6 {
        font-size: 12px;
    }

    .project-info {
        display: block;
    }

    .form-submit button {
        width: 100%;
    }

    .bannermob-1,
    .bannermob-2 {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 100svh;
    }

    .bannermob-1 img,
    .bannermob-2 img {
        width: 100%;
        /* Make the image responsive */
        height: 100%;
        /* Fill the banner container height */
        object-fit: cover;
        /* Ensure the image looks good without stretching */
    }

    .pro-specdetail h5 {
        margin-top: 0px;
    }

    .specifi-1,
    .specifi-2,
    .specifi-3,
    .specifi-4,
    .specifi-5,
    .specifi-6 {
        position: relative;
        height: 41vh;
        /* height: 35vh; */
        margin-bottom: 15px;
    }

    .status-1,
    .status-2,
    .status-3,
    .status-4 {
        position: relative;
        height: 40vh;
        margin-bottom: 15px;
    }

    .status-1 {
        background: url(../images/current-status-1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .status-2 {
        background: url(../images/current-status-2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .status-3 {
        background: url(../images/current-status-1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .status-4 {
        background: url(../images/current-status-2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .project-detbanner {
        margin-top: 0px;
    }

    .pm-0 {
        padding: 0px;
    }

    #kenytChatBubble.style1 {
        bottom: 65px !important;
    }

    .pro-specdetail {
        margin-bottom: 0px;
    }

    #specifi-carousel .owl-dot {
        margin-inline: 0px;
        width: 45px;
        height: 2px;
        background: #dc3a3f;
    }

    #specifi-carousel .owl-dots {
        text-align: center;
    }

    #specifi-carousel .owl-dots .active {
        background: #ffff;
    }

    #features-carousel .owl-dot {
        margin-inline: 0px;
        width: 45px;
        height: 2px;
        background: #d2d4d6;
    }

    #features-carousel .owl-dots {
        text-align: center;
    }

    #features-carousel .owl-dots .active {
        background: #dc3a3f;

    }

    .current-status .owl-dots .active {
        background: #ffff;
    }

    .current-status .owl-dot {
        margin-inline: 0px;
        width: 45px;
        height: 2px;
        background: #d2d4d6 !important;
    }

    .current-status .owl-dots {
        text-align: center;
    }

    .current-status .owl-dots .active {
        background: #dc3a3f !important;

    }

    .project-tit .club-1 {
        font-family: "Playfair Display", serif;
        font-size: 30px;
    }

    .pro-specification-2 {
        padding-top: 50px;
        padding-bottom: 45px;
        background: #353535;
    }

    .feature-con {
        margin-inline: 10px;
    }

    .feature-list {
        gap: 20px;
    }

    .feature-listcon h4 {
        font-size: 18px;
    }

    .feature-list img {
        width: 60px;
    }

    .feature-con-2 {
        margin-inline: 10px;
    }

    .bg-none {
        background: url(../images/top-bg.png) repeat-x !important;
    }

    .features-grid-1 {
        margin-bottom: 0px;
    }

    .project-detbanner,
    .project-details,
    .pro-features,
    .pro-specification,
    .pro-bg,
    .pro-floorplan,
    .pro-currentstatus,
    .enquiry-section,
    .map-section,
    .gallery-section {
        /* height: 100svh; */
    }

    .project-details,
    .pro-features,
    .pro-specification,
    .pro-bg,
    .pro-floorplan,
    .pro-currentstatus,
    .enquiry-section,
    .map-section,
    .gallery-section {
        padding-block: 80px !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .project-detbanner {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .pro-faq {
        padding-block: 80px !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .footer {
        padding-block: 80px !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .grid-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 100px;
        grid-gap: 2px;
    }

    .grid-gallery a:nth-child(2n):not(:last-of-type) {
        grid-row-end: span 1;
    }

    #modal-tab {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .viewmore-btn {
        margin-top: 20px;
    }
}

@media(min-width:1000px) and (max-width:1400px) {
    .feature-list {
        padding-block: 20px;
    }
}

/* menu css */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    font-family: "Spline Sans", sans-serif;
    cursor: pointer;
    display: flex;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.menu-item a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.arrow {
    font-size: 15px;
    margin-left: 10px;
    margin-top: 4px;
    display: inline-block;
}

.menu-item .arrow {
    transition: transform 0.3s ease;
}

.menu-item:hover .arrow {
    transform: translateX(5px);
}

.submenu-panel,
.submenu-panel1 {
    position: fixed;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background-color: #000000b3;
    padding: 100px 30px 70px 30px;
    overflow-y: scroll;
    z-index: 998;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 2s ease, transform 2s ease;
    pointer-events: none;
    /* transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.7s ease;
    pointer-events: none; */
    /* transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: none; */
    display: block;
}

.submenu-panel::-webkit-scrollbar,
.submenu-panel1::-webkit-scrollbar {
    display: none;
}

.submenu-panel.active,
.submenu-panel1.active {
    left: 25%;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.submenu-panel1.active {
    left: 55%;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.submenu-panel.reopen,
.submenu-panel1.reopen {
    transform: translateX(0);
    opacity: 1;
}

.submenu-panel.transitioning,
.submenu-panel1.transitioning {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

.submenu-panel.closing,
.submenu-panel1.closing {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}

.submenu-content,
.submenu-content1 {
    opacity: 0;
    transition: opacity 0.2s ease;
    display: none;
    /* opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.1s ease, transform 0.1s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1; */
}

.submenu-content.visible,
.submenu-content1.visible {
    display: block;
    opacity: 1;
    transform: translateX(100px);
    /* opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2; */
}

.submenu-content.fading-out,
.submenu-content1.fading-out {
    opacity: 0 !important;
    transform: translateX(-40px);
    pointer-events: none;
    z-index: 1;
}

/* All submenu content - hidden by default */
.submenu-content,
.submenu-content1 {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Visible submenu content */
.submenu-content.visible,
.submenu-content1.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.submenu-content ul li a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.submenu-content ul li span {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.submenu-content1 ul li span {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.submenu-content1 ul li a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.submenu-content ul,
.submenu-content1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-content ul li,
.submenu-content1 ul li {
    padding: 10px 0;
    /* border-bottom: 1px solid #ddd; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidenav {
    position: fixed;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: black;
    color: white;
    overflow: hidden;
    z-index: 1000;
    /* transition: width 0.9s ease; */
    /* transition: width 1.3s cubic-bezier(0.77, 0, 0.175, 1); */
    /* transform: translateX(-100px);
    transition: opacity 1.5s ease, transform 1.5s ease;
    pointer-events: none; */
}

.sidenav.active {
    transform: translateX(0);
    width: 25%;
    opacity: 1;
}

.mobile-back-btn {
    color: white;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    display: none;
    font-weight: 500;
}

.logo.homepage-logo.hide {
    display: none !important;
}

/* MEDIA QUERY FOR MENU */
@media (max-width: 798px) {
    .sidenav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: #000;
        z-index: 1000;
    }

    .sidenav.active {
        transform: translateX(0);
        width: 100%;
    }

    #mySidenav.active {
        width: 100%;
        z-index: 1000;
    }

    #mySidenav2.active {
        width: 100%;
        z-index: 1000;
    }

    .submenu-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000 !important;
        padding: 30px 30px 120px 30px;
        overflow-y: auto;
        z-index: 1003;
        /* transform: translateX(50%);
        transition: transform 1s ease-in-out; */
        transform: translateX(80px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .submenu-panel1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000 !important;
        padding: 30px 30px 120px 30px;
        overflow-y: auto;
        z-index: 1003;
        /* transform: translateX(50%);
        transition: transform 1s ease-in-out; */
        transform: translateX(80px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .submenu-panel.active {
        left: 0 !important;
        transform: translateX(0);
    }

    .submenu-panel1.active {
        left: 0 !important;
        transform: translateX(0);
    }

    .submenu-panel.closing {
        transform: translateX(100%);
    }

    .submenu-panel1.closing {
        transform: translateX(100%);
    }

    .submenu-content {
        display: none;
    }

    .submenu-content1 {
        display: none;
    }

    .submenu-content.visible {
        display: block;
    }

    .submenu-content1.visible {
        display: block;
    }

    .mobile-back-btn {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 10px;
    }
}


.logo-img {
    width: 185px;
    filter: brightness(0) invert(1);
}



@media (max-width: 798px) {

    .first-tab-gallery img {
        height: 115px !important;
    }

    .modal-header h3 {
        color: #fff;
        font-size: 16px !important;
    }

    .second-tab-gallery img {
        height: 193px !important;
    }

    .last-tab-gallery img {
        height: 140px !important;
    }

    .specifi-1 {
        height: 100% !important;
    }

    #gallery-section .col-lg-4 {
        padding: 5px !important;
        margin-bottom: 0px !important;
    }

    #gallery-section img {
        height: 100%;
        margin-bottom: 0 !important;
    }

    .pro-specdetail img {
        height: 100% !important;
    }

    .scroll-section {
        display: none !important;
    }

    iframe {
        height: 420px;
    }

    .pro-specdetail img {
        min-height: 355px !important;
    }

    .near-place ul {
        padding: 0 !important;
    }

    .logo-img {
        width: 120px !important;
    }

    .header-2 {
        padding: 0px !important;
    }

    .communication-top h5 {
        font-size: 14px !important;
        
    letter-spacing: 2px;
    font-weight: 300;
    }

    .main-navbar {
        padding: 5px 0 !important;
    }

    .about-ttile-box {
        display: block !important;
    }

    .section-tit h2 {
        margin-top: 16px !important;
    }
}

.about-ttile-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.slogan-title {
    font-size: 18px;
    color: #642f35;
    margin: 0;
}

@media (min-width: 799px) {
    .scroll-section-mobile {
        display: none !important;
    }



    #newmodal {
        max-width: fit-content;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #newmodal .modal-dialog {
        max-width: 500px;
        height: auto !important;
    }
}

#newmodal img {
    width: 100%;
    cursor: pointer;
}

#newmodal .modal-header {
    background: #ffffff;
}

#newmodal .modal-fullscreen .modal-content {
    height: auto !important;
}

#newmodal .modal-header .btn-close {
    filter: none !important;
}

.scroll-section-mobile h5 {
    color: #000;
    text-align: center;
}

.scroll-section-mobile {
    background: #fff !important;
}

.scroll-section-mobile img {
    min-height: 355px;
}


.floor-title-first {
    font-size: 20px !important;
}

.floor-title-second {
    font-size: 28px;
    color: #ffffff;
}


.modal-header {
    background: #32171a;
}

.modal-header h3 {
    color: #fff;
    font-size: 20px;
}

.modal-header h5 {
    color: #fff;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.enq-model-btn {
    background: #32171a !important;
    border: 0 !important;
}

.modal-content {
    border-radius: 10px !important;
}




.scroll-section-mobile .floor-title-first {
    font-size: 20px !important;
    color: #575757;
    text-align: center;
}


.current-status .owl-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.current-status .owl-nav button {
    background: #642f35d1 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 38px !important;
    color: #fff !important;
}

.current-status .owl-nav button span {
    margin-top: -5px !important;
}


#gallery-section img {
    height: 100%;
}

#gallery-section .col-lg-4 {
    margin-bottom: 30px;
}


 





.unit-details {
  background: #642f35; /* Deep green background */
  color: #f4f2ee;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.unit-details .section-tit h2 {
  font-size: 36px;
  color: #fff !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.unit-details .summary {
  display: inline-block;
  background: #eae6de;
  color: #2b3a33;
  padding: 8px 25px;
  /* border-radius: 4px; */
  font-weight: 600;
  font-size: 20px;
  border: 1px solid #cbbf9e;
  margin-bottom: 40px;
}

.unit-details .unit-list {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  /* border-radius: 8px; */
  padding: 25px;
  transition: 0.3s;
}

.unit-details .unit-list:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.unit-details .unit-list h3 {
  color: #d8c9a5;
  font-size: 22px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
  padding-bottom: 5px;
}

.unit-details .unit-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unit-details .unit-list li {
  font-size: 18px;
  color: #f1f1f1;
  margin: 16px 0;
  letter-spacing: 0.3px;
}

.unit-details .unit-list li:last-child{
    margin: 0 !important;
}


 