/****************************************************************
                    *** Start Global Style
****************************************************************/

:root {
    --main-color: #c4b396;
    /* Logo -  Hover - Buttons*/
    --secondary-color: #347782;
    /* H1-H6  */
    --tertiary-color: #eaecee;
    /*Disabled - Hidden - Notification Paragraphes */
    --transport-color: rgba(32, 38, 49, 255);
    --glass-color: rgba(234, 240, 240, 1.00);
    --white-color: #FFFFFF;
    --white-alter-color: #FCFCFC;
    --gray-color: #347782;
    /*  Header Page Background */
    --black-color: #000000;
    --black-alter-color: #191919;
    --error-color: #1f1b1b;
    --success-color: #18b65f;
    --padding-section: 80px;
    --border-radius: 25px;
    --main-transition: 0.3s;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--main-color); /* لون الرابط النشط */
    font-weight: bold; /* جعل الخط عريض */
}
.features-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    transition: all var(--main-transition);
    background-color: var(--white-color);
    border: 1px solid var(--main-color);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.feature-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.feature-btn.selected {
    background-color: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.feature-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .feature-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--border-radius);
    background: var(--white-color);
    border: 1px solid var(--main-color);
    transition: all var(--main-transition);
    height: 100%;
    min-height: 90px;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-card.selected {
    background: var(--main-color);
    color: var(--white-color);
}

.feature-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 8px;
}

.feature-label {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .feature-card {
        min-height: 80px;
        padding: 8px;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
    }
}
@font-face {
    font-family: "Changa";
    src: url("../fonts/ArbFONTS-Changa-Regular-1.ttf") format('truetype');
}

@font-face {
    font-family: "TheSansBold";
    src: url("../fonts/ArbFONTS-TheSans-Bold.otf") format('truetype');
}


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-size: 14px;
    font-family: 'Changa', sans-serif;

    font-weight: 400;
    line-height: 1.5;
    color: var(--black-color);
    background-color: var(--white-color);
}


/* .maxWidth { max-width:1230px; } */

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

a {
    color: var(--main-color:);
    transition: var(--main-transition);
}

a:hover,
a.active {
    color: var(--main-color);
}

.form-check-input:checked {
    background-color: var(--success-color);
    border-color: #43d785;
}

.form-check-input:not(:checked) {
    background-color: #CCC;
}

.form-switch .form-check-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
}

select:focus,
.form-check-input:focus {
    box-shadow: none;
    outline: none;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}


/* .form-check-input:checked {background-color: var(--main-color); border-color: var(--main-color);} */

.main-title {
    padding-bottom: 50px;
    position: relative;
    transition: var(--main-transition);
}

.main-title::before {
    position: absolute;
    content: '';
    border-bottom-color: var(--white-color);
    border-bottom-width: 2px;
    width: 40px;
    border-bottom-style: solid;
    top: 100px;
    /* top: 80%; */
    left: 50%;
    transform: translateX(-50%);
}

.none-border-bottom .main-title::before {
    border-bottom-width: 0;
}

.main-title .title {
    font-size: 55px;
    font-weight: 700;
    color: var(--secondary-color);
}

.main-title .sub-title {
    font-size: 35px;
    color: var(--gray-color);
}

@media (max-width:576px) {
    .main-title .title {
        font-size: 35px;
    }
    .main-title .sub-title {
        font-size: 25px;
    }
}

.main-button {
    padding: 13px 30px;
    margin: 25px;
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 0;
    border-radius: 0;
    box-shadow: 1px 5px 10px 3px rgb(0 0 0 / 10%);
}

.main-button:hover,
.main-button:active {
    background-color: var(--gray-color);
    color: var(--white-color);
}

.main-button:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width:576px) {
    .main-button {
        font-size: 12px;
    }
}

.location_slider {
    position: relative;
    padding: 50px 0;
}

.location_slider .map {
    border-radius: var(--border-radius);
    box-shadow: 4px 2px 20px 9px rgb(0 0 0 / 10%);
}


/****************************************************************
                    *** End Global Style
****************************************************************/


/****************************************************************
                    *** Start Main Style
****************************************************************/

/* تنسيق المربعات (البطاقات) */
.interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.interest-card {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* عند النقر على المربع */
.interest-card.selected {
    background-color: #347782;
    color: white;
    transform: scale(1.05);
}

.interest-card:hover {
    background-color: #ddd;
    transform: scale(1.05);
}

/* تنسيق العناصر داخل المربع */
.interest-label {
    font-weight: bold;
}

/* Start Navbar */

.navbar {
    font-size: 14px;
    background-color: var(--gray-color);

    height: 70px;
    width: 100%; /* تأكد من أن النافبار يغطي العرض الكامل */

    transition: background .5s;
}

.navbar.scrolled {
    background-color: var(--gray-color);
}

.navbar .navbar-brand {
    font-size: 23px;
    font-weight: 700;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--main-transition);
    user-select: none;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
    color: var(--main-color);
}

.navbar .navbar-brand img {
    height: 70px;
}

@media (min-width:992px) and (max-width:1200px) {
    .navbar .navbar-brand img {
        height: auto;
        max-width: 100px;
    }
}

.navbar li a {
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    transition: var(--main-transition);
    user-select: none;
}

.navbar li.nav-item-main {
    position: relative;
    overflow: hidden;
    transition: var(--main-transition);
}

.navbar li.nav-item-main:hover,
.navbar li.nav-item-main:focus {
    position: relative;
    transition: var(--main-transition);
}

.navbar li.nav-item-main a:hover,
.navbar li.nav-item-main a:focus {
    color: var(--white-color);
}

.navbar li.nav-item-main::before,
.navbar li.nav-item-main::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.navbar li.nav-item-main::before {
    left: -30px;
    transition: var(--main-transition);
}

.navbar li.nav-item-main::after {
    right: -30px;
    transition: var(--main-transition);
}

.navbar li.nav-item-main:hover::before {
    z-index: -1;
    animation: left-move var(--main-transition) linear forwards;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.navbar li.nav-item-main:hover::after {
    z-index: -1;
    animation: right-move var(--main-transition) linear forwards;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.navbar li a.active {
    color: var(--white-color);
    position: relative;
    transition: var(--main-transition);
}

.navbar li a.active::before {
    position: absolute;
    content: '';
    border-bottom-color: var(--white-color);
    border-bottom-width: 2px;
    width: 30%;
    border-bottom-style: solid;
    top: 43px;
    left: 50%;
    transition: var(--main-transition);
    transform: translateX(-50%);
}

.navbar li.real-dropdown a.real-dropdown-icon {
    padding: 2px 6px;
    margin: 3px 5px auto 2px;
    transition: var(--main-transition);
    top: -50%;
    transform: translateY(50%);
}

.navbar li.real-dropdown a.real-dropdown-icon.active,
.navbar li.real-dropdown a.real-dropdown-icon:hover,
.navbar li.real-dropdown a.real-dropdown-icon:focus {
    color: var(--main-color);
    background-color: transparent;
    border-radius: 50%;
}

.navbar li.real-dropdown .dropdown-menu {
    /* left: -100%; */
    margin-top: 10px;
    max-height: 350px;
    overflow-x: auto;
}

.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--white-color);
    border-radius: 4px;
    border: 2px solid var(--tertiary-color);
}

.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar-thumb:active {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--gray-color);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gray-color);
}

