:root {
    --primary-color: #2A2A2A;
    /* Maroon */
    --secondary-color: #E0A608;
    /* Golden */
    --light-bg-text-color: #000;
    /* Black */
    --dark-bg-text-color: #fff;
    /* White */
    --heading-color: #0E172A;
    /* Navy */
}

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

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesqueAltExtraLight.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesqueAltRegular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesqueAltMedium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesqueAltSemiBold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesqueAltBold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/GalanoGrotesqueAltBlack.otf') format('opentype');
    font-weight: 800;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button {
    font-family: 'Galano Grotesque';
}

header.header-sec {
    padding: 20px 5px;
}

.web-logo img {
    width: 87%;
}

.header-menu {
    display: flex;
    /* justify-content: space-between; */
    gap: 19px;
    align-items: center;
}

.icon-list ul li {
    display: inline-block;
    margin-left: 25px;
    font-size: 18px;
    font-weight: 500;
    color: #606161;
}

.icon-list ul li i {
    font-size: 22px;
    margin-right: 13px;
}

.search-form input {
    border: 0;
    margin-left: 1px;
    font-weight: 500;
    padding: 12px 12px;
    border-radius: 0;
    font-size: 19px;
    width: 100%;
}

.custom-gap {
    --bs-gutter-x: 4rem;
}

.icon-list ul {
    padding: 0;
    margin: 0;
}

.search-form i {
    font-size: 22px;
}
.icon-list ul li a {
    color: inherit;
    text-decoration: none;
}
.search-form {
    width: 20%;
    white-space: nowrap;
}

.banner-sec {
    background: var(--heading-color);
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 64px 12px;
    min-height: 540px;
    margin: 0 12px;
}

.banner-content-wrapper {
    text-align: center;
}

.banner-content-wrapper h1 {
    font-size: 64px;
    color: var(--dark-bg-text-color);
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 30px;
}

.banner-content-wrapper h1 span {
    color: var(--secondary-color);
}

.banner-content-wrapper p {
    font-size: 24px;
    color: var(--dark-bg-text-color);
    width: 78%;
    margin: 0 auto;
}

.banner-form-wrapper {
    padding: 48px 12px;
}

.banner-form-wrapper form {
    padding: 12px 10px;
    background: #414653;
    width: 73%;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    gap: 20px;
}

.banner-form-wrapper form input {
    width: 70%;
    padding: 23px;
    border-radius: 10px;
    border: 0;
    font-size: 22px;
}

.banner-form-wrapper form button {
    padding: 23px 40px;
    border: 0;
    font-size: 20px;
    background: var(--heading-color);
    color: var(--dark-bg-text-color);
    font-weight: 500;
    border-radius: 10px;
    width: 28%;
    border: 1px solid var(--light-bg-text-color);
    transition: 0.3s all ease;
}

.banner-form-wrapper form button:hover {
    background: var(--secondary-color);
    color: var(--dark-bg-text-color);
    border-color: var(--secondary-color);
}


/* Property Section */
section.properties-sec {
    padding: 124px 12px;
    background: #f4f4f4;
}

.properties-heading-wrapper h2 {
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 60px;
}

.properties-heading-wrapper {
    padding-bottom: 36px;
}

.property-box {
    background: var(--dark-bg-text-color);
    border-radius: 10px;
}

.property-content-wrapper {
    padding: 30px 29px;
}

.property-image img {
    border-radius: 10px 10px 0 0;
}

.property-content-wrapper h4 {
    font-size: 19.2px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 26px;
}

.property-content-wrapper h4 i {
    font-size: 23px;
    margin-right: 12px;
}

.property-content-wrapper h2 {
    font-size: 28.6px;
    font-weight: 500;
    margin-top: 15px;
}

.property-content-wrapper .property-icons ul li {
    display: inline-block;
    margin-right: 13px;
    font-size: 15px;
    font-weight: 500;
    color: var(--light-bg-text-color);
}

