*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /* colors */
    /*--color-primary: #c1bbaf;
    --color-primary-dark: #504534;*/
    --color-primary: #D1D5CF;
    --color-primary-dark: #101820; 
    --color-lightgrey: hsla(0, 0%, 97%, 0.615);
    --color-error: #cc3333;
    --color-success: #4bb544;
    --white : #fff;
    /* borders */
    --border-radius: 4px;
    /* fonts */
    --ff--ar: "Cairo", sans-serif;
    --ff--en: "Poppins", sans-serif;
    /* transition */
    --trans: all 0.3s ease-in-out;
}

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */
/* drop down menu stats */

.card-menu-wrap{
    position: absolute;
    top: 100%; /* change position vertical */
    left: 0px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 5px;
}
.open-menu{
    max-height: 400px;
}
.card-menu{
    width: 280px;
    background: var(--color-primary);
    border-radius: 8px;
    padding: 10px;
    border: 2px solid var(--color-primary-dark);
    font-size: 1rem;   
}

.profile-menu{
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 5px 0;
    margin: 5px 0;
    border: 2px solid var(--color-primary-dark);
    transition: all 0.2s;
    cursor: pointer;
}
.profile-menu:hover{
    background: var(--color-primary-dark);
    color: #fff;
    border-color: #fff;
}
.profile-menu i{
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 40px;
    margin-right: 16px;
    margin-left: 8px;
    border-radius: 50px;
    user-select: none;
}
.profile-menu p{
    font-size: 1rem;
    font-weight:bold;
    width: 100%;
    user-select: none;
}
/* drop down menu ends */
/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */
/* navBar starts */
.navbar{
    position: fixed;
    top: 0;
    width:100%;
    background-color: transparent;
    padding: 0;
    direction: rtl;
    font-family: var(--ff--ar);
    font-weight: 700;
    z-index: 100001;
    background-color: var(--color-lightgrey);
}

.navbar .container{
    justify-content: space-between;
}

.site-brand{

    /*
    color: var(--color-lightgrey);
    font-size: 2.4rem;
    font-family: var(--ff--en);
    font-weight: 600;
    */
    width: 300px; /* Set the desired width */
    height: 100px; /* Set the desired height */
    overflow: hidden; /* Hide the overflow */
    position: relative; /* Position relative for absolute positioning of image */
    opacity: 0.85;
}

.site-brand img{
    /*
    background-position: center;
    background-size: cover;
    */
    width: 177px; /* Set the original width of the image */
    height: 100px; /* Set the original height of the image */
    position: absolute; /* Position absolute for precise positioning */
    top: 50%; /* Align the top edge of the image with the middle of the container */
    left: 70%;    /* Align the left edge of the image with the middle of the container */
    transform: translate(-50%, -50%); /* Move the image back by half of its size */
}

#navbar-show-btn{
    background: transparent;
    color: var(--color-primary-dark);
    font-size: 2rem;
    opacity: 0.9;
    transition: var(--trans);
    border: none;
}

#navbar-show-btn:hover{
    opacity: 1;
}


/* navBar side menu starts */
#navbar-collapse{
    background-color: var(--color-primary);
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    padding: 2rem;
    transform: translateX(-100%);
    transition: var(--trans);
}

.navbar-collapse-rmw{
    /* js related */
    transform: translateX(0) !important;
}

#navbar-close-btn{
    background: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 0.2rem;
    font-size: 2rem;
    transition: var(--trans);
    position: absolute;
    right: 1rem;
    top: 2rem;
    border: none;
}

#navbar-close-btn:hover{
    background-color: #fff;
    color: #000;
}

.navbar-nav{
    margin-top: 5rem;
} 

.nav-item{
    margin: 1.6rem 0;
    
}

.nav-link{
    position: relative;
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--trans);
    padding: 0.25rem;
    top: 12px;
}
.nav-item .active,
.nav-link:hover{
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 0.25rem;
    border-radius: 6px;
}

.navbar .btnLogin{
    width: 130px;
    height: 45px;
    background: transparent;
    border: 2px solid #000;
    outline: none;
    border-radius: 6px;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    transition: .3s;
}

.navbar .btnLogin:hover{
    background: var(--color-primary-dark);
    color: #fff;
}

/* navBar side menu ends */

/* change background on scroll */
.navbar-cng{
    background-color: var(--color-primary);
    box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
    transition: var(--trans);
}

.navbar-cng .site-brand{
    color: var(--color-primary-dark);
}

