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


:root {
    --bs-dark-rgb: 43, 43, 43;
    --web-yellow: #FFC107;
    --web-dark: #333333;
    --web-gray: #F8F9FA;
}

body {
    color: #000000;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--web-dark);
    text-transform: capitalize;
}

h1,
.h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
}

h2,
.h2 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
}

h3,
.h3 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
}

h4,
.h4 {
    font-size: 16px;
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

p,
a,
li,
span,
label,
tr,
td,
th,
input {
    color: var(--web-dark);
}

p {
    font-size: 20px;
}

p.small {
    font-size: 18px;
}

a {
    transition: all .5s ease;
    outline: none;
    display: inline-block;
    width: fit-content;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1240px) {
    .container {
        max-width: 1240px;
    }
}

.font-inter {
    font-family: "Inter", sans-serif;
}

.web-yellow {
    color: var(--web-yellow);
}

.text-color {
    color: var(--web-dark);
}

.bg-web-yellow {
    background-color: var(--web-yellow);
}

.bg-web-dark {
    background-color: var(--web-dark)
}

.border-web-yellow {
    border-color: var(--web-yellow) !important;
}

.bg-lite {
    background: var(--web-gray) !important;
}

.fs-48 {
    font-size: 48px !important;
}

.fs-45 {
    font-size: 45px !important;
}

.fs-36 {
    font-size: 36px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.list-style-none {
    list-style: none;
}

.border-radius-20 {
    border-radius: 20px !important
}

.border-radius-10 {
    border-radius: 10px !important
}

.box-shadow {
    box-shadow: 0px 0px 25px 0px #0000001A;
}

form label:not([for]) {
    font-size: 13px;
}

.highlight-text {
    padding: 20px 30px;
    width: fit-content;
}

.landing-page .navbar-nav {
    display: none;
}

.landing-page .navbar-collapse {
    justify-content: end;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
textarea.form-control {
    font-family: "Poppins", sans-serif;
}

/**Button CSS**/

.btn-main {
    padding: 15px 25px;
    margin: 0 10px;
    background: var(--web-yellow);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: black;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--web-yellow);
    transition: 0.4s all;
}

.btn-main:disabled {
    opacity: 0.4;
    cursor: no-drop;
}

.btn-main .btn-text {
    z-index: 1;
    position: relative;
    color: #000000;
}

.btn-main:before,
.btn-main:after {
    content: '';
    width: 51%;
    height: 100%;
    background-color: var(--web-yellow);
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.4s transform;
    transform: translateX(0%);
}

.btn-main:after {
    right: 0;
    left: auto;
}

.btn-main i {
    margin-left: 10px;
}

.btn-main:hover {
    background-color: var(--web-dark);
}

.btn-main:hover .btn-text {
    color: var(--web-gray);
}

.btn-main:hover:before {
    transform: translateX(-105%);
}

.btn-main:hover:after {
    transform: translateX(105%);
}

.btn-main.btn-white:before,
.btn-main.btn-white:after {
    background-color: var(--web-gray);
}

.btn-main.btn-border-dark {
    color: black;
    border: 1px solid var(--web-dark);
    min-width: 280px;
}

.btn-main.btn-border-white {
    border: 1px solid var(--web-gray);
    background: rgb(43 43 43);
    min-width: 280px;
}

.btn-main.btn-border-white .btn-text {
    color: #fff;
}

.btn-main.btn-border-white:hover .btn-text {
    color: #000;
}

.btn-main.btn-border-white:before {
    transform: scaleX(0);
    transform-origin: right center;
}

.btn-main.btn-border-white:after {
    transform: scaleX(0);
    transform-origin: left center;
}

.btn-main.btn-border-white:hover:before,
.btn-main.btn-border-white:hover:after {
    transform: scaleX(1);
}

/**Button CSS end**/

.top_admin_bar .navbar-header a span,
.top_admin_bar ul:not(.dropdown-menu) li a.nav-link {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.top_admin_bar ul.dropdown-menu li a.nav-link {
    color: var(--web-dark) !important;
    display: block;
    width: 100%;
}

.top_admin_bar ul li ul.dropdown-menu li a.nav-link i {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    text-align: center;
    align-content: center;
}

.top_admin_bar ul li ul.dropdown-menu li a.nav-link:hover {
    background-color: var(--web-yellow);
}

.user-menu ul.dropdown-menu {
    width: 220px;
}

.user-menu ul.dropdown-menu li a.nav-link {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--web-dark) !important;
    display: block;
    width: 100%;
    padding: 10px 15px;
}

.user-menu ul.dropdown-menu li a.nav-link i {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    text-align: center;
    align-content: center;
}

.user-menu ul.dropdown-menu li a.nav-link:hover {
    background-color: var(--web-yellow);
}

.offcanvas .nav-link:hover {
    background: var(--web-yellow);
    color: #000 !important;
}

.offcanvas .nav-link {
    padding: 10px 15px;
}

button.dropdown-toggle {
    width: 56px;
    height: 56px;
}

button.dropdown-toggle::after,
.stepper-line:last-child::after,
.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select .xdsoft_scrollbar {
    display: none;
}

/**Header CSS**/
.header {
    background: #ffffff;
    z-index: 99;
    transition: all .5s ease;
    box-shadow: 0 4px 5px -6px #000;
}

.navbar-brand img {
    width: 150px;
}

.header .navbar .navbar-nav li a {
    font-size: 18px;
    color: var(--web-dark);
    border: 0;
    font-weight: 400;
    padding: 0;
    margin: 0 15px;
    text-transform: capitalize;
    position: relative;
}

.header .navbar .navbar-nav li a:hover,
.header .navbar .navbar-nav li a.active {
    font-weight: 600;
}

.header .navbar .navbar-nav li a.active:before {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--web-yellow);
    position: absolute;
    left: 0;
    bottom: 0;
}

.header .navbar .navbar-nav li ul {
    width: 250px;
    border: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header .navbar .navbar-nav li li a {
    margin: 0;
    padding: 10px 15px;
    text-wrap: wrap;
}

.header .navbar .navbar-nav li li a:hover,
.header .navbar .navbar-nav li li a.active {
    background-color: #EC2027;
    color: #fff
}

/* Home Page */

.hero-banner,
.banner-sec {
    background-image: url('../images/hero-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0px;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.bg-overlay-dark {
    position: relative;
    overflow: hidden;
}

.bg-overlay-dark .container {
    position: relative;
    z-index: 1;
}

.bg-overlay-dark:before {
    content: '';
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.hero-banner .container,
.banner-sec .content-inner {
    max-width: 850px;
}

.banner-heading {
    font-size: 68px;
}

.highlight {
    background: var(--web-yellow);
    color: black;
    padding: 0px 8px;
    border-radius: 8px;
}

.our-services,
.renting-process,
.py-100 {
    padding: 100px 0px;
}

.services {
    padding: 26px;
    border: 1px solid #BDBDBD;
    border-radius: 12px;
    transition: 0.4s;
    height: 100%;
    position: relative;
}

.services .count {
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 15px;
}

.service-icon {
    width: 80px;
    height: 89px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

.service-icon .icon-bg svg {
    fill: var(--web-yellow);
    transition: 0.4s;
}

.service-icon .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.services p {
    font-size: 18px;
    /* margin-bottom: 0; */
}

.services h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.services h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}


.services:hover {
    background-color: var(--web-yellow) !important;
}

.services:hover .icon-bg svg {
    fill: #fff;
}

.how-it-works {
    padding: 100px 0;
}

.testimonial-sec {
    padding: 100px 0;
}

.testimonial {
    max-width: 1050px;
    text-align: center;
    padding: 0;
    margin: auto;
}

.testimonial p {
    font-size: 30px;
    line-height: 1.6;
    font-style: italic;
    color: var(--web-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial .author {
    font-weight: bold;
    font-size: 30px;
    font-style: italic;
    color: var(--web-yellow)
}

.testimonial .subtext {
    font-size: 18px;
    color: var(--web-dark);
    margin-top: 5px;
}

.cta-sec {
    padding: 100px 0;
}

.banner-panel {
    background-position: center;
    background-size: cover;
    padding: 80px 20px;
    border-radius: 0 0 20px 20px;
    position: relative;
}

#faq_accordion span.accordion-number {
    position: absolute;
    font-weight: 700;
    font-size: 38px;
    line-height: 35px;
    top: 50%;
    z-index: 1;
    left: 30px;
    transform: translateY(-50%);
}

#faq_accordion .accordion-item {
    padding: 30px 30px 30px 100px;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #CBCBCB;
}

.accordion-body {
    margin-top: 10px;
}

#faq_accordion .accordion-item p {
    font-size: 16px;
    margin: 0;
}

#faq_accordion .accordion-button:not(.collapsed) {
    padding-bottom: 0;
}

#faq_accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: var(--web-yellow);
}

/* Remove default arrow */
#faq_accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 18px;
    font-weight: 600;
    transform: none;
    line-height: 32px;
    text-align: center;
    background-color: var(--web-yellow);
    width: 32px;
    height: 32px;
    border-radius: 40px;
}

