@charset "utf-8";

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 0;
}

:root{
    --primary-color: #D19F37;
}

html {
  scroll-behavior: smooth;
}

body {
    color: #0C0B08;
    font-family: 'Poppins', sans-serif; /* Adjust font as needed */
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
}

.btn{
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none !important;
    padding: 8px 20px;
}

.btn:hover{
    background-color: var(--primary-color);
    color: #fff;
}

.navbar{
    padding: 20px;
    position: relative;
    z-index: 99999;
    margin: 15px;
    /* direction: ltr; */
    padding-right: 0;
}

.navbar-brand {
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
    margin-right: 5px;
}

.nav-link {
    color: #000000 !important;
    font-size: 16px;
    margin-right: 15px;
    font-weight: 600;
}
.navbar-nav .nav-item:last-child .nav-link{
    margin:0 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .btn-primary-custom {
    background-color: #ECECEC; /* Green for Arabic button */
    border-color: #ECECEC;
    color: #000;
    padding:10px 15px 10px 10px;
}

.navbar-nav .btn-primary-custom:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-section {
    padding: 140px 20px;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    /* background-image: url(../images/hero_bg.png); */

    background-size: 100% 100%;
    margin-top: -100px;
    min-height: 1000px;
}

.hero-title {
    font-size: 90px;
    font-weight: 600;
    line-height: 115px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    width: 1050px;
    max-width: 100%;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.search-container {
    width: 900px;
    max-width: 100%;
}

.search-tabs{
    border-bottom: none;
    padding: 0;
}

.search-tabs .btn {
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #000 !important;
    background-color: #fff;
    border:1px solid #ECECEC !important;
}

.search-tabs .btn.active{
    color: #fff !important;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
}

.tab-content>.tab-pane{
    padding: 0;
}

.search-tabs .btn-secondary-custom {
    background-color: #F5F5F5; /* Light gray for inactive tab */
    color: #6c757d;
    border: none;
}

.search-tabs .btn-secondary-custom.active {
    background-color: #DAA520; /* Gold for active tab */
    color: #fff;
    border: none;
}

.form-control{
    border: none !important;
    background-color: #fff;
    border-radius: 50px;
    padding: 0.8rem 1rem;
    box-shadow: none !important;
}

.search-input-group .btn-search {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    border-radius: 50px !important;
    width: 50px;
    height: 50px;
    padding: 0;
}

.search-input-group .btn-search:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.search-input-group {
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    gap: 5px;
}

.filter-dropdown .dropdown-toggle {
    background-color: #fff !important;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    color: #000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[dir="ltr"] .filter-dropdown .dropdown-toggle {
    text-align: left;
}

[dir="rtl"] .filter-dropdown .dropdown-toggle {
    text-align: right;
}

[dir="ltr"] .filter-dropdown .dropdown-toggle::after {
    margin-left: auto;
}

[dir="rtl"] .filter-dropdown .dropdown-toggle::after {
    margin-right: auto;
}

.filter-dropdown .dropdown-menu {
    width: 100%;
    border-radius: 10px;
}

 .explore-card {
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    bottom: 5px;
    width: 23%;
    z-index: 3;
    border-radius: 45px 0 0 0;
    right: 5px;
} 

.explore-card h6{
    font-weight: bold;
}

.explore-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.explore-card .btn:hover {
    background-color: #c99617;
    border-color: #c99617;
}

.looking_for {
    padding: 4rem 0;
    margin: 1rem 2rem;
}

.looking_for h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}
[dir="rtl"] .looking_for h2 {
    text-align: right !important;
}
.image-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    display: block;
}

.image-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 1.5rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

[dir="ltr"] .image-card-overlay {
    left: 0;
}

[dir="rtl"] .image-card-overlay {
    right: 0;
}

.image-card-overlay .btn {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    font-weight: 600;
    width: 100%; /* Make button full width */
}

.image-card:hover .btn{
    background-color: #fff;
    color: #000;
}

.large-card {
    height: 500px; /* Fixed height for the large card */
}

.small-card {
    height: 240px; /* Fixed height for the smaller cards */
}

.latest {
    background-image: url(../images/Subtract.png);
    background-size: cover;
    background-position: top center;
    padding: 0 20px;
    padding-bottom: 40px;
}

.latest .head {
    margin: 10px 0;
    font-weight: 600;
    display: inline-block;
    padding-top: 10px;
}

.property-card_wrapper{
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.property-card_wrapper::-webkit-scrollbar {
  height: 5px;
}

.property-card_wrapper::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 50px;
}

.property-card_wrapper::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 50px;
}

.recommend h2{color: #fff}

.property-card{
    max-width: 100%;
    margin-top: 60px;
    border: 1px solid rgba(236, 236, 236, 0.8);
    border-radius: 16px;
    padding: 15px;
    overflow: hidden;
    background-color: #fff;
    flex-shrink: 0;
}

    .property-image-wrapper {
      position: relative;
      margin-bottom: 20px;

    }

    .property-image-wrapper .img_box{
      position: relative;
    }
    .property-image-wrapper .img_box .fea{
        position: absolute;
        bottom: 25px;
        left: 15px;
    }

.property-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    -webkit-mask-image: url(../images/latest_subtract.png);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.contact-icons {
    position: absolute;
    top: 4%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    height: 45%;
    background-color: #fff;
    padding: 5px;
    border-radius: 30px;
    right: 1%;
}

.contact-icons .btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    border-radius: 50%;
    font-size: 15px;
    color: #788496;
    background-color: #ECECEC;
}

.heart-btn {
    position: absolute;
    top: 35px !important;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: #FAFAFA;
    color: #000;
    border: 1px solid rgba(236, 236, 236, 0.8) !important;
    border-radius: 50px;
    padding: 0;
    box-shadow: none !important;
    left: 35px !important;
    right: auto !important;
}

.heart-btn.active{
    color: #fff;
    background: #D19F37 !important;
    border: 1px solid #fff !important;
}

.property-info{
    max-width: 40%;
    height: 15%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    gap: 15px;
    right: 0;
    border-radius: 0 0 30px 0;
}

 .property-info i {
  font-size: 0.9rem;
  color: #a7a7a7;
}

 [dir="ltr"] .property-info i {
  margin-right: 5px;
}

 [dir="rtl"] .property-info i {
  margin-left: 5px;
}

.property-info span {
  font-weight: 500;
  font-size: 14px;
}

.property-card h2,.property-card h3{
    font-size: 20px;
    font-weight: bold;
}
.property-card h3{
    white-space: nowrap;
}
.property-card h2 a{
    color: #000;
}