/* .navbar-cng .site-brand span{
    color: var(--color-success);
} */

.navbar-cng #navbar-show-btn{
    color: var(--color-primary-dark);
}
/* navBar ends */

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* login start  wants to edit */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #888;
    padding: 20px;
    z-index: 100002;
    width: 400px;
    max-width: 400px;
    margin: 1rem;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    background: #fff;
}

.popup-content {
    text-align: center;
    font-family: var(--ff--ar);
    direction: rtl;
    font-size: 1rem;
}

.close {
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-weight: 900;
    font-size: 1.9rem;
}

/* .container-Login{

} */

.container-Login,
.form__input,
.form__pass_input,
.form__button{
    font: 500 1rem 'Quicksand', sans-serif;   
}

.form__hidden{
    display:none;
}

.form > *:first-child{
    margin-top: 0;
}

.form > *:last-child{
    margin-bottom: 0;
}

.form__title{
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--ff--ar);
    direction: rtl;
    font-weight: 600;
    
}
.form__message{
    text-align: center;
    margin-bottom: 1rem;
}

.form__message__sucess{
    color: var(--color-success);
}
.form__message__error{
    color: var(--color-error);
}

.form__input__group{
    margin-bottom: 1rem;

}

.form__pass_input_container{
    
    position: relative;
    width: 100%;
}

.form__pass_input{
    /* width: calc(100% - 30px)!important;  */
    /* padding-left: 30px!important; */
}

.toggle-password {
    position: absolute;
    left: 11px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 30px;
    /* background-color: #eeeeee;
    transition: background 0.2s; */
}

.toggle-password i {
    font-size: 22px;
    
}

.form__pass_input,
.form__input{
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid #dddddd;
    outline: none;
    background: #eeeeee;
    transition: background 0.2s, border-color 0.2s;
    font-family: var(--ff--ar);
    direction: rtl;
    font-weight: 600;
    font-size: 0.9rem;
}



/* .toggle-password.focused, */
.form__pass_input:focus,
.form__input:focus {
    border-color: var(--color-primary);
    background: #ffffff;
}

.form__input__error{
    color: var(--color-error);
    border-color: var(--color-error);
}

.form__input__error__message{
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-error);
}

.form__button{
    width: 100%;
    padding: 0.7rem 1.2rem;
    font-weight: bold;
    color: #000000;
    border: none;
    border-radius:var(--border-radius);
    outline: none;
    cursor: pointer;
    background: var(--color-primary);
    font-family: var(--ff--ar);
    direction: rtl;
    font-weight: 700;
    font-size: 1.2rem;
}

.form__button:hover{
    background: var(--color-primary-dark);
    color: #fff;
}

.form__button:active{
    transform: scale(0.98);
}

.form__text{
    text-align: center;
    margin: 1rem;
}

.form__link{
    color: var(--color-secondary);
    text-decoration: none;
    cursor: pointer;
}


.form__link:hover{
    text-decoration: underline;
}
/* login end */

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* header starts */
header{
    width: 100vw;
    min-height: 90vh;
    padding-top: 7rem;
    background: linear-gradient( rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 1)) , url(/img\ \(2\).gif) center/cover no-repeat;
    flex-direction: column;
    color: #fff;
    text-align: center;
    direction: rtl;
}
.header-title h1{
    font-family: var(--ff--ar); 
    font-size: 6rem;
    
}
.header-title{
    font-size: 1.7rem;
    letter-spacing: 2px;
    animation: fade 1.5s linear;
    user-select: none;
}

.header-title P{
    margin: 2rem auto 4rem auto;
    max-width: 1000px;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: var(--ff--ar);
    color: var(--color-primary);
    direction: rtl;
    line-height: 2rem;
    letter-spacing: 0;
    user-select: none;
}
/* **************** */
.animated-text h5{
    margin: 2rem auto 4rem auto;
    
    letter-spacing: 0;
    user-select: none;
    color: var(--color-primary);
    font-family: var(--ff--ar);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 2rem;
}
.animated-text h5 span{
    position: relative;
    color: var(--color-primary);
    font-size: 1.3rem;
}
.animated-text h5 span::before {
    content: "";
    height: 70px;
    width: 3px;
    position: absolute;
    top: 50%;
    left: -8px;
    background: var(--color-primary-dark);
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}
.animated-text h5 span.stop-blinking::before {
    animation: none;
}

