/* icon fonts */
@import url(../css/icon-fonts.css);

/* =================
Font CSS
===================*/
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Bold.eot');
    src: url('../fonts/Inter18pt-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter18pt-Bold.woff2') format('woff2'),
        url('../fonts/Inter18pt-Bold.woff') format('woff'),
        url('../fonts/Inter18pt-Bold.ttf') format('truetype'),
        url('../fonts/Inter18pt-Bold.svg#Inter18pt-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Light.eot');
    src: url('../fonts/Inter18pt-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter18pt-Light.woff2') format('woff2'),
        url('../fonts/Inter18pt-Light.woff') format('woff'),
        url('../fonts/Inter18pt-Light.ttf') format('truetype'),
        url('../fonts/Inter18pt-Light.svg#Inter18pt-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Thin.eot');
    src: url('../fonts/Inter18pt-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter18pt-Thin.woff2') format('woff2'),
        url('../fonts/Inter18pt-Thin.woff') format('woff'),
        url('../fonts/Inter18pt-Thin.ttf') format('truetype'),
        url('../fonts/Inter18pt-Thin.svg#Inter18pt-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Medium.eot');
    src: url('../fonts/Inter18pt-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter18pt-Medium.woff2') format('woff2'),
        url('../fonts/Inter18pt-Medium.woff') format('woff'),
        url('../fonts/Inter18pt-Medium.ttf') format('truetype'),
        url('../fonts/Inter18pt-Medium.svg#Inter18pt-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-SemiBold.eot');
    src: url('../fonts/Inter18pt-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter18pt-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter18pt-SemiBold.woff') format('woff'),
        url('../fonts/Inter18pt-SemiBold.ttf') format('truetype'),
        url('../fonts/Inter18pt-SemiBold.svg#Inter18pt-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Regular.eot');
    src: url('../fonts/Inter18pt-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter18pt-Regular.woff2') format('woff2'),
        url('../fonts/Inter18pt-Regular.woff') format('woff'),
        url('../fonts/Inter18pt-Regular.ttf') format('truetype'),
        url('../fonts/Inter18pt-Regular.svg#Inter18pt-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* =================
Font CSS
===================*/

:root{
    --orange-color: #F0583A;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --black-color2: #181A20;
    --text-color: #454545;
    --text-color2: #505050;
}


/* =================
Reset CSS
===================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 150%;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    color: var(--text-color);
    padding-top: 120px;
    position: relative;
}
body::before{
    content: '';
    position: absolute;
    height: 130px;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    background-color: #FBFBFB;
    z-index: -1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.btn{
    padding: 12px 43px;
    background-color: var(--orange-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.5s linear
}
.btn-transparent{
    background-color: transparent;
    color: #111116;
    font-size: 18px;
    line-height: 28px;
    padding-inline: 16px;
    border: 1px solid var(--black-color);
    border-radius: 20px;
    font-weight: 400;
}
.btn-transparent:hover{
    background-color: var(--orange-color);
    color: var(--white-color);
    border-color: var(--orange-color);
}
.btn-orange{
    background-color: var(--orange-color);
    color: var(--white-color);
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 20px;
    border: 2px solid var(--orange-color);
}
.btn-orange:hover{
    border-color: var(--orange-color);
    color: var(--orange-color);
}
.btn-circle{
    border-radius: 25px;
}
.btn-black{
    /* font-family: Montserrat; */
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: var(--white-color);
    background-color: var(--black-color2);
}
.btn-black:hover{
    background-color: var(--orange-color);
    color: var(--white-color);
}
a{
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
a:hover{
    color: var(--orange-color);
}
p{
    margin-bottom: 20px;
}
p:last-child{
    margin-bottom: 0;
}
/* =================
Reset CSS
===================*/

.main-wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}
img{
    display: block;
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}
h1{
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 34px;
    line-height: 28px;
    margin: 0 0 15px;
    color: var(--black-color);
}
h2{
    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    margin: 0 0 30px;
    color: var(--black-color2);
}
h2 span{
    font-weight: 500;
}
h3{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: var(--black-color2);
    margin: 0 0 59px;
}
h4{
    /* font-family: Poppins; */
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    margin: 0 0 20px;
}