/* Change to minus when open */
#faq_accordion .accordion-button:not(.collapsed)::after {
    content: "x";
    background-color: var(--web-dark);
    color: var(--web-gray);
}

.form-range::-webkit-slider-thumb {
    background-color: var(--web-yellow);
}

.include-list li {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
    margin-top: 8px;
    position: relative;
}

.property-content .desc ul li {
    position: relative
}

.include-list li:before,
.property-content .desc ul li:before {
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/images/include-icon.svg);
    background-size: contain;
}

.property-content .desc ul li:before {
    width: 16px;
    height: 16px;
}

/* footer */

footer {
    background: var(--web-gray);
}

.footer-bar {
    background-color: var(--web-yellow);
}

a.foot-logo {
    width: 240px;
}

footer ul li a {
    transition: all .4s ease;
    position: relative;
    text-decoration: none;
    color: var(--web-dark);

}

footer ul li a:hover,
footer ul li a.active {
    font-weight: 600;
}

ul.footer-social li.social-link {
    width: 30px;
    height: 30px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

ul.footer-social li.social-link a {
    color: var(--web-gray);
}

.copyright-text {
    font-weight: 500;
    font-size: 14px;
}


/* Popup Form */

.login-container {
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    margin: auto;
}

.form-check-input:checked {
    background-color: var(--web-yellow);
    border-color: var(--web-yellow);
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.terms-popup {
    color: var(--web-yellow);
    font-weight: 600;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555555;
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9ecef;
    border-radius: 0 5px 5px 0;
}

.password-toggle.active {
    color: #000;
}

#termsModal p {
    font-size: 16px;
}

.verify-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 15px;
    font-size: 14px;
    border: none;
    background: var(--web-yellow);
    color: #000;
    border-radius: 6px;
    height: 100%;
    font-weight: 500;
}