@keyframes blink {
    50% { opacity: 0 }
}
/* **************** */
.header-title span{
    margin: 1.8rem auto;
    max-width: 1000px;
    font-weight: 700;
    /* font-size: 1.1rem; */
    font-family: var(--ff--ar);
    letter-spacing: 0;
    direction: rtl;
    font-size: 1.3rem;
}

header .button{
    display: inline-block;
    padding: 10px 20px; /* Adjust padding to fit your content */
    background-color: var(--color-primary); /* Button background color */
    color: #000; /* Button text color */
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    font-size: 16px;
    opacity: 1;
    transition-duration: 0.25s; /* Smooth hover effect transition */
}

header .button:hover{
    background-color: var(--color-primary-dark);  /*Darker background color on hover */
    color: #fff;
    opacity: 0.8;
}


@keyframes fade {
    0%{
        opacity: 0;
    }

    50%{
        opacity: 0.65;
    }
    100%{
        opacity: 1;
    }
}
/* slider starts */
/*  slider ends*/
/* header ends */

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* featured starts*/
.backGround{
    background: var(--color-primary);
}
.featured-row{
    direction: rtl;
}
.fItem{
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-primary-dark); /* Optional: Add border for visualization */
    border-radius: 5px;
    overflow: hidden;
    transition: var(--trans);
    direction: rtl; 
}
/* old */
.featured-item{
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd; /* Optional: Add border for visualization */
    border-radius: 5px;
    overflow: hidden;
    transition: var(--trans);
    direction: rtl; 
}

.featured-item::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 1) 100%);
}

.featured-item-content{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: var(--color-primary);
    width: 100%;
    padding: 1rem;
    transform: translateY(60%); /* to edit p position */
    transition: var(--trans);
}

.featured-item-content h2{
    font-family: var(--ff--ar);
    color: var(--color-primary);
    font-size: 2rem;
    display: block;
    margin-bottom: 9rem;
    
}

.featured-item-content .text{
    color: var(--color-primary);
    transition: var(--trans);
}

.featured-item:hover .featured-item-content h2,
.featured-item:hover .featured-item-content p{
    color: #fff;
}

.featured-item:hover .featured-item-content{
    transform: translateY(0);
}

.featured-item img{
    display: block;
    width: 100%;
    height: auto;
    
}
.featured-item:hover img{
    filter: blur(4px);
}
/* featured ends*/

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* recently posts start */

.containerWide{
    width: 94%;
    margin-right: auto;
    margin-left: auto;
}