.property-content-wrapper .property-icons ul {
    padding: 0;
}

.property-content-wrapper .property-icons ul li i {
    margin-right: 7px;
    font-size: 18px;
    color: var(--secondary-color);
}

.property-content-wrapper p {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 24px;
}

.property-content-wrapper a {
    display: flex;
    background: var(--heading-color);
    width: 100%;
    padding: 14px 31px;
    justify-content: space-between;
    color: var(--dark-bg-text-color);
    text-decoration: none;
    font-size: 18px;
    text-transform: capitalize;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
}

.property-content-wrapper a:hover {
    background: var(--secondary-color);
    color: var(--dark-bg-text-color);
}

/* About Section */
section.abt-sec {
    padding: 64px 12px;
    background: #f4f4f4;
}

.icon-box {
    display: flex;
    gap: 27px;
    padding: 24px;
    border-radius: 15px;
    margin-bottom: 22px;
}

.box-1 {
    background: #e9e9e9;
}

.box-2 {
    border: 1px solid #cfcfcf;
}

.icon-box h5 {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
}

.icon-box i {
    font-size: 45px;
    color: var(--secondary-color);
}

.icon-box .icon {
    padding-top: 9px;
}

.first-column img {
    border-radius: 15px;
}

.sub-heading {
    padding-bottom: 22px;
}

.sub-heading i {
    font-size: 20px;
}

.sub-heading h5 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.sub-heading h5 i {
    margin-right: 8px;
}

.main-heading {
    padding-bottom: 30px;
}

.main-heading h2 {
    font-size: 48px;
    font-weight: 500;
}

.abt-para p {
    font-size: 16px;
    line-height: 27px;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-img {
    width: 30%;
    padding: 0 6px;
}

.user-data {
    width: 70%;
}

.user-data h6 {
    font-size: 19px;
    font-weight: 500;
    margin: 0px;
    margin-bottom: 5px;
}

.user-img img {
    border-radius: 500px;
}

.user-box {
    background: #e9e9e9;
    padding: 21px 12px;
    border-radius: 10px;
}


.user-data p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.abt-signs-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 60px;
}

.abt-sec .col-lg-4,
.abt-sec .col-lg-5,
.abt-sec .col-lg-3 {
    display: flex;
}

.first-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 🔥 MAGIC LINE */
}

.counter-main {
    padding: 18px 24px;
    background: #e9e9e9;
    border-radius: 20px;
}

.counter {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding: 10px 0;
}

.counter p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.counter h5 {
    font-size: 40px;
    color: var(--secondary-color);
    font-weight: 700;
}


.counter .counter-des {
    width: 50%;
}

.counter .number {
    width: 28%;
}

.heading-third-wrapper {
    padding: 30px 0;
}

.heading-third-wrapper h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 37px;
}

.para-third-wrapper {
    padding-bottom: 22px;
}

.para-third-wrapper p {
    font-size: 18px;
    font-weight: 400;
}

.third-btn-wrapper a {
    padding: 21px 52px;
    background: #000;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s all ease;
}
.third-btn-wrapper a:hover {
    background: var(--secondary-color);
}

.third-btn-wrapper a i {
    margin-left: 15px;
    transform: rotate(-45deg);
}

/* Commission Structure Section */
section.commission-structure-sec {
    padding: 64px 12px;
    background: #f4f4f4;
}

.subscribe-box {
    padding: 42px 24px;
    background: var(--secondary-color);
    margin-bottom: 12px;
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 52px;
}

.subscribe-box h4 {
    font-size: 45px;
    line-height: 49px;
    font-weight: 600;
}

.subscribe-box a {
    background: var(--heading-color);
    padding: 16px 29px;
    display: inline-block;
    margin-top: 12px;
    border-radius: 10px;
    color: var(--dark-bg-text-color);
    text-decoration: none;
    font-size: 18px;
    width: 64%;
}

.subscription-img {
    position: relative;
}