.property-card p{
    font-size: 13px;
    color: #545454;
}

    .badge-custom {
      background-color: #d19f3730;
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      font-size: 13px;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .price-final {
      font-size: 22px;
      font-weight: bold;
    }

    .recommend{
        background-color: #0C0B08;
        background-image: url(../images/black_bg.svg);
        background-size: cover;
        background-position: top center;
        padding-top: 40px;
    }

    [dir="ltr"] .recommend{
        background-position-x: 10%;
    }

    [dir="rtl"] .recommend{
        background-position-x: 90%;
    }

    .property-card-dark,.property-card-dark .contact-icons,.property-card-dark .property-info{
        background-color: #2B2B2B;
        border-color: #2B2B2B;
        color: #fff;
    }

    .property-card-dark h2 a,.property-card-dark p,.property-card-dark h3{
        color: #ffffff;
    }

    .banner{
        background-color: #0C0B08;
        padding: 60px 15px;
        position: relative;
    }

    .banner .img_box{
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        min-height: 400px;
        max-height: 550px;
    }

    .banner img{
        width: 100%;
        height: 100%;
        min-height: 400px;
        border-radius: 16px;
        object-fit: cover;
    }

    .banner .img_box:after{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }

    [dir="ltr"] .banner .img_box:after{
        background: linear-gradient(262.43deg, rgba(0, 0, 0, 0) 64.11%, rgba(0, 0, 0, 0.64) 82.54%);
        left: 0;
    }

    [dir="rtl"] .banner .img_box:after{
        background: linear-gradient(-262.43deg, rgba(0, 0, 0, 0) 64.11%, rgba(0, 0, 0, 0.64) 82.54%);
        right: 0;
    }

    .banner_text{
        width: 600px;
        max-width: 90%;
        position: absolute;
        bottom: 50px;
        color: #fff;
        z-index: 99;
    }

    [dir="ltr"] .banner_text{
        left: 50px;
    }

    [dir="rtl"] .banner_text{
        right: 50px;
    }

.banner_text h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    width: 385px;
    max-width: 100%;
}

    .banner_text p{font-size: 14px}

.banner_text .btn{
    color: #000;
    padding: 10px 30px;
    margin-top: 20px;
}

[dir="ltr"] .banner_slider .banner_text{direction: ltr;}

[dir="rtl"] .banner_slider .banner_text{direction: rtl;}

.banner_slider .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    width: max-content;
    position: absolute;
    bottom: 20px;
    z-index: 99;
}

[dir="ltr"] .banner_slider .owl-nav.disabled+.owl-dots {
    margin-right: auto;
    margin-left: 50px;
    left: -10px;
}

[dir="rtl"] .banner_slider .owl-nav.disabled+.owl-dots {
    margin-left: auto;
    margin-right: 50px;
    right: -10px;
}

.banner_slider .owl-dots .owl-dot span{
    margin:3px;
    background: #ffffff;
    opacity: 0.5;
}

.banner_slider .owl-dots .owl-dot.active span{
    width: 40px;
    background: #ffffff;
    opacity: 1;
}

.compounds{
    background-image: url(../images/footer_bg.svg);
    background-size: cover;
    padding: 20px;
    padding-top: 60px;
    background-color: #F0F0F0;
}

[dir="ltr"] .compounds{
    background-position: top left;
}

[dir="rtl"] .compounds{
    background-position: top right;
}