/* =================
Header CSS
===================*/
header{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(10px);
    padding: 20px 0 0;
}
.header-inner{
    border: 1px solid #D9DBE9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 26px;
    box-shadow: 0px 1px 4px 0px #00000040;
    padding: 24px 43px;
    background-color: var(--white-color);
}
.logo{
    width: 314px;
    height: 36px;
    display: block;
}
.logo img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.whatsApp{
    padding: 16px 20px;
    border-radius: 15px;
}
.header-right{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
}
/* =================
Header CSS
===================*/

.city-select-sec{
    padding: 100px 0 140px;
    background-color: #FBFBFB;
}
.city-select-sec p{
    margin-block: 14px;
}
.city-select-inner{
    max-width: 700px;
    display: flex;
    gap: 20px;
}
.city-select-inner select, .city-select-inner .form-select{
    border: 1px solid #E9E9E9;
    padding: 16px 25px 16px 55px;
    color: var(--orange-color);
    display: block;
    border-radius: 25px;
    width: 100%;
    background-image: url(../img/home/select-city/city-icon.png), url(../img/home/select-city/select-dropdown.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 16px 18px, 7px 5px;
    background-position: 25px center, calc(100% - 23px) center; 
    appearance: none;
  -webkit-appearance: none; /* For Safari and Chrome */
  -moz-appearance: none;    /* For Firefox */
}
/* For Internet Explorer 10 and 11 */
select::-ms-expand {
  display: none;
}
.search-btn{
    width: 150px;
}
.search-btn img{
    width: 18px;
    object-fit: contain;
    margin-right: 12px;
}
.search-btn:hover img{
    filter: drop-shadow(0px 100px 0 var(--orange-color));
    transform: translateY(-100px);
}
.modal-title{
    /* font-family: Poppins; */
    font-weight: 600;
    font-size: 13px;
    line-height: 28px;
}
.modal-header{
    gap: 20px;
    flex-wrap: wrap;
}
.modal-title{
    color: var(--orange-color);
}
.input-group{
    background-color: #F6F6F6; 
    border-radius: 12px;
    width: 100%;
}
#citySelect:-webkit-autofill {
    box-shadow: 0 0 0 30px white inset !important;
}

#citySelect::-webkit-calendar-picker-indicator {
    display: none !important;
}
.city-search{
    color: #656565;
    background-color: transparent;
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    border: 0 !important;
}
.input-group-text{
    background-color: transparent;
    border: 0;
    overflow: hidden;
}
.input-group-text img{
    height: 12px;
    width: 12px;
    object-fit: contain;
    filter: drop-shadow(0px 100px 0 #656565);
    transform: translateY(-100px);
}
.city-modal {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.city-search {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  border-radius: 10px;
}

.city-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    min-height: 110px;
    color: #f35b04;
    font-weight: 500;
    cursor: pointer;
    border-right: 1px solid #65656580;
    border-bottom: 1px solid #65656580;
    border-collapse: separate;
    transition: all 0.3s ease;
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
}

.city-item:hover {
  background: #fff5ef;
}

.city-item.active {
  background-color: var(--orange-color);
  color: #fff;
  border-color: var(--orange-color);
}

.city-item:first-child {
    border-left: 1px solid #65656580 !important;
}

.modal-body .text-muted{
    text-transform: uppercase;
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    margin: 0 0 12px;
    color: #A8A8A8;
}

.btn-close{
    opacity: 1;
    height: 12px;
    width: 12px;
    position: absolute;
    right: 12px;
    top: 12px;
    background-size: 12px 12px;
}

/* Make sure the outer border corners stay visible */
.city-grid .city-item:first-child {
  border-top-left-radius: 10px;
  border-left: 1px solid #65656580;
}
.city-grid .city-item:last-child {
  border-bottom-right-radius: 10px;
}
.city-grid .city-item:nth-child(7) {
    border-top-right-radius: 10px;
}
.city-grid .city-item:nth-child(7n+1):nth-last-child(-n+7) {
    border-bottom-left-radius: 10px;
}
.city-grid .city-item:nth-child(-n + 7){
    border-top: 1px solid #65656580;
}
.city-grid .city-item:nth-child(7n):nth-last-child(-n+8) {
    border-bottom-right-radius: 10px;
}

/* =================
why choose section
===================*/
.why-choose-sec{
    padding: 78px 0 45px;
}
.why-choose-inn{
    padding-right: 60px;
}
.choose-active-sec h3{
    font-weight: 800;
    font-size: 24px;
    line-height: 150%;
    color: var(--black-color2);
    margin: 0 0 8px;
}
.choose-active-sec {
    position: relative;
    padding-left: 36px;
    margin: 0 0 24px;
}
.choose-active-sec:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 5px;
    background-color: var(--black-color2);
    left: 0;
    top: 0;
    bottom: 0;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}