.subscription-img img {
    border-radius: 15px;
    min-height: 350px;
    object-fit: cover;
}


.subscription-img .icon {
    position: absolute;
    bottom: 20px;
    padding: 24px;
    height: 80px;
    width: 80px;
    background: #fff;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
}

.subscription-img .icon i {
    font-size: 35px;
}

.structure-boxes-parent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.structure-box-heading {
    display: flex;
    align-items: center;
    gap: 0px;
}

.structure-box-heading .structure-icon {
    height: 80px;
    width: 80px;
    border-radius: 500px;
    border: 1px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
}

.structure-box-heading .structure-icon i {
    font-size: 35px;
    color: var(--secondary-color);
}

.structure-heading {
    padding-left: 23px;
}

.structure-heading h5 {
    font-size: 30px;
    font-weight: 600;
}

.structure-box {
    padding: 46px 26px;
    border: 1px solid #cfcfcf;
    border-radius: 20px;
    width: 48%;
    min-height: 327px;
}

.structure-box-p {
    padding-top: 24px;
}

.structure-box-p p {
    font-size: 18px;
    line-height: 28px;
}

.box-four {
    background: var(--secondary-color);
    border: 0;
}

.box-four h4 {
    font-size: 36px;
    margin-bottom: 29px;
    font-weight: 600;
}

.box-four a {
    padding: 16px 64px;
    background: #000;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-top: 19px;
    transition: 0.3s all ease;
}
.box-four a:hover{
    background: var(--primary-color);
}
.box-four a i {
    transform: rotate(-45deg);
    margin-left: 15px;
}

/* Location Section */
section.location-sec {
    padding: 64px 12px;
    background: #f4f4f4;
    position: relative;
}

.location-heading-wrapper {
    text-align: center;
}

.location-subheading {
    padding-bottom: 21px;
}

.location-subheading h5 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--secondary-color);
}

.location-subheading h5 i {
    margin-right: 8px;
}

.location-main-heading {
    padding-top: 18px;
    padding-bottom: 30px;
}

.location-main-heading h2 {
    font-size: 48px;
    font-weight: 600;
    width: 80%;
    margin: 0 auto;
}

.location-trigger .item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

/* Image */
.location-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

/* Black overlay */
.location-trigger .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Content */
.location-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 24px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
    text-align: center;
}

/* Hover effects */
.location-trigger .item:hover::after {
    opacity: 0.25;
    /* 0.2 ya 0.3 bhi kar sakte ho */
}

.location-trigger .item:hover .location-content {
    transform: translateY(0);
}

/* Text styling (optional polish) */
.location-content h5 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 6px;
}

.location-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.location-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    /* 🔥 important */
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    /* 🔥 magic */
    padding: 0 20px;
    /* optional spacing from edges */
    z-index: 5;
    pointer-events: none;
}

.location-slider-arrows .left-arrow,
.location-slider-arrows .right-arrow {
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.location-slider-arrows .left-arrow {
    background: #000;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(40px);
    cursor: pointer;
    transition: 0.3s all ease;

}

.location-slider-arrows .left-arrow i {
    color: #fff;
    font-size: 30px;
}

.location-slider-arrows .right-arrow {
    background: #000;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-40px);
    cursor: pointer;
    transition: 0.3s all ease;

}

.location-slider-arrows .right-arrow i {
    color: #fff;
    font-size: 30px;
}

.location-sec:hover .left-arrow {
    opacity: 1;
    transform: translateX(0);
}

.location-sec:hover .right-arrow {
    opacity: 1;
    transform: translateX(0);
}

.location-trigger .item {
    padding: 0;
    position: relative;
    /* horizontal gap between slides */
}

.location-trigger .slick-slide {
    margin: 0 10px;
    /* horizontal gap between slides */
}

.location-trigger.slick-slider {
    margin: 0 -10px;
    /* compensate slide margin so overall layout stay aligned */
}

.location-trigger:hover~.location-slider-arrows .left-arrow,
.location-trigger:hover~.location-slider-arrows .right-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.6);
}