.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar-track {
    background: var(--tertiary-color);
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar-track:hover,
.navbar li.real-dropdown .dropdown-menu::-webkit-scrollbar-track:active {
    background: var(--tertiary-color);
}

.navbar li.real-dropdown .dropdown-menu li a {
    color: var(--gray-color);
    transition: var(--main-transition);
}

.navbar li.real-dropdown .dropdown-menu li a:hover {
    transition: 1s;
    color: var(--main-color);
}

.navbar li.real-dropdown .dropdown-menu li a:active {
    background-color: var(--white-color);
}

.navbar li a.lang-icon.active,
.navbar li a.lang-icon:hover,
.navbar li a.lang-icon:focus {
    color: var(--main-color);
    background-color: transparent;
    transition: var(--main-transition);
}

.navbar .user-menu {
    background-color: var(--white-color);
    height: 30px;
    margin-top: 12px;
}

.navbar .user-menu li.user-dropdown a.user-dropdown-icon {
    color: var(--gray-color);
    border-radius: 50%;
    padding: 2px 6px;
    margin: 3px 5px auto 2px;
    transition: var(--main-transition);
}

.navbar .user-menu li.user-dropdown a.user-dropdown-icon.active,
.navbar .user-menu li.user-dropdown a.user-dropdown-icon:hover,
.navbar .user-menu li.user-dropdown a.user-dropdown-icon:focus {
    color: var(--main-color);
    background-color: transparent;
    border-radius: 50%;
}

.navbar .user-menu li.user-profile a.user-icon {
    color: var(--white-color);
    background-color: var(--gray-color);
    border-radius: 50%;
    padding: 2px 6px;
    margin: 3px 2px auto 5px;
    transition: var(--main-transition);
}

.navbar .user-menu li.user-profile a.user-icon img {
    height: 18px;
    width: 11px;
}

.navbar .user-menu li.user-dropdown .dropdown-menu {
    left: -100%;
}

.navbar .user-menu li.user-dropdown .dropdown-menu li a {
    color: var(--gray-color);
    transition: var(--main-transition);
}

.navbar .user-menu li.user-dropdown .dropdown-menu li a:hover {
    transition: 1s;
    color: var(--main-color);
}

.navbar .user-menu li.user-profile a.user-icon.active,
.navbar .user-menu li.user-profile a.user-icon:hover,
.navbar .user-menu li.user-profile a.user-icon:focus {
    color: var(--white-color);
    background-color: var(--main-color);
    border-radius: 50%;
}

.navbar .navbar-toggler {
    color: var(--white-color);
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .navbar .navbar-nav .nav-link {
        font-size: 12px;
    }
    .navbar .nav-item .dropdown {
        font-size: 12px;
    }
    .navbar .user-menu {
        height: 28px;
        margin-top: 10px;
    }
}

@media (max-width: 992px) {
    .navbar .navbar-collapse {
        /* background-color: rgb(17 72 99 / 67%); */
        background-color: rgb(196 179 150 / 79%);
        margin-top: -1px;
        border-bottom-left-radius: 50%;
        overflow: hidden;
    }
    .navbar li.nav-item-main::before,
    .navbar li.nav-item-main::after {
        background-color: rgb(48 90 111);
    }
    .navbar .container {
        margin-top: 2px;
        padding: 0 !important;
    }

    .navbar li.nav-item-main:hover::before {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .navbar li.nav-item-main:hover::after {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}


/* End Navbar */


/* Start Title Section  */

.title-section {
    height: 40vh;
    background-color: var(--gray-color);
    background-image: url('../images/title-background.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    /* padding-top: -70px; */
    margin-top: -70px;
}

.title-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgb(0 0 0 / 45%); */
    background-color: rgb(112 129 137 / 75%);
}

.title-section .title-content .title {
    color: var(--white-color);
    position: relative;
    transition: var(--main-transition);
    font-size: 55px;
}

.title-section .title-content .title::before {
    content: '';
    position: absolute;
    width: 5%;
    top: 100px;
    left: 50%;
    border-bottom-color: var(--white-color);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    transition: var(--main-transition);
    transform: translateX(-50%);
}

@media (max-width:576px) {
    .title-section .title-content .title {
        font-size: 45px;
    }
    .title-section .title-content .title::before {
        top: 70px;
    }
}

.title-section.request-real {
    background-image: url('../images/request-background.jpg');
}

.title-section.indicator-real {
    background-image: url('../images/indicator-background.jpg');
}


/* Start Title Section  */


/* Start Slider  */

.latest_real_estate_section {
    background-color: var(--white-color);
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}

.latest_real_estate_section .main-title .title {
    font-size: 45px;
}

.latest_real_estate_section .latest_real_estate_content .box {
    height: 300px;
    background-color: var(--transport-color);
    border-radius: var(--border-radius);
    background-position: center;
    background-size: cover;
    box-shadow: 1px 5px 10px 3px rgba(0, 0, 0, 10%);
    position: relative;
    overflow: hidden;
    transition: var(--main-transition);
}

.latest_real_estate_section .latest_real_estate_content .box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(12 51 70 / 50%);
}

.latest_real_estate_section .latest_real_estate_content .box .overlay {
    position: relative;
    padding: 5px;
    height: 100%;
    width: 100%;
}

.latest_real_estate_section .latest_real_estate_content .box h2 {
    font-size: 22px;
    font-weight: 600;
}

.latest_real_estate_section .latest_real_estate_content .box .text {
    font-size: 14px;
}

.latest_real_estate_section .latest_real_estate_content .box .main-button {
    padding: 5px 15px;
    font-size: 14px;
    background-color: var(--white-color);
    color: var(--gray-color);
    position: absolute;
    bottom: 10px;
}

.latest_real_estate_section .latest_real_estate_content .box .main-button:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}


/* Start Slider Section */

.slider {
    width: 100%;
    height: 300px;
    display: flex;
    position: relative;
}

.slider .NavControl {
    position: absolute;
    top: -40px;
    left: 10px;
}

.slider .left {
    left: 0;
    z-index: 1;
    display: inline-block;
}

.slider .right {
    right: 0;
    z-index: 1;
    display: inline-block;
}

.slider .left a,
.slider .right a {
    max-width: 100%;
    width: 100%;
    height: 100%;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.slider .left a>svg,
.slider .right a>svg {
    font-size: 20px;
    color: var(--secondary-color);
    padding: 10px;
}

.slider .left:hover,
.slider .right:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.slider .items {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: right;
    transition: .6s;
    overflow: hidden;
    height: auto;
    max-width: fit-content;
}

.slider ul {
    transition: .6s;
    overflow: hidden;
}

.slider .items li {
    display: inline-block;
    width: 350px;
    min-width: 350px;
    margin: 5px 1px;
    overflow: hidden;
    transition: .6s;
}

.slider .item .card {
    height: 290px;
    min-height: 290px;
    border: 1px solid #EEE;
    border-radius: var(--border-radius);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    transform: scale(.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 10%);
    transition: transform var(--main-transition), box-shadow var(--main-transition);
}

.slider .item .card:hover {
    transform: scale(1);
}

.slider .item .card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(12 51 70 / 50%);
}

.slider .item .card:hover::before {
    background-color: rgb(12 51 70 / 35%);
}

.slider .item .card .overlay {
    position: absolute;
    padding: 20px;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .slider ul {
        min-width: calc(600px *5)
    }
    .slider .left,
    .slider .right {
        display: none;
    }
    .slider .items {
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .slider .items::-webkit-scrollbar {
        display: none;
    }
}

.slider .item .card .text {
    font-size: 16px;
}

.slider .item .card .title {
    font-size: 22px;
    font-weight: 600;
}

.slider .item .card .main-button {
    padding: 5px 15px;
    font-size: 14px;
    bottom: 20px;
    position: absolute;
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

.slider .item .card .main-button:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

/* End Slider Section */

/* Start Subscription */

.subscription-section {
    background-color: var(--tertiary-color);
    /* margin-top: var(--padding-section); */
    padding-top: calc(var(--padding-section) - 20px);
    padding-bottom: calc(var(--padding-section) - 50px);
    position: relative;
    transition: var(--main-transition);
}

.subscription-section .subscription-content h4 {
    font-weight: 800;
    color: var(--secondary-color);
}

.subscription-section .subscription-content p {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color);
}

.subscription-section .subscription-content input[type="email"] {
    height: 55px;
    padding: 15px 30px 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.subscription-section .subscription-content input[type="email"]::placeholder {
    color: var(--tertiary-color);
}

.subscription-section .subscription-content .button {
    height: 55px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    background-color: var(--gray-color);
    border: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    transition: var(--main-transition);
}

.subscription-section .subscription-content .button:hover,
.subscription-section .subscription-content .button:active {
    background-color: var(--main-color);
}

.subscription-section .go-top {
    position: absolute;
    bottom: -30px;
    left: 50%;
    padding: 10px 13px;
    transform: translateX(-50%);
    color: var(--white-color);
    background-color: var(--gray-color);
    transition: var(--main-transition);
}

.subscription-section .go-top:hover {
    background-color: var(--main-color);
}

.subscription-section .go-top svg {
    font-size: 40px;
    font-weight: 300;
    animation: bouncing 2s infinite;
}


/* End Subscription */


/* Start Footer Section */

.footer {
    background-color: var(--light-color);
    padding: 70px 0 0;
}

.footer .footer-content .title {
    color: var(--secondary-color);
    font-weight: 800;
}

.footer .footer-content .text {
    font-size: 16px;
    line-height: 2;
    color: var(--gray-color);
}

.footer .info .social {
    display: flex;
}

.footer .info .social li {
    margin-right: 5px;
}

.footer .info .social li a {
    color: var(--gray-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 25px;
    transition: var(--main-transition);
}

.footer .info .social li a:hover,
.footer .info .social li a:focus {
    color: var(--white-color);
}

.footer .info .social .facebook:hover {
    background-color: #1877f2;
}

.footer .info .social .twitter:hover {
    background-color: #1da1f2;
}

.footer .info .social .youtube:hover {
    background-color: #ff0000;
}

.footer .info .social .whatsapp:hover {
    background-color: #25d366;
}

.footer .info .social .snapchat:hover {
    background-color: #fffc00;
}

.footer .info .social .instagram:hover {
    background-color: #F56040;
}

.footer .info .social .gmail:hover {
    background-color: #F56040;
}

.footer .logo img {
    max-width: 150px;
}

.footer .contact .line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 2;
    color: var(--gray-color);
    transition: var(--main-transition);
}

.footer .contact .line svg {
    margin-left: 15px;
}

.footer .copyright {
    background-color: var(--white-color);
    padding: 25px 0;
    font-size: 12px;
    text-align: center;
    color: var(--gray-color);
    margin: 20px 0 0;
}

.footer .copyright a {
    color: var(--gray-color);
    transition: var(--main-transition);
}

.footer .copyright a:hover {
    color: var(--secondary-color);
}

.footer .copyright img {
    height: 50px;
    margin: -30px;
}


/* End Footer Section */


/****************************************************************
                    *** End Main Style
****************************************************************/


/****************************************************************
                    *** Start Index Page Style
****************************************************************/


/* Start Main Ads  */
.main-ads-section {
    /* height: calc(100vh + (var(--padding-section) * 2)); */
    background: linear-gradient(to bottom, var(--gray-color) 0%, var(--gray-color) 60%, var(--white-color) 50%, var(--white-color) 100%);

}

.main-ads-section .main-ads-content {
    background-color: var(--gray-color);
    min-height: 300px; /* طول افتراضي */
    padding: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: 3px 7px 15px 5px rgba(0, 0, 0, 0.1);
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* ارتفاع كامل للشاشة */

}

/* شاشة لابتوب وكبيرة */
@media (min-width: 992px) {
    .main-ads-section .main-ads-content {
        min-height: 200px;
        
    }
}

/* شاشة جوال */
@media (max-width: 576px) {
    .main-ads-section .main-ads-content {
        min-height: 220px;
    }
}

/* خلفية غامقة فوق الصورة */
.main-ads-section .main-ads-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* محتوى الاعلان */
.main-ads-section .main-ads-content .overlay {
    position: relative;
    padding: clamp(30px, 10vw, 120px); /* ⬅️ مرن مع الشاشات */
}

/* إضاءة متحركة */
.main-ads-section .main-ads-content .light {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100vh;
    animation: flashing 15s infinite alternate;
}

/* العناوين */
.main-ads-section .main-ads-content h2 {
    font-size: clamp(30px, 5vw, 55px);
    font-weight: 600;
}

.main-ads-section .main-ads-content h3 {
    font-size: clamp(30px, 7vw, 75px);
    font-weight: 800;
    line-height: 1.3;
}

.main-ads-section .main-ads-content h3 .first {
    color: var(--main-color);
}

.main-ads-section .main-ads-content p {
    font-size: clamp(18px, 4vw, 30px);
}

/* تقدر تشيل كل الميديا كويريز لأنها أصبحت مو ضرورية */



/* Start Fast Search */

.fast-search-section {
    background-color: var(--white-color);
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}

.fast-search-section .fast-search-content {
    background-color: var(--gray-color);
    background-image: url("../images/search-background.jpg");
    background-size: cover;
    background-position: center;
    transition: var(--main-transition);
    padding: 30px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 80px;
    box-shadow: 3px 7px 10px 5px rgb(0 0 0 / 20%);
}

.fast-search-section .fast-search-content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(5 35 50 / 70%);
}

.fast-search-section .fast-search-content .overlay {
    position: relative;
}

.fast-search-section .fast-search-content .input {
    position: relative;
}

.fast-search-section .fast-search-content input,
.fast-search-section .fast-search-content select {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    background-color: transparent;
    border: 0;
    border: 1px solid transparent;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    padding-right: 40px;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.fast-search-section .fast-search-content input.spacer,
.fast-search-section .fast-search-content select.spacer {
    border-right: 1px solid var(--white-color);
}

.fast-search-section .fast-search-content input:hover,
.fast-search-section .fast-search-content select:hover {
    border: 1px solid var(--white-color);
}

.fast-search-section .fast-search-content input:focus,
.fast-search-section .fast-search-content select:focus {
    border: 1px solid var(--main-color);
}

.fast-search-section .fast-search-content .input svg {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.fast-search-section .fast-search-content input::placeholder {
    color: var(--white-color);
}

.fast-search-section .fast-search-content select {
    color: var(--white-color);
}

.fast-search-section .fast-search-content select option {
    color: var(--black-color);
}

.fast-search-section .fast-search-content .button {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    transition: var(--main-transition);
}

.fast-search-section .fast-search-content .button:hover,
.fast-search-section .fast-search-content .button:active {
    background-color: var(--gray-color);
}


/* End Fast Search */


/* Start About Us */
.about-section {
    background-color: var(--white-color);
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    transition: var(--main-transition);
}
.about-section {
    background-color: var(--tertiary-color);
    background-image: url('../images/about-background.jpg');
    background-size: cover;
    background-position: center;
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    margin-top: var(--padding-section);
    margin-bottom: var(--padding-section);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    /* height: 420px; */
    transition: var(--main-transition);
}

.about-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(10 35 40 / 50%);
}

.about-section .overlay {
    position: relative;
}

.about-section .main-title::before {
    border-bottom-width: 0;
}


/* End About Us */


/* Start Statistics */

.stat-section {
    background-color: var(--white-color);
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    transition: var(--main-transition);
}

.stat-section .stat-content .stat .number {
    color: var(--main-color);
    font-size: 55px;
    font-weight: 700;
}

.stat-section .stat-content .stat .title {
    font-size: 23px;
    color: var(--gray-color);
}


/* End Statistics */



/****************************************************************
                    *** End Index Page Style
****************************************************************/


/****************************************************************
                    *** Start logins Page & Register Page Style
****************************************************************/

.logins-section {
    background-color: var(--gray-color);
    min-height: 100vh;
    color: var(--white-color);
    margin-top: -70px;
}

.logins-section .logins-content .info {
    padding-top: calc(var(--padding-section) * 2);
    padding-bottom: var(--padding-section);
    min-height: 100vh;
}

@media (max-width:768px) {
    .logins-section .logins-content .info {
        padding-top: var(--padding-section);
        min-height: fit-content;
    }
}

.logins-section .logins-content .info .title {
    font-weight: 600;
}

.logins-section .logins-content .info .sub-Title {
    font-size: 55px;
    line-height: 1.3;
    font-weight: 600;
}

.logins-section .logins-content .info .sub-Title .first {
    color: var(--main-color);
}

.logins-section .logins-content .info .details {
    font-size: 22px;
}

.logins-section .logins-content .form {
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
}

.logins-section .logins-content .login_form {
    background-image: url('../images/login-bacground.jpg');
}

.logins-section .logins-content .register_form {
    background-image: url('../images/register-bacground.jpg');
}

.logins-section .logins-content .forgit_form {
    background-image: url('../images/forgit-bacground.jpg');
}

.logins-section .logins-content .form::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(12 51 70 / 50%);
}

.logins-section .logins-content .form .overlay {
    position: relative;
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}

.logins-section .logins-content .form .overlay .title {
    font-size: 40px;
}

.logins-section .logins-content .form .overlay .details {
    font-size: 20px;
    line-height: 1.5;
}

.logins-section .logins-content .form .overlay .details a {
    color: var(--main-color);
    text-decoration: underline 1px;
}

.logins-section .logins-content .form .overlay .forgit a {
    font-size: 14px;
    color: var(--main-color);
}

.logins-section .logins-content .form .overlay input[type="text"],
.logins-section .logins-content .form .overlay input[type="email"],
.logins-section .logins-content .form .overlay input[type="password"] {
    height: 50px;
    padding: 15px 30px 15px 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 8px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.logins-section .logins-content .form .overlay input[type="text"]::placeholder,
.logins-section .logins-content .form .overlay input[type="email"]::placeholder,
.logins-section .logins-content .form .overlay input[type="password"]::placeholder {
    color: #CCC;
}

.logins-section .logins-content .form .overlay .input {
    position: relative;
}

.logins-section .logins-content .form .overlay .input svg {
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--main-transition);
}

.logins-section .logins-content .form .overlay .input svg:hover,
.logins-section .logins-content .form .overlay .input svg:focus {
    color: var(--gray-color);
    cursor: pointer;
}

.logins-section .logins-content .forgit_form .input {
    /* width: 300px; */
}

.logins-section .logins-content .forgit_form .input input[type="text"],
.logins-section .logins-content .forgit_form .input input[type="email"] {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.logins-section .logins-content .forgit_form .input button {
    height: 50px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.logins-section .logins-content .forgit_form .buttons .main-button {
    background-color: var(--gray-color);
}

.logins-section .logins-content .forgit_form .buttons .main-button:hover {
    background-color: var(--main-color);
}


/****************************************************************
                    *** End logins Page Style
****************************************************************/


/****************************************************************
                    *** Start About US Page Style
****************************************************************/


/* Start Aboutus Section  */

.aboutus-section {
    height: calc(100vh + (var(--padding-section) * 2));
    background: linear-gradient(to bottom, var(--gray-color) 0%, var(--gray-color) 60%, var(--white-color) 50%, var(--white-color) 100%);
    margin-top: -70px;
    padding-top: 70px;
}

.aboutus-section .aboutus-content {
    background-color: var(--gray-color);
    height: 700px;
    width: 100%;
    background-image: url("../images/aboutus-background.jpg");
    background-size: cover;
    border-radius: var(--border-radius);
    box-shadow: 3px 7px 15px 5px rgba(0, 0, 0, 10%);
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
}

.aboutus-section .aboutus-content .light {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100vh;
    animation: flashing 15s infinite alternate;
}

.aboutus-section .aboutus-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 50%);
}

.aboutus-section .aboutus-content .overlay {
    position: relative;
}

.aboutus-section .aboutus-content h2 {
    font-size: 55px;
    font-weight: 700;
}

@media (min-width:992px) {
    .aboutus-section .aboutus-content p {
        padding-left: 20%;
    }
}


/* Start Aboutus Section  */


/* Start Service Section */

.services-section {
    background-color: var(--white-color);
    padding-top: calc(var(--padding-section) + 20px);
    padding-bottom: calc(var(--padding-section) + 20px);
}

.services-section .services-content .box {
    height: 350px;
    background-color: var(--transport-color);
    border-radius: var(--border-radius);
    background-position: center;
    background-size: cover;
    box-shadow: 1px 5px 10px 3px rgba(0, 0, 0, 10%);
    position: relative;
    overflow: hidden;
    transition: var(--main-transition);
}

.services-section .services-content .boxs:nth-of-type(1) .box {
    background-image: url('../images/service-01.jpg');
}

.services-section .services-content .boxs:nth-of-type(2) .box {
    background-image: url('../images/service-02.jpg');
}

.services-section .services-content .boxs:nth-of-type(3) .box {
    background-image: url('../images/service-03.jpg');
}

.services-section .services-content .box:hover .light {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 60vh;
    animation: flashing-sm 15s infinite alternate;
}

.services-section .services-content .box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 45%);
}