.choose-active-sec:last-child{
    margin: 0;
}
.choose-active-sec:hover::before{
    transform: scale(1);
}
.why-choose-sec .btn{
    margin: 42px 0 0 36px;
}
/* =================
why choose section
===================*/

/* =================
best property section
===================*/
.best-property-sec{
    padding: 45px 0 40px;
}
.best-property-sec .row{
    row-gap: 30px;
}
.best-property-block{
    display: block;
    border: 1.5px solid #DADADA;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.best-property-block:hover{
    box-shadow: 1px 5px 40px rgba(240, 88, 58, 0.4);
    backdrop-filter: blur(26.5px);
}
.best-property-block figure{
    height: 240px;
    overflow: hidden;
    position: relative;
}
.best-property-block figure img{
    transition: all 0.3s ease-in-out;
}
.best-property-block:hover figure img{
    transform: scale(1.1);
}
.best-propert-detail{
    padding: 18px 20px 22px;
    display: grid;
    grid-template-columns: auto 90px;
    gap: 0 8px;
}
.best-property-block .best-propert-detail h3{
    grid-column: 1;
    grid-row: 1;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: var(--black-color2);
    margin: 0;
}
.best-propert-detail p{
    grid-column: 1;
    grid-row: 2;
    font-size: 13px;
    line-height: 25px;
    color: var(--text-color);
    margin: 0;
}
.best-propert-detail .price{
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
    background-color: var(--orange-color);
    padding: 7px 10px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
}
.best-propert-detail .price::before{
    content: '\20B9';
    margin-right: 3px;
}
.stickyBox{
    position: sticky;
    top: 112px;
    left: 0;
    z-index: 3;
    padding: 30px 0;
    background-color: #fff;
    /* backdrop-filter: blur(10px); */
    /* border-radius:  26px; */
    /* box-shadow: 0px 1px 4px 0px #00000040; */
}
.stickyBox h3{
    margin: 0;
}
.stickyBox::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #fff;
    width: 100vw;
    height: 100%;
    z-index: -1;
}
/* =================
best property section
===================*/


/* =================
testimonial section
===================*/
.testimonial-sec{
    padding: 40px 0;
    overflow: hidden;
}
.testimonial-sec h2{
    margin: 0 0 30px;
}
.testiminial-slider{
    overflow: visible;
}
.testiminial-slider .swiper-slide{
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.testiminial-slider .swiper-slide.swiper-slide-next,
.testiminial-slider .swiper-slide.swiper-slide-active,
.testiminial-slider .swiper-slide.swiper-slide-next + .swiper-slide{
    opacity: 1;
}
.testiminial-slide{
    padding: 35px 25px;
    background-color: var(--white-color);
    box-shadow: 0px 28.93px 61.56px 0px #15151526;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testim-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.star-rating span{
    color: var(--black-color2);
}
.testimonial-top-right span{
    color: var(--black-color2);
}
.testimonial-top-right{
    color: #202020;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.testimonial-para{
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin: 27px 0;
}
.testim-media{
    display: grid;
    grid-template-columns: 38px auto;
    gap: 4px 10px;
    margin-top: auto;
}
.testim-media figure{
    height: 38px;
    width: 38px;
    border-radius: 50%;
    overflow: hidden;
    grid-column: 1;
    grid-row: 1/3;
}
.testim-media h3{
    font-weight: 800;
    font-size: 14px;
    line-height: 100%;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    color: var(--black-color);
}
.testim-media h4{
    font-size: 10px;
    line-height: 100%;
    color: var(--text-color2);
    margin: 0;
    grid-column: 2;
    grid-row: 2;
}
.swiper-pagination{
    gap: 80px;
    display: flex;
    justify-content: center;
    margin: 70px auto 0;
    position: relative;
    max-width: max-content;
}
.swiper-pagination::before{
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: 1px;
    background-color: var(--orange-color);
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    z-index: -1;
}
.swiper-pagination .swiper-pagination-bullet{
    background-color: #FFC2B6;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--orange-color);
}
/* =================
testimonial section
===================*/

/* =================
faq section
===================*/
.faq-sec{
    padding: 40px 0;
}
.faq-sec .accordion-button{
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    color: var(--black-color);
    padding: 0;
    background-color: transparent;
}
.accordion-button:focus{
    box-shadow: none;
}
.faq-sec .accordion-body{
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--black-color);
    padding: 0;
    margin-top: 16px;
}
.faq-sec .accordion-item:first-of-type>.accordion-header .accordion-button{
    background-color: transparent;
    border: 0;
}
.faq-sec .accordion-button:not(.collapsed){
    box-shadow: none;
}
.faq-sec .accordion-item{
    border: 0;
    background-color: #F7F7F7;
    padding: 35px 50px;
    margin-bottom: 20px;
    border-radius: 0;
}
.faq-sec .accordion-item:last-child{
    margin-bottom: 0;
}
.faq-sec .accordion-button::after{
    background-image: url('../img/home/faq/accordion-arrow.svg');
    height: 40px;
    width: 40px;
    background-size: 40px 40px;
}
.faq-sec .accordion-button:not(.collapsed)::after{
    background-image: url('../img/home/faq/accordion-arrow.svg');
}
/* =================
faq section
===================*/