/* Testimonials Section */
section.testimonials-sec {
    padding: 64px 12px;
    background: #f4f4f4;
    position: relative;
}


.testimonials-headings-parent .testimonial-subheading {
    padding-bottom: 21px;
}

.testimonials-headings-parent .testimonial-subheading h5 {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonials-headings-parent .testimonial-subheading h5 i {
    margin-right: 8px;
}

.testimonials-headings-parent .testimonial-main-heading {
    padding-bottom: 21px;
}

.testimonials-headings-parent .testimonial-main-heading h2 {
    font-size: 47px;
    font-weight: 600;
}

.testimonial-user-img {
    padding: 12px 24px;
    background: var(--secondary-color);
    border-radius: 15px;
    width: 85%;
}

.testimonial-user-img h6 {
    margin-top: 22px;
    font-size: 25px;
    font-weight: 500;
    color: var(--dark-bg-text-color);
}

.testimonial {
    padding: 78px 24px;
    background: #e9e9e9;
    border-radius: 15px;
    position: relative;
    min-height: 400px;
}

.testimonials-quote {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: #000;
    height: 90px;
    width: 70px;
    border-radius: 50px 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-quote i {
    color: #fff;
    font-size: 35px;
}

.testimonials-main-parent {
    position: relative;
}

.testimonials-arrows {
    position: absolute;
    top: 50%;
    left: -105px;
    right: -105px;
    /* 🔥 important */
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    /* 🔥 magic */
    padding: 0 20px;
    /* optional spacing from edges */
    z-index: 5;
    pointer-events: none;
}

.testimonials-arrows .testi-left-arrow,
.testimonials-arrows .testi-right-arrow {
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.testimonials-arrows .testi-left-arrow {
    background: #000;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    flex-shrink: 0;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(40px);
    cursor: pointer;
    transition: 0.3s all ease;
}

.testimonials-arrows .testi-left-arrow i {
    color: #fff;
    font-size: 30px;
}

.testimonials-arrows .testi-right-arrow {
    background: #000;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    flex-shrink: 0;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-40px);
    cursor: pointer;
    transition: 0.3s all ease;
}

.testimonials-arrows .testi-right-arrow i {
    color: #fff;
    font-size: 30px;
}

.testimonials-sec:hover .testi-left-arrow {
    opacity: 1;
    transform: translateX(0);
}

.testimonials-sec:hover .testi-right-arrow {
    opacity: 1;
    transform: translateX(0);
}

.testimonials-custom-gap {
    --bs-gutter-x: 6rem;
}

.customer-review p {
    font-size: 22px;
    line-height: 34px;
    font-weight: 400;
}

.customer-user-details h5 {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

.customer-user-details h6 {
    font-size: 22px;
}

.testimonials-main-parent:hover .testi-left-arrow {
    opacity: 1;
    transform: translateX(0);
}

.testimonials-main-parent:hover .testi-right-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Optional hover background opacity */
.testi-left-arrow:hover,
.testi-right-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}


/* footer section */
footer.footer-sec {
    background: #f4f4f4;
    /* padding: 64px 24px; */
    padding: 64px 24px 0 24px;
}

.footer-first-part {
    padding: 64px 60px;
    background: url(../images/footer-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--primary-color);
    border-radius: 20px;
}

.footer-first-part hr {
    color: #555;
}

.footer-social-icons i {
    color: var(--secondary-color);
    font-size: 25px;
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-social-icons i:hover {
    color: var(--dark-bg-text-color);
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-logo-wrapper h2 {
    color: #fff;
    font-size: 48px;
}

.footer-logo-wrapper h2 span {
    color: var(--secondary-color);
}

.address-wrapper h6 {
    font-size: 28px;
    color: #fff;
}

.address-wrapper p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}

.address-wrapper span a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
}

.links-wrapper h6 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 22px;
}

.links-wrapper ul {
    padding: 0;
}

.links-wrapper ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.links-wrapper ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--dark-bg-text-color);
    transition: width 0.3s ease;
}