.wrapper{
    width: 100%; /*edit width*/ 
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.wrapper .nxt-btn,
.wrapper .pre-btn{
    border: none;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #fff, 100%);
    cursor: pointer;
    z-index: 10000;
    opacity: 0.2;
    transition: var(--trans);
}

.wrapper .nxt-btn:hover,
.wrapper .pre-btn:hover{
    opacity: 0.6;
}

.wrapper .nxt-btn:hover i,
.wrapper .pre-btn:hover i{
    opacity: 1;
}

.wrapper .nxt-btn{
    right: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.wrapper .pre-btn{
    left: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.wrapper .fa-angle-left,
.wrapper .fa-angle-right{
    
    top: 50%;
    height: 46px;
    width: 46px;
    cursor: pointer;
    position: absolute;
    font-size: 1.2rem;
    text-align: center;
    line-height: 46px;
    background: transparent;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* .wrapper .fa-angle-left{
    left: -20px;
}
.wrapper .fa-angle-right{
    right: -30px;
} */

.wrapper .carousel{
    padding: 0 1vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.wrapper .carousel::-webkit-scrollbar{
    display: none;
}

.carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging .container1{
    pointer-events: none;
}


.carousel img{
    height: 340px;
    object-fit: cover;
    margin-left: 14px;
    width: calc(100%/3);  /*edit counts of imgs */ 
}

.carousel img:first-child{
    margin-left: 0px;
}



/* 
@media screen and (max-width: 900px) {
    .wrapper{
        width: 800px;
    }
}


@media screen and (max-width: 550px) {
    .wrapper{
        width: 370px;
    }
}  
 */

.container1{
    flex: 0 0 auto;
    margin-right: 20px;
}
/* card starts*/
.card{
    position: relative;
    /* width: 370px; */
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:  0.4s linear;
    /* margin-right: 20px; */
}

/* 463 */ 

.card .imgBx{
    position: relative;
    width: 100%;
    height: 340px;
    background: transparent;
    border-radius: 20px;
    /* background: url(images/1.jpeg); */
    background-size: cover;
}
.card .imgBx img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.card .imgBx::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #fff;
}

.card .imgBx::after{
    content: "";
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #fff;
}


.card .imgBx .status.active{
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--ff--ar);

    padding: 6px 12px;
    background: var(--color-success);
    color: var(--white);
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
}
.card .imgBx .status.un-active{
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--ff--ar);

    padding: 6px 12px;
    background: var(--color-error);
    color: var(--white);
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
}



.wrapper .card .content{
    position: relative;
    width: 100%;
    height: 200px;
    top: -50px;
    background-color: var(--color-primary-dark);
    border-radius: 15px;
    border-top-left-radius: 0;
    padding: 0 35px;
    transition:  0.4s linear;
}

.wrapper .card:hover .content{
    height: 250px; 
    top: 0;
}

/* content icons data */
#searchResults .card .content ul,
.wrapper .card .content ul {
    list-style: none;
    border-right: 2px solid var(--color-primary);
    color: #fff;
}
/* #searchResults .card .content ul li, */
.wrapper .card .content ul li{
    position: relative;
    padding-right: 28px; /* Increase the padding for the icon */
    line-height: 18px; /* Adjust line height to vertically center text */
    /* Adjust the font size of the text */
    font-size: 1rem;
    font-family: var(--ff--ar);
    font-weight: 500;
    margin-bottom: 0.9rem;
    margin-right: 0.3rem;
}

#searchResults .card .content ul li{
    position: relative;
    padding-right: 24px; /* Increase the padding for the icon */
    line-height: 18px; /* Adjust line height to vertically center text */
    /* Adjust the font size of the text */
    font-size: 0.9rem;
    font-family: var(--ff--ar);
    font-weight: 500;
    margin-bottom: 0.9rem;
    margin-right: 0.4rem;
}

#searchResults .card .content ul li:last-child,
.wrapper .card .content ul li:last-child{
    margin-bottom: 0rem;
}


.wrapper .card .content ul li:before  {
    content: "";
    font-family: 'Font Awesome\ 6 Free'; /* Font family for Font Awesome */
    font-weight: 600; /* Font weight for Font Awesome solid icons */
    position: absolute;
    right: 0;
    top: 50%; /* Move the icon to the middle vertically */
    transform: translateY(-50%); /* Adjust the position of the icon to be in the middle */
    font-size: 1.2rem; /* Adjust the size of the icon */
    color: var(--color-primary);
}
#searchResults .card .content ul li:before{
    content: "";
    font-family: 'Font Awesome\ 6 Free'; /* Font family for Font Awesome */
    font-weight: 600; /* Font weight for Font Awesome solid icons */
    position: absolute;
    right: 0;
    top: 50%; /* Move the icon to the middle vertically */
    transform: translateY(-50%); /* Adjust the position of the icon to be in the middle */
    font-size: 1rem; /* Adjust the size of the icon */
    color: var(--color-primary);
}
#searchResults .card .content ul li.buildingType:before,
.wrapper .card .content ul li.buildingType:before {
    content: "\f1ad"; /* Code for the heart icon from Font Awesome */
}
#searchResults .card .content ul li.addressDot:before,
.wrapper .card .content ul li.addressDot:before {
    content: "\f3c5"; /* Code for the heart icon from Font Awesome */
}
#searchResults .card .content ul li.serial:before ,
.wrapper .card .content ul li.serial:before {
    content: "\f02b"; /* Code for the heart icon from Font Awesome */
}
#searchResults .card .content ul li.stairsType:before,
.wrapper .card .content ul li.stairsType:before {
    content: "\e289"; /* Code for the football icon from Font Awesome */
}
#searchResults .card .content ul li.Kaaba:before,
.wrapper .card .content ul li.Kaaba:before {
    content: "\f66b"; /* Code for the heart icon from Font Awesome */
}
#searchResults .card .content ul li.bedRoom:before,
.wrapper .card .content ul li.bedRoom:before {
    content: "\f236"; /* Code for the football icon from Font Awesome */
}
#searchResults .card .content ul li.parking:before ,
.wrapper .card .content ul li.parking:before {
    content: "\f540"; /* Code for the football icon from Font Awesome */
}
#searchResults .card .content ul li.bathRoom:before ,
.wrapper .card .content ul li.bathRoom:before {
    content: "\e4b3"; /* Code for the football icon from Font Awesome */
}
#searchResults .card .content ul li.buildingArea:before ,
.wrapper .card .content ul li.buildingArea:before {
    content: "\f568"; /* Code for the football icon from Font Awesome */
}
#searchResults .card .content ul li.swimmingPool:before,
.wrapper .card .content ul li.swimmingPool:before {
    content: "\f5c5"; /* Code for the football icon from Font Awesome */
}