/* =================
Footer CSS
===================*/
footer{
    padding: 37px 0 30px;
    background-color: var(--black-color2);
    color: var(--white-color);
    margin-top: auto;
}
footer p{
    font-size: 16px;
    line-height: 27px;
}
.footer-left{
    max-width: 500px;
}
.footer-logo{
    display: block;
    width: 315px;
    height: 36px;
    margin: 0 0 24px;
}
.footer-logo img{
    object-fit: contain;
}
.footer-menu h4{
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 100%;
}
.footer-menu a{
    font-size: 16px;
    text-decoration: none;
    line-height: 27px;
    color: var(--white-color);
}
.footer-menu a:hover{
    color: var(--orange-color);
}
.footer-bottom{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid var(--white-color);
}
.social-links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.social-links h4{
    /* font-family: Poppins; */
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    margin: 0;
}
.social-links ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}
.social-links ul li a{
    color: var(--white-color);
}
.social-links ul li a:hover{
    color: var(--orange-color);
}
/* =================
Footer CSS
===================*/


/* about us page */
/* intro section */
.intro-section{
    padding: 70px 0 63px;
    background-color: #FBFBFB;
}
.intro-section h2{
    margin: 0 0 7px;
}
.intro-section h2 span{
    font-size: 34px;
    line-height: 28px;
}
.intro-section p{
    font-size: 14px;
    line-height: 27px;
}

.intro-detail .choose-active-sec{
    padding-left: 0;
}
.intro-detail .choose-active-sec::before{
    display: none;
}
.read-more-info, .collapse-btn{
    display: none;
}
.read-more-btn{
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: var(--orange-color);
}
.collapse-btn{
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: var(--orange-color);
}
.property-head span, .property-head h1 {
    display: block;
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 18px;
    line-height: 28px; 
    margin: 0 0 5px;
    color: var(--black-color);
}
.intro-section p{
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #717171;
}
/* intro section */


/* feature section */
.feature-section{
    padding: 50px 0;
    text-align: center;
}
.feature-inner{
    padding: 54px 30px 30px;
    background-color: var(--white-color);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}