.links-wrapper ul li a:hover {
    color: var(--dark-bg-text-color);
}

.links-wrapper ul li a:hover::after {
    width: 100%;
}

.links-wrapper ul li {
    list-style-type: none;
    margin-bottom: 22px;
}

.newletter-wrapper h6 {
    font-size: 28px;
    color: #fff;
    line-height: 38px;
}

.newletter-wrapper p {
    color: #fff;
    font-size: 18px;
}

.input-wrapper input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 0;
    font-size: 18px;
    font-weight: 500;
}

.input-wrapper button {
    width: 100%;
    padding: 16px;
    border: 0;
    background: var(--heading-color);
    color: #fff;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s all ease;
}
.input-wrapper button:hover{
    background: var(--secondary-color);
}

.custom-gutter {
    --bs-gutter-x: 3rem;
}

.terms-links ul {
    padding: 0;
}

.terms-links ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 40px;
}

.terms-links ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.footer-second-part {
    padding: 22px 12px;
}

.copyright-sec p {
    font-size: 18px;
    font-weight: 600;
}


/* About Us Page */
.inner-banner {
    padding: 0 24px;
    background: #f4f4f4;
}

.inner-banner-bg {
    background: url(../images/inner-banner.webp) no-repeat, #00000069;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-blend-mode: overlay;
}

.inner-banner-heading-wrapper {
    text-align: center;
}

.inner-banner-heading-wrapper h2 {
    font-size: 70px;
    font-weight: 500;
    color: var(--dark-bg-text-color);

}

section.inner-about-sec {
    padding: 64px 12px;
    background: #f4f4f4;
}

section.inner-about-sec h5 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

section.inner-about-sec h5 i {
    margin-right: 8px;
}

section.inner-about-sec h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
}

section.inner-about-sec p {
    font-size: 16px;
    line-height: 29px;
}

.horizontal-row {
    background: #f4f4f4;
}

.horizontal-row hr {
    color: #555;
    height: 2px;
}

section.cta-logo-sec {
    padding: 64px;
    background: #f4f4f4;
}

section.cta-logo-sec img {
    filter: brightness(44%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition: 0.3s all ease;
}

section.cta-logo-sec a:hover img {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

/* Property Inner Page */
.properties-heading-wrapper h5 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 26px;
}

.properties-heading-wrapper h5 i {
    margin-right: 8px;
}

.property-image {
    position: relative;
}

.property-price-div {
    position: absolute;
    background: url(../images/price-bg.webp);
    background-size: cover;
    background-position: center;
    padding: 15px 44px;
    right: 0;
    /* border-radius: 8px; */
    top: 0;
}

.property-price-div span {
    font-size: 18px;
    font-weight: 600;
}

.property-price-div span i {
    margin-right: 13px;
    font-size: 21px;
}

.property-btn span i {
    transform: rotate(-45deg);
}

/* Blogs Inner Page */
section.blogs-list-sec {
    padding: 64px 12px;
    background: #f4f4f4;
}

.blogs-heading-wrapper h5 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.blogs-heading-wrapper h5 i {
    margin-right: 8px;
}

.blogs-heading-wrapper h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
}

.blogs-heading-wrapper {
    padding-bottom: 23px;
}

.blog-content {
    padding: 21px 0;
}

.blog-content {}

.date-box ul li {
    list-style-type: none;
    font-size: 18px;
    display: inline-block;
    margin-right: 16px;
    font-weight: 600;
}

.date-box ul {
    padding: 0;
}

.date-box ul li i {
    margin-right: 8px;
}

.blog-title-main {
    display: flex;
    justify-content: space-between;
}

.blog-title {
    font-size: 29px;
    font-weight: 500;
    line-height: 47px;
    width: 70%;
}