.wrapper .card .content .list {
    width: 100%;
    position: absolute;
    top:1.2rem;
    right: 0.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    direction:rtl;
    z-index: 100;
}

#searchResults .card .content .list{
    width: 100%;
    position: absolute;
    top:1.2rem;
    right: 0rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    direction:rtl;
    z-index: 100;
}
.wrapper .card .content .price{
    position: absolute;
    top: -80px;
    left: 0;
    width: 50%;
    height: 80px;
    background: var(--color-primary-dark);
    border-top: 10px solid #fff ;
    border-right: 10px solid #fff;
    border-top-right-radius: 25px;
}

.wrapper .card .content .price::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px -10px 0 #fff;
}
 
.card .content .price::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--color-primary-dark);
}

.wrapper .container1 .card .content .price a {
    position: relative;
    background: #fff;
    padding: 10px;
    margin: 15px 15px;
    display: block;
    border-radius: 7px;
    color: var(--color-primary-dark);
    font-weight: 500;
    text-decoration: none;
}

.card .btn{
    width: 100%;
    height: 52px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    border: 2px solid #000;
    outline: none;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 2.4rem;
    transition: .3s ease-in-out;
    opacity: 0;
    font-family: var(--ff--ar);
}

.card:hover .btn{
    position: absolute;
    bottom: 0;
    left: 0;
    color: #000;
    opacity: 1;
}
 
.tcenter{
    text-align: center;
}
/* recently posts end */

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* special starts */
.special-row{
    direction: rtl;
}

.special-row{
    display:grid;
    
    gap: 2rem;
}
.special-item{
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-primary-dark);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--trans);
    direction: rtl;
    align-items: center; /* Vertical center alignment */
    justify-content: center; /* Horizontal center alignment */
    text-align: center;
    padding: 2rem 0.5rem;
    font-size: 1.9rem;
    font-weight: 800;
    font-family: var(--ff--ar);
}

.special-item h3{
    margin: 1rem 0;
    font-size: 1.9rem;
    color: var(--color-primary-dark);
    font-weight: 800;
    font-family: var(--ff--ar);
}
/* special ends */

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* Crow starts */

#crow{
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) , url(/p\ \(3\).jpg) center/cover no-repeat;
}

#crow h2{
    color: #fff;
}
.services-row{
    direction: rtl;


}

.services-item{
    text-align: center;
    padding: 2rem 0.5rem;
    margin: 2rem 0;
    direction: rtl;
    background: var(--color-primary);
    border-radius: 10px;
    border: 2px solid #fff;
    transition: var(--trans);
}

.services-icon{
    font-size: 3.5rem;
}

.services-item h3{
    margin: 1rem 0;
    font-size: 1.9rem;
    color: var(--color-primary-dark);
    font-weight: 800;
    font-family: var(--ff--ar);
}


/* Crow ends */

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* footer starts */
footer{
    background-color: #000;
    color: var(--color-primary);
    text-align: center;
    position: relative;

    /* margin-top: 3rem; */

}

#footer .container{
    width: 94%;
    margin: 8rem auto 0;
}




footer .site-brand{
    width: 300px; /* Set the desired width */
    height: 150px; /* Set the desired height */
    overflow: hidden; /* Hide the overflow */
    position: relative; /* Position relative for absolute positioning of image */
    opacity: 0.85;
    top: 2rem;
    
}

footer .site-brand img{
    width: 266px; /* Set the original width of the image */
    height: 150px; /* Set the original height of the image */
    position: absolute; /* Position absolute for precise positioning */
    top: 50%; /* Align the top edge of the image with the middle of the container */
    left: 50%; /* Align the left edge of the image with the middle of the container */
    transform: translate(-50%, -50%);
}

.footer-item{
    direction: rtl;
    margin: 4rem 2rem 0;
    min-height: 250px;
    max-width: 400px ;
}


.footer-item ul{
    margin: 1rem 0;
}


.footer-item .log-p{
    margin-top: 6rem;
}
.footer-item h2{
    margin: 3rem 0;
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--ff--ar);
}

.footer-item a{
    font-size: 1.2rem;
    /* display: inline-block; */
}
.footer-item i{
    font-weight: 500;
    font-size: 1.3rem;
    border: 2px solid var(--color-primary-dark);
    border-radius: 50%;
    padding: 5px;
    
}
.footer-item a:hover{
    color: var(--color-primary);
}
.footer-item i:hover{
    border: 2px solid var(--color-primary);
}