.feature-inner:hover{
    box-shadow: 0px 10px 40px 0px #181A2014;
}
.feature-icon{
    height: 108px;
    width: 108px;
    margin: 0 auto 45px;
}
.feature-icon img{
    object-fit: contain;
}
.feature-inner p{
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
}
/* feature section */
/* about us page */
.best-property-sec h3 span{
    display: inline-block;
    color: var(--orange-color);
    margin-right: 18px;
    font-size: 28px;
}
.booking-marker{
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: #212121;
    padding: 9px 6px;
    border-radius: 8px;
    color: var(--white-color);
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
}
.booking-marker.check:before{
    content: '';
    display: inline-block;
    width: 13px;
    height:13px;
    background-image: url('../img/icons/check-icon.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px 13px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

/* =================
Gallery Grid CSS
===================*/
.property-detail-section{
    padding: 50px 0 25px;
}
.feature-listing{
    padding: 50px 0;
}
.feature-listing h3{
    margin: 0 0 6px;
}
.property-detail-section h2{
    /* font-family: Poppins; */
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
}
.property-detail-section .row{
    row-gap: 23px;
}
.gallery-grid{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}
.gallery-grid .g-item{
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-grid .g-item.video-gall::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 51px;
    width: 51px;
    background-image: url('../img/icons/play-icon-square.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 51px 51px;
    z-index: 2;
}
.gallery-grid .g-item:first-child{
    border-top-left-radius: 10px;
}

/* .gallery-grid-5 */
.gallery-grid-5 .g-item:nth-child(2){
    border-top-right-radius: 10px;
}
.gallery-grid-5 .g-item:nth-child(3){
    border-bottom-left-radius: 10px;
}
.gallery-grid-5 .g-item:last-child{
    border-bottom-right-radius: 10px;
}
.gallery-grid-5 .g-item:nth-child(-n+2) {
    width: calc(50% - 1px);
    height: 238px;
}
.gallery-grid-5 .g-item:nth-last-child(-n+3) {
    width: calc(33.33% - 2px);
    height: 158px;
}

/* .gallery-grid-4 */
.gallery-grid-4 .g-item:nth-child(2){
    border-top-right-radius: 10px;
}
.gallery-grid-4 .g-item:nth-child(3){
    border-bottom-left-radius: 10px;
}
.gallery-grid-4 .g-item:last-child{
    border-bottom-right-radius: 10px;
}
.gallery-grid-4 .g-item {
    width: calc(50% - 1px);
    height: 200px;
}

/* .gallery-grid-3 */
.gallery-grid-3 .g-item:first-child{
    border-top-left-radius: 10px;
    width: calc(50% - 1px);
    height: 238px;
}
.gallery-grid-3 .g-item:nth-child(2){
    border-top-right-radius: 10px;
    width: calc(50% - 1px);
    height: 238px;
}
.gallery-grid-3 .g-item:nth-child(3){
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    height: 158px;
}


/* .gallery-grid-2 */
.gallery-grid-2 .g-item:first-child{
    border-top-right-radius: 10px;
}
.gallery-grid-2 .g-item:nth-child(2){
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.gallery-grid-2 .g-item {
    height: 200px;
    width: 100%;
}

/* .gallery-grid-1 */
.gallery-grid-1 .g-item {
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

.gallery-grid .g-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.gallery-grid .g-item:hover img{
    transform: scale(1.1);
}

.more-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #15151580;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* font-family: Poppins; */
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: var(--white-color);
}

.property-detail-info{
    /* font-family: Poppins; */
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.property-detail-info ul li{
    margin: 0 0 8px;
    padding-left: 30px;
    position: relative;
}
.property-detail-info ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent !important;
}
.property-detail-info ul li::before{
    background-image: url('../img/icons/check-icon.svg');
    background-size: 18px 18px;
}
.property-detail-info ul li.rupee-icon::before{
    background-image: url('../img/icons/rupay.png');
    background-size: 10px 18px;
}
.property-detail-info ul li.dollar-bag-icon::before{
    background-image: url('../img/icons/dollor.png');
    background-size: 18px 18px;
    top: 5px;
}
.property-detail-info ul li.location-pin-icon::before{
    background-image: url('../img/icons/pin-location.png');
    background-size: 18px 18px;
}
.property-detail-info ul li strong{
    /* font-family: Poppins; */
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}
.property-detail-info ul li span{
    color: var(--orange-color);
    text-decoration: line-through;
}
.property-detail-info .btn{
    margin-top: auto;
}
/* =================
Gallery Grid CSS
===================*/


.modal-backdrop.show{
    opacity: 0.75;
    background: #05050599;
    backdrop-filter: blur(40px);
}
.modal-backdrop.city-backdrop {
    background: #F4F4F4BF;
    backdrop-filter: blur(15px);
}
#mediaModal .swiper-wrapper{
    align-items: center;
}
#mediaModal .modal-content{
    background-color: rgba(0,0,0,0.7);
    border: 0;
}
#mediaModal .modal-content img{
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    max-height: 90vh;
}
.swiper-button-prev, .swiper-button-next{
    color: #fff;
    height: 40px;
    width: 40px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    background-color: var(--orange-color);
}
.swiper-button-prev svg, .swiper-button-next svg{
    height: 20px;
    width: auto;
}
.btn-close{
    position: absolute;
    z-index: 4;
    background-color: #ff4949;
    top: -10px;
    right: -10px;
}
#cityModal .btn-close{
    background-color: transparent;
    position: static;
}