.verify-btn:disabled {
    background: #28a745;
    /* green when done */
    cursor: not-allowed;
    color: #fff;
}

.verify-btn.verified {
    font-size: 18px;
    color: #fff;
}

/* Gig Register */

.gig-register-popup .modal-header {
    background: var(--web-yellow);
}

.gig-register-popup .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Basic stepper styling */
.stepper-wrapper {
    max-width: 80%;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.stepper-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    transition: all 0.3s ease;
}

.stepper-item.active {
    background-color: var(--web-yellow);
    color: white;
    font-weight: bold;
}

.stepper-counter {
    font-size: 1.25rem;
    font-weight: 600;
}

.stepper-line {
    height: 4px;
    flex: 1;
    background-color: var(--web-yellow);
    position: relative;
    transition: background-color 0.4s ease;
}

.stepper-line.active {
    background-color: #dee2e6 !important;
}

.stepper-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--web-yellow);
    border-radius: 50%;
    border: 2px solid #fff;
}

.stepper-line {
    height: 6px;
    background-color: #dee2e6;
    position: relative;
    overflow: hidden;
}

.stepper-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--web-yellow);
    transition: width 0.4s ease;
}

.stepper-line.active:before {
    width: 100%;
}

/* Required Label Style */
.required-label::after {
    content: " *";
    color: red
}

