@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /* New modern color palette */
    --primary: #2C3E50;
    --primary-dark: #1a2942;
    --secondary: #E67E22;
    --accent: #3498DB;
    --success: #2ECC71;
    --warning: #F1C40F;
    --danger: #E74C3C;
    --dark: #2C3E50;
    --light: #ECF0F1;
    --white: #FFFFFF;
    --gray: #95A5A6;
    --gray-light: #F5F6F7;
    --gray-dark: #34495E;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Typography */
    --font-primary: "Montserrat", sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --font-weight-extra-bold: 700;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Montserrat", sans-serif;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

.preloader{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    background: #fff;
    display: grid;
    place-items: center;
}

.preloader img{
    width: 20%;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(to right, #1a2942, #2c3e50);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-contact-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    white-space: nowrap;
}

.top-contact-item:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

.top-contact-item i {
    color: #E74C3C;
    font-size: 18px;
}

.top-social {
    display: flex;
    gap: 12px;
    margin: 0;
}

.social-link {
    color: #fff;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E74C3C;
    color: #fff;
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #E74C3C;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:hover {
    color: #E74C3C;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enquiry-btn {
    background: transparent;
    border: 2px solid #2c3f51;
    color: #2c3f51;
    padding: 10px 25px;
}

.enquiry-btn:hover {
    background: #2c3f51;
    color: #fff;
    border-color: #2c3f51;
}

.enquiry-btn i {
    transition: transform 0.3s ease;
}

.enquiry-btn:hover i {
    transform: translateX(5px);
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: all 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-link {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .top-contact-item {
        width: auto;
        justify-content: center;
    }

    .top-contact-item span {
        display: inline-block;
        font-size: 14px;
    }

    .top-contact-item i {
        font-size: 16px;
    }

    .social-link {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Banner Slider Container */
.banner_slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    margin-bottom: 120px; /* Increased margin to prevent overlap */
}

.banner_slider .slick-list,
.banner_slider .slick-track,
.banner_slider .slide {
    height: 100%;
}

/* Individual Slide */
.banner_slider .slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.banner_slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.banner_slider .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Slide Content */
.banner_slider .slide .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 800px;
    max-width: 90%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.banner_slider .slide .content h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner_slider .slide .content span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0.9;
}

.banner_slider .slide .content .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #E74C3C;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #E74C3C;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.banner_slider .slide .content .cta-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.banner_slider .slide .content .cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.banner_slider .slide .content .cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .banner_slider .slide .content {
        padding: 30px;
    }
    
    .banner_slider .slide .content h2 {
        font-size: 2.2rem;
    }
    
    .banner_slider .slide .content span {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner_slider .slide .content {
        padding: 25px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .banner_slider .slide .content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .banner_slider .slide .content span {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .banner_slider .slide .content .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .banner_slider .slide .content {
        width: 95%;
        padding: 20px;
    }

    .banner_slider .slide .content h2 {
        font-size: 1.5rem;
    }

    .banner_slider .slide .content span {
        font-size: 0.85rem;
    }

    .banner_slider .slide .content .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Navigation Arrows */
.banner_slider .slick-arrow {
    position: absolute;
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

.banner_slider .slick-prev {
    left: 20px;
}

.banner_slider .slick-next {
    right: 20px;
}

.banner_slider .slick-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.banner_slider .slick-arrow i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

/* Dots Navigation */
.banner_slider .slick-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    z-index: 10;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 1;
    visibility: visible;
}

.banner_slider .slick-dots li {
    margin: 0;
}

.banner_slider .slick-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.banner_slider .slick-dots li.slick-active button {
    background: #fff;
    transform: scale(1.2);
    opacity: 1;
}

@media (max-width: 991px) {
    .banner_slider .slick-dots {
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .banner_slider .slick-dots {
        bottom: 50px;
    }
}

@media (max-width: 576px) {
    .banner_slider .slick-dots {
        bottom: 40px;
    }
}

@media (max-width: 991px) {
    .banner_slider,
    .banner_slider .slide {
        height: 80vh;
        min-height: 500px;
    }

    .banner_slider .slide .content {
        width: 90%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .banner_slider,
    .banner_slider .slide {
        height: 70vh;
        min-height: 450px;
    }

    .banner_slider .slide .content {
        width: 95%;
        padding: 25px;
    }

    .banner_slider .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .banner_slider .slick-prev {
        left: 10px;
    }

    .banner_slider .slick-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .banner_slider,
    .banner_slider .slide {
        height: 60vh;
        min-height: 400px;
    }

    .banner_slider .slide .content {
        width: 95%;
        padding: 20px;
    }
}

/* Project Filter Section */
.project-filters {
    position: relative;
    z-index: 5;
    padding: 20px 0;
    background: #fff;
}

.project-filters .nav-tabs {
    border: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.project-filters .nav-link {
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.project-filters .nav-link:hover,
.project-filters .nav-link.active {
    background: #2c3f51;
    color: #fff;
}

@media (max-width: 768px) {
    .project-filters {
        padding: 15px 0;
    }

    .project-filters .nav-tabs {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        justify-content: flex-start;
    }

    .project-filters .nav-link {
        padding: 8px 20px;
        white-space: nowrap;
        font-size: 14px;
    }
}

.bg-light-skin {
    background-color: #D1AA67;
    padding: 10px;
    width: 265px;
    margin-bottom: 15px;
}

/* .rcp_form-2{
    margin-top: 2%;
    position: relative;
    z-index: 2;
} */

.banner_sec{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.rcp_form{
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Pull the form up */
    margin-bottom: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.rcp_form.properties_rcp_form{
    position: relative;
    margin-top: -6%;
    width: 100%;
}

.rcp_form nav{
    width: 100%;
    display: flex;
}


.rcp_form nav .nav-tabs{
    /* margin: 0 auto; */
    border: none;
    width: 100%;
    /* padding: 15px 25px;
    background: #fff; */

    /* border-radius: 20px 20px 0 0; */
    display: flex;
    justify-content: space-between;
    gap: 10px;
}


.rcp_form.properties_rcp_form nav .nav-tabs{
    justify-content: start;
}

.rcp_form nav .nav-tabs .nav-link{
    border: none;
    /* border-right: 2px solid #eee; */
    padding: 10px 15px;
    color: #000;
    font-weight: 500;
    position: relative;
    border-radius: 0;
    background: none;
    background: #ffffffad;
}

.rcp_form nav .nav-tabs .nav-link.active{
    color: var(--skin-color--);
    background: #fff;
}

/* .rcp_form nav .nav-tabs .nav-link::before{
    content: '';
    position: absolute;
    width: 70%;
    left: 15%;
    bottom: -7px;
    height: 2px;
    background: none;
} */

.rcp_form nav .nav-tabs .nav-link.active::before{
    background: var(--skin-color--);
}

/* .rcp_form nav .nav-tabs .nav-link:last-child{
    border-right: none;
} */

.rcp_form .tab-content{
    background: #fff!important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* border-radius: 60px; */
    padding: 20px 20px !important;
}

.rcp_form .tab-content .form-label{
    font-weight: 600;
    font-size: 14px;
}

.rcp_form .tab-content .input-group{
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rcp_form .tab-content .input-group:focus-within {
    border-color: #D1AA67;
    box-shadow: 0 0 0 2px rgba(209, 170, 103, 0.1);
}

.rcp_form .tab-content .input-group .input-group-text {
    background: transparent;
    border: none;
    color: #666;
}

.rcp_form .tab-content .input-group .form-control,
.rcp_form .tab-content .input-group .form-select {
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
}

.rcp_form .tab-content .input-group .form-select:focus {
    box-shadow: none;
}

.rcp_form .tab-content .select2-container{
    /* margin-left: 0 !important;
    padding-left: 10px !important; */
}

.rcp_form .tab-content .select2-container i{
    color: #959595;
}

.rcp_form .tab-content .input-group .form-select{
    border: none;
    border-radius: 50px;
    padding-left: 0;
    box-shadow: none;
    font-size: 14px;
    /* margin-left: -36px !important;
    padding-left: 36px; */
    /* background: none; */
}

.rcp_form .tab-content .input-group .form-select option{
    /* background: var(--red--) !important; */
    /* color: #fff !important; */
}

.rcp_form .tab-content .input-group .form-select option:hover{
    background-color: var(--red--) !important;
    color: #fff !important;
}

.rcp_form .tab-content .input-group .form-select.fa, .rcp_form .tab-content .input-group .form-select .fa {
    font-family: 'Montserrat', 'Font Awesome 6 Free', 'Font Awesome 6 Free';
     font-weight: 600;
   /* padding: 1rem 2rem; */
   /* color: #3a9c7d; */
   color: #959595;
 
 }

.rcp_form .tab-content .input-group .form-select option{
    padding-left: 0!important;
}

.rcp_form .tab-content form button{
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    border: 2px solid var(--red--);
    background: var(--red--);
    border-radius: 50px;
    color: #fff;
    transition: 0.3s;
    font-weight: 600;
}

.rcp_form .tab-content form button:hover{
    background: none;
    color: var(--red--);
}


.heading span{
    font-size: 18px;
    font-weight: 500;
    color: var(--red--);
    display: flex;
    position: relative;
    align-items: center;
}

.heading span::before{
    content: '';
    /* position: absolute; */
    width: 20px;
    height: 2px;
    background: var(--red--);
    /* left: 0; */
    margin-right: 5px;
}

.heading h2{
    color: #000;
    font-size: 26px;
    font-weight: 700;
}

.hot_properties{
    width: 100%;
    height: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hot_properties::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, #000 0%, transparent 70%);
    top: 0;
    left: 0;
}

.hot_properties .hot_properties_img{
    position: relative;
    overflow: hidden;
    /* border-radius: 10px 10px 10px 0; */
}

.hot_properties .hot_properties_img .sale, .hot_properties .hot_properties_img .hot{
    position: absolute;
    right: 0;
    font-weight: 500;
}

.hot_properties .hot_properties_img .sale{
    background: #fff9;
    top: 40px;
    padding: 0px 10px 0px 7px;
    border-radius: 5px 0 0 5px;
}

.hot_properties .hot_properties_img .hot{
    top: 10px;
    background: var(--red--);
    padding: 0px 10px 0px 7px;
    border-radius: 5px 0 0 5px;
    color: #fff;
}

.hot_properties .hot_properties_img .commercial{
    position: absolute;
    top: 0;
    left: 0;
    background: var(--red--);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 0 0 10px 0;
}

.hot_properties .content{
    padding: 10px 20px 20px;
    position: absolute;
    bottom: 0;
    z-index: 2;
    transform: translateY(30%);
    transition: 0.5s;
}

.hot_properties:hover .content{
    transform: translateY(0);
}

.hot_properties .content .location{
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.hot_properties .content h3{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.hot_properties .content p{
    font-size: 14px;
    font-weight: 500;
}

.hot_properties .content .read_more{
    display: inline-block;
    /* padding: 10px 15px; */
    /* border: 1px solid var(--skin-color--); */
    font-weight: 500;
    /* background: var(--skin-color--); */
    color: #fff;
    transition: 0.5s;
    /* border-radius: 50px; */
    transform: translateY(100px);
}

.hot_properties:hover .content .read_more{
    transform: translateY(0);
}

.hot_properties .content .read_more:hover{
    background: none;
    color: var(--skin-color--);
}

.hot_properties .content .read_more i{
    transition: 0.4s;
}

.hot_properties .content .read_more:hover i{
    padding-left: 10px;
}

.border_1{
    border: 1px solid #b4b0b0 !important;
    margin: 8px 0;
}

.view_more_btn{
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #2c3f51;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 63, 81, 0.2);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.view_more_btn:hover{
    background: #1e2b37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 63, 81, 0.3);
    text-decoration: none;
}

.view_more_btn i{
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view_more_btn:hover i{
    transform: translateX(5px);
}

.view_more_btn-2{
    display: inline-block;
    padding: 15px 25px;
    /* border: 1px solid var(--red--); */
    font-weight: 500;
    background: #fff;
    color: var(--red--);
    transition: 0.3s;
    /* border-radius: 50px; */
}

.view_more_btn-2:hover{
    background: var(--red--);
    color: #fff;
}

.gradient_bg{
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, #f3eedd 0%, rgba(0,0,0,0) 100%);
}
.gradient_bg_rev{
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #f3eedd 0%, rgba(0,0,0,0) 100%);
}

.things_bg{
    position: relative;
    background: #f3eedd;
    z-index: 1;
}

.things_bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 85%;
    left: 0;
    top: 0;
    background: #DCCCAF;
    /* z-index: -2; */
    opacity: 0.8;
}

.things_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 85%;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
    background: url(../images/background-h.jpg) no-repeat;
    background-size: cover;
    background-position: bottom right;
    /* -webkit-filter: grayscale(100%); */
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
}

.things img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.things h3{
    font-size: 20px;
    font-weight: 600;
}

.things p{
    font-size: 14px;
    font-weight: 500;
}

.content-abt-div {
    display: flex;
    align-items: center;
}

.abt-img img {
    position: relative;
    width: 100%;
    /* top: 60px; */
    margin-top: 100px;
}

.luxury_properties_slider{
    padding-left: 8%;
    position: relative;
    display: flex;
    align-items: center;
}

.luxury_properties_slider .slick-arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red--);
    border-radius: 50%;
    border: 1px solid var(--red--);
    transition: 0.3s;
    z-index: 2;
}

.luxury_properties_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.luxury_properties_slider .slick-arrow:hover{
    background: none;
    color: var(--red--);
}

.luxury_properties_slider .slick-arrow.slick-prev{
    left: 10%;
}

.luxury_properties_slider .slick-arrow.slick-next{
    right: 10px;
}

.luxury_properties_slider .slide{
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
}

.luxury_properties_slider .slide .commercial{
    position: absolute;
    left: 0;
    top: 10%;
    color: #fff;
    background: var(--red--);
    font-size: 12px;
    padding: 0 10px;
}

.luxury_properties_slider .slide .content{
    position: absolute;
    width: 90%;
    left: 5%;
    bottom: 10%;
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}

.luxury_properties_slider .slide .content h3{
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.luxury_properties_slider .slide .content span{
    font-size: 14px;
}

.luxury_properties_slider .slide .content h4{
    font-size: 20px;
}

.luxury_properties_slider .slide .content .read_more{
    height: 40px;
    width: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red--);
    border-radius: 50%;
    border: 1px solid var(--red--);
    transition: 0.3s;
}

.luxury_properties_slider .slide .content .read_more:hover{
    background: none;
    color: var(--red--);
}

.post_req{
    position: relative;
    display: flex;
    background: #f3eedd;
}

.post_req::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: #fff;
    right: 10px;
    top: 0;
    z-index: 1;
    transform: skewX(-20deg);
}

.post_req .post_req_slider{
    width: 65%;
    flex-shrink: 1;
}

.post_req .your_request{
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: #f3eedd;
    display: flex;
    align-items: center;
    /* padding-left: 10%; */
    justify-content: center;
    transform: skewX(-20deg);
    z-index: 2;
}

.post_req .your_request .content{
    width: 300px;
    transform: skewX(20deg);
}

.post_req .your_request .content .num img{
    width: 60px;
    margin-bottom: 10px;
}

.post_req .your_request .content h3{
    font-size: 22px;
    font-weight: 600;
}

.post_req .your_request .content p{
    font-weight: 500;
}

.post_req .your_request .content .read_more{
    display: inline-block;
    align-items: center;
    background: var(--red--);
    border: 1px solid var(--red--);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    padding: 10px 15px;
    margin-top: 10px;
}

.post_req .your_request .content .read_more:hover{
    color: var(--red--);
    background: none;
}

.property_img figure{
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
}

.property_img figure::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, #000 0%, transparent 70%);
    top: 0;
    left: 0;
}

.property_img figure figcaption{
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 2;
}

.property_img figure figcaption h2{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.property_img figure figcaption span{
    color: #fff;
}

.we_work_bg{
    background: #f3eedd;
}

.logo_slider_rtl .slide{
    margin: 0 5px;
}

.logo_slider .slide{
    margin: 0 5px;
}


footer{
    /* background: #e9e9e9; */
    padding: 20px 0 0 0;
    overflow: hidden;
    background: #eaeff2;
}

footer p{
    font-size: 14px;
    font-weight: 500;
}

footer .footer-menu{
    width: 100%;
}

footer .footer-menu h3{
    font-size: 18px;
    font-weight: 600;
}

footer .footer-menu ul li{
    margin-bottom: 5px;
}

footer .footer-menu ul li a{
    color: #000;
    transition: 0.3s;
    font-weight: 500;
}

footer .footer-menu ul li a:hover{
    color: var(--red--);
}

footer .footer-contact h3{
    font-size: 18px;
    font-weight: 600;
}

footer .footer-contact ul li{
    padding-left: 25px;
    position: relative;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

footer .footer-contact ul li i{
    position: absolute;
    top: 5px;
    left: 0;
    color: #000;
}

footer .footer-contact ul li a{
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

footer .footer-contact ul li a:hover{
    color: var(--red--);
}

footer .footer-contact span{
    display: block;
    color: #d6d6d6;
    font-size: 16px;
    font-weight: 600;
}

footer .footer-icons{
    margin: 10px 0;
    text-align: center;
}

footer .footer-icons ul li{
    display: inline-block;
    margin: 0 10px;
}

footer .footer-icons ul li a{
    color: var(--red--);
    font-size: 18px;
    transition: 0.3s;
}
footer .footer-icons ul li a:hover{
    color: #000;
}

.subscribe form input{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 2px solid #e5e5e5;
    outline: none;
    margin-bottom: 10px;
}

.subscribe form button{
    padding: 8px 20px;
    background: var(--red--);
    color: #fff;
    border: none;
}

.copy_right_bg{
    background: #2c3f51 !important;
    color: #fff !important;
    padding: 10px 0;
}

.copy_right{
    display: flex;
    justify-content: space-between;
}

.copy_right p{
    color: #fff;
    margin-bottom: 0;
}

.inner_banner{
    padding: 120px 0 150px;
    /* background: url(../images/jumbotron.jpg) no-repeat;
    background-size: cover;
    background-position: center; */
    position: relative;
}

.inner_banner::before{
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    z-index: 1;
    opacity: 0.5;
}

.inner_banner h1{
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 32px;
    font-weight: 600;
}

.inner_banner span{
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.inner_banner span a{
    color: #fff;
    font-size: 14px;
    display: inline-block;
    padding-right: 3px;
}

.project_detail_banner_bg{
    position: relative;
}


.project_detail_banner_bg .view_all{
    position: absolute;
    z-index: 2;
    bottom: 10%;
    left: 10%;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    font-weight: 600;
}

.project_detail_banner{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_detail_banner .slick-arrow{
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--red--);
    border-radius: 50%;
    border: none;
    opacity: 0.7;
    transition: 0.3s;
    display: grid;
    place-items: center;
}

.project_detail_banner .slick-arrow:hover{
    opacity: 1;
}

.project_detail_banner .slick-arrow.slick-prev{
    left: 10%;
}

.project_detail_banner .slick-arrow.slick-next{
    right: 10%;
}

.project_detail_banner .slide{
    position: relative;
}


.project_heading h1{
    font-size: 28px;
    font-weight: 700;
}

.project_heading h1 span {
    font-size: 16px;
    color: #9c9c9c;
}

.project_location{
    display: block;
    color: #9c9c9c;
    font-weight: 500;
}

.project_date{
    display: block;
    color: #9c9c9c;
    font-weight: 500;
}

.border_2{
    border: 1px solid var(--skin-color--);
}
.limited_content{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: 0.3s;
}

.limited_content.active{
    -webkit-line-clamp: inherit;
}

.read_more_content a{
    display: inline-block;
    color: var(--skin-color--);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.read_more_content a:hover{
    color: var(--red--);
}

.property_info h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}

.property_info span{
    font-size: 14px;
}


.about_property .nav-tabs{
    border: none;
    display: flex;
    gap: 20px;
}

.about_property .nav-tabs .nav-link{
    border: 1px solid var(--skin-color--);
    color: #d1d1d1;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    border-radius: 50px;
    padding: 2px 20px;
    color: var(--skin-color--);
}
.about_property .nav-tabs .nav-link.active{
    border: 1px solid var(--red--);
    background: var(--red--);
    color: #fff;
}

.about_property_slider{
    /* position: relative; */
    /* display: flex;
    align-items: center; */
}

.about_property_slider .hot_properties{
    margin: 0 5px;
}

.about_property_slider .slick-arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red--);
    border-radius: 50%;
    border: 1px solid var(--red--);
    transition: 0.3s;
    z-index: 2;
    top: 40%;
}

.about_property_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.about_property_slider .slick-arrow.slick-next{
    right: 0;
}

.about_property_slider .slick-arrow.slick-prev{
    left: 0;
}

.side_bar{
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 20px 20px 10px;
    position: sticky;
    z-index: 98;
    top: 100px;
    /* margin-top: -150px; */
    margin-bottom: 20px;
}

.side_bar h2{
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.side_bar form .form_input label{
    display: block;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.side_bar form .form_input input, .side_bar form .form_input textarea{
    width: 100%;
    padding-left: 10px;
    height: 35px;
    border: 2px solid #dedede;
    outline: none;
}

.side_bar form .form_input textarea{
    height: 100px;
}

.side_bar form .form_input input:focus{
    border: 2px solid var(--red--);
}

.side_bar form .form_input button{
    padding: 10px 15px;
    background: var(--red--);
    color: #fff;
    border: 2px solid var(--red--);
    transition: 0.3s;
    font-weight: 500;
    width: 100%;
    border-radius: 50px;
    font-size: 16px;
}

.side_bar form .form_input button:hover{
    background: none;
    color: var(--red--);
}

.amenities {
    text-align: center;
    margin-bottom: 10px;
}

.amenities img{
    width: 40px;
    margin-bottom: 5px;
}

.amenities h3{
    font-size: 12px;
}

.about_section figure{
    position: relative;
    width: 100%;
    margin-bottom: 0;
    padding: 50px 50px 0 0;
}

.about_section figure::before{
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    /* background: var(--skin-color--); */
    right: 0;
    top: 0;
    z-index: -1;
    /* opacity: 0.4; */
    border: 10px solid var(--red--);
    
}

.about_section figure img{
    width: 100%;
}

.about_section .content p{
    margin-bottom: 10px;
    text-align: justify;
}

.form_new{
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 20px 20px 10px;
    margin: 20px 0;
}

.form_new h2{
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.form_new form .form_input label{
    display: block;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.form_new form .form_input input, .form_new form .form_input textarea, .form_new form .form_input select, .form_new form .select2-container{
    width: 100%;
    /* padding-left: 10px; */
    height: 35px;
    border: 2px solid #dedede;
    outline: none;
    line-height: 1;
}

.form_input .input-group{
    flex-wrap: nowrap;
}

.form_input .input-group .form-control, .form_input .input-group .form-select{
    width: auto !important;
}

.form_new form .form_input .select2-container .select2-selection--single .select2-selection__rendered{
    line-height: 30px !important;
}

.form_input .input-group .form-select{
    width: 135px !important;
}

.form_new form .input-group .select2-container{
    padding-left: 0;
    width: 130px !important;
}

.form_new form .select2-container

.form_new form .select2-container .select2-selection--single .select2-selection__rendered{
    line-height: 30px !important;
}
.form_new form .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 2px;
}

.form_new form .select2-container--default .select2-selection--single{
    padding-left: 10px;
    border-radius: 0;
}

.form_new form .select2-container--default.select2-container--disabled  .select2-selection--single{
    background: #e9ecef;
}

.form_new form .form_input textarea{
    height: 100px;
}

.form_new form .form_input input:focus, .form_new form .form_input select:focus{
    border: 2px solid var(--red--);
}

.form_new form .form_input button{
    padding: 5px 25px;
    background: var(--red--);
    color: #fff;
    border: 2px solid var(--red--);
    transition: 0.3s;
    font-weight: 500;
    border-radius: 50px;
    font-size: 16px;
}

.form_new form .form_input button:hover{
    background: none;
    color: var(--red--);
}

.form_new p{
    font-weight: 500;
}

.form_new h3{
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--red--);
}

.form_new form input[type='checkbox'].form-check-input {
    accent-color: var(--red--) !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.contact-info {
    background: #F3F3F3;
    padding: 20px 40px;
    border-radius: 5px;
}
.contact-info .icon{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: var(--red--);
    margin-top: 5px;
}

.contact-info .icon i{
    color: #fff;
    font-size: 24px;
}

.contact-info .info h4{
    font-size: 18px;
    color: #000;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-info .info p{
    font-size: 16px;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.contact-info .info p a{
    font-size: 16px;
    color: #000;
}

.contact-form {
    background: #F3F3F3;
    padding: 20px 25px;
    padding-top: 35px;
    height: 100%;
    border-radius: 5px;
}

.contact-form h3{
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 400;
}

.contact-form form input{
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0 10px;
    outline: none;
}

.contact-form form textarea{
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0 10px;
    padding-top: 10px;
}

.contact-form form input[type="submit"]{
    background: #2c3f51;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(44, 63, 81, 0.2);
}

.contact-form form input[type="submit"]:hover{
    background: #1e2b37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 63, 81, 0.3);
}





.villa-detail-img {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    height: 80vh;
}
.villa-detail-img .big-img {
    width: 65%;
    height: 100%;
}
.villa-detail-img .big-img .gallery-img-pop {
    height: 100%;
    position: relative;
}
.gallery-img-pop {
    cursor: pointer;
}
.gallery-img-pop img {
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}
.villa-detail-img .big-img .gallery-img-pop .view-more {
    position: absolute;
    bottom: 8%;
    right: 5%;
}
.villa-detail-img .big-img .gallery-img-pop .view-more a {
    padding: 10px 15px;
    background: #1e1e1e80;
    border-radius: 5px;
    border: 1px solid #1e1e1e80;
    transition: 0.3s;
    color: #fff;
}
.villa-detail-img .big-img .gallery-img-pop .view-more a img {
    border-radius: 0;
}
.gallery-img-pop img {
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}
.villa-detail-img .small-img {
    display: flex;
    flex-direction: column;
    gap: 4%;
    width: 33%;
    height: 100%;
}
.villa-detail-img .small-img .gallery-img-pop {
    height: 48%;
}

.floating_icon{
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 99;
}

.floating_icon ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating_icon ul li a{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 18px;
    background: var(--skin-color--);
    color: #fff;
}

.card_box{
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
}

.contact_1 {
    text-align: center;
    box-shadow: 0 0 8px #eeeeee;
    border: 1px solid #eeeeee;
    transition: 0.3s;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: 20px 10px;
    /* border-radius: 5px; */
}

/* .contact_1:hover{
    box-shadow: 0 0 10px var(--green--);
} */

.contact_1 i{
    /* width: 100%;
    height: 100%; */
    font-size: 26px;
    /* position: absolute;
    left: -30px;
    top: 2px; */
    color: #fff;
    display: block;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--red--);
    display: grid;
    place-items: center;
}

.contact_1 p{
    padding-bottom: 5px;
}

.contact_1 a{
    color: var(--black--);
}


.form_1{
    width: 100%;
    /* padding: 10px 20px; */
    /* border: 1px solid var(--green--); */
    border-radius: 10px;
    /* text-align: center; */
}
.form_1 form input{
    width: 100%;
    outline: none;
    border: none;
    /* border-bottom: 1px solid var(--black--); */
    border: 2px solid #eeeeee;
    padding-left: 10px;
    margin-bottom: 15px;
    height: 40px;
}

.form_1 form input[type="submit"]{
    padding: 5px 30px;
    width: 50%;
    font-size: 18px;
    /* background: var(--green--); */
    background: #2c3f51;
    color: #fff;
    /* border-radius: 10px; */
    border: none;
    text-transform: uppercase;
}

.form_1 form textarea{
    width: 100%;
    border: none;
    /* border-bottom: 1px solid var(--black--); */
    border: 2px solid #eeeeee;
    outline: none;
    padding-left:10px;
    margin-bottom: 15px;
    height: 100px;
    padding-top: 10px;
}

.hot_properties_new{
    display: flex;
    flex-wrap: wrap;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    line-height: 1.4;
    position: relative;
}

.hot_properties_new a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.hot_properties_new .hot_properties_img{
    position: relative;
    overflow: hidden;
    /* border-radius: 10px 10px 10px 0; */
    width: 45%;
    flex-shrink: 1;
}

.hot_properties_new .hot_properties_img img{
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/1;
}

.hot_properties_new .hot_properties_img .sale, .hot_properties_new .hot_properties_img .hot{
    position: absolute;
    right: 0;
    font-weight: 500;
}

.hot_properties_new .hot_properties_img .sale{
    background: #fff9;
    top: 40px;
    padding: 0px 10px 0px 7px;
    border-radius: 5px 0 0 5px;
    color: #000 !important;
}

.hot_properties_new .hot_properties_img .hot{
    top: 10px;
    background: var(--red--);
    padding: 0px 10px 0px 7px;
    border-radius: 5px 0 0 5px;
    color: #fff;
}

.hot_properties_new .hot_properties_img .commercial{
    position: absolute;
    top: 0;
    left: 0;
    background: var(--red--);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 0 0 10px 0;
}


.hot_properties_new .content{
    width: 55%;
    padding: 10px 20px;
    /* position: absolute; */
    /* bottom: 0;
    z-index: 2; */
    /* transform: translateY(30%); */
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hot_properties_new .content .location{
    display: inline-block;
    color: #000;
    font-size: 14px;
    /* padding: 10px 0; */
}

.hot_properties_new .content h3{
    font-size: 20px;
    font-weight: 600;
    color: #2c3f51;
}

.hot_properties_new .content p{
    font-size: 14px;
    font-weight: 500;
}

.hot_properties_new .content .read_more{
    display: inline-block;
    /* padding: 10px 15px; */
    /* border: 1px solid var(--skin-color--); */
    font-weight: 500;
    /* background: var(--skin-color--); */
    color: #000;
    transition: 0.5s;
    /* border-radius: 50px; */
    /* transform: translateY(100px); */
}

.hot_properties_new .content .read_more:hover{
    background: none;
    color: var(--skin-color--);
}

.hot_properties_new .content .read_more i{
    transition: 0.4s;
}

.hot_properties_new .content .read_more:hover i{
    padding-left: 10px;
}

.hot_properties_new .content ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hot_properties_new .content ul li{
    width: 100%;
    color: #000;
    margin-bottom: 10px;
}

.hot_properties_new .content ul li i{
    color: var(--red--);
}

.hot_properties_new .content ul li span{
    font-size: 12px;
    color: #0008;
}

.hot_properties_new .content ul li select{
    border: none;
    font-size: 12px;
    color: var(--red--);
    position: relative;
    z-index: 3;
    padding: 4px 8px;
    border: none !important;
    outline: none !important;
}

.border_1{
    border: 1px solid #b4b0b0 !important;
    margin: 8px 0;
}

.gallery-images{
    display: none;
}


.blog {
    margin-bottom: 20px;
    box-shadow: 0 3px 10px #0002;
}

.blog .blog-img{
    width: 100%;
    height: auto;
    position: relative;
}

.blog .blog-img img{
    width: 100%;
}

.blog .blog-img .blog-date{
    position: absolute;
    padding: 8px 10px;
    background: var(--red--);
    border-radius: 5px;
    bottom: 8%;
    left: 5%;
    z-index: 1;
}

.blog .blog-img .blog-date span{
    color: #fff;
    font-weight: 600;

}

.blog  .blog-content{
    width: 100%;
    padding: 15px;
}

.blog  .blog-content .name{
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.blog  .blog-content .name a{
    color: #000;
}

.blog  .blog-content .name a i{
    color: var(--red--);
    padding-right: 5px;
}

.blog  .blog-content .content h2{
    font-size: 18px;
    font-weight: 600;
}
.blog  .blog-content .content p{
    padding-bottom: 5px;
}
.blog  .blog-content .content a{
    font-size: 18px;
    color: var(--red--);
    transition: .3s;
}

.blog  .blog-content .content a:hover{
    color: var(--skin-color--);
}


.blog-page{
    width: 100%;
    /* padding: 20px;
    box-shadow: 0 0 10px #0004; */
    border-radius: 3px;
}

.blog-page .blog-heading h2{
    font-size: 22px;
    padding: 10px 0 5px;
}

.blog-page .blog-date ul{
    border-bottom: 1px solid var(--red--);
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.blog-page .blog-date ul li{
    display: inline-block;
    margin-right: 10px;
}

.blog-page .blog-date ul li i{
    color: #000;
    padding-right: 5px;
}

.blog-page .blog-date ul li a{
    color: #000;
}

.blog-page .blog-content p{
    padding-bottom: 10px;
}

.blog-sidebar{
    width: 100%;
    height: auto;
    /* position: sticky;
    top: 85px;
    box-shadow: 0 0 10px #0004;
    border-radius: 3px;
    padding: 20px; */
}

.recent-blog {
    border-bottom: 1px solid var(--skin-color--);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.recent-blog:last-child{
    border-bottom: none;
    margin-bottom: 0; 
    padding-bottom: 0;
}

.recent-blog a h2{
    /* font-size: 16px; */
    font-size: 12px;
    margin-bottom: 0;
}

.recent-blog time{
    font-size: 12px;
}

.video_prop_bg {
    background: var(--white);
}

.video_prop_bg::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/iframe_bg.png) no-repeat;
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    opacity: 0.3;
}

.video_prop iframe{
    height: 450px;
}

.contact_us_new h2{
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.contact_us_new ul li{
    position: relative;
    padding-left: 25px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact_us_new ul li i{
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--red--);
}

.contact_us_new ul li a{
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.contact_us_new ul li a:hover{
    color: var(--red--);
}

.contact_us_new form .form_input label{
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact_us_new form .form_input input, .contact_us_new form .form_input textarea{
    width: 100%;
    padding-left: 10px;
    height: 40px;
    border: 2px solid #dedede;
    outline: none;
}

.contact_us_new form .form_input textarea{
    height: 100px;
}

.contact_us_new form .form_input input:focus{
    border: 2px solid var(--red--);
}

.contact_us_new form .form_input button{
    padding: 10px 25px;
    background: none;
    color: var(--red--);
    border: 2px solid var(--red--);
    transition: 0.3s;
    font-weight: 500;
}

.contact_us_new form .form_input button:hover{
    background: var(--red--);
    color: #fff;
}


.contact_us_new .modal-header{
    background: var(--red--);
}

.contact_us_new .modal-header h5{
    color: #fff;
}

.contact_us_new .modal-header button{
    filter: brightness(0) invert(1);
    opacity: 1;
}

.whats-app{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}

.property_sec .property_type_heading h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--skin-color--);
    margin: 0;
}

.property_sec{
    padding-bottom: 15px;
}

.property_sec:not(:last-child){
    border-bottom: 3px solid #eee;
}

.property_sec .property_type ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 1%;
}

.property_sec .property_type ul li{
    width: 24%;
    font-size: 14px;
}

/* .property_sec .property_type ul li:not(:last-child){
    border-bottom: 3px solid #eee;
} */

.property_sec .property_type ul li a{
    font-size: 14px; 
    color: var(--red--);
}

.property_sec .property_type ul li strong{
    display: block;
    white-space: nowrap;
    font-size: 16px;
}

.form_input p{
    /* font-weight: 500; */
    line-height: 1
}


.price-range-slider {
    width: 100%;
    float: left;
    /* padding: 10px 20px; */
}
.price-range-slider .range-value {
    margin: 0;
    width: 100%;
}
.price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: #000 !important;
    font-size: 12px!important;
    font-weight: initial;
    box-shadow: none;
    border: none;
    /* margin: 20px 0 20px 0; */
}
.price-range-slider .range-bar {
    border: none;
    background: var(--skin-color--);
    height: 3px;
    width: 96%;
    margin-left: 8px;
}
.price-range-slider .range-bar .ui-slider-range {
    background: var(--red--);
}
.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #fff;
    border: 2px solid var(--red--);
    height: 17px;
    width: 17px;
    top: -0.52em;
    cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
    background: var(--red--);
}

.price-range-slider .form-label span{
    flex: 0 0 auto;
}
  
/*--- /.price-range-slider ---*/

.embed-placeholder{position:relative;width:100%;height:auto}
.embed-placeholder iframe{
    width:100%;
    /* height:450px */
    aspect-ratio: 2 / 1;
}

.row_ext > .info_10:not(:last-child){
    display: none;
}

.row_ext > .info_10:nth-child(-n+5){
    display: block;
}

.read_more_service{
    display: inline-block;
    color: var(--skin-color--);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.read_more_service:hover{
    color: var(--red--);
}

.select2-container .select2-selection--single{
    height: 100%!important;
    border: none!important;
}

.select2-container .select2-selection--single .select2-selection__rendered{
    height: 100%!important;
    line-height: 38px!important;
    padding: 0!important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 7px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: var(--red--) !important;
    color: #fff !important;
}

.rcp_form .tab-content .select2-container {
    width: 100% !important;
}

.rcp_form .tab-content .select2-container .select2-selection--single .select2-selection__rendered{
    font-size: 12px;
}

.area_units_new{
    border: none;
    font-size: 12px;
    color: var(--red--);
    position: relative;
    z-index: 3;
    padding: 2px 3px;
    border: none !important;
    outline: none !important;
}

/* Property Search Section */
.property-search {
    margin-top: -60px;
    position: relative;
    z-index: 100;
    margin-bottom: 40px;
}

.search-container {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.search-form {
    width: 100%;
}

.search-form .form-group {
    margin-bottom: var(--spacing-md);
}

.search-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--gray-dark);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
}

.search-form .form-select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    color: var(--dark);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
}

.search-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.btn-search {
    width: 100%;
    padding: 12px var(--spacing-xl);
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    margin-top: 24px;
}

.btn-search:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .property-search {
        margin-top: -40px;
        padding: 0 var(--spacing-md);
    }
    
    .search-container {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 767px) {
    .property-search {
        margin-top: 0;
        padding: var(--spacing-lg) var(--spacing-md);
        background: var(--gray-light);
    }
    
    .search-container {
        padding: var(--spacing-md);
    }
    
    .btn-search {
        margin-top: 0;
    }
}

/* Property Type Buttons */
.property-type-buttons {
    width: 100%;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 10px;
    border: 2px solid #d1d5db; /* subtle gray border */
    margin-bottom: 1rem;
}

.property-type-container {
    display: flex;
    gap: 4px;
    width: 100%;
}

.property-type-btn {
    flex: 1;
    background: transparent;
    border: 1px solid #dee2e6;
    padding: 10px 8px;
    font-size: 14px;
    line-height: 1.2;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    border-radius: 6px;
    min-width: 0;
}

.property-type-btn:hover {
    background: #fff;
    border-color: #233e62;
    color: #233e62;
}

.property-type-btn.active {
    background: #233e62;
    border-color: #233e62;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .property-type-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .property-type-btn {
        width: 100%;
        padding: 12px 8px;
    }
}

/* --- Select Wrapper: Stronger border and focus for selects --- */
.select-wrapper {
    position: relative;
    width: 100%;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s;
}
.select-wrapper:focus-within {
    border-color: #233e62;
    box-shadow: 0 0 0 2px #233e6240;
}

/* --- Select Icon: Darker for better contrast --- */
.select-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: #233e62;
    font-size: 16px;
    pointer-events: none;
}

/* --- Form Select: Remove border, rely on wrapper, improve focus --- */
.form-select {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: none;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #233e62;
    box-shadow: none;
}
.form-select:focus {
    outline: none;
    box-shadow: none;
}

/* --- Select2: Stronger border and focus --- */
.select2-container--default .select2-selection--single {
    height: 45px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    padding-left: 35px;
    color: #233e62;
}
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single.select2-selection--focus {
    border: 2px solid #233e62 !important;
    box-shadow: 0 0 0 2px #233e6240 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #233e62;
    font-size: 14px;
}

/* --- Select2 Dropdown: Stronger border --- */
.select2-dropdown {
    border: 2px solid #233e62 !important;
    border-radius: 6px !important;
}

/* --- Select2 Option Highlight --- */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #233e62;
    color: #fff;
}

@media (max-width: 768px) {
    .property-type-buttons {
        padding: 8px 4px;
    }
}

/* Select2 Dropdown Styling */
.select2-container--default .select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
    color: #233e62;
    transition: all 0.2s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f0f2f5 !important;
    color: #233e62 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #233e62 !important;
    color: #ffffff !important;
}

.select2-container--default .select2-results__option:hover {
    background-color: #f0f2f5;
    color: #233e62;
}

.select2-dropdown {
    border: 1px solid #d1d5db !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    border-radius: 6px !important;
    background-color: #ffffff;
}

.select2-search--dropdown {
    padding: 10px;
}

.select2-search--dropdown .select2-search__field {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #233e62;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #233e62;
    outline: none;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #d1d5db;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #233e62;
    box-shadow: 0 0 0 2px rgba(35, 62, 98, 0.2);
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #233e62 #f0f2f5;
}

/* Scrollbar styling for webkit browsers */
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: #f0f2f5;
    border-radius: 3px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: #233e62;
    border-radius: 3px;
}

/* Ensure dropdown is above other elements */
.select2-container--open .select2-dropdown {
    z-index: 9999;
}

footer, .copy_right_bg {
    background: #2c3f51 !important;
    color: #fff !important;
}

footer p, footer .footer-menu, footer .footer-menu h3, footer .footer-menu ul li a, footer .footer-contact h3, footer .footer-contact ul li, footer .footer-contact ul li a, footer .footer-contact span, footer .footer-icons ul li a, .copy_right p {
    color: #fff !important;
}

.subscribe form input {
    background: #fff;
    color: #233e62;
    border: 1px solid #fff;
}

.subscribe form button {
    background: #233e62;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: background 0.3s;
}

.subscribe form button:hover {
    background: #1a2f4a;
}