/* Contact Page */
.contact-sec{
    padding: 45px 0 105px;
}
.contact-details{
    display: flex;
    flex-direction: column;
    max-width: 376px;
    color: var(--black-color);
}
.contact-details h4{
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin: 0 0 30px;
}
.contact-details a{
    margin: 0 0 30px;
    color: inherit;
    display: inline-flex;
    align-items: flex-start;
    gap: 25px;
    max-width: max-content;
}
.contact-details a span{
    position: relative;
    top: 5px;
}
.contact-details a:hover{
    color: var(--orange-color);
}
.form-group{
    margin: 0 0 18px;
}
.form-control{
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    /* font-family: Montserrat; */
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    padding: 20px;
}
.form-control:focus{
    box-shadow: none;
    border-color: var(--black-color);
}
.form-control.error-field{
    border-color: #FF3333;
}
.error{
    display: block;
    font-size: 14px;
    color: #FF3333;
}
.contact-form label{
    display: block;
}
textarea{
    height: 146px;
    resize: none;
}
.contact-form label{
    height: 0;
    overflow: hidden;
}
.contact-form .btn{
    margin-top: 40px;
    width: 100%;
}
.map-outer{
    position: relative;
    padding-bottom: 51%;
    filter: grayscale(1);
}
.map-outer iframe{
    position: absolute;
    height: 100%;
    width: 100%;
}




/* Add Property Page CSS */
/* Upload Section */
.add-property-sec{
    padding: 50px 0;
}
.property-add-form > .row{
    row-gap: 30px;
}

.btn-orange#verifyBtn{
    background-color: var(--white-color);
    border-color: var(--orange-color);
    color: var(--orange-color);
}
.btn-orange#verifyBtn:hover{
    background-color: var(--black-color);
    color: var(--white-color);
    border-color: var(--black-color);
}
.property-add-form #description {
    height: 240px;
    line-height: 1.3;
}
.property-add-form
.upload-box {
    width: 100%;
    height: 240px;
    border: 2px dashed var(--orange-color);
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    text-align: center;
    padding: 15px;
    transition: 0.3s;   
}
.upload-box::before{
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('../img/icons/icon-upload.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px 30px;
}

.upload-box:hover {
    background: #fff7ef;
}

.upload-box i {
    font-size: 32px;
    color: var(--orange-color);
    margin-bottom: 5px;
}

.upload-box p {
    color: var(--orange-color);
    font-weight: 600;
}

.upload-box input {
    display: none;
}

.preview-list {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.preview-item {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    position: relative;
    background: #eee;
}

.preview-item.dz-error {
    border: 2px solid #cc0000;
}

.preview-item {
    position: relative;
}

.dz-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #ddd;
    border-top: 3px solid #3490dc;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Hide loader when upload finishes */
.preview-item.dz-success .dz-loader,
.preview-item.dz-error .dz-loader {
    display: none;
}

/* Tooltip hidden by default */
.dz-error-message {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-10%);
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    padding: 0px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 10;
}

/* Tooltip arrow */
.dz-error-message::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #dc3545;
}

/* Show tooltip on hover ONLY if error */
.preview-item.dz-error:hover .dz-error-message {
    opacity: 1;
}

.preview-item img,
.preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.otp-wrapper {
    width: 100%;
}

.otp-box {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #888888;
    border-radius: 14px;
    cursor: text;
    gap: 16px;
}

.otp-box span {
    width: 18px;
    height: 2px;
    background: #999;
    display: block;
}

/* When digit is entered */
.otp-box span.filled {
    height: auto;
    font-size: 20px;
    border-bottom: 2px solid #999;
    background: none;
    line-height: 20px;
    display: inline-block;
    width: 18px;
    text-align: center;
}

/* invisible input */
#otpRealInput {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}
#verifyBtn{
    padding-inline: 20px;
    height: 100%;
}
/* Add Property Page CSS */