.blog-btn {
    height: 60px;
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-btn a i {
    font-size: 23px;
    transform: rotate(-45deg);
    color: #fff;
}

.blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.blog-img:hover img {
    transform: scale(1.08);
}

/* Contact Page */
section.contact-us-sec {
    padding: 64px 12px;
    background: #f4f4f4;
}

.contact-list-parent h3 {
    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
    color: #2a2a2a;
}

.contact-list-parent {
    padding: 34px;
    border: 1px solid #cfcfcf;
    border-radius: 30px;
    height: 440px;
}

.contact-list-parent p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-us-ul ul {
    padding: 0;
}

.contact-us-ul ul li a {
    font-size: 19px;
    color: #2a2a2a;
    font-weight: 400;
    text-decoration: none;
    font-weight: 500;
}

.contact-us-ul ul li {
    list-style-type: none;
    margin-bottom: 17px;
}

.contact-list-parent h4 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 500;
}

.contact-list-parent .social-icons {
    padding: 0;
    padding-top: 14px;
}

.contact-us-ul ul li a i {
    margin-right: 10px;
}

.contact-list-parent .social-icons li {
    list-style-type: none;
    display: inline-block;
    margin-right: 12px;
}

.contact-list-parent .social-icons li a i {
    color: #2a2a2a;
    font-size: 25px;
}

section.contact-us-sec .input-wrapper input {
    border: 1px solid #69727d;
}

section.contact-us-sec .input-wrapper {
    padding-bottom: 15px;
}

section.contact-us-sec .input-wrapper textarea {
    width: 100%;
    border: 1px solid #69727d;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
}

section.contact-us-sec .input-wrapper button {
    width: 25%;
}

section.address-sec {
    padding: 24px 12px;
    background: #f4f4f4;
}

section.address-sec iframe {
    border-radius: 10px;
}

/* Harbor Bay Sec */
section.harbor-bay-sec {
    padding: 64px 12px 0 12px;
    background: #f4f4f4;
}

section.harbor-bay-sec img {
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
}

.harbor-content h5 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.harbor-content h5 i {
    margin-right: 8px;
}

.harbor-content h2 {
    font-size: 37px;
    font-weight: 500;
    line-height: 62px;
    color: #2a2a2a;
}

.harbor-content hr {
    height: 2px;
    color: #555;
}

.features-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.features-sec h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2a2a2a;
}

.features ul {
    padding: 0;
}

.features ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 16px;
    font-size: 18px;
    color: #2a2a2a;
    font-weight: 500;
}

.features-price {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #2a2a2a;
}

.features ul li i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 20px;
}
.description-sec {
    padding: 24px 12px 0 12px;
}

.description-sec h6 {
    font-size: 25px;
    font-weight: 500;
    color: #2a2a2a;
}

.description-sec p {
    color: #2a2a2a;
    font-size: 16px;
    line-height: 29px;
}
section.features-img {
    padding: 64px 12px;
    background: #f4f4f4;
}

section.features-img img {
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.custom-select {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.select-trigger {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 14px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.select-trigger i {
    font-size: 14px;
    color: #666;
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    display: none;
    z-index: 10;
}

.custom-select.active .select-dropdown {
    display: block;
}

.search-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 14px;
}

.option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    cursor: pointer;
    font-size: 14px;
}

.option input {
    accent-color: #000;
}
section.listing-filter-form {
    padding: 24px 10px;
    background: #f4f4f4;
}

.listing-form-sec {
    padding: 41px 37px;
    background: #fff;
    border-radius: 20px;
}


.filter-input-wrapper button {
    padding: 12px 24px;
    width: 100%;
    border-radius: 10px;
    border: 0;
    background: #87f1f2;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.filter-input-wrapper button i {
    margin-left: 12px;
    font-size: 18px;
    transform: rotate(-45deg);
}
section.listing-main-parent {
    background: #f4f4f4;
}
section.property-cards-sec {
    padding: 64px 12px;
}
.results-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
}