.services-section .services-content .box .overlay {
    position: relative;
}

.services-section .services-content .box .overlay svg {
    font-size: 60px;
}

.services-section .services-content .box .overlay h2 {
    font-size: 25px;
}

.services-section .services-content .box .text {
    line-height: 1.5;
    font-size: 16px;
}


/* End Service Section */


/* Start brief */

.brief-section {
    background-color: var(--tertiary-color);
    background-image: url('../images/brief-background.jpg');
    background-size: cover;
    background-position: center;
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    margin-top: var(--padding-section);
    margin-bottom: var(--padding-section);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    /* height: 490px; */
    transition: var(--main-transition);
}

.brief-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(10 35 40 / 60%);
}

.brief-section .overlay {
    position: relative;
}

.brief-section .brief-content h4 {
    line-height: 1.7;
}


/* End brief */


/****************************************************************
                    *** End About US Page Style
****************************************************************/


/****************************************************************
                    *** Start Contact US Page Style
****************************************************************/


/* Start contactus Section  */

.contactus-section {
    height: calc(100vh + (var(--padding-section)));
    background-image: url("../images/contactus-background.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -70px;
    padding-top: 70px;
}

.contactus-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 30%);
}

.contactus-section .overlay {
    position: relative;
}

.contactus-section .contactus-content {
    background-color: rgb(0 0 0 / 45%);
    min-height: 500px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 3px 7px 15px 5px rgba(0, 0, 0, 10%);
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
}

.contactus-section .contactus-content h2 {
    font-size: 55px;
    font-weight: 700;
}

.contactus-section .contactus-content .form input {
    height: 60px;
}

.contactus-section .contactus-content .form input,
.contactus-section .contactus-content .form textarea {
    padding: 15px 35px 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 8px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.contactus-section .contactus-content .form input::placeholder,
.contactus-section .contactus-content .form textarea::placeholder {
    color: var(--tertiary-color);
}

.contactus-section .contactus-content .form .input {
    position: relative;
}

.contactus-section .contactus-content .form .input svg {
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 35px;
    margin-top: 18px;
    transition: var(--main-transition);
}

.contactus-section .contactus-content .form .changeCode {
    background-color: var(--tertiary-color);
    color: var(--gray-color);
    border-radius: 50%;
    padding: 5px 10px;
    margin: 0 20px;
    cursor: pointer;
}

.contactus-section .contactus-content .form .img-code {
    height: 60px;
}

.contactus-section .contactus-content .form .main-button {
    padding-left: 70px;
    padding-right: 70px;
}


/* Start contactus Section  */


/****************************************************************
                    *** End Contact US Page Style
****************************************************************/


/****************************************************************
                    *** Start Policy Page Style
****************************************************************/


/* Start Policy Section  */

.policy-section {
    height: calc(100vh + (var(--padding-section) * 2));
    background: linear-gradient(to bottom, var(--gray-color) 0%, var(--gray-color) 60%, var(--white-color) 50%, var(--white-color) 100%);
    padding-top: calc(var(--padding-section) + 70px);
    margin-top: -70px;
}

.policy-section .policy-content {
    height: 500px;
    width: 100%;
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
}

.policy-section .policy-content .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 65%;
    height: 100%;
    overflow: hidden;
    background-color: var(--gray-color);
    background-image: url('../images/policy-bacground.jpg');
    background-position: center;
    background-size: cover;
    border-top-right-radius: calc(var(--border-radius) + 10px);
    border-bottom-right-radius: calc(var(--border-radius) + 10px);
}

.policy-section .policy-content .image::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 35%);
}

.policy-section .policy-content .text {
    background-color: var(--white-color);
    position: absolute;
    width: 500px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    font-size: 24px;
    border-radius: calc(var(--border-radius) + 10px);
    line-height: 1.6;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width:576px) {
    .policy-section .policy-content .text {
        width: 360px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
    }
}


/* Start Policy Section  */


/* Start Agree policy Section */

.agree-section {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    background-color: var(--white-color);
}

.agree-section .agree-content .text .title {
    font-size: 50px;
    font-weight: 700;
    color: var(--main-color);
}

.agree-section .agree-content .text .desc {
    color: var(--gray-color);
    font-size: 24px;
    line-height: 1.6;
}

.agree-section .agree-content .text ul.desc {
    color: var(--gray-color);
    font-size: 24px;
    line-height: 1.6;
    list-style-type: disc;
}

.agree-section .agree-content .text ol.desc {
    color: var(--gray-color);
    font-size: 24px;
    line-height: 1.6;
    list-style-type: decimal;
}

.agree-section .agree-content .image img {
    height: 400px;
}

.agree-section .agree-content .terms-bac {
    background-color: var(--gray-color);
    background-image: url('../images/terms-bacground.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    height: 100%;
    min-height: 400px;
    width: 100%;
    margin: 0 30px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 3px 7px 10px 5px rgb(0 0 0 / 10%);
}

.agree-section .agree-content .terms-bac::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(10 29 40 / 50%);
}


/* End Agree policy Section */


/* Start collection Data */

.collection-section {
    background-color: var(--tertiary-color);
    background-image: url('../images/collection-background.jpg');
    background-size: cover;
    background-position: center;
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    margin-top: var(--padding-section);
    margin-bottom: var(--padding-section);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    /* height: 490px; */
    transition: var(--main-transition);
}

.collection-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(10 29 40 / 70%);
}

.collection-section .overlay {
    position: relative;
}

.collection-section .title {
    color: var(--main-color);
}

.collection-section .collection-content h4 {
    line-height: 1.7;
}

.collection-section.rights_policy {
    background-image: url('../images/rights-background.jpg');
    background-position: top;
    height: auto;
}

.collection-section.rights_policy::before {
    background-color: rgb(10 29 40 / 60%);
}

.collection-section.rights_policy .collection-content ul.desc {
    font-size: 24px;
    line-height: 1.6;
    list-style-type: disc;
}

@media (min-width:991px) {
    .collection-section.rights_policy .collection-content ul.desc {
        width: 75%;
    }
}

@media (max-width:576px) {
    .agree-section .agree-content .text .title,
    .main-title .title {
        font-size: 30px;
    }
    .policy-section .policy-content .text,
    .agree-section .agree-content .text .desc,
    .agree-section .agree-content .text ul.desc,
    .agree-section .agree-content .text ol.desc,
    .collection-section.rights_policy .collection-content ul.desc {
        font-size: 18px;
    }
}


/* End collection Data */


/****************************************************************
                    *** End Policy Page Style
****************************************************************/


/****************************************************************
                    *** Start Add Real Estates Page Style
****************************************************************/


/* Start Add  Real Estates Section */

.add-real-section {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    background-color: var(--white-color);
    position: relative;
}

.add-real-section .add-real-content .form .form-floating>.input::placeholder {
    color: #CCC;
}

.add-real-section .add-real-content .form .form-floating>.input:not(:focus)::placeholder {
    color: #CCC;
}

.add-real-section .add-real-content .form .ContryNote {
    font-size: 14px;
    color: #F00;
}

.add-real-section .add-real-content label svg {
    width: 35px;
    color: var(--gray-color);
    font-size: 20px;
}

.add-real-section .add-real-content label img {
    width: 35px;
    color: var(--gray-color);
}

.add-real-section .add-real-content .form label {
    color: var(--gray-color);
    font-size: 16px;
    transition: var(--main-transition);
}