.success-property-added{
    padding: 82px 0 112px;
    text-align: center;
}
.success-property-added figure{
    height: 121px;
    width: 121px;
    margin: 0 auto 36px;
}
.success-property-added figure img{
    object-fit: contain;
}
.success-property-added h1{
    /* font-family: Poppins; */
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    color: var(--orange-color);
    margin: 0 0 22px;
}
.success-property-added p{
    color: #B6B6B6;
    margin: 0 0 45px;
}
.success-property-added a{
    text-decoration: underline;
    font-size: 22px;
}


.logoutModelPopup .modal-dialog{
    width: calc(100% - 40px);
    max-width: 867px;
    margin: 0 auto;
}
.logoutModelPopup .modal-content{
    border-radius: 0;
    text-align: center;
}
.logoutModelPopup .modal-body{
    background-color: #F6F6F6;
    padding: 80px 20px;
    box-shadow: 0px 4px 7.8px #17171740;
}
.logoutModelPopup h2{
    /* font-family: Poppins; */
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    color: var(--orange-color);
    margin: 0 0 8px;
}
.logoutModelPopup h2:last-child{
    margin: 0;
}
.logoutModelPopup p{
    color: #B6B6B6;
    font-weight: 500;
    margin: 0;
}
.btn-group{
    margin-top: 48px;
    gap: 34px;
    flex-wrap: wrap;
}
.btn-group .btn{
    border-radius: 6px !important;
    padding: 6px 24px;
}
.btn-group .btn-orange-border{
    border: 1px solid var(--orange-color);
    color: var(--orange-color);
    background-color: transparent;
}
.btn-group .btn-orange-border:hover{
    background-color: var(--black-color);
    border-color: var(--black-color);
    color: var(--white-color);
}
.logoutModelPopup figure{
    height: 84px;
    width: 84px;
    margin: 0 auto 17px;
}
.logoutModelPopup figure img{
    object-fit: contain;
}


.otp-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 18px 0;
}

.otp-input {
    width: 53px;
    height: 53px;
    border-radius: 16px;
    border: 2px solid #DDDDDD;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    outline: none;
    transition: 0.2s;
    color: #757575;
}
.otp-input:focus{
    border-color: var(--orange-color);
}

/* Highlight active box */
.otp-input:focus {
    border-color: var(--orange-color);
}

/* Remove number input arrows */
.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.logInModelPopup .modal-dialog{
    max-width: 867px;
    width: calc(100% - 40px);
    margin: 0 auto;
}
.logInModelPopup .modal-body{
    padding: 0;
}
.logInModelPopup .modal-content{
    border-radius: 0;
}
.loginModelFlex{
    display: flex;
}
.login-left{
    background-color: var(--black-color2);
    padding: 40px 30px;
    width: calc(100% - 514px);
}
.login-left h2{
    color: var(--white-color);
    /* font-family: Poppins; */
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.1px;
    margin: 0 0 10px;
}
.login-left p{
    font-size: 16px;
    line-height: 19px;
    color: #C8BFBF;
}
.login-right{
    padding: 40px;
    width: 514px;
}
.login-right .form-group{
    margin: 0;
}
.login-right .form-control{
    font-size: 16px;
    line-height: 34px;
    color: var(--black-color);
    border: 0;
    border-radius: 0;
    padding: 0 0 19px;
    border-bottom: 2px solid var(--black-color2);
}
.login-right .btn-group{
    margin-top: 34px;
    width: 100%;
}

.login-right .btn-black{
    /* font-family: Poppins; */
    font-weight: 500;
    font-size: 20px;
    line-height: 16px;
    letter-spacing: 0.1px;
    padding: 12px;
    border-radius: 0 !important;
}
.login-right p{
    color: #8C8C8C;
    /* font-family: Poppins; */
    font-size: 14px;
    line-height: 34px;
    text-align: center;
}
.login-right p a{
    color: var(--orange-color);
    font-weight: 700;
}
.login-right p a:hover{
    color: var(--black-color2);
}
.login-right label{
    height: 0;
    overflow: hidden;
}


.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #C8BFBF;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #C8BFBF;
  opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
  color: #C8BFBF;
}
.form-control:-moz-placeholder { /* Firefox 18- */
  color: #C8BFBF;
}
.verification-code-div{
    text-align: center;
}
.verification-code-div h3{
    /* font-family: Poppins; */
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    margin: 0 0 11px;
}
.verification-code-div h3 + p{
    font-size: 16px;
    line-height: 20px;
}
.countdown-time{
    /* font-family: Poppins; */
    font-size: 16px;
    line-height: 100%;
    color: #8C8C8C;
    margin: 0 0 15px;
}
.verification-code-div p a{
    color: #1492FF;
}
.verification-code-div p a:hover{
    color: var(--black-color);
}