/*  */

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select {
    padding: 3px;
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select .xdsoft_option {
    padding: 6px 15px !important;
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover,
.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current {
    background: var(--web-yellow) !important;
    color: #000 !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select .xdsoft_scrollbar {
    display: none;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Properties Grid */

.search-btn i {
    margin: 0;
}

.search-btn {
    padding: 15px;
}

/* Manager CSS */

.detail-wrap {
    box-shadow: 0px 4px 14px rgba(214, 214, 214, 0.24);
}

.details-wrap .detail-user-wrap .detail-user-img {
    margin-right: 24px;
    flex-shrink: 0;
    width: 188px;
}

.details-wrap .detail-user-wrap .user-wrap {
    width: 100%;
}

.detail-user-img img {
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 3 / 4;
}

.rating-review {
    font-weight: 500;
    color: #8a909a;
}

.details-wrap .detail-user-wrap .detail-user-info p {
    font-weight: 500;
    margin-bottom: 15px;
}

.detail-user-info p span {
    font-size: 15px;
    font-weight: 700;
    color: var(--web-yellow);
    margin-left: 4px;
}

.rating i {
    color: #E3E3E3;
}

.rating i.checked {
    color: #FCAF3D;
}

.rating .rating-count i {
    margin-right: 3px;
}

.detail-user-info h3 i {
    font-size: 20px;
    color: #0DCA95 !important;
}

.border01 {
    border-bottom: 1px solid #E3E3E3;

}

.mem-list ul li {
    font-weight: 500;
    color: #8a909a;
}

.rental-btn {
    padding: 12px 15px;
}

.accordion-item {
    border: 0;
}

.accordion-button:not(.collapsed) {
    background: var(--web-gray);
    box-shadow: none;
}

.accordion-button {
    font-size: 20px;
    font-weight: 700;
    background: var(--web-gray);
}

.accordion-body {
    color: #8a909a;
}

.services-area li {
    display: flex;
    align-items: center;
}

.services-area li i {
    margin-right: 5px;
    width: 16px;
    height: 16px;
    background: var(--web-yellow);
    border-radius: 50%;
    color: #FFF;
    font-size: 8px;
    padding: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.specialities ul li {
    background: #f6f4ff;
    border: 1px solid #f6f4ff;
    border-radius: 70px;
    padding: 5px 15px;
}

.tab-listing .nav-tabs {
    --bs-nav-tabs-border-width: none;
}

.tab-listing .nav.nav-tabs li {
    padding: 5px 10px;
}

.tab-listing .nav.nav-tabs li a:hover {
    background: var(--web-yellow);
    color: #fff !important;
    border-radius: 10px;
}

.tab-listing .nav-tabs .nav-link.active {
    background: var(--web-yellow);
    font-weight: 600;
}

.user-avatar1 img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

.user-text p {
    font-size: 14px;
}

.enquire {
    border-bottom: 1px solid #e3e3e3;
}

.contact ul li i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--web-yellow);
}

.contact ul li {
    color: #0e0e46;
}

.contact ul li span:first-child {
    width: 40%;
}

.contact ul li span:last-child {
    width: 60%;
}

.listing01 {
    float: right;
    color: #8a909a;
}

.accordion-header:focus {
    box-shadow: none;
}

.review-sec {
    border: 1px solid #f4f4f4;
    min-height: 200px !important;
}

.review01 {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.carousel-caption {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    padding-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--web-yellow);
}

/* Property Grid/Slider */

.product-custom .profile-widget {
    background-color: #FFF;
    box-shadow: 0px 4px 24px rgba(189, 189, 189, 0.24);
    position: relative;
    margin-bottom: 24px;
    margin-top: 10px;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.product-custom .doc-img {
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.5s all;
    border-radius: 10px 10px 0 0;
}

.product-custom {
    width: 100%
}

.product-custom .doc-img .property-img {
    position: relative;
    overflow: hidden;
    transition: .5s all;
    border-radius: 10px 10px 0 0;
    display: block;
    width: 100%;
}

.product-custom .doc-img .property-img:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0
}

.product-custom .doc-img .property-img img {
    border-radius: 10px 10px 0 0;
    z-index: -1;
    position: relative;
    transition: .5s all;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}

.product-custom .doc-img:hover .property-img img {
    transform: scale(1.14)
}

.product-custom .doc-img .user-avatar {
    position: absolute;
    right: 20px;
    bottom: 20px
}

.product-custom .doc-img .user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.product-custom .price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1
}

.product-custom .price span {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: 1;
}

.product-custom .price h5 {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0
}

.product-custom .featured {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1
}

.product-custom .featured span {
    font-weight: 500;
    font-size: 14px;
    background-color: var(--web-yellow);
    padding: 5px 8px;
    display: inline-block;
    border-radius: 8px
}

.product-custom .rented span {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background-color: red;
    padding: 5px 8px;
    display: inline-block;
    border-radius: 8px
}

.product-custom .status {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    text-align: center;
    transition: .5s all;
    color: #fff
}

.product-custom .status .p_status {
    background: #000;
    padding: 5px 8px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500
}

.product-custom .status .p_status.for_rent,
.product-custom .status .p_status.for_sale,
.product-custom .status .p_status.vacation_rental {
    background-color: #0dca95;
}

.product-custom .status .p_status.rented,
.product-custom .status .p_status.sold {
    background: #e31e24 !important;
}

.furnished {
    background: #1A73E8 !important
}

.product-custom .doc-img .user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.pro-content .details {
    margin: 0 0 20px;
    padding: 15px 15px 10px;
    background-color: var(--web-gray);
    font-size: 14px;
}

.pro-content .details li {
    color: #0E0E46;
    margin-bottom: 5px;
    font-weight: 500;
    margin-right: 10px;
    display: flex;
}

.pro-content .details li img {
    margin-right: 8px;
    width: 16px;
}

.listed-property .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.listed-property .feature-slider.owl-carousel .owl-nav button {
    background: #FFF;
    color: #0E0E46;
    box-shadow: 0px 4px 24px rgba(189, 189, 189, 0.24);
}

.owl-nav button {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    border: none;
    transition: .5s all;
    margin: 0 10px 0 0;
}

.property-action button {
    padding: 10px 15px;
    border-radius: 0;
}

/* Pagination */

.pagination .active>.page-link,
.pagination .page-link.active {
    background: var(--web-yellow);
    border-color: var(--web-yellow);
}

.pagination .page-link {
    color: var(--web-dark);
}


.map-container {
    width: 100%;
    height: 500px;
    position: relative;
    background: #f2f2f2;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eaeaea, #d9d9d9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #777;
}

.property-nav {
    height: 100%;
    align-content: center;
}

.property-nav ul {
    border: none;
    height: 100%;
    gap: 10px;
}

.property-nav li {
    flex: 1;
}

.property-nav ul li button.nav-link {
    width: 100%;
    height: 100%;
    border-radius: 100px !important;
    font-weight: 600;
    border-color: #BDBDBD;
    color: #BDBDBD;
}

.property-nav ul li button.nav-link:hover {
    border-color: var(--web-dark);
    background-color: var(--web-gray);
    color: var(--web-dark);
}

.property-nav ul li button.nav-link.active {
    border-color: var(--web-yellow);
    background: var(--web-yellow);
}


/* Free Reantal Evaluation */
.b24-form-header-title {
    font-family: 'poppins' !important;
    font-weight: 600 !important;
    font-size: 30px !important;
}

.b24-form-btn-block .b24-form-btn {
    background: var(--web-yellow);
    color: #000;
    font-weight: 600;
    font-family: 'poppins';
}

.b24-form-btn-block .b24-form-btn:hover {
    background: var(--web-dark);
    color: #fff;
}

.b24-form-control-list .b24-form-control,
.b24-form-control-select .field-item,
.b24-form-control-string .b24-form-control,
.b24-form-control-text .b24-form-control {
    font-family: 'poppins' !important;
}


.no-properties-box {
    background: var(--web-dark);
    border-left: 5px solid var(--web-yellow);
    padding: 20px;
    border-radius: 6px;
}

.no-properties-box .icon i {
    font-size: 40px;
    color: var(--web-yellow);
}

.utilities ul li span {
    color: #fff;
}

.utilities ul li i {
    font-size: 16px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    transition: all 0.25s ease;
}

.feature-box:hover {
    border-color: #f4b400;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

/* Featured card default highlight */
.feature-box.featured {
    border-color: #f4b400;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.feature-box .icon {
    width: 42px;
    height: 42px;
    background: #f4b400;
    border-radius: 10px;
    flex-shrink: 0;
}

div#emailOtpMsg,
#errorMessage,
#otpVerifyMsg {
    font-size: 14px;
}

.section-padding {
    padding: 100px 0;
}

.section-separator.subtle-line {
    height: 1px;
    max-width: 1400px;
    margin: 10px auto;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.12), transparent);
}


