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

/*--- common css ---*/

:root {
    --primary-color: #224b7d;
    --accent-color: #b72837;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

span {
    display: inline-block;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

image,
video {
    width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
}

.common-btn {
    font-size: 18px;
    color: var(--black-color);
    padding: 6px 25px;
    border-radius: 30px;
    transition: 0.5s all;
    background: var(--dark-sky);
}

.common-btn:hover {
    color: var(--white-color);
}

section {
    padding: 30px 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.desktop {
    display: none !important;
}

.mobile {
    display: block !important;
}

/* =========== */

.hero_general_setion.banner {
    background-image: url(../images/main_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero_general_setion.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff71;
}

.hero_general_setion {
    height: calc(100vh - 258px);
}

.hero_general_setion .banner_body {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.banner_logo_box {
    padding: 30px 0 40px;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner_logo_box img,
.end_layer_box img {
    width: 100%;
    max-width: 160px;
    max-height: 85px;
}

.banner_logo_box::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    height: 530px;
    width: 110%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.center_box .img_box img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #224b7d;
    object-fit: cover;
}

.end_layer_box {
    opacity: 0;
    visibility: hidden;
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.end_layer_box::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    height: 530px;
    width: 110%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.main_login .login_section {
    min-height: 100vh;
    display: flex;
}

.main_login .login_section .left_section {
    background-image: url(../images/login_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main_login .login_section .left_section,
.main_login .login_section .right_section {
    width: calc(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    flex-direction: column;
}

.login_section .right_section {
    background-image: url(../images/bg-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main_login .login_section .left_section .center_content h1 {
    color: #ffffff;
    font-weight: 900;
    font-size: 55px;
    -webkit-text-stroke: 2px #b72837;
    text-stroke: 2px #b72837;
    margin-bottom: 10px;
}

.main_login .login_section .left_section .custom_search {
    display: flex;
}

.main_login .login_section .left_section .custom_search input {
    border: 2px solid #224b7d;
    outline: none;
    box-shadow: none;
    width: 100%;
    border-radius: 6px;
    padding: 5px 15px;
}

.main_login .login_section .left_section .custom_search .btn_search {
    color: #fff;
    background-color: #224b7d;
    outline: none;
    box-shadow: none;
    border-radius: 6px;
    padding: 5px 25px;
    margin-left: -15px;
}

.login_section .right_section .lgo_box img {
    width: 100%;
    max-width: 400px;
}

.login_section .right_section .text_box {
    margin-bottom: 30px;
}

.login_section .right_section .text_box h3 {
    color: #fff;
    margin-bottom: 0px;
}

.login_section .right_section .text_box h6 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}

.login_section .right_section .btn_box {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.login_section .right_section .btn_box .btn_common {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #b72837;
    padding: 5px 25px;
    border-radius: 6px;
    min-height: 40px;
    border: 1px solid #fff;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------- header css ----------- */

.mainHeader .mobile_header {
    display: none;
}

header.mainHeader {
    background-color: #224b7d;
}

.mainHeader .header_part {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    align-items: center;
    position: relative;
}

.mainHeader .header_part::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background: #224b7d;
    top: 0px;
    left: -40px;
    transform: skew(-40deg);
}

.mainHeader .header_part .left_logo a img {
    width: 100%;
    max-width: 228px;
    position: relative;
    z-index: 55;
}

.mainHeader .header_part .right_menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mainHeader .icon_box ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mainHeader .icon_box ul li a,
.icon_box .owl-carousel .item a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.mainHeader .icon_box ul li a {
    cursor: pointer;
}

/* .mainHeader .icon_box ul li a:hover {
    background-color: var(--accent-color);
} */

.mainHeader .icon_box ul li a:hover i {
    color: #fff;
}

.mainHeader .icon_box ul li a i {
    font-size: 24px;
    color: #343434;
}

.mobile_icons .icon_box {
    background-color: #c41929;
    padding: 10px;
}

.mobile_icons .icon_box ul {
    background-color: var(--accent-color);
    overflow-y: auto;
    scrollbar-width: none;
    padding: 10px 0px 10px 10px;
}

.mobile_icons .icon_box ul li a i {
    color: var(--accent-color);
}

@-moz-document url-prefix() {
    .owl-carousel .owl-stage {
        display: flex !important;
    }

    .owl-carousel .owl-item {
        float: none !important;
    }
}

.owl-carousel,
.owl-carousel * {
    box-sizing: border-box;
}

/* Mobile header adjustments for My Media */
@media (max-width: 767px) {
    .toggle_menu {
        width: 100%;
        border-radius: 0;
    }
}

.mainHeader .toggle_icon a i {
    color: #fff;
    font-size: 30px;
    transition: 0.3s all;
}

.mainHeader .toggle_icon a:hover i {
    color: #19365c !important;
}

.toggle_menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 330px;
    background-color: #ffffffeb;
    z-index: 999;
    border-radius: 20px 0px 0px 20px;
    padding: 20px 0;
    transition: 0.5s all;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 9999;
}

.toggle_menu.show {
    right: 0;
}

.toggle_menu.show ~ .mainHeader .toggle_icon a i,
.mainHeader.menu-open .toggle_icon a i {
    color: #224b7d !important;
}

.toggle_menu .user_img {
    text-align: center;
}

.toggle_menu .user_img img {
    width: 100%;
    max-width: 90px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 2px solid #224b7d;
    object-fit: cover;
}

.toggle_menu .user_img p {
    font-size: 20px;
    margin: 10px 0;
}

.toggle_menu .user_img p span {
    color: #b72837;
}

.toggle_menu ul li {
    text-align: center;
    margin-bottom: 2px;
}

.toggle_menu ul li a.active,
.toggle_menu ul li a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.toggle_menu ul li .img_link a.active {
    background-color: var(--accent-color);
    color: #fff;
}

.toggle_menu ul li a {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
}

.toggle_menu ul li a.back_btn {
    position: relative;
}

.toggle_menu ul li a.back_btn i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fff;
}

.toggle_menu ul li button {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
    border: none;
    box-shadow: none;
}

.toggle_menu ul li button.bg_gray {
    color: #fff;
    background-color: #606060;
}

/* My Media specific styles */
.add_link_drop.my-media {
    display: flex;
    flex-direction: column;
    height: 400px;
    background: #ffffffeb;
    border-radius: 20px 0px 0px 20px;
}

.add_link_drop.my-media .media-header {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: #ffffffeb;
    border-radius: 20px 0px 0px 0px;
}

.add_link_drop.my-media .media-header h4 {
    color: #343434;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.add_link_drop.my-media .media-content {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
}

.add_link_drop.my-media .media-content::-webkit-scrollbar {
    width: 6px;
}

.add_link_drop.my-media .media-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.add_link_drop.my-media .media-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.add_link_drop.my-media .media-footer {
    text-align: center;
    background: #ffffffeb;
    border-radius: 0px 0px 20px 0px;
}

.add_link_drop.my-media .media-footer li {
    padding: 0;
    border-bottom: none;
    margin-bottom: 2px;
}

.add_link_drop.my-media .media-footer .btn {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
    background: none;
    border: none;
}

.add_link_drop.my-media .media-footer .btn.bg_gray {
    color: #fff !important;
    background-color: #606060 !important;
}

.add_link_drop.my-media .media-footer .btn:hover,
.toggle_menu ul li button.exit_my_profile_drop:hover,
.toggle_menu ul li button.exit_edit_logo_drop:hover,
.toggle_menu ul li button.exit_color_theme_drop:hover,
.toggle_menu ul li button.exit_discard_btn:hover,
.toggle_menu ul li a.back_btn:hover,
.portal_filters .back_box .back_btn:hover {
    background-color: #ff3131 !important;
    color: #fff !important;
}

.add_link_drop .no-media-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.add_link_drop .media-type-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.add_link_drop .img_link_box a {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.toggle_menu ul li a.bg_gray {
    color: #fff !important;
    background-color: #606060 !important;
}

.toggle_menu .close_icon {
    display: block;
    position: fixed;
    top: 40px;
    right: -100%;
    max-width: 20px;
    width: 100%;
    text-align: center;
    z-index: 222;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.toggle_menu .close_icon a i {
    color: var(--accent-color);
    font-size: 26px;
}

.toggle_menu .close_icon.show {
    opacity: 1;
    visibility: visible;
    right: 15px;
    top: 10px;
}

/* .toggle_menu .btn_box .btn_sitting, */
.btn_logout,
.btn_save {
    color: #fff !important;
    font-size: 18px;
    width: 100%;
    box-shadow: none;
    outline: none;
    padding: 8px 20px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

/* .toggle_menu .btn_box .btn_sitting{
    background-color: var(--accent-color);
} */

.btn_logout {
    background-color: #606060;
}

.btn_logout:hover,
.bg_gray:hover,
.exit_my_profile_drop:hover,
.exit_edit_logo_drop:hover,
.close-my-media:hover {
    background-color: #ff3131 !important;
    color: #fff !important;
}

.btn_save {
    color: #fff !important;
    background-color: #606060 !important;
}

.save_discard_btn.show {
    display: flex;
}

.save_discard_btn {
    display: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.save_discard_btn .btn_logout {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 16px;
}

.save_discard_btn .btn_save {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 16px;
}

/* ----------- header css end ----------- */

/* ----------- footer css start ----------- */

.footer_sticky {
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    background-color: #224b7d;
    padding: 30px 20px 50px;
}

.footer_sticky .footer_box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.footer_sticky .footer_box .custom_search {
    display: flex;
}

.footer_sticky .footer_box h4 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}

.footer_sticky .footer_box .custom_search input {
    border: 1px solid #fff;
    outline: none;
    box-shadow: none;
    width: 100%;
    border-radius: 6px;
    padding: 5px 15px;
}

.footer_sticky .footer_box .custom_search .btn_search {
    color: #fff;
    background-color: #606060;
    outline: none;
    box-shadow: none;
    border-radius: 6px;
    padding: 5px 25px;
    margin-left: -15px;
}

.footer_sticky .footer_box .custom_search .btn_search:hover {
    background-color: var(--accent-color);
}

/* ----------- footer css end ----------- */

.my_profile_drop,
.edit_logo_drop,
.add_logo_drop,
.add_link_drop,
.add_profile_drop,
.add_background_drop,
.add_real_estate_drop,
.add_search_text_drop,
.video_url_generate,
.color_theme_drop,
.accent_select_drop,
.primary_select_drop,
.agent_center_drop,
.access_buyers_drop,
.buyers_portal,
.seller_portal,
.property_review,
.analytics_reports,
.my_media_drop {
    display: none;
}

.my_profile_drop.show,
.edit_logo_drop.show,
.add_logo_drop.show,
.add_link_drop.show,
.add_profile_drop.show,
.video_url_generate.show,
.color_theme_drop.show,
.accent_select_drop.show,
.primary_select_drop.show,
.agent_center_drop.show,
.access_buyers_drop.show,
.buyers_portal.show,
.seller_portal.show,
.property_review.show,
.add_background_drop.show,
.add_real_estate_drop.show,
.add_search_text_drop.show,
.analytics_reports.show,
.my_media_drop.show {
    display: block;
}

.add_logo_drop li img,
.add_link_drop li img,
.add_profile_drop li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add_link_drop li input {
    width: 100%;
    padding: 2px 5px;
    border: 1px solid #000;
}

/* ---------- From css ----------- */

.login_section .right_section {
    overflow-y: auto;
}

.fill_form_box {
    margin-top: 20px;
    max-width: 450px;
    width: 100%;
    text-align: start;
}

.fill_form_box .box-box {
    display: flex;
    gap: 10px;
    align-items: start;
    margin-bottom: 10px;
}

.fill_form_box .box-box .form-group {
    width: calc(50%);
}

.fill_form_box .box-box.single .form-group {
    width: calc(100%);
}

.fill_form_box .box-box label {
    color: #fff;
    margin-bottom: 5px;
}

.fill_form_box .box-box input,
.fill_form_box .box-box select {
    width: 100%;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: none;
    outline: none;
    border: 2px solid #224b7d;
    font-size: 16px;
    background-color: #001b438f;
    -webkit-text-fill-color: #fff !important;
    color: #fff;
}

.fill_form_box .box-box input:-webkit-autofill,
.fill_form_box .box-box input:-webkit-autofill:hover,
.fill_form_box .box-box input:-webkit-autofill:focus,
.fill_form_box .box-box textarea:-webkit-autofill,
.fill_form_box .box-box select:-webkit-autofill {
    background-color: #001b438f !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.fill_form_box .box-box input::placeholder {
    font-size: 13px;
}

.new_user_profile {
    padding: 30px 0;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.new_user_profile .user_img img {
    width: 100%;
    max-width: 90px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 2px solid #224b7d;
    object-fit: cover;
}

.new_user_profile .user_img p {
    margin-top: 10px;
}

.new_user_profile .user_img p span {
    color: #b72837;
}

.new_user_profile ul li a {
    color: #343434;
    font-size: 16px;
    width: 100%;
    padding: 5px 0;
    transition: 0.3s all;
}

.password-wrapper {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding-right: 40px;
    /* space for icon */
}

#login-form .toggle-password,
#register-form .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    /* 🔥 perfect center */
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
}

#login-form .toggle-password i,
#register-form .toggle-password i {
    font-size: 18px;
}

/* .add_link_drop .img_link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    height: calc(100vh - 200px);
} */

/* .add_link_drop .img_link .img_link_box {
    width: calc(33.33% - 10px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
}

.add_link_drop .img_link .img_link_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.add_link_drop li img {
    border: none;
    border-radius: 12px;
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.add_link_drop .img_link .img_link_box:hover img {
    transform: scale(1.05);
} */

.add_link_drop.my-media .no-media-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.add_link_drop.my-media .media-type-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.add_link_drop.my-media .img_link_box a {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.add_link_drop .img_link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.add_link_drop .img_link .img_link_box {
    width: calc(33.33%);
    position: relative;
}

.add_link_drop li img {
    border: 1px solid #000;
}

.add_link_drop.my-media .img_link .img_link_box {
    height: 110px;
}

.add_link_drop.my-media .img_link .img_link_box a {
    height: 100%;
    width: 100%;
}

.add_link_drop.my-media .img_link .img_link_box a:hover {
    background-color: transparent !important;
}

/* ------- video modal css --------- */

.videoModal .modal-dialog {
    max-width: 900px;
}

.videoModal .modal-content {
    border-radius: 20px;
}

.videoModal .modal-body {
    padding: 50px 20px 30px;
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    gap: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px #ffffffd1;
}

.videoModal .modal-body .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: none;
}

.videoModal .modal-body .top_video_box iframe {
    width: 100%;
    min-width: 500px;
    min-height: 310px;
    border-radius: 10px;
}

.video_list .video_box a {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background-color: #ebebeb;
    transition: 0.3s all;
    border-radius: 5px;
    margin-bottom: 10px;
}

.video_list .video_box a:hover {
    background-color: var(--accent-color);
}

.video_list .video_box a:hover p {
    color: #fff;
}

/* .video_list .video_box a:not(:last-child) {
    margin-bottom: 5px;
} */

.video_list .video_box a .img_box img {
    width: 100px;
    border-radius: 8px;
}

.video_list .video_box a p {
    font-size: 15px;
    color: #343434;
    margin-left: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.video_url_generate li .video_url_input,
.add_search_text_drop li input {
    width: 100%;
    text-align: center;
    padding: 2px 5px;
    border: 1px solid #000;
}

.video_list {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.video_list::-webkit-scrollbar {
    width: 6px;
}

.video_list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.video_list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.video_list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ------- video modal css --------- */

.colorWheel {
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin: 0 auto 30px;
}

.color_theme_drop .theme-switch {
    display: flex;
    align-items: center;
    font-family: sans-serif;
    font-size: 14px;
    padding: 10px 10px;
}

.color_theme_drop .theme-switch input {
    display: none;
}

.color_theme_drop .slider {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.color_theme_drop .slider::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 2px;
    top: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.color_theme_drop input:checked + .slider {
    background-color: #555;
}

.color_theme_drop input:checked + .slider::before {
    transform: translateX(20px);
}

.color_theme_drop .label-text {
    color: #343434;
}

.color_theme_drop .switch_mode {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.accent_select_drop .box-color,
.primary_select_drop .box-color {
    width: 70px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin-right: 5px;
}

.accent_select_drop li:nth-child(2),
.primary_select_drop li:nth-child(2) {
    display: flex;
}

/* ============== */

.buyers_portal .text_top,
.seller_portal .text_top,
.property_review .text_top {
    text-align: center;
    padding: 10px 0;
    margin: 0 10px;
    border-top: 1px solid #000;
}

.buyers_portal .text_top p,
.seller_portal .text_top p,
.property_review .text_top P {
    font-size: 18px;
    color: #343434;
}

.top_filter_box .toggle-container {
    display: flex;
    position: relative;
    align-items: center;
    width: calc(50%);
    border: 1px solid #000;
    padding: 5px;
}

.top_filter_box .filters_list {
    width: calc(50%);
}

.top_filter_box .filters_list select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #000;
    outline: none;
    border-radius: 0;
    text-align: center;
}

.top_filter_box .toggle-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    height: 30px;
    border-radius: 20px;
    background-color: #ccc;
    cursor: pointer;
    padding: 5px;
    position: relative;
    transition: background 0.3s;
}

.top_filter_box .toggle-switch .icon {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    z-index: 1;
    color: #333;
}

.top_filter_box .toggle-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: left 0.3s;
    z-index: 1;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.top_filter_box .toggle-text {
    font-size: 16px;
    color: #343434;
    margin-left: 15px;
}

.top_filter_box #viewToggle:checked + .toggle-switch::after {
    left: 33px;
}

.portal_filters {
    position: relative;
}

.portal_filters .top_filter_box {
    display: flex;
    align-items: center;
}

#mapView .map_box iframe {
    width: 100%;
    height: calc(100vh - 280px);
}

#propertyView,
#mapView {
    position: relative;
}

.top_fix_search {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

.top_fix_search .fixed_search {
    position: relative;
}

.fixed_search input {
    width: 100%;
    padding: 8px 50px 8px 15px;
    border: 1px solid #000;
    box-shadow: none;
    outline: none;
    border-radius: 5px;
}

.fixed_search .search_icon {
    border-radius: 5px;
    height: 40px;
    width: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
    background-color: #e6e6e6;
}

.fixed_search .search_icon:hover {
    background-color: var(--accent-color);
}

.fixed_search .search_icon i {
    color: #5e6b82;
}

.fixed_search .search_icon:hover i {
    color: #fff;
}

.property_box {
    padding: 50px 10px 40px;
    height: calc(100vh - 270px);
    overflow-y: auto;
}

.property_box .listing_title h5 {
    font-size: 20px;
    color: #2a2a33;
    margin-bottom: 10px;
    font-weight: 600;
}

.property_box .listing_title .box_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.property_box .listing_title .box_flex {
    font-size: 16px;
    color: #2a2a33;
    font-weight: 600;
}

.property_box .listing_title .box_flex .category_filter ul {
    display: none;
}

.property_box .listing_title .box_flex .category_filter ul li a {
    color: #2a2a33;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding: 10px 5px;
}

.property_box .listing_title .box_flex .category_filter ul li a:hover {
    background-color: rgb(242, 250, 255) !important;
}

.property_box .listing_title .box_flex .category_filter ul.open {
    display: block;
    position: absolute;
    z-index: 999;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 12px 0px;
    padding: 10px;
    right: 20px;
    width: 100%;
    max-width: 210px;
    border-radius: 5px;
}

.property_box .listing_title .box_flex .category_filter a {
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.wish_list .HeartIcon__fill {
    fill: rgba(0, 0, 0, 0.5);
}

.wish_list .HeartIcon__outline {
    fill: rgb(255, 255, 255);
}

.card_box {
    position: relative;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px 0px;
    margin-bottom: 15px;
}

.card_box a.link {
    width: 100%;
}

.card_box .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.card_box .tag_box {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    font-size: 11px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    padding: 1px 10px;
}

.card_box .wish_list {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.card_box .wish_list svg {
    width: 25px;
    height: 25px;
}

.card_box .owl-dots {
    background-color: rgba(42, 42, 51, 0.6);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 4px;
    border-radius: 30px;
    line-height: 0.5;
    padding-bottom: 4px;
    padding-top: 1px;
}

.card_box .owl-dots .owl-dot.active span {
    opacity: 1;
    height: 7px;
    width: 7px;
}

.card_box .owl-dots .owl-dot span {
    display: inline-block;
    height: 6px;
    width: 6px;
    background-color: rgb(255, 255, 255);
    margin: 0px 4px;
    opacity: 0.6;
    border-radius: 50%;
}

.card_box .owl-nav .owl-prev,
.card_box .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.card_box .owl-nav .owl-prev {
    left: 10px;
}

.card_box .owl-nav .owl-next {
    right: 10px;
}

.card_box .owl-nav .owl-prev i,
.card_box .owl-nav .owl-next i {
    color: #fff;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.card_box:hover .owl-nav .owl-prev i,
.card_box:hover .owl-nav .owl-next i {
    opacity: 1;
    visibility: visible;
}

.card_box .slider_text {
    padding: 8px;
}

.card_box .slider_text h5 {
    color: #212529;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

.card_box .slider_text p {
    color: #343434;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.card_box .slider_text .our_prices {
    justify-self: center;
    display: flex;
    gap: 6px;
    width: -webkit-fill-available;
    padding: 10px 0;
}

.card_box .slider_text .price_box {
    display: flex;
    flex: 1 1 50%;
    /* flex-direction: column; */
    /* border: 1px solid #d1d1d5; */
    border-radius: 4px;
    /* padding: 5px; */
    align-items: center;
    gap: 5px;
}

.card_box .slider_text .price_box:not(:last-child) {
    border-right: 1px solid #d1d1d5;
}

.card_box .slider_text .price_box h6 {
    color: #212529;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
}

.card_box .slider_text .price_box span {
    font-size: 14px;
    color: #596b82;
    line-height: 1;
}

.portal_filters .back_box {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 55;
}

.portal_filters .back_box .back_btn {
    color: #fff !important;
    background-color: #606060 !important;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    transition: 0.3s all;
    text-align: center;
    position: relative;
}

.portal_filters .back_box .back_btn i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fff;
}

/* ========== */

.property_review .tabs_container {
    display: flex;
    justify-content: space-around;
}

.property_review .tabs_container button {
    flex: 1 1 50%;
    font-size: 16px;
    background: none;
    cursor: pointer;
    color: #fff;
    background-color: #606060 !important;
    border-radius: 0;
    border: 1px solid #000;
    box-shadow: none;
}

.property_review .tabs_container button.active {
    background: var(--accent-color) !important;
    padding: 5px 10px;
    border-radius: 0px;
}

.property_review .property-list {
    border-top: 1px solid #ccc;
    display: none;
}

.property_review .property a {
    padding: 10px;
    border: 1px solid #d1d1d5;
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #212429;
}

.property_review .property.active a {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.property_review .sub-options {
    display: none;
    background: var(--accent-color);
    text-align: center;
    display: none;
}

.property_review .sub-options div {
    padding: 1px;
}

.property_review .sub-options div a {
    background-color: #fff !important;
    color: #212529 !important;
}

.property_review .city-select .city_drop a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #212429;
    font-size: 18px;
}

.property_review .city-select .city_drop a i {
    margin-left: 5px;
    font-size: 20px;
    transition: 0.3s all;
}

.property_review .city-select .city_drop a i.rotate {
    transform: rotate(90deg);
}

.property_review {
    padding-bottom: 40px;
    height: calc(100vh - 180px);
    overflow-y: auto;
}

.analytics_reports .top_fix_search {
    position: unset !important;
}

/* property */
/* ------------------ */

.hero_general_setion.webDesk {
    height: calc(100vh - 87px);
}

.desktop_propery {
    display: flex;
}

.desktop_propery .property_box {
    padding: 20px 10px 20px;
    height: calc(100vh - 87px);
}

.desktop_propery .mapView,
.desktop_propery .property_box {
    width: calc(50%);
}

.desktop_propery .mapView .map_box .map_show {
    width: 100%;
    height: calc(100vh - 149px);
}

.top_fix_search .fixed_search {
    position: relative;
}

.desktop_propery .mapView .top_fix_search {
    position: unset;
    padding: 10px 15px;
}

.desktop_propery .crad_flex_box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.desktop_propery .crad_flex_box .card_box {
    width: calc(50% - 5px);
}

.hero_general_setion.webDesk .top_filter_box {
    display: none;
}

.custom-marker {
    background-color: #6c47ff;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.card_box.mapCard {
    width: 300px;
    margin-bottom: 0;
}

.gm-style .gm-style-iw-c {
    padding: 0 !important;
}

button.gm-ui-hover-effect {
    display: none !important;
}

.gm-style-iw-ch {
    padding: 0 !important;
}

.gm-style .gm-style-iw-d {
    overflow: visible !important;
}

.styledGalleryImages .img_box img {
    height: 100%;
    width: 100%;
}

.cluster {
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3);
}

.mainHeader
    .header_part
    .right_menu
    .icon_box
    .owl-carousel
    .owl-nav
    .owl-prev {
    left: 0 !important;
}

.mainHeader
    .header_part
    .right_menu
    .icon_box
    .owl-carousel
    .owl-nav
    .owl-next {
    right: 0px;
}

.mainHeader .header_part .right_menu .icon_box .owl-carousel {
    width: 460px;
}

.property-description {
    transition: all 0.3s ease;
}

.property-description.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-toggle {
    display: inline-block;
    margin-top: 8px;
    color: #0d6efd;
    font-weight: 500;
    cursor: pointer;
}


@media (max-width: 1024px) {
    .mainHeader .header_part::after {
        width: 260px;
    }

    .mainHeader .header_part .right_menu .icon_box .owl-carousel {
        width: 420px;
    }

     #circleBtn {
        left: 265px !important;
    }

    #polygonBtn {
        left: 205px !important;
    }
}

@media (max-width: 991px) {
    .mainHeader .header_part .left_logo a img {
        max-width: 190px;
    }
}

@media (max-width: 767px) {
    .hero_general_setion.webDesk .top_filter_box {
        display: flex;
    }

    .desktop_propery .mapView,
    .desktop_propery .property_box {
        width: calc(100%);
    }

    .desktop_propery .mapView {
        display: none;
    }

    .desktop_propery .property_box {
        height: calc(100vh - 300px);
    }
}

@media (max-width: 575px) {
    .desktop_propery .crad_flex_box .card_box {
        width: calc(100%);
    }
}

.custom-marker {
    width: 40px;
    height: 40px;
    background-color: #ff5a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ----- property details popup css start ----- */

.listing_details .modal-dialog {
    margin: 0 auto;
    overflow-y: auto;
    max-width: 1248px;
    background-color: #fff;
}

.listing_details .modal-content {
    border-radius: 0;
    border: none;
    height: 100vh;
    overflow-y: auto;
}

.listing_details .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
}

.listing_details .modal-header .back_btn a {
    color: #000;
}

.listing_details .modal-header .back_btn a i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.listing_details .modal-header .logo_box img {
    width: 100%;
    max-width: 140px;
}

.listing_details .modal-header ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.listing_details .modal-header ul li a {
    color: #000;
}

.styledGalleryImages {
    position: relative;
}

.styledGalleryImages .btn_seeall {
    display: none;
    color: #2a2a33;
    border: 1px solid rgb(167, 166, 171);
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 55;
}

.styledGalleryImages .btn_seeall svg {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

.styledGalleryImages .image_gallery {
    display: grid;
    grid-template-rows: repeat(2, 200px);
    gap: 4px;
}

.image_gallery.desktopHide {
    display: none;
}

.styledGalleryImages .img_box:hover {
    filter: brightness(70%);
    transition: filter 0.1s ease-in;
}

.styledGalleryImages .img_box:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.styledGalleryImages .img_box:nth-child(1) img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.styledGalleryImages .img_box:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.styledGalleryImages .img_box:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.styledGalleryImages .img_box:nth-child(3) img {
    border-top-right-radius: 15px;
}

.styledGalleryImages .img_box:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.styledGalleryImages .img_box:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.styledGalleryImages .img_box:nth-child(5) img {
    border-bottom-right-radius: 15px;
}

.styledGalleryImages .swiper-slide .img_box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.styledGalleryImages .swiper-pagination {
    color: rgb(255, 255, 255) !important;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1px 8px;
    margin: 0px 2px 2px 0px;
    font-size: 13px;
    bottom: 0px;
    right: 0px !important;
    width: fit-content;
    font-weight: 700;
    left: auto;
}

.styledGalleryImages .swiper-button-next {
    right: 0 !important;
}

.styledGalleryImages .swiper-button-prev {
    left: 0 !important;
}

.styledGalleryImages .swiper-button-next,
.styledGalleryImages .swiper-button-prev {
    font-size: 22px;
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.5);
    border: 0px;
    padding: 16px 6px;
}

.styledGalleryImages .swiper-button-next:after,
.styledGalleryImages .swiper-button-prev:after {
    font-size: 14px;
}

.details_text_section {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 46px;
    margin-top: 24px;
}

.left_content_Sec .propertie_name {
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.left_content_Sec .propertie_name .tag_div {
    font-size: 12px;
    color: #001751;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    padding: 2px 4px;
    background-color: rgb(224, 242, 255);
}

.left_content_Sec .propertie_name h1 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 8px;
}

.left_content_Sec .propertie_name h1 svg {
    width: 28px;
    stroke: #128a29;
    fill: #128a29;
    margin-bottom: 5px;
    margin-left: 5px;
}

.left_content_Sec .propertie_name h2 {
    color: #2a2a33;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.left_content_Sec .propertie_name a.visit_site {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--primary-color);
}

.left_content_Sec .propertie_name a.visit_site svg {
    height: 16px;
    width: 16px;
    stroke: var(--primary-color);
    fill: var(--primary-color);
}

.left_content_Sec .offer_box {
    background-color: #e0f2ff;
    padding: 16px;
    border-radius: 11px;
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 16px 0;
}

.left_content_Sec .offer_box .svg_box svg {
    width: 21px;
    height: 21px;
}

.left_content_Sec .offer_box .text p {
    font-size: 16px;
    margin-right: 8px;
}

.left_content_Sec .offer_box .text p span {
    font-weight: 700;
}

.left_content_Sec .aminity_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.left_content_Sec .aminity_box .box_box {
    background: #f6f6fa;
    border-radius: 4px;
    min-width: 50px;
    width: 100%;
    padding: 12px;
}

.left_content_Sec .aminity_box .box_box svg {
    height: 22px;
    width: 22px;
    margin-right: 10px;
}

.left_content_Sec .aminity_box .box_box span {
    font-size: 16px;
    color: #2a2a33;
}

.right_sticky_box .request_box .btn {
    width: 100%;
    padding: 10px 20px;
    box-shadow: none;
    outline: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    min-height: 44px;
}

.right_sticky_box .request_box {
    padding: 20px;
    margin-top: 24px;
    border: 1px solid #d1d1d5;
    border-radius: 11px;
    position: sticky;
    top: 80px;
}

.right_sticky_box .request_box .btn.btn_blue {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    margin-bottom: 10px;
}

.right_sticky_box .request_box .btn.btn_blue_border {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.right_sticky_box .request_box .text_flex {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 24px;
}

.right_sticky_box .request_box .text_flex .svgbox {
    background-color: #f0e3ff;
    border-radius: 50%;
    height: fit-content;
    padding: 4px;
    margin-right: 8px;
    width: fit-content;
}

.right_sticky_box .request_box .text_flex .svgbox svg {
    width: 24px;
    height: 24px;
}

.right_sticky_box .request_box .text_flex h6 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    color: #2a2a33;
}

.right_sticky_box .request_box .text_flex p {
    font-size: 14px;
    font-weight: 400;
    color: #596b82;
}

.features_policies {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d1d1d5;
}

.features_policies .title h2 {
    font-size: 24px;
    color: #2a2a33;
    margin-bottom: 16px;
    font-weight: 700;
}

.features_policies .feacture_box h4 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
    padding: 8px 0px 8px 8px;
    background: #f6f6fa;
    width: 100%;
}

.features_policies .feacture_box .amenites_flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.features_policies .feacture_box .amenites_flex .com_box {
    margin-bottom: 15px;
}

.features_policies .feacture_box .amenites_flex .com_box h6 {
    font-size: 16px;
    color: #2a2a33;
    margin-bottom: 5px;
    font-weight: 700;
}

.features_policies .feacture_box .amenites_flex .com_box ul {
    list-style: disc;
    padding-left: 30px;
}

.features_policies .feacture_box .amenites_flex .com_box ul li p {
    font-size: 16px;
    color: #2a2a33;
}

.nearby_are {
    padding-bottom: 30px;
    border-bottom: 1px solid #d1d1d5;
    margin-bottom: 20px;
}

.nearby_are .title {
    margin-top: 30px;
}

.nearby_are .title h2 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0px 0px 16px;
}

.nearby_are .title h5 {
    padding-top: 8px;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.nearby_are .title p {
    color: #2a2a33;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 16px 0px;
}

.nearby_are .map_box iframe {
    width: 100%;
    min-height: 238px;
    border-radius: 4px;
}

.request_tour .title h2 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0px 0px 16px;
}

.request_tour .box_box {
    margin-bottom: 10px;
}

.request_tour .box_box label {
    color: #2a2a33;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

.request_tour .box_box input,
.request_tour .box_box textarea {
    width: 100%;
    margin: 0px;
    padding: 9px 16px;
    background-color: #f6f6fa;
    border: 1px solid #d1d1d5;
    border-radius: 4px !important;
    box-shadow: none;
    resize: none;
    outline: none;
}

.request_tour .box_box input:focus,
.request_tour .box_box textarea:focus,
.request_tour .box_box input:hover,
.request_tour .box_box textarea:hover {
    border-color: var(--primary-color);
}

.request_tour .box_box input:focus-visible,
.request_tour .box_box textarea:focus-visible {
    box-shadow: rgba(0, 61, 165, 0.3) 0px 0px 2px 3px,
        var(--primary-color) 0px 0px 2px 4px;
}

.request_tour .send_btn .btn_blue {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    width: 100%;
    padding: 10px 20px;
    box-shadow: none;
    outline: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    min-height: 44px;
    margin-top: 15px;
}

.contact_person {
    margin-top: 20px;
}

.contact_person h6 {
    color: #2a2a33;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
}

.contact_person p {
    color: #2a2a33;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
}

.contact_person p svg {
    width: 16px;
    stroke: #055e16;
    fill: #055e16;
}

.contact_person a {
    font-size: 14px;
    color: #2a2a33;
    font-weight: 400;
    text-decoration: underline;
}

.lightbox {
    z-index: 9999 !important;
}

.lb-data .lb-caption {
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-weight: 500;
}

.lb-data .lb-number {
    color: #ccc;
    font-size: 14px;
    float: left;
}

.lb-nav a.lb-prev {
    background: none !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lb-nav a.lb-prev:hover {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.lb-nav a.lb-prev::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 12px 8px 0;
    border-color: transparent white transparent transparent;
    margin-left: -2px;
}

.lb-nav a.lb-next {
    background: none !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lb-nav a.lb-next:hover {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.lb-nav a.lb-next::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    margin-right: -2px;
}

/* Close Button with X Icon */
.lb-data .lb-close {
    background: none !important;
    background-color: rgb(0 0 0 / 82%) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: -12px;
    top: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    opacity: 1;
}

.lb-data .lb-close:hover {
    background-color: rgba(255, 0, 0, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.lb-data .lb-close::before {
    content: "×";
    color: white;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    margin-top: -4px;
}

/* Alternative SVG-based Close Icon */
.lb-data .lb-close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
    /* Use either ::before or ::after, not both */
}

/* .mySwiper {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.mySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_box .swiper-wrapper {
    width: 339px;
    overflow: hidden;
    margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.swiper-button-prev {
    left: 0px !important;
}

.swiper-button-next {
    right: 0px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
} */

.lb-dataContainer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1 !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.lb-nav a.lb-prev {
    left: -25px !important;
}

.lb-nav a.lb-next {
    right: -25px !important;
}

.icon_box {
    position: relative;
}

.icon_box .owl-carousel {
    display: flex;
    justify-content: center;
    width: 360px;
    margin: 0 auto;
    padding: 0 20px;
    position: static !important;
}

.icon_box .owl-carousel .item a {
    margin: 0 auto;
}

.icon_box .owl-carousel .item a i {
    font-size: 30px !important;
    color: #000;
}

.icon_box .owl-carousel .owl-nav.disabled {
    display: block;
}

.icon_box .owl-carousel .owl-nav .owl-prev,
.icon_box .owl-carousel .owl-nav .owl-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.icon_box .owl-carousel .owl-nav button i {
    color: #fff;
    font-size: 18px;
}

.icon_box .owl-carousel .owl-nav .owl-prev {
    left: 20px;
}

.icon_box .owl-carousel .owl-nav .owl-next {
    right: 20px;
}

.icon_box .owl-carousel .item a img {
    width: 50px;
    /* max-height: 38px; */
    border-radius: 50%;
}

@media (max-width: 900px) {
    .details_text_section {
        grid-template-columns: 1fr;
    }

    .right_sticky_box {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
    }

    .right_sticky_box .request_box {
        box-shadow: rgba(0, 0, 0, 0.13) 0px -7px 10px -3px;
        border: none;
        border-radius: 0;
        position: unset;
    }

    .right_sticky_box .request_box .text_flex {
        display: none;
    }

    .right_sticky_box .request_box {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-direction: row-reverse;
        padding: 15px;
    }

    .right_sticky_box .request_box .btn {
        width: fit-content;
        margin: 0 !important;
    }

    .styledGalleryImages .img_box:nth-child(1) {
        grid-column: 4 / 2;
        grid-row: 1 / 3;
    }

    .styledGalleryImages .img_box:nth-child(2) {
        grid-column: 4 / 4;
        grid-row: 2 / 3;
    }

    .styledGalleryImages .img_box.mobileHide {
        display: none;
    }
}

@media (max-width: 767px) {
    .left_content_Sec .aminity_box {
        grid-template-columns: repeat(2, 1fr);
    }

    .image_gallery.desktopHide {
        display: block;
    }

    .image_gallery.desktopShow {
        display: none;
    }

    .details_text_section {
        padding: 0 16px;
    }

    .listing_details .modal-body {
        padding: 0px 0 16px;
    }

    .styledGalleryImages .img_box:nth-child(1) img,
    .styledGalleryImages .img_box:nth-child(5) img,
    .styledGalleryImages .img_box:nth-child(3) img {
        border-radius: 0 !important;
    }

    .left_content_Sec .propertie_name h1 {
        font-size: 24px;
    }

    .left_content_Sec .propertie_name h2 {
        font-size: 16px;
    }

    .left_content_Sec .propertie_name h1 svg {
        width: 22px;
    }

    .styledGalleryImages .btn_seeall {
        display: none;
    }

    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
        width: 45px;
        height: 45px;
    }

    .lb-nav a.lb-prev {
        left: 0px !important;
    }

    .lb-nav a.lb-next {
        right: 0px !important;
    }

    .lb-data .lb-close {
        width: 35px;
        height: 35px;
        right: -5px;
        top: 5px;
    }

    .lb-data .lb-close::before {
        font-size: 20px;
    }

    .image_gallery .mySwiper .swiper-slide {
        height: 300px;
        width: 100% !important;
    }

    .image_gallery .mySwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile_icons .icon_box {
        background-color: #224b7d !important;
    }

    header.mainHeader {
        background-color: #b72837 !important;
    }

    /* .icon_box .owl-carousel .item a img {
        width: 35px;
        max-height: 35px;
    } */
}

@media (max-width: 575px) {
    .features_policies .feacture_box .amenites_flex {
        grid-template-columns: 1fr;
    }

    .left_content_Sec .aminity_box {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ----- property details popup css end ----- */

/* Profile Popup Modal Styles */
.profile-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-modal-content {
    background-color: #fefefe;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.profile-modal-header {
    padding: 25px 30px;
    background: linear-gradient(
        135deg,
        var(--primary-color, #132d4c),
        var(--accent-color, #b72837)
    );
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-modal-close {
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}

.profile-modal-close:hover {
    opacity: 0.7;
}

.profile-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.profile-cards-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.profile-modal .profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 330px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--accent-color, #b72837);
    transition: 0.2s;
}

.profile-modal .profile-card:hover {
    transform: translateY(-3px);
}

.profile-modal .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color, #132d4c);
    margin-bottom: 20px;
}

.profile-modal .form-group {
    margin-bottom: 15px;
}

.profile-modal .form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color, #132d4c);
    margin-bottom: 8px;
}

.profile-modal .form-control {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0 12px;
    font-size: 14px;
    transition: 0.2s;
}

.profile-modal .form-control:focus {
    border-color: var(--accent-color, #b72837);
    outline: none;
    box-shadow: 0 0 0 2px rgba(196, 22, 38, 0.1);
}

.profile-modal .btn-submit {
    background: var(--accent-color, #b72837);
    color: #fff;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.profile-modal .btn-submit:hover {
    background: var(--primary-color, #132d4c);
}

.profile-modal .password-wrapper {
    position: relative;
}

.profile-modal .password-wrapper input {
    padding-right: 45px;
}

.profile-modal .toggle-password {
    position: absolute;
    right: 12px;
    top: 38px;
    /* Adjust based on your label height */
    width: 28px;
    height: 28px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ccc;
    z-index: 5;
}

.profile-modal .password-wrapper .error {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.profile-modal .error {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

.profile-modal .toggle-password i {
    font-size: 14px;
    color: #555;
}

.toggle_menu ul li img.links_img {
    width: 50px;
    height: 30px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .profile-modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .profile-modal-header {
        padding: 20px;
    }

    .profile-modal-header h2 {
        font-size: 22px;
    }

    .profile-modal-body {
        padding: 20px;
    }

    .profile-cards-row {
        flex-direction: column;
        gap: 20px;
    }

    .profile-modal .profile-card {
        min-width: auto;
        padding: 20px;
    }
}