.loginModelSuccessPopup .modal-dialog{
    width: calc(100% - 40px);
    max-width: 867px;
    margin: 0 auto;
}
.loginModelSuccessPopup .modal-content{
    border-radius: 0;
    text-align: center;
    background-color: var(--black-color2);
    box-shadow: 0px 4px 8px #17171740;
    color: var(--white-color);
    padding: 40px 0;
}
.loginModelSuccessPopup figure{
    height: 120px;
    width: 120px;
    margin: 0 auto 36px;
}
.loginModelSuccessPopup figure img{
    object-fit: contain;
}
.loginModelSuccessPopup h3{
    color: var(--white-color);
    /* font-family: Poppins; */
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    margin: 0 0 22px;
}
.loginModelSuccessPopup p{
    color: #B6B6B6;
    margin: 0;
    font-size: 20px;
    line-height: 100%;
}

.checkbox-outer{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    flex-wrap: wrap;
}
.cstm-checkbox{
    position: relative;
}
.cstm-checkbox label{
    /* font-family: Roboto; */
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    color: var(--black-color);
    padding-left: 28px;
    cursor: pointer;
}
.cstm-checkbox input[type="checkbox"]{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.cstm-checkbox input[type="checkbox"] + label::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 2px;
    border: 2px solid #D3DAE7;
    transition: all 0.3s ease-in-out;
}
.cstm-checkbox input[type="checkbox"]:checked + label::before{
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}
.cstm-checkbox input[type="checkbox"] + label::after{
    content: '';
    position: absolute;
    height: 12px;
    width: 7px;
    border: 3px solid #F7F7F7;
    left: 6px;
    top: 2px;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
}
.cstm-checkbox input[type="checkbox"]:checked + label::after{
    opacity: 1;
    visibility: visible;
}
.area-selectionModel .btn-wrap{
    justify-content: center;
    margin-top: 35px;
    text-align: center;
}
.popCloseBtn{
    position: static;
    background-color: transparent;
    opacity: 0.5;
}

.editor-content{
    padding: 60px 0 150px;
    margin: 0;
}
.editor-content p, .editor-content ul, .editor-content ol{
    line-height: 150%;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    color: var(--text-color);
}
.editor-content a{
    color: var(--orange-color);
}
.editor-content a:hover{
    color: #000000;
}
.editor-content h1{
    font-size: 42px;
    line-height: 120%;
    color: var(--black-color);
    margin: 0 0 30px;
    font-weight: 500;
}
.editor-content h2{
    font-size: 34px;
    line-height: 120%;
    color: var(--black-color);
    margin: 0 0 25px;
    font-weight: 500;
}
.editor-content h3{
    font-size: 25px;
    line-height: 120%;
    color: var(--black-color);
    margin: 0 0 20px;
    font-weight: 500;
}
.editor-content h4{
    font-size: 22px;
    line-height: 110%;
    color: var(--black-color);
    margin: 0 0 18px;
    font-weight: 500;
}
.editor-content h5{
    font-size: 20px;
    line-height: 100%;
    color: var(--black-color);
    margin: 0 0 18px;
    font-weight: 500;
}
.editor-content h6{
    font-size: 18px;
    line-height: 100%;
    color: var(--black-color);
    margin: 0 0 15px;
    font-weight: 500;
}
.editor-content ul li{
    position: relative;
    padding-left: 20px;
}
.editor-content ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    height: 6px;
    width: 6px;
    background-color: var(--orange-color);
    border-radius: 50%;
}
ol{
    counter-reset: myCounter;
}
ol li{
    counter-increment: myCounter;
}
ol li::before{
    content: counter(myCounter)". ";
    color: inherit;
    font-size: inherit;
}
table{
    width: 100% !important;
    max-width: 100% !important;
}

.whatsApp-fixed{
    display: none;
}

.area-dropdown {
    position: relative;
    justify-content: flex-start;
    min-width: 100px;
    padding-right: 30px;
}

.area-dropdown i {
    position: absolute;
    right: 7px;
}