/* Section background */
.our-services {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Card */
.service-card {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--web-yellow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon wrapper (does NOT touch icon itself) */
.service-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

/* Content */
.service-content .price {
    font-weight: 600;
    color: var(--web-dark);
}

.service-content p {
    /*font-size: 0.95rem;*/
    line-height: 1.7;
}

/* Feature list */

.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    width: 50%;
}

/* Check icon */
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #e6f7f0;
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Final note */
.final-note {
    font-weight: 500;
    color: #1f2937;
}

.service-icon .icon i {
    font-size: 36px;
}

.service-icon .icon img {
    filter: brightness(0);
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 30px;
    }

    .service-content .price {
        font-size: 1.5rem;
    }
}




.services-step.even {
    margin-left: auto;
}

.services-step {
    position: relative;
}

ul.feature-bullets li {
    margin-right: 0;
    background: var(--web-dark);
    border: 1px solid var(--web-yellow);
    font-size: 14px !important;
    color: #fff;
}

.services-step .count {
    font-size: 150px;
    position: absolute;
    right: 0;
    opacity: 0.2;
    top: -100px;
}

@media (min-width: 992px) {

    .services-step {
        width: calc(50% - 15px);
    }

    .services-step.step-2 {
        margin-top: -200px;
    }

    .services-step.step-3 {
        margin-top: -250px;
    }

    .services-step.even.step-4 {
        margin-top: -230px;
    }

    .services-step.odd.step-5 {
        margin-top: -120px;
    }
}

@media (max-width: 992px) {
    ul.feature-bullets li {
        font-size: 12px !important;
    }

    .services {
        padding: 16px;
        margin-bottom: 20px;
    }

    .services-step .count {
        font-size: 100px;
        top: -70px;
    }
}

.btn-dark {
    padding: 7px 15px;
    font-weight: 600;
    font-size: 15px;
    background-color: var(--web-dark);
    border-radius: 7px;
}

.btn-text {
    color: var(--web-yellow);
}

.check-mark {
    content: '';
    width: 22px;
    height: 22px;
    display: inline-block;
    background-image: url(./images/include-icon.svg);
    margin-right: 10px;
    margin-bottom: -6px;
}


/*  */

.include-list.deny li:before {
    content: "\f00d";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    background: red;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    width: 100%;
    text-align: center;
}