.add-real-section .add-real-content .form .input {
    padding: 40px 30px 12px 30px;
    height: 100px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 2px 1px 10px 1px rgb(0 0 0 / 5%);
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.add-real-section .add-real-content .form textarea.input {
    padding-top: 45px;
    height: 180px;
}

.add-real-section .add-real-content .form .showMap {
    border: 1px solid var(--tertiary-color);
    background-color: var(--gray-color);
    color: var(--white-color);
    box-shadow: 0px 1px 10px 1px rgb(0 0 0 / 5%);
    transition: var(--main-transition);
}

.add-real-section .add-real-content .form .showMap:hover {
    border: 1px solid var(--tertiary-color);
    background-color: var(--main-color);
    color: var(--white-color);
}

.add-real-section .add-real-content .form .showMap:focus {
    outline: none;
}

.add-real-section .add-real-content .main-button {
    width: 200px;
}

.add-real-section .add-real-content .recruiter .feature-name {
    font-size: 17px;
}
 /* anood i added to fix LTR & RTL */
 /* Style for feature container */
.desc {
    display: flex; /* Align icon and text horizontally */
    align-items: center; /* Vertically align items */
    justify-content: flex-start; /* Align items to the left */
    gap: 10px; /* Add spacing between icon and text */
}

/* Style for icons */
.desc i {
    color: #347782; /* Set icon color */
    font-size: 24px; /* Adjust icon size */
}

/* Style for text */
.feature-name {
    font-size: 17px; /* Adjust text size */
    color: #347782; /* Match text color with icon */
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .desc {
        flex-direction: row; /* Maintain row alignment */
        gap: 8px; /* Reduce spacing for smaller screens */
    }

    .feature-name {
        font-size: 15px; /* Adjust text size for small screens */
    }

    .desc i {
        font-size: 20px; /* Adjust icon size for small screens */
    }
}


/* Start Add  Real Estates Section */


/****************************************************************
                    *** End Add Real Estates Page Style
****************************************************************/


/****************************************************************
                    *** Start My Real Estates Page Style
****************************************************************/


/* Start Add  Real Estates Section */

.my-real-section {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    background-color: var(--white-color);
}

.my-real-section .my-real-content .head {
    display: flex;
    flex-wrap: wrap;
}

.my-real-section .my-real-content .head input[type="text"],
.my-real-section .my-real-content .head .form-check,
.my-real-section .my-real-content .head select {
    height: 50px;
    padding: 13px 30px 13px 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.my-real-section .my-real-content .head input[type="text"]::placeholder {
    color: #CCC;
}

.my-real-section .my-real-content .head select,
.my-real-section .my-real-content .head .form-check {
    color: #CCC;
}

.my-real-section .my-real-content .head select option {
    color: var(--secondary-color);
}

.my-real-section .my-real-content .head .input {
    position: relative;
    box-shadow: 0 8px 24px 0 rgba(149, 157, 165, 0.2);
    width: 250px;
    border-radius: 8px;
    padding: 0 15px;
    margin: 0 10px;
    float: left;
    flex: 0 0 auto;
}

.my-real-section .my-real-content .head .input svg {
    color: #CCC;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--main-transition);
}

.my-real-section .my-real-content .table_results .table {
    color: var(--gray-color);
    font-size: 13px;
    font-weight: 400;
    transition: var(--main-transition);
}

.my-real-section .my-real-content .table_results .table select {
    color: var(--gray-color);
    background-color: transparent;
    font-size: 13px;
    font-weight: 400;
    border: none;
}

.my-real-section .my-real-content .table_results table th,
.my-real-section .my-real-content .table_results table td {
    padding: 30px 10px;
}

.my-real-section .my-real-content .table_results table .col_title {
    border: 1px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 8px;
}

.my-real-section .current_Page {
    color: var(--gray-color);
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    padding: 4px 14px;
    line-height: 1.6;
    font-size: 12px;
    bottom: 0;
    left: 0;
}

@media (max-width:768px) {
    .my-real-section .current_Page {
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/****************************************************************
                    *** End My Real Estates Page Style
****************************************************************/


/****************************************************************
                    *** Start Indicator Real Estates Page Style
****************************************************************/

.indicator-real-section {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    background-color: var(--white-color);
}

.indicator-real-section .indicator-real-content form.head {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
}

.indicator-real-section .indicator-real-content .head .input {
    min-width: 130px;
    width: fit-content;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    margin: 5px 10px;
    overflow: hidden;
    float: left;
    flex: 0 0 auto;
}

.indicator-real-section .indicator-real-content .head select {
    height: 50px;
    width: 150px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.indicator-real-section .indicator-real-content .head select {
    color: #CCC;
}

.indicator-real-section .indicator-real-content .head select option {
    color: var(--secondary-color);
}

.indicator-real-section .indicator-real-content .Chart_results {
    margin-top: 80px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.indicator-real-section .indicator-real-content .Chart_results .wrapper {
    box-shadow: 0 8px 24px 0 rgba(149, 157, 165, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.indicator-real-section .indicator-real-content .Chart_results .label {
    height: 1em;
    padding: .3em;
    background: rgba(255, 255, 255, .8);
    position: absolute;
    display: none;
    color: #333;
}


/****************************************************************
                    *** End Indicator Real Estates Page Style
****************************************************************/


/****************************************************************
                    *** Start View Real Estates Page Style
****************************************************************/


/* Start View  Real Estates Section */

.view-real-section {
    padding-top: calc(var(--padding-section) * 1);
    padding-bottom: var(--padding-section);
    background: linear-gradient(to bottom, var(--gray-color) 0%, var(--gray-color) 70vh, var(--white-color) 50vh, var(--white-color) 100vh);
    /* position: relative; */
    margin-top: -70px;
}

.view-real-section .view-real-content .head {}

.view-real-section .view-real-content .head .title {
    position: relative;
}

.view-real-section .view-real-content .head .title .address {
    color: var(--main-color);
}

.view-real-section .view-real-content .head .image_slider .slide {
    min-height: 100vh; /* 80% من ارتفاع الشاشة */
    overflow: hidden;
    position: relative;
}

.view-real-section .view-real-content .head .image_slider .slide .slide-details {
    height: 70vh; /* أو أي قيمة مناسبة */
    position: relative;
}

.view-real-section .view-real-content .head .image_slider .slide .slide-details::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* filter: blur(10px);
    -webkit-filter: blur(10px); */
}

.view-real-section .view-real-content .head .image_slider .slide .carousel-inner {
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
}

.view-real-section .view-real-content .head .image_slider .slide .carousel-inner .carousel-item {
    height: 99%;
    width: 99%;
    background-color: var(--tertiary-color);
    border-radius: var(--border-radius);
    box-shadow: 4px 2px 20px 9px rgb(0 0 0 / 10%);
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
}

.view-real-section .view-real-content .head .image_slider .slide .carousel-inner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* تجعل الصورة تغطي العنصر */
    object-position: center;  /* تجعل الصورة في المنتصف */
}


.view-real-section .view-real-content .head .image_slider .slide .carousel-indicators {
    position: absolute;
    /* background-color: var(--white-color); */
    margin: 0px;
    padding: 10px 0;
    min-height: 240px;
    width: 100%;
    align-items: center;
}

.view-real-section .view-real-content .head .image_slider .slide .carousel-indicators button {
    height: 220px;
    width: 220px;
    background-color: var(--white-color);
    position: relative;
    border: 2px solid var(--white-color);
    border-radius: 8px;
    margin: 0 5px;
    overflow: hidden;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 10%);
    opacity: 1;
}

.view-real-section .view-real-content .head .image_slider .slide .carousel-indicators button.active {
    border: 2px solid var(--main-color);
}

.view-real-section .view-real-content .head .image_slider .slide .carousel-indicators button img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.view-real-section .view-real-content .head .image_slider .slide .slide-details .carousel-control-prev,
.view-real-section .view-real-content .head .image_slider .slide .slide-details .carousel-control-next {
    background-color: var(--white-color);
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    height: 60px;
    width: 60px;
    top: 50%;
    opacity: 1;
    margin: 0 40px;
    box-shadow: 3px 7px 15px 5px rgba(0, 0, 0, 10%);
}

.view-real-section .view-real-content .head .image_slider .slide .slide-details .carousel-control-prev:hover,
.view-real-section .view-real-content .head .image_slider .slide .slide-details .carousel-control-next:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: var(--main-transition);
}

/*#anood* carousel */

[dir="rtl"] .carousel {
    direction: rtl; /* Ensure carousel moves right-to-left */
}

/* Adjust Navigation Arrows */
[dir="rtl"] .carousel-control-prev i,
[dir="rtl"] .carousel-control-next i {
    transform: rotate(180deg);
}

/* Adjust Button Positions */
[dir="rtl"] .carousel-control-prev {
    right: -10px;
    left: auto;
}

[dir="rtl"] .carousel-control-next {
    left: -10px;
    right: auto;
}

/* Ensure Indicators Follow RTL Order */
[dir="rtl"] .carousel-indicators {
    direction: rtl;
}

/* Indicators Custom Size and Spacing for RTL */
[dir="rtl"] .carousel-indicators button {
    margin-left: 5px;
    margin-right: 0;
}

/* Adjust Images inside Carousel */
[dir="rtl"] .carousel-item img {
    object-fit: cover;
}

/* Fix Alignment for Thumbnails in Indicators */
[dir="rtl"] .carousel-indicators img {
    width: 50px;
    height: auto;
    border-radius: 5px;
}
[dir="ltr"] .carousel {
    direction: ltr; /* التأكيد على الاتجاه */
}

/* إعادة الأسهم لوضعها الطبيعي */
[dir="ltr"] .carousel-control-prev i,
[dir="ltr"] .carousel-control-next i {
    transform: rotate(0deg); /* لا حاجة للدوران */
}

/* أماكن الأزرار */
[dir="ltr"] .carousel-control-prev {
    left: -10px;
    right: auto;
}

[dir="ltr"] .carousel-control-next {
    right: -10px;
    left: auto;
}

/* ترتيب المؤشرات LTR */
[dir="ltr"] .carousel-indicators {
    direction: ltr;
}

/* الهوامش بين المؤشرات */
[dir="ltr"] .carousel-indicators button {
    margin-right: 5px;
    margin-left: 0;
}

/* ضبط الصور داخل العناصر */
[dir="ltr"] .carousel-item img {
    object-fit: cover;
}

/* تنسيق الصور المصغرة للمؤشرات */
[dir="ltr"] .carousel-indicators img {
    width: 50px;
    height: auto;
    border-radius: 5px;
}

/* Optional: Smooth Transition Effect */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}
/* End #anood carousel */

@media (max-width: 992px) {
    .view-real-section .view-real-content .head .image_slider .slide {
        min-height: calc(70vh  ); /* أو أي ارتفاع مناسب حسب التفضيل */
    }

    .view-real-section .view-real-content .head .image_slider .slide .slide-details {
        height: 70vh;
    }

    .view-real-section .view-real-content .head .image_slider .slide .carousel-indicators {
        min-height: 135px;
    }

    .view-real-section .view-real-content .head .image_slider .slide .carousel-indicators button {
        height: 110px;
    }

    /* تأكد من أن الصورة تتكيف بشكل جيد مع الحاوية */
    .view-real-section .view-real-content .head .image_slider .slide .carousel-inner .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;        /* تأكد أن الصورة تملأ الحاوية */
        object-position: center;  /* تأكد من تمركز الصورة */
    }
}

@media (max-width: 768px) {
    .view-real-section .view-real-content .head .image_slider .slide {
        min-height: calc(50vh + 100px); /* تعديل للارتفاع ليتناسب مع الشاشات الصغيرة */
    }

    .view-real-section .view-real-content .head .image_slider .slide .slide-details {
        height: 50vh;
    }

    .view-real-section .view-real-content .head .image_slider .slide .carousel-indicators {
        min-height: 100px;
    }

    .view-real-section .view-real-content .head .image_slider .slide .carousel-indicators button {
        height: 80px;
    }

    /* تعديل لحجم الأزرار في الميديا كويري */
    .view-real-section .view-real-content .head .image_slider .slide .slide-details .carousel-control-prev,
    .view-real-section .view-real-content .head .image_slider .slide .slide-details .carousel-control-next {
        height: 40px;
        width: 40px;
        margin: 0 10px;
    }

    /* التأكد من أن الصورة تظل بحجم مناسب أيضًا */
    .view-real-section .view-real-content .head .image_slider .slide .carousel-inner .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.view-real-section .view-real-content .details {
    padding-top: var(--padding-section);
    /* padding-bottom: var(--padding-section); */
}

.view-real-section .view-real-content .details .right .user_info,
.view-real-section .view-real-content .details .right .desc_info,
.view-real-section .view-real-content .details .right .feat_info,
.view-real-section .view-real-content .details .right .address_info {
    border-bottom: 1px solid var(--secondary-color);
    padding: 50px 0;
}

.view-real-section .view-real-content .details .right .address_info {
    border: 0;
}

.view-real-section .view-real-content .details .right .image img {
    height: 130px;
    width: 130px;
    border-radius: 50%;
}

.view-real-section .view-real-content .details .right .title {
    font-weight: 700;
    color: var(--secondary-color);
}

.view-real-section .view-real-content .details .right .desc {
    color: var(--gray-color);
    font-size: 18px;
}

.view-real-section .view-real-content .details .right .phone {
    letter-spacing: 2px;
}

.view-real-section .view-real-content .details .right svg {
    margin: 0 0 0 15px;
}

.view-real-section .view-real-content .details .left {
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 10%);
    padding: 30px 30px;
}

.view-real-section .view-real-content .details .left .title {
    font-weight: 700;
    color: var(--main-color);
}

.view-real-section .view-real-content .details .left .desc {
    color: var(--gray-color);
    font-size: 20px;
    font-weight: 800;
}

.view-real-section .view-real-content .details .left .body {
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    margin: 50px 10px;
}

.view-real-section .view-real-content .details .left .attr {
    color: var(--gray-color);
    font-size: 16px;
    text-align: center;
    font-weight: 800;
}

.view-real-section .view-real-content .details .left .value {
    color: var(--gray-color);
    font-size: 16px;
    text-align: center;
}

.view-real-section .view-real-content .details .left .col {
    padding: 20px 30px;
}

.view-real-section .view-real-content .details .left .col:nth-child(odd) {
    border-left: 1px solid var(--gray-color);
}

.view-real-section .view-real-content .details .left .col:not(:nth-child(1),
 :nth-child(2)) {
    border-top: 1px solid var(--gray-color);
}

.view-real-section .view-real-content .main-button {
    font-size: 30px;
}

@media (max-width:576px) {
    .view-real-section .view-real-content .details .left .col {
        width: 100%;
    }
    .view-real-section .view-real-content .details .left .col:nth-child(odd) {
        border-left: 0px;
    }
    .view-real-section .view-real-content .details .left .col:not(:nth-child(1)) {
        border-top: 1px solid var(--gray-color);
    }
    .view-real-section .view-real-content .main-button {
        font-size: 20px;
    }
}

.img-thumb {
    max-height: 75px;
    border: 2px solid none;
    border-radius: 3px;
    padding: 1px;
    cursor: pointer;
}

.img-thumb-wrapper {
    display: inline-block;
    margin: 10px 10px 0 0;
}

.remove {
    display: block;
    background: #444;
    border: 1px solid none;
    color: white;
    text-align: center;
    cursor: pointer;
}

.remove:hover {
    background: white;
    color: black;
}


/* Start View  Real Estates Section */


/* Start Print  Real Estates Section */

.print-real-section .print-real-content .logo {
    background-color: var(--gray-color);
    padding-top: 40px;
    padding-bottom: 40px;
}

.print-real-section .print-real-content .logo img {
    width: 200px;
}

.print-real-section .print-real-content .head {
    background-color: var(--secondary-color);
    background-image: url('../images/Real_Estate/444.jpg');
    background-size: cover;
    background-position: top;
    height: 100vh;
    position: relative;
}

.print-real-section .print-real-content .head .overlay {
    content: '';
    height: 100%;
    width: 700px;
    position: absolute;
    right: 100px;
    top: 0;
    background-color: rgb(25 40 50 / 50%);
}

.print-real-section .print-real-content .head .head-content {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    padding-left: var(--padding-section);
    padding-right: var(--padding-section);
}

.print-real-section .print-real-content .head .head-content .type {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    margin-bottom: 70px;
}

.print-real-section .print-real-content .head .head-content .type::before {
    position: absolute;
    content: '';
    right: 0;
    bottom: -20px;
    border-bottom: 4px solid var(--white-color);
    width: 100px;
}

.print-real-section .print-real-content .head .head-content .title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
}

.print-real-section .print-real-content .head .head-content .subtitle {
    font-size: 30px;
    margin-bottom: 40px;
}

.print-real-section .print-real-content .head .head-content .titlePrice {
    font-size: 35px;
    margin-bottom: 5px;
}

.print-real-section .print-real-content .head .head-content .price {
    font-size: 72px;
    font-weight: 800;
    color: var(--main-color);
}

.print-real-section .print-real-content .images {
    background-color: var(--white-color);
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    position: relative;
}

.print-real-section .print-real-content .images::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 30px;
    transform: translateY(-50%);
    background-color: var(--gray-color);
    z-index: 0;
}