.results-wrapper select {
    padding: 9px 19px;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
}
.property-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
}

.property-card-image {
    overflow: hidden;
    position: relative;
}

.favorite-list {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 0;
    padding: 9px 12px;
}

.heart-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #fff;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-icon i {
    font-size: 22px;
}
.property-count {
    background: #87f1f2;
    width: 70px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.property-card-image img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.property-name {
    padding: 12px 0;
    font-size: 28px;
    font-weight: 500;
}

.property-location {
    padding-bottom: 12px;
    font-size: 18px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price-details {
    display: flex;
    justify-content: space-between;
}

.property-price {
    color: #1dbfc1;
    font-size: 28px;
    font-weight: 600;
    margin-top: 12px;
}

.property-detail-btn a {
    background: #1dbfc1;
    padding: 14px 17px;
    display: inline-block;
    margin-top: 12px;
    border-radius: 15px;
}

.property-detail-btn a i {
    font-size: 20px;
    transform: rotate(-45deg);
    color: #fff;
}
.location-map iframe{
    border-radius: 15px;
}
section.add-listing-form {
    padding: 64px 12px;
    width: 65%;
    margin: 0 auto;
}
button.save-post {
    padding: 22px 44px;
    background: var(--primary-color);
    color: #fff;
    border: 0;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 600;
}
section.privacy-policy-sec {
    padding: 64px 12px;
    background: #f4f4f4;
}

section.privacy-policy-sec h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.privacy-item {
    padding-bottom: 16px;
}
/*======================================
   Login & Register & My Account CSS
========================================*/
.alert-success {
    color: #ffffff;
    background-color: #00b894;
    border-color: #00b894;
}

.alert-danger {
    color: #FFF;
    background-color: #ff4949;
    border-color: #ff4949;
}

.section{
	padding-top: 80px;
	padding-bottom: 50px;
}

.section-heading{
	text-align: center;
	font-weight: 600;
	margin-bottom: 60px;
	color: var(--primary-color);
	position: relative;
	line-height: 24px;
}

.section-heading::after{
	content: '';
    width: 60px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

#auth{
	padding: 60px 0px;
}

.login_register{
	background: #ffffff;
    padding: 50px;
    box-shadow: 1px 3px 10px #d8d8d8;
}

.login_register .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login_register .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.login_register .btn-login{
	display: block;
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
	transition: all 0.3s;
	width: 100%;
	margin-top: 30px;
}
.login_register .btn-login:hover {
    background: #0e172a;
    color: #FFF;
}

.login_register .right_link{
	color: var(--primary-color);
	margin-top: 15px;
	transition: all 0.3s;
	display: inline-block;
}

.login_register .right_link:hover{
	text-decoration: underline;
}

.create-account-link{
	color: var(--primary-color);
	display: inline-block;
	margin-top: 15px;
	transition: all 0.3s;
}

.create-account-link:hover{
	color: var(--primary-color);
	text-decoration: underline;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #e9e9e9;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #d0cfcf;
}

.customer_dashboard .nav-tabs li.nav-item a {
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #2b2f4c;
}
.customer_dashboard .nav-tabs li.nav-item a.active{
	background: #1d2224;
	color: #FFF;
}
.customer_dashboard .nav-tabs li.nav-item a i {
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard_content .card-header {
    background-color: #1d2224;
    border-color: #1d2224;
    padding: 14px 20px;
}

.dashboard_content .card-header > h4 {
	font-size: 16px;
	color: #FFF;
	font-weight: 400;
	margin: 0;
}

.account_details .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.account_details .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.account_details .btn-login{
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid #303952;
    color: #303952;
	transition: all 0.3s;
	margin-top: 30px;
}
.account_details .btn-login:hover{
    background: #303952;
    color: #FFF;
}
.btn-add-address{
	color: #FFF !important;
	padding: 6px 16px;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 50px;
}

/*======================================
	End Login CSS
========================================*/