.social-links{
    display: flex;
    justify-content: center;
}
.social-links li{
    margin: 0.5rem;
}

.callMe li{
    margin-bottom: 0.7rem;
}
.callMe i{
    font-weight: 600;
    font-size: 1.6rem;
    border: none; 
    border-radius: 0%; 
    padding: 10px;
}

.callMe i:hover{
    border: none; 
}

/* copyRights */
.copyRights{
    direction: rtl;
    font-family: var(--ff--ar);
}
/* footer ends */


/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* Reviews start */
.reviews{
    background: #fff;
}
.wrapper2{
    width: 100%; /*edit width*/ 
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.wrapper2 .nxt-btn-rev,
.wrapper2 .pre-btn-rev{
    border: none;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #fff, 100%);
    cursor: pointer;
    z-index: 10000;
    opacity: 0.2;
    transition: var(--trans);
}


.wrapper2 .nxt-btn-rev:hover,
.wrapper2 .pre-btn-rev:hover{
    opacity: 0.6;
}

.wrapper2 .nxt-btn-rev:hover i,
.wrapper2 .pre-btn-rev:hover i{
    opacity: 1;
}

.wrapper2 .nxt-btn-rev{
    right: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.wrapper2 .pre-btn-rev{
    left: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.wrapper2 .fa-angle-left,
.wrapper2 .fa-angle-right{
    
    top: 50%;
    height: 46px;
    width: 46px;
    cursor: pointer;
    position: absolute;
    font-size: 1.2rem;
    text-align: center;
    line-height: 46px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* .wrapper2 .fa-angle-left{
    left: -23px;
}
.wrapper2 .fa-angle-right{
    right: -23px;
} */

.wrapper2 .container2{
    padding: 0 2vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.wrapper2 .container2::-webkit-scrollbar{
    display: none;
}

/* .card2 {
    flex: 0 0 auto;
} */


.card2 .image2{
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.card2 .image2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card2{
    position: relative;
    background: var(--color-primary);
    border: 3px solid var(--color-primary-dark);
    border-radius: 20px;
    min-width: 350px;
    margin: 0.5rem;
}

.card2 .card-content2{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}


.card2 .social-media{
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.card2 .social-media i{
    color: #000;
    margin-top: 10px;
    cursor: pointer;
    transition: .3s;
}

.card2 .social-media i:hover {
    color: var(--color-primary-dark);
}

.card2 .name-profession{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
    color: #000;
}

.card2 .name-profession .name{
    font-size: 20px;
    font-weight: 600;
}

.card2 .name-profession .profession{
    font-size: 15px;
    font-weight: 500;
}


.card2 .rating{
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.card2 .rating i{
    font-size: 18px;
    color: var(--color-primary-dark);
    margin: 0 2px;
}

.card2 .button{
    display: flex;
    justify-content: space-around;
    width: 110%;
    margin-top: 20px;
}

.card2 .button button{
    background: var(--color-primary-dark);
    border: none;
    outline: none;
    color: var(--color-primary);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.card2 .button button:hover{
    background: #000;
}

.card2 .name-profession p{
    text-align: center;
    font-weight: 300;
    font-size: 0.24rem;
    user-select: none;
}


/* Reviews end */
/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */


/* search part starts*/
.searchHead{
    min-height: 95vh;
    padding-top: 7rem;
    background: linear-gradient( rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 1)) , url(/img\ \(1\).gif) center/cover no-repeat;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

#search .container{
    width: auto;
}
.header-form{
    background: rgba(255, 255, 255, 0.5);
    padding: 3.2rem 0.9rem;
    border-radius: 10px;
    direction: rtl;
}
.header-form h3{
    font-size: 2rem;
    color: var(--color-primary-dark);
    font-family: var(--ff--ar);
}
/* .header-form form{
    flex-direction: column;
    margin-top: 1.8rem;
} */

/* .header-form form .form-control{
    width: 100%;    
    margin: 0.6rem 0;
    max-width: 500px;
    border: 1px solid #fff;
    padding: 0.7rem;
    font-size: 0.7rem;
    font-family: var(--ff--en);
    color: var(--color-primary);
    background: transparent;
} */
.header-form form{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 1.8rem;
}

.header-form form #buildType,
.header-form form #cityName,
.header-form form .form-control{
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
    margin-left: 0.5rem;
}


.header-form form .form-control{
    max-width: 600px;
    border: 2px solid var(--color-primary-dark);
    padding: 0.5rem 0.9rem;
    font-size: 1.1rem;
    font-family: var(--ff--ar);
    font-weight: 500;
    color: var(--color-primary-dark);
    background: var(--color-primary);
    border-radius: 0.2rem;
}
.header-form form .form-control:focus{
    background: #f3f3f3;
}
.header-form input:not([type ="submit"])::placeholder{
    color: var(--color-primary-dark);
}

.form-btn{
    padding: 0.7rem 2.5rem;
    border-radius: 0.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--ff--ar);
    font-weight: 800;
    color: var(--color-primary);
    background-color: var(--color-primary-dark);
    border: 2px solid #000;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
}

.form-btn:hover{
    opacity: 0.8;
    transform: var(--trans);
}

.header-form select{
    width: 160px;
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
    font-family: var(--ff--ar);
    font-weight: 500;
    background: transparent;
    border-radius: 0.2rem;
}

.header-form .custom-select{
    position: relative;
}

.custom-arrow{
    position: absolute;
    top: 0;
    left: 0.5rem;
    display: block;
    background-color: var(--color-primary-dark);
    height: 100%;
    width: 2rem;
    pointer-events: none;
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.custom-arrow::before,
.custom-arrow::after{
    --size: 0.5rem;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 25%;
    transform: translate(-4%,-4%);
}

.custom-arrow::before{
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-bottom: var(--size) solid var(--color-primary);
    top: 25%;

}
.custom-arrow::after{
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid var(--color-primary);
    top: 55%;   
}
/* search part ends*/

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* search items start*/
#results .container{
    width: 100%;
}


/* pagination starts*/
.pagination{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    min-width: 320px;
    width: 100%;
    margin: 0 auto 1rem;
    padding: 10px;
    min-height: 50px;
    /* background-color: #fff;  */
}

.pagination .rowsSelect{
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: var(--ff--ar);
}
.pagination .rowsSelect select{
    min-height: 48px;
    width: 60px;
    padding: 5px;
    background: transparent;
    border: 1px solid var(--color-primary-dark);
    border-radius: 0.2rem;
    font-size: 1rem;
    font-family: var(--ff--ar);
    font-weight: 400;
}

.pagination .rowsSelect select:focus{
    background: #fff;
}

.pagination .pagesCountsOF .inputOfPage {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 1rem;

    font-size: 0.9rem;
    font-family: var(--ff--ar);
    font-weight: 500;
}

.pagination .pagesCountsOF .inputOfPage input{
    height: 48px;
    width: 48px;
    padding: 5px;
    background: transparent;
    border: 1px solid var(--color-primary-dark);
    border-radius: 0.2rem;
    font-size: 1rem;
    font-family: var(--ff--ar);
    font-weight: 400;
    text-align: center;
}
/* pagination ends*/

.search-item .card{
    position: relative;
    width: 370px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:  0.4s linear;
}

 /* 463 */ 

 .search-item .card .imgBx{
    position: relative;
    width: 100%;
    height: 340px;
    background: transparent;
    border-radius: 20px;
    /* background: url(images/1.jpeg); */
    background-size: cover;
}
.search-item .card .imgBx img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.search-item .card .imgBx::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #fff;
}

.search-item .card .imgBx::after{
    content: "";
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #fff;
}

.search-item  .card .content{
    position: relative;
    width: 100%;
    height: 200px;
    top: -50px;
    background-color: var(--color-primary-dark);
    border-radius: 15px;
    border-top-left-radius: 0;
    padding: 0 35px;
    transition:  0.4s linear;
}

.search-item  .card:hover .content{
    height: 250px; 
    top: 0;
}


.search-item  .card .content ul {
    color:#fff;
    line-height: 2.2rem;
}

.search-item .card .content ul i{
    height: 10px;
    width: 10px;
    border-radius:2px ;
    font-size: 0.8rem;
    background: transparent;
    margin:0 0.7rem 0 0;
    color: var(--color-primary);
    z-index: 2;
}
.search-item .card .content ul li p{
    margin:0 0.8rem 0 0;
    display: inline-block;
    font-size: 0.8rem;
    font-family: var(--ff--ar);
    font-weight: 600;
}

.search-item  .card .content .list {
    width: 90%;
    position: absolute;
    top:0.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    direction:rtl;
    justify-items: center;
    z-index: 100;
}

.search-item  .card .content .price{
    position: absolute;
    top: -80px;
    left: 0;
    width: 50%;
    height: 80px;
    background: var(--color-primary-dark);
    border-top: 10px solid #fff ;
    border-right: 10px solid #fff;
    border-top-right-radius: 25px;
}

.search-item  .card .content .price::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px -10px 0 #fff;
}

.card .content .price::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--color-primary-dark);
}

.search-item .container1 .card .content .price a {
    position: relative;
    background: #fff;
    padding: 10px 15px;
    margin: 15px 15px;
    display: block;
    border-radius: 7px;
    color: var(--color-primary-dark);
    font-weight: 500;
    text-decoration: none;
}

.search-item .card .btn{
    width: 100%;
    height: 52px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    border: 2px solid #000;
    outline: none;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 2.4rem;
    transition: .3s ease-in-out;
    opacity: 0;
}

.search-item .card:hover .btn{
    position: absolute;
    bottom: 0;
    left: 0;
    color: #000;
    opacity: 1;
}
 
.tcenter{
    text-align: center;
}
/* search items end*/

/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */


/* pagination starts */

.listPage{
    padding: 2rem;
    text-align: center;
    list-style: none;
}

.listPage .next,
.listPage .prev{
    background-color: var(--color-primary-dark);
    color: var(--color-primary);
    display: inline-block;
    padding: 1rem;
    margin: 2rem 4rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--ff--ar);
    cursor: pointer;
}

.listPage button:hover,
.listPage .active{
    opacity: 0.7;
}

.listPage button:active{
    transform: scale(0.98);
}

.listPage i{
    margin: 0.5rem;
}



/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */
/* WeAre about starts */
#WhaAre{
    display: flex;
    justify-content: center;
    align-items: center;
}

#WheAre .play_container{
    position: relative;
}