.print-real-section .print-real-content .images .boxs {
    position: relative;
}

.print-real-section .print-real-content .images .boxs .box {
    margin: auto;
    text-align: center;
    background-color: var(--white-color);
}

.print-real-section .print-real-content .images .boxs .box img {
    height: 290px;
    width: 320px;
}

.print-real-section .print-real-content .feaches {
    background-color: var(--white-color);
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    color: var(--gray-color);
}

.print-real-section .print-real-content .title {
    font-size: 55px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
}

.print-real-section .print-real-content .title::before {
    position: absolute;
    content: '';
    right: 0;
    bottom: -20px;
    border-bottom: 4px solid var(--gray-color);
    width: 80px;
}

.print-real-section .print-real-content .feaches .feats {
    margin-right: 30px;
}

.print-real-section .print-real-content .desc {
    font-size: 25px;
    font-weight: 300;
    text-align: right;
}

.print-real-section .print-real-content .feaches .feats .desc svg {
    margin-left: 50px;
}

.print-real-section .print-real-content .address {
    background-color: var(--gray-color);
    padding-top: 40px;
    padding-bottom: 40px;
}

.print-real-section .print-real-content .address .title::before {
    border-bottom-color: var(--white-color);
}

.print-real-section .print-real-content .contact {
    background-color: var(--white-color);
    padding-top: 40px;
    padding-bottom: 40px;
    color: var(--gray-color);
}


/* End Print  Real Estates Section */


/****************************************************************
                    *** End View Real Estates Page Style
****************************************************************/


/****************************************************************
                    *** Start Real Estates Page Style
****************************************************************/


/* Start Fast Search */

.search-section {
    padding-top: calc(var(--padding-section) + 70px);
    padding-bottom: var(--padding-section);
    background-color: var(--gray-color);
    height: 60vh;
    margin-top: -70px;
}

.search-section .search-content {
    background-color: var(--gray-color);
    background-image: url("../images/search-background.jpg");
    background-size: cover;
    background-position: center;
    transition: var(--main-transition);
    padding: 30px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 80px;
    box-shadow: 3px 7px 10px 5px rgb(0 0 0 / 20%);
}

.search-section .search-content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(5 35 50 / 70%);
}

.search-section .search-content .overlay {
    position: relative;
}

.search-section .search-content .input {
    position: relative;
}