.compounds h2{
    margin-bottom: 100px;
    font-weight: bold;
}
[dir="rtl"] .compounds h2{
    color: #fff;
}
.compound-card {
    background-color: #0c0b08;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.compound-card img {
    width: 100%;
    height: 100%;
}
[dir="rtl"] .compound-card img {
        transform: rotateY(180deg);
}
.compound-card .compound-card-content {
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

[dir="rtl"] .compound-card .compound-card-content {
    background:linear-gradient(270deg, #000000b3, transparent);
}

[dir="ltr"] .compound-card .compound-card-content {
    background:linear-gradient(-270deg, #000000b3, transparent);
}

.compound-card .compound-card-content .fea{
    position: absolute;
    top: 15px;
}

[dir="rtl"] .compound-card .compound-card-content .fea{
    right: 15px;
}

[dir="ltr"] .compound-card .compound-card-content .fea{
    left: 15px;
}

[dir="ltr"] .compound-card .compound-card-content {
    left: 0;
}

[dir="rtl"] .compound-card .compound-card-content {
    right: 0;
}

.compound-card .compound-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.compound-card .compound-card-content p {
    font-size: 13px;
    color: #fff;
}

.compound-card .arrow-button {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 2%;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    z-index: 9;
}

[dir="ltr"] .compound-card .arrow-button {
    right: 2%;
    transform: rotate(-45deg);
}

[dir="rtl"] .compound-card .arrow-button {
    left: 2%;
    transform: rotate(223deg);
}

.compound-card .arrow-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.top_area{
    padding: 40px 20px;
    background-color: #0C0B08;
}

.top_area h2{
    margin-bottom: 50px;
    font-weight: bold;
    color: #fff;
}

.top_area-card {
    background-color: #0c0b08;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.top_area-card img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.top_area-card-content {
    position: absolute;
    bottom: 15%;
    text-align: center;
    z-index: 9;
    padding: 15px;
}

[dir="ltr"] .top_area-card-content {
    left: 50%;
    transform: translateX(-50%);
}

[dir="rtl"] .top_area-card-content {
    right: 50%;
    transform: translateX(50%);
}

.top_area-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.top_area-card-content p {
    font-size: 14px;
    color: #d7d7d7;
}

.top_area-card .arrow-button {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 1%;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

.top_area-card:hover .arrow-button{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-listing-section {
    padding: 140px 20px;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    background-image: url(../images/listing_BG.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -100px;
    min-height: 770px;
    margin-bottom: 30px;
}

.hero-listing-section .search-container {
    width: 74%;
    position: absolute;
    bottom: -2%;
    background-color: #fff;
    padding: 15px 30px;
    left: 0;
    border-radius: 0 50px 0 0;
}

.hero-listing-section .search-container .search-input-group,.hero-listing-section .filter-dropdown .dropdown-toggle {
    border: 1px solid #ECECEC !important;
}

.listing{
    background-image: url(../images/filter_bg.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    padding-bottom: 40px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 40px;
}

[dir="ltr"] .listing{
    background-position-x: 90%;
}

[dir="rtl"] .listing{
    background-position-x: 10%;
}

        .filter-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid #ECECEC;
        }

        .filter-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .filter-card-header h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0;
        }

        .filter-card-header .reset-btn {
            color: var(--primary-color);
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 500;
        }

        /* Standard Checkbox styling */
        .form-check {
            margin-bottom: 0.8rem;
        }

        .form-check-input {
            width: 1.2em;
            height: 1.2em;
            border-radius: 5px; /* Slightly rounded checkbox */
            border: 1px solid #6c757d; /* Grey border */
            background-color: #ffffff; /* Darker background for unchecked */
            cursor: pointer;
            flex-shrink: 0; /* Prevent shrinking */
            margin-top: 0.25em; /* Align with text */
        }

        .form-check-input:checked {
            background-color: #DAA520; /* Gold when checked */
            border-color: #DAA520;
            box-shadow: none; /* Remove default blue shadow */
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25); /* Gold shadow on focus */
        }

        .form-check-label {
            font-size: 0.95rem; /* Space between checkbox and text */
            cursor: pointer;
        }

        [dir="ltr"] .form-check-label {
            margin-left: 0.5rem;
        }

        [dir="rtl"] .form-check-label {
            margin-right: 0.5rem;
        }

        /* See More link */
        .see-more-link {
            color: var(--primary-color);
            text-decoration: underline;
            font-weight: 500;
            font-size: 0.9rem;
            display: block;
            margin-top: 0.5rem;
        }

        /* Custom Radio Button Styling (for button-like appearance) */
        .custom-radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem; /* Space between buttons */
        }

        .custom-radio-group input[type="radio"] {
            display: none; /* Hide the actual radio button */
        }

.custom-radio-group label {
    background-color: #fff;
    color: #000;
    border: 2px solid #ECECEC;
    border-radius: 50px;
    padding: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    padding: 0 5px;
    text-align: center;
}

        .custom-radio-group input[type="radio"]:checked + label {
            background-color: #DAA520; /* Gold for active button */
            color: #fff;
        }

        .custom-radio-group label:hover {
            background-color: #5a6268; /* Darker hover effect */
        }

        /* Dual Range Slider Styling */
        .range-slider-container {
            position: relative;
            width: 100%;
            padding: 1rem 0.5rem;
        }

        .range-slider {
            position: absolute;
            width: 100%;
            -webkit-appearance: none;
            background: transparent; /* Hide default track */
            pointer-events: none; /* Allow events to pass through */
        }

        [dir="ltr"] .range-slider {
            left: 0;
        }

        [dir="rtl"] .range-slider {
            right: 0;
        }

        .range-slider::-webkit-slider-runnable-track {
            height: 8px;
            background: #495057; /* Default track color */
            border-radius: 5px;
        }

        .range-slider::-moz-range-track {
            height: 8px;
            background: #495057;
            border-radius: 5px;
        }

        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            background: #DAA520; /* Gold thumb */
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid #fff; /* White border for thumb */
            margin-top: -6px; /* Adjust thumb position */
            pointer-events: all; /* Make thumbs clickable */
            position: relative; /* For z-index */
            z-index: 2; /* Ensure thumb is above track */
        }

        .range-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #DAA520;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid #fff;
            position: relative;
            z-index: 2;
        }

        /* The filled track between thumbs */
        .range-slider-track-fill {
            position: absolute;
            top: 28px;
            height: 8px;
            background-color: #DAA520; /* Gold fill color */
            border-radius: 5px;
            transform: translateY(-50%); /* Adjust for vertical centering */
            z-index: 1; /* Below thumbs, above base track */
        }

        .range-values {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .range-values .input-group {
            width: 48%; /* Adjust width for two inputs */
        }

.range-values .form-control {
    background-color: #ffffff;
    border: 1px solid #ECECEC !important;
    color: #000;
    border-radius: 50px;
    text-align: center;
    padding: 0.5rem 0.75rem;
}

        .range-values .input-group-text {
            border-radius: 50px;
            background-color: transparent;
            padding: 0.5rem 0.75rem;
        }

        /* Main content area (placeholder for now) */
        [dir="ltr"] .filter-content-area {
            padding-left: 50px;
        }

        [dir="rtl"] .filter-content-area {
            padding-right: 50px;
        }

        .filter-content-area .property-card{
            width: 100%;
        }

.property-card_2 .property-image-wrapper{margin-bottom: 0}

.property-card_2 .property-title {
    width: 85%;
    position: absolute;
    bottom: 0;
    background-color: #ffffff;
    padding: 15px;
}

[dir="ltr"] .property-card_2 .property-title {
    left: 0;
    border-radius: 0 30px 0 0;
}

[dir="rtl"] .property-card_2 .property-title {
    right: 0;
    border-radius: 30px 0 0 0;
}

.property-card_2 .property-title a{
    color: #0C0B08;
}

.listing .social_icons {
    position: absolute;
    top: -10px;
    justify-content: flex-end;
     right: 20px;
}

.social_icons .footer-social-icons a{
    color: #ECECEC;
    border: 4px solid #ECECEC;
    width: 50px;
    height: 50px;
}

.payment-plans-buttons label{
    width: 49%;
}

.pagination {
    background-color: #0C0B08;
    border-radius: 50px;
    padding: 15px;
    display: inline-block;
    max-width: 40%;
    position: absolute;
    top: 102%;
    left: 2%;
}

.pagination li a {
    color: #fff;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border-radius: 50px;
    display: block;
    text-align: center;
    line-height: 45px;
}

.pagination li.active a{
    background-color: var(--primary-color);
}

.single .row{
    position: relative;
    z-index: 999;
}
/* [dir="rtl"] .single .row{
    flex-direction: row-reverse;
} */
.single-hero {
    position: relative;
    margin-top: -100px;
    /* min-height: 770px; */
    margin-bottom: -11%;
}

.single-hero img{
    width: 100%;
}

.single_info{
    background: #FFFFFF;
    padding: 30px;
    border: 2px solid rgba(236, 236, 236, 0.8);
    border-radius: 30px;
}

.single_info img{
    width: 60px;
    height: 60px;
    border: 1.4878px solid rgba(236, 236, 236, 0.8);
    filter: drop-shadow(0px 19.4091px 11.7841px rgba(0, 0, 0, 0.01)) drop-shadow(0px 8.31818px 8.31818px rgba(0, 0, 0, 0.02)) drop-shadow(0px 2.07955px 4.85227px rgba(0, 0, 0, 0.02));
    border-radius: 62.4878px;
    background-color: #fff;
}

.single_info h1{
    font-size: 28px;
    font-weight: bold;
}

.single_contact a {
    width: 100%;
    flex: 1;
    color: #ffffff;
    background-color: var(--primary-color);
    height: 50px;
    line-height: 36px;
}

[dir="ltr"] .single_contact a i{
    margin-right: 10px;
}

[dir="rtl"] .single_contact a i{
    margin-left: 10px;
}

.single_contact a.whatsapp{
    background-color: #4CD964;
}

.single_contact a.map{
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
}

.single_contact{
    margin-top: 40%;
}

.property-details-section {
            background: #FAFAFA;
    border: 1px solid rgba(236, 236, 236, 0.8);
    border-radius: 20px;
            padding: 15px 20px;
        }

        .property-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 2rem;
        }

        .property-header .area {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .details-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .details-list li {
            display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #0C0B08;
        }

        .details-list li:last-child {
            border-bottom: none;
        }

        .details-list li strong {
            color: #333;
            font-weight: 500;
        }

        .details-list li .highlight-value {
            color: #DAA520; /* Gold color for 'La Vista Bay' */
            font-weight: 600;
        }

        .payment-card {
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #FAFAFA;
    border: 1px solid rgba(236, 236, 236, 0.8);
    border-radius: 20px;
            padding: 45px 20px;
        }

        .payment-card .percentage {
            font-size: 2rem;
            font-weight: 700;
            color: #545454;
        }

        [dir="ltr"] .payment-card .percentage {
            margin-right: 1rem;
        }

        [dir="rtl"] .payment-card .percentage {
            margin-left: 1rem;
        }

        .payment-card .details {
            flex-grow: 1;
        }

        .payment-card .details p {
            margin-bottom: 0;
            font-size: 1rem;
            color: #333;
        }

        .payment-card .years {
            font-size: 1.1rem;
            font-weight: 600;
            color: #6c757d;
        }

        .amenities-section,.faq-section,.amenities-section + .row {
            padding: 15px 20px;
            margin-bottom: 30px;
        }

        .amenities-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem; /* Increased margin for heading */
        }

        .amenity-item {
            width: fit-content;
            display: flex;
            align-items: center;
            text-align: center;
            margin-bottom: 10px;
            gap: 10px;
        }

        [dir="ltr"] .amenity-item { /* Spacing between items */
            margin-right: 20px;
        }

        [dir="rtl"] .amenity-item {
            margin-left: 20px;
        }

        .amenity-item svg {
            width: 30px; /* Icon size */
            height: 30px;
            fill: #ccc; /* Gold color for icons */
        }

        .amenity-item p {
            font-size: 0.9rem;
            color: #0C0B08;
            margin-bottom: 0;
        }

        /* About O West Orascom Section Styling */
        .about-section {
            padding: 20px;
        }

        .about-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .about-section p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 1rem;
        }

        .about-section .show-less-button {
            background-color: transparent;
            border: none;
            color: #DAA520;
            font-weight: 600;
            padding: 0;
            cursor: pointer;
            text-decoration: underline;
        }

        /* Contact Form Section Styling */
        .contact-form-section {
            background: #0C0B08;
            border-radius: 32px;
            padding: 2.5rem;
            color: #fff; /* Light text color */
        }

        .contact-form-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-form-section p {
            font-size: 0.9rem;
            color: #adb5bd;
            margin-bottom: 2rem;
        }

        .contact-form-section .form-control {
            background-color: rgba(24, 24, 24, 0.5);
            border: 1px solid rgba(239, 231, 210, 0.7);
            border-radius: 64px;
            color: #fff;
            padding: 0.75rem 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-form-section .form-control::placeholder {
            color: #AAAAAA;
        }

        .contact-form-section .form-select {
            background-color: rgba(24, 24, 24, 0.5);
            border: 1px solid rgba(239, 231, 210, 0.7);
            border-radius: 64px;
            color: #fff;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            appearance: none; /* Remove default arrow */
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-size: 0.75em 0.75em;
        }

        [dir="ltr"] .contact-form-section .form-select {
            background-position: right 1rem center;
        }

        [dir="rtl"] .contact-form-section .form-select {
            background-position: left 1rem center;
        }

        .contact-form-section textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form-section .btn-send-message {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            width: 100%;
            margin-bottom: 1rem;
        }

        .contact-form-section .btn-request-meeting {
            background-color: #fff;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            width: 100%;
        }

        .contact-info {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #adb5bd;
        }

        .contact-info div {
            flex: 1;
        }

        [dir="ltr"] .contact-info div:first-child {
            margin-right: 1rem;
        }

        [dir="rtl"] .contact-info div:first-child {
            margin-left: 1rem;
        }

        .contact-info strong {
            display: block;
            color: #f8f9fa;
            font-weight: 500;
            margin-top: 0.25rem;
        }

        .faq-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem; /* Align with content */
        }

        [dir="ltr"] .faq-section h2 {
            padding-left: 15px;
        }

        [dir="rtl"] .faq-section h2 {
            padding-right: 15px;
        }

        .accordion-item {
            border: 1px solid rgba(236, 236, 236, 0.8) !important;
            background-color: #fff;
            border-radius: 24px !important;
            margin-bottom: 1rem; /* Space between accordion items */
        }

        .accordion-button {
            background-color: #fff;
            color: #333;
            font-weight: 600;
            font-size: 1.1rem;
            border: none !important;
            border-radius: 24px !important;
            padding: 1.5rem 1rem;
            box-shadow: none;
            transition: background-color 0.2s ease;
        }

        .accordion-header{margin-bottom: 0 !important}

        .accordion-button:not(.collapsed) {
            color: #333;
            background-color: #fff;
            box-shadow: none;
            border-bottom-left-radius: 0; /* Remove bottom radius when open */
            border-bottom-right-radius: 0;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-button::after {

        }

        .accordion-button:not(.collapsed)::after {

        }

        .accordion-body {
            padding: 1.5rem 2rem; /* Adjust padding */
            color: #6c757d;
            font-size: 0.95rem;
            background-color: #fff;
            border-bottom-left-radius: 24px; /* Apply border-radius to body when open */
            border-bottom-right-radius: 24px;
        }

.Phases{
    background-color: #191919;
    color: #fff;
    padding: 40px 20px;
    margin-bottom: -160px;
    padding-bottom: 100px;
}

.about-hero{
    position: relative;
    margin-top: -110px;
}

.about-hero img{
    width: 100%;
}

.about-hero h2 {
    position: absolute;
    top: 82%;
    line-height: 45px;
    font-weight: 600;
    width: 340px;
    max-width: 30%;
    min-height: 90px;
    margin-bottom: 0;
    left: 30px;
}

.who_we_are{
    background-image: url(../images/who_we_bg.svg);
    background-size: cover;
    background-position: top center;
    padding: 30px 20px;
}

.who_we_are h3{
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 60px;
}

.who_we_are h2{
    font-weight: 600;
    margin-bottom: 20px;
}

.who_we_are p{
    opacity: .5;
}

.who_we_are img{
    border-radius: 16px;
    width: 100%;
    margin: 30px 0;
}

.vision{
    background: #FAFAFA;
    border: 1px solid rgba(236, 236, 236, 0.8);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px;
}

.vision h3{
    font-weight: 600;
    margin-bottom: 0;
    white-space: nowrap;
}

.vision p{
    font-size: 14px;
    margin-bottom: 0;
}

.team{
    background: #FAFAFA;
    border: 1px solid rgba(236, 236, 236, 0.8);
    border-radius: 20px;
    padding: 16px 24px;
    margin: 20px;
}

.team h2{
    font-weight: 600;
    margin-top: 30px;
}

.team p{
    font-size: 14px;
    margin-bottom: 30px;
}

.team .team_block{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.team .team_block img{
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.team .team_block .text{
    padding: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    width: 60%;
}

[dir="ltr"] .team .team_block .text{
    border-radius: 0 16px 0 16px;
    left: 0;
}

[dir="rtl"] .team .team_block .text{
    border-radius: 16px 0 16px 0;
    right: 0;
}

.team .team_block .text h3{
    font-size: 16px;
    font-weight: 600;
}

.team .team_block .text p{
    opacity: .5;
    margin-bottom: 0;
    font-size: 12px;
}

.latest_news{
    background-image: url(../images/latest_news_bg.svg);
    background-size: cover;
    background-position: top center;
    padding: 60px 20px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.blog-card {
    background-color: #2B2B2B; /* Dark background for the card */
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    color: #fff;
    padding:15px;
    margin-top: 40px;
}

.blog-card .img_box{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-card-img {
    width: 100%;
    height: 310px;
}

        .blog-card-body {
            position: relative;
        }

        .date-badge {
            background: rgba(209, 159, 55, 0.2);
            border: 0.527397px solid #D19F37;
            color: var(--primary-color);
            border-radius: 50px;
            padding: 0.4rem;
            font-size: 10px;
            display: inline-flex;
            align-items: center;
            position: absolute;
            bottom: 3%;
            max-width: 33%;
            left: 1%;
        }

        .date-badge svg {
            fill: var(--primary-color);
            width: 16px;
            height: 16px;
        }

        [dir="ltr"] .date-badge svg {
            margin-right: 0.5rem;
        }

        [dir="rtl"] .date-badge svg {
            margin-left: 0.5rem;
        }

        .blog-card-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .blog-card-subtitle {
            font-size: 0.9rem;
            font-weight: 500;
            color:var(--primary-color); /* Gold color for subtitle */
        }

        .blog-card-text {
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .learn-more-btn {
            background-color: #fff;
            color: #212121;
            border: none;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            width: 100%;
            display: block;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .learn-more-btn:hover {
            background-color: #DAA520; /* Gold on hover */
            color: #fff;
        }

.about-hero .search-container{
    position: absolute;
    top: 80%;
    width: 45%;
    left: 30px;
}

.about-hero .search-container h2{
    position: static;
    margin-bottom: 20px;
}

.about-hero .search-container .search-input-group{
    border: 1px solid #ECECEC !important;
}

.featured_news{
    padding: 60px 20px;
    background-color: #191919;
}

.owl-theme .owl-nav {
    position: absolute;
    top: -60px;
    margin: 0;
}

[dir="ltr"] .owl-theme .owl-nav {
    right: 0;
}

[dir="rtl"] .owl-theme .owl-nav {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background-color: var(--primary-color) !important;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50px;
    margin: 0 10px;
}



/* Color Style/Offwhite */


        @media (max-width: 768px) {
            .property-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .property-header h1 {
                font-size: 2rem;
            }

            .property-header .area {
                font-size: 1.5rem;
                margin-top: 0.5rem;
            }

                        .payment-card {
                flex-direction: column;
                align-items: flex-start;
            }

                        [dir="ltr"] .payment-card {
                text-align: left;
            }

                        [dir="rtl"] .payment-card {
                text-align: right;
            }

            .payment-card .percentage {
                margin-bottom: 0.5rem;
            }

            .amenity-item {
                margin-bottom: 1.5rem; /* More spacing for mobile grid */
            }

            .contact-info {
                flex-direction: column;
            }

            .contact-info div:first-child {
                margin-bottom: 1rem;
            }

            [dir="ltr"] .contact-info div:first-child {
                margin-right: 0;
            }

            [dir="rtl"] .contact-info div:first-child {
                margin-left: 0;
            }
        }

        @media (max-width: 768px) {
            .property-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .property-header h1 {
                font-size: 2rem;
            }

            .property-header .area {
                font-size: 1.5rem;
                margin-top: 0.5rem;
            }

            .property-details-section,
            .payment-plans-section {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .payment-card {
                flex-direction: column;
                align-items: flex-start;
            }

            [dir="ltr"] .payment-card {
                text-align: left;
            }

            [dir="rtl"] .payment-card {
                text-align: right;
            }

            .payment-card .percentage {
                margin-bottom: 0.5rem;
            }
        }

.contact-section {
    background-color: #191919;
    color: #fff;
    padding: 80px 20px;
    margin-bottom: -160px;
    padding-bottom: 100px;
}

.contact-section h2 {
    width: 400px;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 100%;
}

.contact-section p {
    width: 650px;
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 30px;
}

        .contact-image-container {
            border-radius: 15px;
            overflow: hidden;
            height: 100%; /* Take full height of the column */
            display: flex;
            align-items: center; /* Center image vertically if needed */
        }

        .contact-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px; /* Rounded corners for the image itself */
        }

        .contact-info-header {
            margin-bottom: 2rem;
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }

        .contact-info-item h6 {
            color: #adb5bd; /* Light grey for labels */
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .contact-info-item p {
            width: auto;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0; /* Remove default paragraph margin */
        }

        .contact-form .form-control{
            background: rgba(24, 24, 24, 0.5);
            border: 1px solid rgba(239, 231, 210, 0.15) !important;
            border-radius: 30px;
            color: #fff;
            padding: 0.8rem 1rem;
            margin-bottom: 1.3rem;
            min-height: 60px;
        }

        .contact-form select.form-control{
            appearance: auto !important;
        }

        .contact-form .form-control::placeholder {
            color: #AAAAAA; /* Placeholder color */
        }

        .contact-form .form-control:focus{
            border-color: var(--primary-color) !important;
            box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);
            color: #fff;
        }

        .contact-form textarea.form-control {
            min-height: 120px; /* Larger text area */
            resize: none;
        }

        .contact-form .btn{
            height: 50px;
        }

/* Footer Styling */
        .main-footer {
            color: #fff; /* Light grey text */
            padding: 80px 20px;
            padding-bottom: 0;
            padding-top: 170px;
            background-image: url(../images/footer_bg2.svg);
            background-size: cover;
            background-position: top center;
        }

        .main-footer h3 {
            color: #fff; /* White headings */
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .main-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .main-footer ul li {
            margin-bottom: 0.8rem;
        }

        .main-footer ul li a {
            color: #adb5bd;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .main-footer ul li a:hover {
            color: #fff;
        }

        .footer-logo-section img {
            max-width: 100%;
            margin-bottom: 1rem;
        }

        .footer-logo-section{
            text-align: center;
        }

        [dir="ltr"] .footer-logo-section{
            padding-right: 6%;
        }

        [dir="rtl"] .footer-logo-section{
            padding-left: 6%;
        }

        .footer-social-icons a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: #0C0B08;
            border-radius: 50px;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        [dir="ltr"] .footer-social-icons a {
            margin-right: 0.8rem;
        }

        [dir="rtl"] .footer-social-icons a {
            margin-left: 0.8rem;
        }

        .footer-social-icons a:hover {
            background-color: #c99617;
        }

        .footer-contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #adb5bd;
        }

        .footer-contact-info p svg {
            color: var(--primary-color); /* Gold icon color */
            flex-shrink: 0;
        }

        [dir="ltr"] .footer-contact-info p svg {
            margin-right: 10px;
        }

        [dir="rtl"] .footer-contact-info p svg {
            margin-left: 10px;
        }

        .footer-bottom p{
            margin-top: 2rem;
            margin-bottom: 3rem;
            font-size: 14px;
            color: #EBEBEB;
        }

        .footer-bottom img {
            margin: 0 5px;
        }

.sell{
    padding: 40px 0;
}

.sell_block{
    background: #FAFAFA;
    border: 1px solid rgba(236, 236, 236, 0.8);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 2%;
    margin: 30px 0;
}
[dir="rtl"] .sell_block{flex-direction: row-reverse;}
.sell_block .img_box{
    position: relative;
    width: 60%;
    flex-shrink: 0;
}

.sell_block .img_box img{
    width: 100%;
    min-height: 200px;
}

.sell_block .img_box span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    bottom: 5%;
    right: 3%;
}

.sell_block .sell_text{
    width: 38%;
}

.sell_block h3{
    font-size: 34px;
    line-height: 45px;
    font-weight: 600;
    color: #545454;
    margin-bottom: 20px;
    width: 400px;
    max-width: 100%;
}

.sell_block p{
    font-size: 12px;
    margin-bottom: 0;
}

.sell_block:nth-of-type(even){
    flex-direction: row-reverse;
    justify-content: space-between;
}
[dir="rtl"] .sell_block:nth-of-type(even){
    flex-direction: row;
}
.sell_block:nth-of-type(even) .img_box span{
    left: 3%;
    right: auto;
}


.sell_form {
    color: #fff;
    padding: 200px 100px;
    margin-bottom: -160px;
    padding-bottom: 100px;
    background-image: url(../images/sell_form_bg.svg);
    background-size: cover;
    background-position: top center;
    z-index: 999;
    position: relative;
}

[dir="ltr"] .sell_form {
    background-position-x: 4%;
}

[dir="rtl"] .sell_form {
    background-position-x: 96%;
}

.sell_form .contact-form-container{
    background-color: #0C0B08;
    border-radius: 30px;
    padding: 100px;
}

.sell_form .contact-form-container h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sell_form .contact-form-container p{
    text-align: center;
    font-size: 13px;
    margin-bottom: 60px;
}

.sell_form .social_icons {
    position: absolute;
    top: 2%;
    justify-content: flex-start;
    left: 0;
}
[dir="rtl"] .sell_form .social_icons{flex-direction: row-reverse;}
.sell_form .social_icons a{
    margin-right: 0.5rem;
}


.blog_hero{
    position: relative;
    margin-top: -110px;
}

.blog_hero img{
    width: 100%;
    border-radius: 20px;
}

.blog_hero .title {
    position: absolute;
    bottom: 1%;
    background-color: #fff;
    max-width: 50%;
    width: 600px;
    padding: 15px;
    left: 15px;
    border-radius: 0 30px 0 0;
}

.blog_hero h2 {
    line-height: 50px;
    font-weight: 600;
}

.blog_hero p{
    font-size: 12px;
}

[dir="ltr"] .blog_hero p i{
    margin-right: 10px;
}

[dir="rtl"] .blog_hero p i{
    margin-left: 10px;
}

.blog_single{
    padding: 60px 20px;
}

.blog_single img{
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.blog_single .row{
    align-items: stretch;
}

.single_social {
    background: #FFFFFF;
    border: 0.715px solid var(--primary-color);
    border-radius: 40px;
    padding: 10px;
    display: table;
    margin: 50px auto;
}

.single_social a{
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.blog_single h2{
    font-size: 20px;
}

.blog_single h3{
    font-size: 16px;
}

.blog_single p {
    font-size: 14px;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.blog_single .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #E5E5E5 !important;
    color: #000;
}

.blog_single .btn:hover{
    background-color: var(--primary-color);
    color: #fff;
}

.show_more_blog{
    margin-bottom: -160px;
    padding-bottom: 100px;
}

.contact-2{
    background-image: url(../images/sell_form_bg.svg);
    background-size: cover;
    background-position: top center;
    z-index: 999;
    position: relative;
    background-color: #fff;
    padding-top: 200px !important;
    margin-top: 40px;
    padding: 80px 20px;
    margin-bottom: -160px;
    padding-bottom: 100px;
}

[dir="ltr"] .contact-2{
    background-position-x: 4%;
}

[dir="rtl"] .contact-2{
    background-position-x: 96%;
}

.contact-2 .social_icons {
    position: absolute;
    top: 2%;
    justify-content: flex-start;
    /* left: 0; */
}

[dir="rtl"] .contact-2 .social_icons {
    flex-direction: row-reverse;
}

.contact-2 .social_icons a{
    margin-right: 0.5rem;
}

.favorites{
    background-image: url(../images/favorites_bg.svg);
    padding-top: 120px !important;
}

.favorites h2.title{
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin-bottom: 60px;
}

.favorites .search-tabs li{flex: 1}

.favorites .search-tabs li a{
    border: none !important;
    padding: 12px 10px;
}

.favorites .search-tabs .btn{
    background-color: #2A2A2A;
    color: #fff !important;
}

.favorites .search-tabs .btn.active {
    color: #fff !important;
    background-color: var(--primary-color);
}

.favorites .property-card,.realstate_bottom .property-card{
    width: 100%;
}

.favorites .social_icons{top: 0}

.realstate {
    background-image: url(../images/realstate.svg);
    background-size: cover;
    background-position: top center;
    z-index: 999;
    position: relative;
    background-color: #fff;
    margin-top: 40px;
    padding: 20px;
}

[dir="ltr"] .realstate {
    background-position-x: 4%;
}

[dir="rtl"] .realstate {
    background-position-x: 96%;
}

.realstate .title {
    max-width: 32%;
    margin-bottom: 70px;
}

.realstate .title p{
    margin-bottom: 0;
}

.realstate .sell_block{
    background-color: #0C0B08;
    border-color: #545454;
}

.realstate .sell_block .img_box a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    bottom: 5%;
    right: 3%;
    transform: rotate(-45deg);
}

.realstate .sell_block:nth-of-type(even) .img_box a {
    left: 3%;
    right: auto;
}

.realstate .sell_block h3{color: #ffffff}

.realstate .sell_block p{color: #ffffff;opacity: 0.5}

.realstate_bottom {
    padding: 20px;
    margin-bottom: -160px;
    padding-bottom: 100px;
    background-color: #191919;
    color: #fff;
}

.realstate_bottom .pagination{position: static;max-width: 100%;margin-top: 30px}

.banner_slider{
    top: auto;
    bottom: 20px;
}

.phases_card{}

.phases_card {
    background-color: #2B2B2B;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 15px;
}

.phases_card img {
    width: 100%;
    height: 100%;
}

.phases_card .compound-card-content {
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 40px;
    width: 100%;
}

[dir="ltr"] .phases_card .compound-card-content {
    left: 0;
    background: linear-gradient(180deg, rgba(43, 43, 43, 0) 53.94%, #2B2B2B 95.12%);
}

[dir="rtl"] .phases_card .compound-card-content {
    right: 0;
    background: linear-gradient(-180deg, rgba(43, 43, 43, 0) 53.94%, #2B2B2B 95.12%);
}

.phases_card .compound-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.phases_card .compound-card-content p {
    font-size: 13px;
    color: #fff;
}

.phases_card .arrow-button {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 11%;
    background-color: var(--primary-color);
    color: #fff;
    z-index: 9;
}

[dir="ltr"] .phases_card .arrow-button {
    right: 25px;
}

[dir="rtl"] .phases_card .arrow-button {
    left: 25px;
}

.compounds .owl-theme .owl-nav{
    margin-top: -100px;
}

.compounds .owl-carousel .owl-nav button.owl-next,.compounds .owl-carousel .owl-nav button.owl-prev{
    background-color: #282828 !important;
    border: 0.5px solid var(--primary-color);
    color: var(--primary-color);
}

.top_area .owl-theme .owl-nav{
    top: 50%
}

.top_area .owl-carousel .owl-nav button.owl-next{
    background: rgba(209, 159, 55, 0.24) !important;
    border: 1.5102px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
}

   .top_area .owl-carousel .owl-nav button.owl-prev{
    display: none;
}
/*.top_area .owl-stage .owl-item.active{
    opacity: 0.5;
}
.top_area .owl-stage .active:first-child{
    opacity: 1;
}*/
.modal{
    z-index: 9999999;
}

        .modal-image-container {
            position: relative;
            width: 100%;
            height: 250px; /* Fixed height for the image */
            overflow: hidden;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            margin-bottom: 15px;
        }

        .modal-image-container img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .call-icon-overlay {
            position: absolute;
            bottom: 0;
            background-color: var(--primary-color);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        [dir="ltr"] .call-icon-overlay {
            right: 0;
        }

        [dir="rtl"] .call-icon-overlay {
            left: 0;
        }

        .call-icon-overlay svg {
            fill: #fff;
            width: 24px;
            height: 24px;
        }

        .modal-content-area h3 {
            font-size: 1.75rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 0.75rem;
        }

        .modal-content-area p {
            font-size: 0.95rem;
            text-align: center;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .modal-content-area .form-control {
            background-color: #f8f9fa;
        }

        .modal-content-area .form-control::placeholder {
            color: #adb5bd;
        }

        .modal-footer-custom {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding: 0 2rem 2rem 2rem; /* Padding for buttons */
            border-top: none; /* Remove default modal footer border */
        }

        .modal-footer-custom .btn {
            padding: 0.8rem 2rem;
            font-weight: 600;
            flex: 1; /* Distribute space evenly */
        }

        .modal-footer-custom .btn-verify {
            background-color: #DAA520; /* Gold button */
            color: #fff;
            border: none;
            transition: background-color 0.2s ease;
        }

        .modal-footer-custom .btn-verify:hover {
            background-color: #c4911a; /* Darker gold on hover */
        }

        .modal-footer-custom .btn-cancel {
            background-color: transparent;
            color: #6c757d;
            border: 1px solid #e9ecef;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .modal-footer-custom .btn-cancel:hover {
            background-color: #e9ecef;
            color: #333;
        }

        @media (max-width: 576px) {
            .modal-footer-custom {
                flex-direction: column;
                gap: 0.75rem;
            }
        }
[dir="ltr"] .owl-carousel .item{
    direction: ltr !important;
}

/* responsive */
@media (max-width: 1200px) {
    .navbar{padding: 20px 0}

    .nav-link {
        color: #000000 !important;
        font-size: 14px;
    }

    [dir="ltr"] .nav-link {
        margin-right: 0;
    }

    [dir="rtl"] .nav-link {
        margin-left: 0;
    }

    .navbar-nav .btn-primary-custom {
        font-size: 13px;
    }

    [dir="ltr"] .navbar-nav .btn-primary-custom {
        padding: 7px 10px 7px 7px;
    }

    [dir="rtl"] .navbar-nav .btn-primary-custom {
        padding: 7px 7px 7px 10px;
    }

    .sell_block .img_box span {
        width: 45px;
        height: 45px;
        line-height: 45px;
        bottom: 3%;
        right: 0;
    }

    .sell_block:nth-of-type(even) .img_box span{
        left: 0;
        right: auto;
    }

    .blog_hero .title{bottom: -10px}

    .realstate{padding: 0 20px;padding-bottom: 20px}
}

@media (max-width: 992px) {

    /* Custom mobile navigation slide from left */
    .navbar-collapse {
        position: fixed;
        top: 0; /* Start off-screen to the left */
        width: 75%; /* Adjust width of the sliding menu */
        height: 100vh;
        background-color: #fff; /* Smooth transition */
        z-index: 1050; /* Above regular content, below modal backdrop */
        padding: 1rem;
        overflow-y: auto; /* Enable scrolling for long menus */
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

    [dir="ltr"] .navbar-collapse {
        left: -100%;
        transition: left 0.3s ease-in-out;
    }

    [dir="rtl"] .navbar-collapse {
        right: -100%;
        transition: right 0.3s ease-in-out;
    }

    [dir="ltr"] .navbar-collapse.show {
        left: 0;
    }

    [dir="rtl"] .navbar-collapse.show {
        right: 0;
    }

    /* Overlay for when mobile menu is open */
    .navbar-overlay {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent overlay */
        z-index: 1040; /* Below the sliding menu */
        display: none; /* Hidden by default */
    }

    [dir="ltr"] .navbar-overlay {
        left: 0;
    }

    [dir="rtl"] .navbar-overlay {
        right: 0;
    }

    .navbar-collapse.show + .navbar-overlay {
        display: block; /* Show overlay when menu is open */
    }

    .navbar-toggler {
        z-index: 1051; /* Ensure toggler is clickable above overlay */
    }

    /* Adjust navbar-nav within the sliding menu */
    .navbar-collapse .navbar-nav {
        flex-direction: column !important; /* Stack items vertically */
        width: 100%;
    }

    .navbar-collapse .nav-item {
        margin-bottom: 0.5rem;
    }

    [dir="ltr"] .navbar-collapse .nav-item {
        margin-right: 0 !important;
    }

    [dir="rtl"] .navbar-collapse .nav-item {
        margin-left: 0 !important;
    }

    .navbar {
        padding: 20px 0;
        margin: 0 15px;
    }

    [dir="ltr"] .navbar {
        padding-right: 0;
    }

    [dir="rtl"] .navbar {
        padding-left: 0;
    }

    .navbar-collapse .nav-link,
    .navbar-collapse .btn {
        width: 100%;
    }

    [dir="ltr"] .navbar-collapse .nav-link,
    [dir="ltr"] .navbar-collapse .btn { /* Make links and buttons full width */
        text-align: left;
    }

    [dir="rtl"] .navbar-collapse .nav-link,
    [dir="rtl"] .navbar-collapse .btn {
        text-align: right;
    }

    .navbar-toggler{
        font-size: 15px;
    }

    .hero-section{
        min-height: 800px;
        padding: 100px 10px;
        margin-top: -80px;
    }

    .contact-icons{top: 0;padding: 0}

    [dir="ltr"] .contact-icons{right: 0}

    [dir="rtl"] .contact-icons{left: 0}

    .heart-btn{top: 6% !important}

    [dir="ltr"] .heart-btn{left: 3% !important;right: auto !important;}

    [dir="rtl"] .heart-btn{right: 3% !important;left: auto !important;}

    .large-card{margin-bottom: 15px}

    .hero-title {
        font-size: 60px;
        line-height: 80px;
    }

    .explore-card{bottom: 0;width: 200px;max-width:100%;}

    [dir="ltr"] .explore-card{right: 0}

    [dir="rtl"] .explore-card{left: 0}

    .looking_for {
        margin: 0;
        padding: 2rem 0;
    }

    .looking_for h2{font-size: 2rem}

    .large-card, .small-card {
        height: auto; /* Allow height to adjust on smaller screens */
    }

    .page-container {
        padding: 1rem;
    }

    .filter-sidebar {
        margin-bottom: 2rem;
    }

    .range-values .input-group {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .about-hero,.blog_hero{margin-top: -80px}

    .about-hero .search-container{left: 20px}

    .about-hero h2{font-size: 22px ;line-height:35px}

     .search-container .form-control{font-size: 14px}

     .search-input-group .btn-search{width: 45px;height: 45px}

     .latest_news,.featured_news{padding: 60px 0}

     [dir="ltr"] .latest_news,[dir="ltr"] .featured_news{background-position-x: 35%}

     [dir="rtl"] .latest_news,[dir="rtl"] .featured_news{background-position-x: 65%}

     .contact-info-header {
        justify-content: flex-start;
        gap: 30px;
    }

    .contact-image-container img{margin-bottom: 15px;height: auto;}

    .main-footer{
        background-color: #191919;
    }

    .sell_block h3 {
        font-size: 22px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .sell_form{padding: 150px 0}

    .blog_hero .title {
        bottom: -6%;
    }

    .property-info {
        max-width: 40%;
        height: 20%;
    }

    [dir="ltr"] .property-info {
        border-radius: 30px 0 30px 0;
        padding: 15px 0 15px 15px;
    }

    [dir="rtl"] .property-info {
        border-radius: 0 30px 0 30px;
        padding: 15px 15px 15px 0;
    }

    .realstate {
        background-image: url(../images/realstate.svg);
        background-size: auto;
        padding: 0;
        padding-bottom: 20px;
    }

    [dir="ltr"] .realstate {
        background-position: top left;
        background-position-x: 0;
    }

    [dir="rtl"] .realstate {
        background-position: top right;
        background-position-x: 100%;
    }

    .realstate .title{max-width: 50%}

    .realstate_bottom {
        padding: 20px 0;
        margin-bottom: -160px;
        padding-bottom: 100px;
    }

    .amenities-section,.faq-section,.amenities-section + .row {
            padding: 15px 0;
            margin-bottom: 20px;
        }

    .amenities-section + .row{flex-direction: column-reverse;}

    .property-details-section,
    .payment-plans-section,
    .about-section{
        padding: 20px 0;
    }

    .banner{padding: 30px 0}

    .hero-listing-section{margin-top: -70px;min-height: 500px}

    .filter-dropdown .dropdown-toggle {
        font-size: 12px;
        padding: 0.8rem 0.5rem;
    }

    .hero-listing-section .search-container{padding: 15px}

    [dir="ltr"] .filter-content-area {
        padding-left: 0;
    }

    [dir="rtl"] .filter-content-area {
        padding-right: 0;
    }

    .property-card{margin-top: 30px}

    [dir="ltr"] .banner_text{left: 5%}

    [dir="rtl"] .banner_text{right: 5%}
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 50px;
        line-height: 70px;
    }

    .latest{padding: 0;padding-bottom: 20px}

    .property-info span{font-size: 11px}

    .contact-icons .btn{
    width: 33px;
    height: 33px;
    line-height: 33px;}

    .small-card{margin-bottom: 15px}

    .about-hero{height: 370px;margin-top: -70px;}

    .blog_hero{margin-top: -70px;}

    .blog_hero .title {
        bottom: 0;
        max-width: 80%;
    }

    [dir="ltr"] .blog_hero .title {
        left: 0;
    }

    [dir="rtl"] .blog_hero .title {
        right: 0;
    }

    .about-hero img {
        width: 100%;
        height: 370px;
        object-fit: fill;
        border-radius: 20px;
    }

        .navbar {
        padding: 15px 0;
    }

    .blog-card-img{height: 250px}

    .date-badge {
        bottom: 5px;
        max-width: 35%;
        font-size: 9px;
        left: 0;
    }

    [dir="ltr"] .date-badge svg{margin-right: 5px}

    [dir="rtl"] .date-badge svg{margin-left: 5px}

    .contact-section {
        padding: 40px 0;
    }

        .main-footer {
        padding: 80px 0;
        padding-bottom: 0;
        padding-top: 170px;
    }

    .main-footer .col-lg-3,
    .main-footer .col-lg-2 {
        margin-bottom: 2rem; /* Spacing between stacked columns */
    }

    .footer-bottom p {
        margin-top: 0rem;
        margin-bottom: 2rem;
    }

    .sell_block{
        gap: 20px;
        flex-direction: column;
        padding: 15px;
    }

    .sell_block:nth-of-type(even){
        flex-direction: column;
    }

    [dir="ltr"] .sell_block:nth-of-type(even) .img_box span{left: auto;right: 0}

    [dir="rtl"] .sell_block:nth-of-type(even) .img_box span{right: auto;left: 0}

    [dir="ltr"] .sell_block:nth-of-type(even) .img_box img{transform: rotateY(180deg);}

    [dir="rtl"] .sell_block:nth-of-type(even) .img_box img{transform: rotateY(-180deg);}

    .sell_block .img_box{width: 100%}

    .sell_block .sell_text{width: 100%}

    .sell-hero h2 {
        font-size: 20px;
        line-height: 35px;
        background-color: #fff;
        top: auto;
        bottom: 0;
        max-width: 35%;
        padding: 15px;
    }

    [dir="ltr"] .sell-hero h2 {
        border-radius: 0 30px 0 0;
        left: 12px;
    }

    [dir="rtl"] .sell-hero h2 {
        border-radius: 30px 0 0 0;
        right: 12px;
    }

    .vision,.team{margin: 20px 0;flex-wrap: wrap;}

    .sell_form .contact-form-container{padding: 40px}

    .blog_hero img{height: 450px}

    .favorites {
        padding: 0;
        padding-top: 120px !important;
        padding-bottom: 50px;
    }

    .property-info {
        max-width: 70%;
    }

    .hero-listing-section .search-container {
        width: 80%;
    }

    [dir="ltr"] .listing{background-position-x: 82%;}

    [dir="rtl"] .listing{background-position-x: 18%;}
}

@media (max-width: 640px){
    .hero-title {
        font-size: 30px;
        line-height: 50px;
    }

    .about-hero .search-container .search-input-group{display: none;}

    .sell_block .img_box img{min-height: 160px}

    .sell-hero h2 {max-width: 50%;font-size: 18px}

    .sell_form .contact-form-container{padding: 40px 20px}

    .sell_form .contact-form-container h3{font-size: 28px}

    .blog_hero h2 {
        line-height: 38px;
        font-size: 22px;
    }

    .realstate .title{max-width: 80%}

    .explore-card{width: 200px;max-width: 80%}
}