#WheAre .play_container .play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);


    width: 50px; /* Adjust size as needed */
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0; /* Ensure no extra padding */
}

.play i{
    font-size: 2.8em; /* Adjust font size as needed */
    color: white;
    width: 100%; /* Ensure full width */
    height: 100%; /* Ensure full height */
    display: flex;
    justify-content: center;
    align-items: center;
}

#WheAre .play_container .play:hover{
    background-color: var(--color-primary);
}
#WheAre .play_container .play:hover i{
    color: var(--color-primary-dark);   
}

.popup_Video{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 1000000000;
    display: none;
}

.popup_Video span{
    position: absolute;    
    top: 0;
    right: 10;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 1000000000;
}



.popup_Video iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 560px;
    height: calc((16/9)* 560px);
    object-fit: cover;

 
}


/* WeAre about ends */
/* #################################################################################################################################################################################################################################### */
/* #################################################################################################################################################################################################################################### */

/* company starts*/

#company{
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) , url(/p\ \(3\).jpg) center/cover no-repeat;
    padding-bottom: 4rem;
}

#company h2{
    color: #fff;
}

#company .wrapper3{
    max-width: 100%; /*edit width*/ 
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#company .container4{
    width:100%;
    margin: 0 auto;
}

.wrapper3 .nxt-btn-com,
.wrapper3 .pre-btn-com{
    border: none;
    border-radius: 15px;
    width: 3vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    cursor: pointer;
    z-index: 10000;
    opacity: 0.9;
    transition: var(--trans);
}

.wrapper3 .nxt-btn-com:hover,
.wrapper3 .pre-btn-com:hover{
    opacity: 1;
}

.wrapper3 .nxt-btn-com{
    right: 30px;
}

.wrapper3 .pre-btn-com{
    left: 30px;
}


.wrapper3 i{
    
    top: 50%;
    height: 46px;
    width: 46px;
    cursor: pointer;
    position: absolute;
    font-size: 1.2rem;
    text-align: center;
    line-height: 46px;
    background: var(--color-primary-dark);
    color: var(--color-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    z-index: 100001;
}



.wrapper3 .company-container{
    /* padding: 0 1vw; */
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0 auto;
    width: 92vw;

}

.wrapper3 .company-container::-webkit-scrollbar{
    display: none;
}

.wrapper3 img{
    width: calc(15% - 1vw);
    max-height: 100%;
    object-fit: cover;
    border: 3px solid var(--color-primary-dark);
    border-radius: 20px;
    margin: 2rem 1rem;
    /* box-shadow: 0px 0px 50px -4px rgba(109, 109, 109, 0.44); */
    box-shadow: 0px 0px 25px -4px rgba(255, 255, 255, 0.4);
}