.search-section .search-content input,
.search-section .search-content select {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    background-color: transparent;
    border: 0;
    border: 1px solid transparent;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    padding-right: 40px;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.search-section .search-content input.spacer,
.search-section .search-content select.spacer {
    border-left: 1px solid var(--white-color);
}

.search-section .search-content input:hover,
.search-section .search-content select:hover {
    border: 1px solid var(--white-color);
}

.search-section .search-content input:focus,
.search-section .search-content select:focus {
    border: 1px solid var(--main-color);
}

.search-section .search-content .input svg {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.search-section .search-content input::placeholder {
    color: var(--white-color);
}

.search-section .search-content select {
    color: var(--white-color);
}

.search-section .search-content select option {
    color: var(--black-color);
}

.search-section .search-content .button {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    transition: var(--main-transition);
}

.search-section .search-content .button:hover,
.search-section .search-content .button:active {
    background-color: var(--gray-color);
}

@media (max-width:768px) {
    .search-section {
        padding-top: calc(var(--padding-section));
        height: 70vh;
    }
}


/* End Fast Search */


/* Start Tabs View Mode  */

.tabs-viewMode-section .nav {
    background-color: var(--tertiary-color);
}

.tabs-viewMode-section .nav .main-button {
    background-color: var(--gray-color);
    color: var(--white-color);
    padding: 8px 20px;
    font-size: 14px;
}

.tabs-viewMode-section .nav .main-button:focus {
    box-shadow: none;
    outline: none;
}

.tabs-viewMode-section .nav .main-button.active,
.tabs-viewMode-section .nav .main-button:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}


/* End Tabs View Mode  */


/* Start Fillter  */

.filter {
    background-color: var(--tertiary-color);
    padding: 10px;
    margin-bottom: 20px;
}

.filter .input {
    position: relative;
    width: 100%;
}

.filter input,
.filter select {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
    /* background-color: transparent; */
    border: 0;
    border: 1px solid transparent;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    padding-right: 40px;
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.filter input:hover,
.filter select:hover {
    border: 1px solid var(--white-color);
    background-color: transparent;
}

.filter input:focus,
.filter select:focus {
    border: 1px solid var(--main-color);
    outline: none;
    box-shadow: none;
}

.filter .input svg {
    color: var(--gray-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.filter input::placeholder {
    color: var(--gray-color);
}

.filter select {
    color: var(--gray-color);
}

.filter select option {
    color: var(--black-color);
}

.filter .button {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    box-shadow: none;
    transition: var(--main-transition);
}

.filter .button:hover,
.filter .button:active {
    background-color: var(--gray-color);
}

.filter .recruiter .recruiter-info label svg {
    width: 25px;
    color: var(--gray-color);
}

.filter .recruiter .recruiter-info label img {
    width: 25px;
    color: var(--gray-color);
}

.filter .recruiter .form-check .form-check-input {
    float: none;
}

.filter .recruiter .recruiter-info.form-check input {
    width: 5px;
    height: 25px;
    color: var(--gray-color);
    background-color: var(--white-color);
    border: 1px solid var(--gray-color);
    border-radius: 0;
    box-shadow: none;
    transition: var(--main-transition);
}

.filter .recruiter .recruiter-info.form-check input:checked {
    background-color: var(--main-color);
}

.filter .recruiter .recruiter-info.form-check input:hover {
    border: 1px solid var(--white-color);
    background-color: var(--main-color);
}

.filter .recruiter .recruiter-info.form-check input:focus {
    border: 1px solid var(--main-color);
    outline: none;
    box-shadow: none;
}


/* End Fillter  */


/* Start Real Eatates  */

.real_eatates_section {
    padding-top: 50px;
    padding-bottom: var(--padding-section);
    background-color: var(--white-color);
}

.real_eatates_section .real_eatates_content .button {
    background-color: var(--gray-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    padding: auto 20px;
    border-radius: 10px;
}

.real_eatates_section .card {
    border-radius: 30px;
    background-color: var(--white-color);
    overflow: hidden;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 10%);
    transition: transform var(--main-transition), box-shadow var(--main-transition);
    position: relative;
}

.real_eatates_section .card:hover {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 20%);
    transform: translateY(-10px);
}

.real_eatates_section .card .card-head {
    position: relative;
}

.real_eatates_section .card .card-head .image {
    position: relative;
}

.real_eatates_section .card .card-head .image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(5 21 28 / 25%);
    z-index: 1;
}

.real_eatates_section .card .card-head .image img {
    height: 300px;
}

.real_eatates_section .card .like {
    position: absolute;
    top: 0;
    left: 0;
    margin: 25px 35px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.real_eatates_section .card .like:focus {
    outline: none;
    box-shadow: none;
}

.real_eatates_section .card .like .heart.icon,
.real_eatates_section .card .like .heart.icon:before,
.real_eatates_section .card .like .heart.icon:after {
    color: var(--white-color);
    background-color: rgb(17 72 99 / 40%);
    content: '';
    position: absolute;
}

.real_eatates_section .card .like .heart.icon.active,
.real_eatates_section .card .like .heart.icon.active:before,
.real_eatates_section .card .like .heart.icon.active:after,
.real_eatates_section .card .like:hover .heart.icon,
.real_eatates_section .card .like:hover .heart.icon:before,
.real_eatates_section .card .like:hover .heart.icon:after {
    color: var(--white-color);
    background-color: var(--main-color);
}

.real_eatates_section .card .heart.icon {
    margin-top: 6px;
    margin-left: 5px;
    width: 15px;
    height: 15px;
    border-left: solid 1px currentColor;
    border-bottom: solid 1px currentColor;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.real_eatates_section .card .heart.icon:before {
    top: -10px;
    left: -1px;
    width: 15px;
    height: 10px;
    border-radius: 15px 15px 0 0;
    border-top: solid 1px currentColor;
    border-left: solid 1px currentColor;
    border-right: solid 1px currentColor;
}

.real_eatates_section .card .heart.icon:after {
    top: -1px;
    left: 14px;
    width: 10px;
    height: 16px;
    border-radius: 0 15px 15px 0;
    border-top: solid 1px currentColor;
    border-right: solid 1px currentColor;
    border-bottom: solid 1px currentColor;
}

.real_eatates_section .card .card-head .group-span {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    z-index: 1;
}

.real_eatates_section .card .card-head span {
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    padding: 5px 10px;
    background-color: rgb(17 72 99 / 67%);
    text-align: center;
}

.real_eatates_section .card .card-head span:hover {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
    cursor: pointer;
}

.real_eatates_section .card .card-spacer {
    background-color: var(--black-color);
}

.real_eatates_section .card .card-body .card-title a {
    color: var(--secondary-color);
    font-size: 22px;
}

.real_eatates_section .card .card-body .card-price {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 400;
}

.real_eatates_section .card .card-body .card-text {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 3;
}

.real_eatates_section .card .card-body .features {
    height: 90px;
    max-height: 90px;
}

@media (max-width:992px) {
    .real_eatates_section .card .card-head .image img {
        height: 250px;
    }
    .real_eatates_section .card .card-body .features {
        height: 70px;
        max-height: 70px;
    }
}

.real_eatates_section .card .card-body .features svg {
    width: 25px;
    font-size: 20px;
    color: var(--main-color);
}

.real_eatates_section .card .card-body .features img {
    width: 35px;
    color: var(--main-color);
}

.real_eatates_section .card .card-body .features i {
    color: var(--main-color);
}

.real_eatates_section .card .card-body .features .feat:focus {
    box-shadow: none;
}

.real_eatates_section .current_Page {
    color: var(--gray-color);
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    padding: 4px 14px;
    line-height: 1.6;
    font-size: 12px;
    bottom: 0;
    left: 0;
}

@media (max-width:768px) {
    .real_eatates_section .current_Page {
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* .real_eatates_section  .card .card-body .features .feat { border: 1px solid var(--secondary-color); } */

.real_eatates_section .card .card-body .features .feat {
    font-size: 20px;
    padding: 0 10px;
}

.real_eatates_section .card .card-body .features .feat span {
    color: var(--secondary-color);
}

.real_eatates_section .card .card-body .features .feat:hover {
    border: 1px solid var(--main-color);
}


/* End Real Eatates  */


/****************************************************************
                    *** End Real Estates Page Style
****************************************************************/


/****************************************************************
                    *** Start FAQ Page Style
****************************************************************/


/*  Start FAQ   */

.faq {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    background-color: var(--white-color);
}

.faq .faq-content .accordion .accordion-item {
    margin-bottom: 20px;
    padding: 50px 0;
}

.faq .faq-content .accordion .accordion-item:not(:last-of-type) {
    border-bottom: 1px solid var(--gray-color);
}

.faq .faq-content .accordion .accordion-item h2 .accordion-button {
    font-weight: 800;
    font-size: 26px;
    color: var(--secondary-color);
    position: relative;
    background-color: transparent;
}

.faq .faq-content .accordion .accordion-item h2 .accordion-button:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.faq .faq-content .accordion .accordion-item h2 .accordion-button::before {
    content: "\e542";
    font-weight: 800;
    font-size: 30px;
    font-family: "Font Awesome 5 Free";
    position: relative;
    margin-left: 20px;
}

.faq .faq-content .accordion .accordion-item .accordion-body {
    padding: 20px;
    margin-bottom: 50px;
    font-size: 22px;
    line-height: 2;
    color: var(--gray-color);
}

@media (max-width:576px) {
    .faq .faq-content .accordion .accordion-item h2 .accordion-button {
        font-size: 17px;
    }
    .faq .faq-content .accordion .accordion-item .accordion-body {
        font-size: 17px;
    }
}


/*  End  FAQ   */


/****************************************************************
                    *** End FAQ Page Style
****************************************************************/


/****************************************************************
                    *** Start Profile Page Style
****************************************************************/


/* Start Profile Section */

.profile-section {
    /* height: auto; */
}

.profile-section .nav-side {
    box-shadow: inset 20px 0 20px -20px rgb(0 0 0 / 10%);
    margin-top: -70px;
    height: 100%;
}

.profile-section .nav {
    /* padding-bottom: var(--padding-section); */
}

.profile-section .nav .head .image {
    width: 190px;
    height: 190px;
    position: relative;
    overflow: hidden;
    margin: auto;
    padding: 20px;
}

.profile-section .nav .head .image::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-width: 5px;
    border-style: solid;
    border-color: var(--secondary-color);
}

.profile-section .nav .head .image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.profile-section .nav .head h3 {
    color: var(--secondary-color);
    font-weight: 600;
}

.profile-section .nav .head p {
    color: var(--secondary-color);
    font-size: 18px;
}

.profile-section .nav .nav-link {
    color: var(--secondary-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 8px;
    text-align: start;
}

.profile-section .nav .nav-link.active,
.profile-section .nav .nav-link:hover {
    color: var(--main-color);
    background-color: transparent;
}

.profile-section .nav .nav-link svg {
    margin-left: 15px;
}

.profile-section .tab-content {}

.profile-section .tab-content .home-content {}

.profile-section .tab-content .title-section {
    padding-top: calc(var(--padding-section) * 1.5);
    padding-bottom: calc(var(--padding-section) * 1.5);
}

.profile-section .tab-content .title-section .title {
    font-size: 40px;
}

.profile-section .tab-content .title-section .title-content .title::before {
    top: 120px;
}

.profile-section .tab-content .home-content .title-section {
    background-image: url('../images/home-background.jpg');
    background-position: top;
}

.profile-section .tab-content .profile-content .title-section {
    background-image: url('../images/profile-background.jpg');
}

.profile-section .tab-content .my-real-content .title-section {
    background-image: url('../images/my-real-background.jpg');
}

.profile-section .tab-content .add-real-content .title-section {
    background-image: url('../images/add-real-background.jpg');
}

.profile-section .tab-content .messages-content .title-section {
    background-image: url('../images/messages-background.jpg');
}

.profile-section .tab-content .favorite-content .title-section {
    background-image: url('../images/favorite-background.jpg');
}

.profile-section .tab-content .notification-content .title-section {
    background-image: url('../images/notification-background.jpg');
    background-position: top;
}

.profile-section .tab-content .password-content .title-section {
    background-image: url('../images/password-background.jpg');
}

.profile-section .tab-content .content {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}

.profile-section .tab-content .content .head .title {
    color: var(--secondary-color);
}

.profile-section .tab-content .content .head .text {
    color: var(--main-color);
    font-size: 18px;
}

.profile-section .tab-content .content .boxs {
    padding: var(--padding-section) calc(var(--padding-section) * 2);
}

.profile-section .tab-content .content .boxs .box {
    box-shadow: 0 8px 24px 0 rgb(149 157 165 / 20%);
    border-radius: var(--border-radius);
    padding: 20px;
    /* min-width: 200px; */
    min-width: 100%;
    height: 200px;
    color: var(--gray-color);
    text-align: center;
    overflow: auto;
    scroll-behavior: smooth;
    position: relative;
}

.profile-section .tab-content .content .boxs.messages {
    padding-top: 0;
}

.profile-section .tab-content .content .boxs.messages .box {
    height: 500px;
}


/* Tamaño del scroll */

.profile-section .tab-content .content .box::-webkit-scrollbar {
    width: 8px;
}


/* Estilos barra (thumb) de scroll */

.profile-section .tab-content .content .box::-webkit-scrollbar-thumb {
    background: var(--white-color);
    border-radius: 4px;
    border: 2px solid var(--tertiary-color);
}

.profile-section .tab-content .content .box::-webkit-scrollbar-thumb:active {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.profile-section .tab-content .content .box::-webkit-scrollbar-thumb:hover {
    background: var(--gray-color);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gray-color);
}


/* Estilos track de scroll */

.profile-section .tab-content .content .box::-webkit-scrollbar-track {
    background: var(--tertiary-color);
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.profile-section .tab-content .content .box::-webkit-scrollbar-track:hover,
.profile-section .tab-content .content .box::-webkit-scrollbar-track:active {
    background: var(--tertiary-color);
}

.profile-section .tab-content .content .boxs .box svg {
    font-size: 55px;
}

.profile-section .tab-content .content .boxs .box img {
    height: 100px;
}

.profile-section .tab-content .content .boxs .box .title {
    font-weight: 500;
    font-size: 22px;
}

.profile-section .tab-content .content .boxs .box .text {
    color: var(--main-color);
    margin: 0 auto;
}

.profile-section .tab-content .content .boxs .box .text-placeholder {
    color: var(--gray-color);
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-section .tab-content .content .boxs .box .notes {
    text-align: right;
    padding: 20px;
}

.profile-section .tab-content .content .boxs .box .notes .note {
    margin-bottom: 20px;
}

.profile-section .tab-content .content .boxs .box .notes .note p {
    margin: 0;
    position: relative;
    padding-right: 25px;
    font-size: 14px;
    font-weight: 600;
}

.profile-section .tab-content .content .boxs .box .notes .note p::before {
    position: absolute;
    content: "\2022";
    color: var(--main-color);
    font-weight: bold;
    font-size: 25px;
    top: 0;
    right: 0;
    margin-top: -8px;
}

.profile-section .tab-content .content .boxs .box .notes .note .date {
    padding-right: 25px;
    font-size: 10px;
}

.profile-section .tab-content .content .boxs.messages .box .notes .note {
    margin-bottom: 30px;
}

.profile-section .tab-content .content .boxs.messages .box .notes .note p {
    font-size: 20px;
}

.profile-section .tab-content .content .boxs .box .notes .note p::before {
    font-size: 35px;
}

.profile-section .tab-content .content .boxs .box .notes .note .date {
    font-size: 14px;
}

.profile-section .tab-content .content .edit-profile-content {
    padding: 0 calc(var(--padding-section) * 2);
}

.profile-section .tab-content .content .form .personal-image input[type="file"] {
    display: none;
}

.profile-section .tab-content .content .form .personal-figure {
    position: relative;
    width: 180px;
    height: 180px;
}

.profile-section .tab-content .content .form .personal-avatar {
    cursor: pointer;
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 2px solid transparent;
    box-shadow: 2px 1px 10px 1px rgb(0 0 0 / 5%);
    transition: all ease-in-out .3s;
}

.profile-section .tab-content .content .form .personal-avatar:hover {
    box-shadow: 2px 1px 10px 1px rgb(0 0 0 / 10%);
}

.profile-section .tab-content .content .form .personal-figcaption {
    cursor: pointer;
    position: absolute;
    top: 0px;
    width: inherit;
    height: inherit;
    border-radius: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all ease-in-out .3s;
}

.profile-section .tab-content .content .form .personal-figcaption:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, .5);
}

.profile-section .tab-content .content .form .personal-figcaption>img {
    position: absolute;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-section .tab-content .content .form .form-floating>.input::placeholder {
    color: #CCC;
}

.add-real-section .add-real-content .form .form-floating>.input:not(:focus)::placeholder {
    color: #CCC;
}

.profile-section .tab-content .content .form label {
    color: var(--gray-color);
    font-size: 16px;
    transition: var(--main-transition);
}

.profile-section .tab-content .content .form .input {
    padding: 20px 30px 12px 30px;
    height: 100px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 2px 1px 10px 1px rgb(0 0 0 / 5%);
    direction: ltr;
    caret-color: var(--main-color);
    transition: var(--main-transition);
}

.profile-section .tab-content .content .form textarea.input {
    padding-top: 45px;
    height: 100px;
}

.profile-section .tab-content .content .main-button {
    width: 300px;
    margin: 20px;
}

.profile-section .tab-content .table .col_title {
    color: var(--gray-color);
}

.profile-section .tab-content .table td img {
    width: 100%;
    height: 90px;
}

@media (max-width:1200px) {
    .profile-section .nav .nav-link {
        font-size: 18px;
    }
    .profile-section .tab-content .content .boxs {
        padding: 0 var(--padding-section);
    }
    .profile-section .tab-content .content .edit-profile-content {
        padding: 0 var(--padding-section);
    }
}

@media (max-width:992px) {
    .profile-section .tab-content .title-section .title {
        font-size: 50px;
    }
    .profile-section .nav .head .image {
        /* width: 115px;
        height: 115px;
        padding: 10px; */
    }
    .profile-section .nav .head .image img {
        /* width: 90px;
        height: 90px; */
    }
    .profile-section .nav .head h3 {
        /* font-size: 20px; */
    }
    .profile-section .nav .head p {
        /* font-size: 14px; */
    }
    .profile-section .nav .nav-link {
        font-size: 16px;
    }
    .profile-section .tab-content .content .boxs {
        padding: 0 20px;
    }
    .profile-section .tab-content .content .edit-profile-content {
        padding: 0 20px;
    }
}

@media (max-width:768px) {
    .profile-section .tab-content .title-section .title {
        font-size: 50px;
    }
    .profile-section .tab-content .content .boxs {
        padding: 0;
    }
    .profile-section .tab-content .content .edit-profile-content {
        padding: 0;
    }
}

/* Start Responsive Adjustments */

/* Orders Section */

/* General Box Styling */
.orders-section {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.orders-header {
    background-color: #347782; /* Main teal color */
    color: #ffffff;
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

.orders-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.orders-tabs {
    display: flex;
    justify-content: space-around;
    background-color: #f8f4ee; /* Light beige */
    padding: 10px;
    border-radius: 0 0 10px 10px;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.tab {
    flex: 1;
    padding: 10px;
    background-color: #fefdfb; /* Cream */
    color: #aaa;
    font-size: 1rem;
    border: 1px solid #f5eede;
    margin: 0 5px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.tab.active {
    background-color: #ffffff;
    font-weight: bold;
    color: #444;
    border: 1px solid #e8e8e8;
}

.tab:hover {
    background-color: #c4b396; /* Light beige hover */
    color: #fff;
}

.orders-content {
    padding: 20px;
    color: #777;
    font-size: 1rem;
}

.orders-content p {
    margin: 20px 0 0;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .orders-section {
        padding: 15px;
    }
    .orders-header h3 {
        font-size: 1.3rem;
    }
    .orders-tabs {
        flex-direction: column; /* Stack tabs vertically */
        align-items: stretch;
    }
    .tab {
        margin: 5px 0; /* Spacing for vertical layout */
    }
}

@media (max-width: 768px) {
    .orders-section {
        padding: 10px;
    }
    .orders-header {
        padding: 10px;
    }
    .orders-header h3 {
        font-size: 1rem;
    }
    .orders-tabs {
        padding: 5px;
    }
    .tab {
        font-size: 0.9rem;
        padding: 8px;
    }
    .orders-content {
        font-size: 0.9rem;
    }
    .orders-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .orders-header h3 {
        font-size: 0.85rem;
    }
    .orders-content {
        font-size: 0.8rem;
    }
    .tab {
        font-size: 0.8rem;
        padding: 6px;
    }
}

/* File Upload Section */

/* General Styles */
.file-upload-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px 15px 0px;
    background-color: #e4e4e4;
    color: #347782;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.file-upload-label:hover {
    background-color: #d2d2d2;
}

.file-upload-input {
    display: none;
}

.file-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.file-display .file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    max-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.file-display .file-item i {
    color: #347782;
    cursor: pointer;
}

.file-display img {
    max-width: 100%;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .file-upload-container {
        align-items: center; /* Center the upload label and inputs */
    }
    .file-display {
        justify-content: center; /* Center-align the file display */
    }
    .file-display .file-item {
        max-width: 150px; /* Reduce max width for smaller screens */
    }
    .file-display img {
        max-width: 80%; /* Scale down images */
    }
}

@media (max-width: 768px) {
    .file-upload-label {
        font-size: 12px;
        padding: 8px 12px; /* Adjust padding for smaller buttons */
    }
    .file-display {
        gap: 5px; /* Reduce gap between file items */
    }
    .file-display .file-item {
        padding: 8px;
        font-size: 12px; /* Adjust font size for smaller screens */
    }
    .file-display img {
        max-width: 70%; /* Further reduce image size */
    }
}


/* Recharge Section */

.send-button {
    background-color: #347782;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: auto; /* Allow button to adjust width based on content */
    display: inline-block; /* Ensure button behaves like a block element */
    margin:5px;
}

.send-button:hover {
    background-color: #285e66; /* Darker teal on hover */
    transform: translateY(-2px); /* Slight elevation effect */
}

.send-button:active {
    background-color: #244d54; /* Even darker teal for active state */
    transform: translateY(0); /* Reset elevation */
}

.send-button:focus {
    outline: 2px solid #285e66; /* Focus outline for accessibility */
    outline-offset: 2px;
}

.amount-button{
  margin:10px;
  margin-left: 50px;
}

@media (max-width: 992px) {
    .recharge-header {
        margin-bottom: 15px;
        padding-right: 10px;
    }
    .recharge-header .recharge-icon {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .recharge-header {
        margin-bottom: 10px;
    }
    .recharge-header .recharge-icon {
        width: 50px;
    }
}

/* Combine common styles for button.send-button */
@media (max-width: 992px), (max-width: 768px) {
    button.send-button {
        font-size: 12px; /* Further reduce font size */
        padding: 6px 10px; /* Compact padding */
    }
}


/* Contact Section */
@media (max-width: 992px) {
    .contact-link {
        font-size: 1rem;
    }
    .icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact-link {
        font-size: 0.9rem;
    }
    .icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* copouns */

.coupons-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.coupon-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    margin:10px;
}

.coupon-item h4 {
    flex: 1 1 100%;
    font-weight: bold;
    color: #004d4d;
    margin-bottom: 10px;
}

.coupon-item p {
    flex: 1 1 45%; /* Items take half the space in large screens */
    margin: 5px 0;
}

.coupon-item p span {
    color: #d9534f;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coupon-item {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
    }
    .coupon-item p {
        flex: 1 1 100%; /* Each item takes full width */
    }
}

/*promotions*/
/* General Styles for الترويج لنفسي */
.title-section {
    background-color: #006d70; /* Match your teal background color */
    padding: 20px;
    border-radius: 0 0 15px 15px;
    text-align: center; /* Center the title content */
}

.title-section .title {
    font-size: 1.5rem;
    color: white;
}

.promotion-info {
    text-align: center; /* Center text in this section */
    margin: 0 auto; /* Center the promotion-info container */
    max-width: 400px; /* Limit the width */
}

.promotion-info p {
    font-size: 1rem;
    color: #6c757d;
    margin: 5px 0;
}

.region-section, .interests-section, .coupon-section {
    margin: 20px 0;
    max-width: 400px; /* Narrower width */
    margin-left: auto; /* Center horizontally */
    margin-right: auto;
}

.section-title {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #006d70;
    text-align: center; /* Center section titles */
}

.dropdown-button, .coupon-input {
    width: 100%; /* Slightly reduce width */
    max-width: 350px; /* Add a max-width */
    padding: 10px;
    border: 1px solid #c4b396;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    color: #006d70;
    background-color: white;
    cursor: pointer;
    margin-right: 20px;
}

.coupon-input {
    text-align: right;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Center buttons */
}

.wallet-button, .pay-button {
    padding: 15px;
    font-size: 1.2rem;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Reduce button width */
    max-width: 350px; /* Add a max-width */
}

.wallet-button {
    background-color: #c4b396; /* Wallet button color */
}

.pay-button {
    background-color: #347782; /* Pay button color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-section .title {
        font-size: 1.2rem;
    }

    .promotion-info p {
        font-size: 0.9rem;
    }

    .dropdown-button, .coupon-input {
        font-size: 0.9rem;
        padding: 8px;
    }

    .wallet-button, .pay-button {
        font-size: 1rem;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .title-section .title {
        font-size: 1rem;
    }

    .promotion-info p {
        font-size: 0.8rem;
    }

    .dropdown-button, .coupon-input {
        font-size: 0.8rem;
        padding: 6px;
    }

    .wallet-button, .pay-button {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Styling for Bank Accounts Section */
.bank-accounts-section {
    padding: 20px;
}

.bank-accounts-header h3 {
    font-size: 1.5rem;
    color: #006d70; /* Match your teal color */
    margin-bottom: 20px;
    text-align: center;
}

.bank-accounts-content {
    margin-top: 10px;
}

.bank-account-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #006d70;
    padding: 10px;
    border-radius: 8px;
}

.bank-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.bank-details h4 {
    font-size: 1.2rem;
    color: #6c757d; /* Grey color for text */
    margin: 0;
}

/*Styling for settings*/
.fingerprint-setting {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
      border-bottom: 1px solid #ddd;
  }

  .setting-label {
      font-size: 16px;
      color: #333;
  }

  .setting-checkbox {
      width: 20px;
      height: 20px;
  }

  /* customers Review */
  .reviews-display{
    margin:30px;
  }

  /*Complains section*/
  .complaints-header{
    margin: 30px;
  }


/* End Profile Section */

/****************************************************************
                    *** End Profile Page Style
****************************************************************/


/****************************************************************
                    *** Start Animation Style
****************************************************************/

@keyframes flashing {
    0%,
    10%,
    20%,
    30%,
    50%,
    70%,
    80%,
    90%,
    100% {
        background-color: #FFF;
        transform: skew(-20deg) translate(-1500px, -75px);
    }
    40%,
    60% {
        background-color: rgba(255, 255, 255, 0.2);
        transform: skew(-20deg) translate(1500px, -75px);
    }
}

@keyframes flashing-sm {
    0%,
    10%,
    20%,
    30%,
    50%,
    70%,
    80%,
    90%,
    100% {
        background-color: #FFF;
        transform: skew(-20deg) translate(-800px, -75px);
    }
    40%,
    60% {
        background-color: rgba(255, 255, 255, 0.2);
        transform: skew(-20deg) translate(800px, -75px);
    }
}

@keyframes left-move {
    50% {
        left: 0;
        width: 12px;
        height: 100%;
    }
    100% {
        left: 0;
        width: 50%;
        height: 100%;
    }
}

@keyframes right-move {
    50% {
        right: 0;
        width: 12px;
        height: 100%;
    }
    100% {
        right: 0;
        width: 50%;
        height: 100%;
    }
}

@keyframes bouncing {
    0%,
    10%,
    20%,
    30%,
    50%,
    70%,
    80%,
    90%,
    100% {
        transform: translateY(0);
    }
    40%,
    60% {
        transform: translateY(-10px);
    }
}


/****************************************************************
                    *** End Animation Style
****************************************************************/

/****************************************************************
      #anood   *** Responsive Styling for صفحة اطلب الخدمة ***
****************************************************************/
/* General Box Styling */
.box {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.box-label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #347782;
}
.box-input {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Service Description */
.description-limit {
    font-size: 12px;
    margin-top: 3px;
    color: #347782;
}

/* Image Upload Section */
.image-input {
    display: none;
}
.image-section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #347782;
}
.image-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.image-box {
    width: 80px;
    height: 110px;
    border: 1px dashed #c4b396;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-box-plus {
    font-size: 24px;
    color: #c4b396;
    align-items: center;
}

/* Terms and Conditions */
.terms-conditions {
    margin-bottom: 15px;
}
.terms-link {
    font-size: 14px;
    color: #347782;
    text-decoration: none;
}
.terms-link:hover {
    text-decoration: underline;
}
.terms-icon {
    width: 18px;
    height: 18px;
}

/* Submit Button */
.submit-button {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #347782;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.submit-button:hover {
    background-color: #c4b396;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .box {
        padding: 8px;
        margin-bottom: 15px;
    }
    .box-label {
        font-size: 14px;
    }
    .box-input {
        padding: 8px;
        font-size: 12px;
    }
    .image-section-title {
        font-size: 14px;
    }
    .image-upload-container {
        gap: 8px;
    }
    .image-box {
        width: 70px;
        height: 100px;
        align-items: center;
    }
    .image-box-plus {
        font-size: 20px;
        align-items: center;
    }
    .submit-button {
        width: 70%;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .description-limit {
        font-size: 10px;
    }
    .terms-conditions {
        margin-bottom: 15px;
    }
    .terms-link {
        font-size: 12px;
    }
    .terms-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .submit-button {
        width: 90%;
        font-size: 12px;
        padding: 6px 12px;
    }
}

.container {
           padding: 10px !important; 
           margin: 0 auto;
       }

 .notification {
       background-color: #fffae6;
       color: #8a6d3b;
       padding: 15px 20px;
       border: 1px solid #f5e79e;
       border-radius: 8px;
       font-size: 16px;
       font-weight: 600;
       text-align: center;
       margin-bottom: 20px;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
       position: relative;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
   }

.link {
   color: #347782;
   cursor: pointer;
   text-decoration: underline;
   margin-bottom: 20px;
   display: inline-block;
   font-size: 15px;
}
.offer-section {
   display: none;
   background-color: #f9f9f9;
   border: 1px solid #ddd;
   border-radius: 8px;
   padding: 20px;
   margin-top: 20px;
}
.offer-section.active {
   display: block;
}
.offer-card {
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   padding: 20px;
   text-align: center;
}
.offer-card h2 {
   color: #007b7f;
   margin-bottom: 10px;
}
.offer-card .price {
   font-size: 24px;
   font-weight: bold;
   color: #333;
   margin-bottom: 15px;
}
.offer-card p {
   margin: 5px 0;
   color: #666;
}
.actions {
   margin-top: 15px;
}
.actions button {
   border: none;
   padding: 10px 20px;
   border-radius: 5px;
   font-size: 16px;
   margin: 0 10px;
   cursor: pointer;
}
.actions .accept {
   background-color: #4CAF50;
   color: white;
}

.actions .accept:hover {
   background-color: #329636;
}

.actions .reject {
   background-color: #f44336;
   color: white;
}

.actions .reject:hover {
   background-color: #db2a1c;
}


       /* Responsive Design */
       @media (max-width: 600px) {
           .offer-card {
               padding: 15px;
           }
           .offer-card .price {
               font-size: 20px;
           }
           .actions button {
               font-size: 14px;
               padding: 8px 15px;
               margin: 5px 5px;
           }
       }

/****************************************************************
         *** END Responsive Styling for صفحة اطلب الخدمة ***
****************************************************************/

/****************************************************************
      #anood   *** Responsive Styling for (openingpage.html) ***
****************************************************************/

/* Container */
@media (max-width: 992px) {

    .container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
}

/* Header Section */
@media (max-width: 768px) {
    .header {
        text-align: center;
        margin-bottom: 15px;
    }
    .language {
        font-size: 12px;
    }
}

/* Account Type Title */
@media (max-width: 768px) {
    .account-type .title {
        font-size: 16px;
    }
    .account-type .subtitle {
        font-size: 12px;
    }
}

/* Options Section */
@media (max-width: 992px) {
    .options {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .option {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    .option-image {
        width: 50px;
        height: 50px;
    }
    .option-label {
        font-size: 12px;
    }
}

/* Visitor Login */
@media (max-width: 768px) {
    .visitor-login {
        margin-bottom: 15px;
    }
    .visitor-text {
        font-size: 12px;
    }
}

/* Next Button */
@media (max-width: 992px) {
    .next-button-container {
        margin-bottom: 15px;
    }
    .next-button {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .next-button {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Info Section */
@media (max-width: 768px) {
    .info-section {
        margin-top: 15px;
    }
    .info-title {
        font-size: 12px;
    }
    .info-list li {
        font-size: 12px;
    }
}

/****************************************************************
         *** END Responsive Styling for (openingpage.html) ***
****************************************************************/

/****************************************************************
               #anood  *** (register.html page) ***
****************************************************************/

/* Container */
@media (max-width: 992px) {
  .container {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
}

/* Header */
@media (max-width: 768px) {
  .header {
    text-align: center;
    padding: 15px;
  }
  .logo {
    font-size: 20px;
  }
}

/* Text Alignment */
@media (max-width: 768px) {
  h2, p {
    text-align: center;
    font-size: 16px;
  }
}

/* Form Elements */
@media (max-width: 992px) {
  label {
    font-size: 14px;
  }
  input, select {
    padding: 8px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  input, select {
    font-size: 12px;
    padding: 6px;
  }
}

/* Phone Input */
@media (max-width: 768px) {
  .phone-input {
    flex-direction: column;
  }
  .phone-input .country-code {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .phone-input input {
    border-radius: 5px;
  }
}

/* Terms Link */
@media (max-width: 768px) {
  .terms a {
    font-size: 12px;
  }
}

/* Buttons */
@media (max-width: 992px) {
  button {
    padding: 8px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  button {
    padding: 6px;
    font-size: 12px;
  }
}

/****************************************************************
             *** END (register.html page) ***
****************************************************************/

/****************************************************************
      #anood   *** Real-Estate Detailed Page ***
****************************************************************/
.avatar {
    width: 30px;  /* Reduced size */
    height: 30px; /* Reduced size */
    margin-left: 5px;
    overflow: hidden;
    border-radius: 50%;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.add-comment{
  margin-bottom:10px;
  width:100%;
  padding:20px;
}

/* Avatar */
@media (max-width: 768px) {
    .avatar {
        width: 20px;  /* Reduced size */
        height: 20px; /* Reduced size */
        margin-left: 5px;
        overflow: hidden;
        border-radius: 50%;
    }
    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .add-comment{
      margin-bottom:10px;
      width:100%;
      padding:20px;
    }
}


/* "المزيد" Link */
@media (max-width: 768px) {
    .more {
        font-size: 12px; /* Adjust font size */
        margin-left: 5px; /* Reduce margin */
    }
}

@media (max-width: 576px) {
    .more {
        font-size: 10px; /* Smaller font size for extra small screens */
        text-align: center; /* Center alignment for very small screens */
    }
}

/****************************************************************
          *** END Real-Estate Detailed Page ***
****************************************************************/

/****************************************************************
      #anood       *** Add Real Estate Page ***
****************************************************************/
/* Features Container */
.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    justify-content: center;
}

@media (max-width: 992px) {
    .features-container {
        gap: 8px; /* Reduce gap between items */
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .features-container {
        padding: 10px 0; /* Further reduce padding for smaller screens */
    }
}

/* Feature Item */
.feature-item {
    flex: 0 0 calc(33.33% - 16px); /* Three items per row */
    display: flex;
    justify-content: flex-start;
    align-items: left;
    flex-direction: column;
}

@media (max-width: 992px) {
    .feature-item {
        flex: 0 0 calc(50% - 8px); /* Two items per row */
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex: 0 0 100%; /* One item per row */
    }
}

/* Feature Button */
.feature-button {
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.feature-button:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .feature-button {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .feature-button {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Feature Icon */
.feature-icon {
    font-size: 20px;
    color: #347782;
}

@media (max-width: 768px) {
    .feature-icon {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        font-size: 16px;
    }
}

/*FIX RTL and LTR ISSUE*/
/* Dropdown Containers */
.dropdown-container {
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: space-between; /* Space text and arrow */
}

/* Dropdown Icon Alignment */
.dropdown-container i {
    margin-right: 8px; /* Space between text and icon */
    margin-left: 0; /* Reset left margin */
}

/* Buttons and Inputs */
button, select, input, textarea {
    padding: 10px; /* Uniform padding */
    font-size: 16px; /* Text size */
    text-align: auto; /* Auto text alignment */
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .dropdown-container {
        flex-direction: row; /* Keep row alignment for larger screens */
    }

    button, select, input, textarea {
        font-size: 14px; /* Smaller text on medium screens */
    }
}

@media (max-width: 576px) {
    .dropdown-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: flex-start; /* Align items to start */
    }

    button, select, input, textarea {
        font-size: 12px; /* Smaller text for mobile screens */
        padding: 8px; /* Adjust padding */
    }
}

/* LTR Support (Optional, if switching back to LTR is needed) */
.ltr {
    direction: ltr; /* Switch direction to LTR */
    text-align: left; /* Align text to the left */
}

/* Flexbox Fix for RTL */
.flex-container {
    flex-direction: row-reverse; /* Adjust flex direction for RTL */
}
/****************************************************************
               *** END  Add Real Estate Page ***
****************************************************************/

/****************************************************************
      #anood   ***  request-summary.html page***
****************************************************************/
/* General Styles */
.request-container {
    font-family: Arial, sans-serif;
    direction: ltr;
    text-align: right;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.request-header {
    background-color: #2e6f73;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.request-header h1 {
    margin: 0;
    font-size: 24px;
}

.request-label {
    color: #347782;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.request-box {
    padding: 10px;
    border: 1px solid #347782;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    font-size: 14px;
}

.request-map img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Responsive Styles for Images */
@media (max-width: 768px) {
    .request-map img {
        height: 150px; /* Set a fixed height for smaller screens */
    }
}

@media (max-width: 480px) {
    .request-map img {
        height: 120px; /* Further reduce height for very small screens */
    }
}

.request-btn {
    display: inline-block;
    background-color: #347782;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
}

.request-btn:hover {
    background-color: #c4b396;
}

/* Price Form Styles */
.request-price-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.request-price-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
}

.request-input-box {
    margin-bottom: 15px;
}

.request-input-box label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}

.request-input-box input,
.request-input-box textarea,
.request-input-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.request-input-box textarea {
    resize: none;
    height: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .request-header h1 {
        font-size: 20px;
    }

    .request-box {
        font-size: 12px;
        padding: 8px;
    }

    .request-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .request-price-form h2 {
        font-size: 18px;
    }

    .request-input-box input,
    .request-input-box textarea,
    .request-input-box select {
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .request-header h1 {
        font-size: 18px;
    }

    .request-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/****************************************************************
             ***  request-summary.html page***
****************************************************************/
