* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ABeeZee", serif;
    font-weight: 400;
    font-style: normal;
}

.header_top {
    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 9999;

}

.header_top {
    transition: background 0.3s ease-in-out;
}

.header_top.scrolled {
    background: rgba(0, 117, 103, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}


.menu_hover a {
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Hover underline effect */
.menu_hover a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #D10A11;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.menu_hover a:hover::after {
    width: 100%;
    color: #D10A11;
}

/*  */
.header_top_area {
    background-color: #D10A11;
    height: 38px;
    display: flex;
    align-items: center;
}

.top_address {
    display: flex;
    height: 100%;

}

.mobile_number_top p {
    color: #fff;
    padding: 0px 5px;
    font-size: 14px;
}

.email_address {
    padding-left: 15px;
}

.navbar_top {
    width: 95%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3px;
}

.mobile_number_top {
    display: flex;
}

.top_icon {
    display: flex;
}

.top_icon a {
    color: #fff;
    padding: 3px 7px;
    transition: all 0.3s ease-in-out;
}

.top_icon a:hover {
    color: #f89fa2;
}

.main_navbar {
    width: 95%;
    margin: auto;
    height: 90px;
    display: flex;
    justify-content: space-between;

}

.nav_logo {
    display: flex;
    align-items: center;
}

.nav_logo img {
    width: 110px;
    padding: 7px 0px;
}

.navbar_menu li {
    list-style: none;
}

.navbar_menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;

}

.menubar {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav_toggle {
    display: none;
}

.nav_toggle i {
    font-size: 25px;
    cursor: pointer;
}

.menu_item {
    position: relative;
    align-items: center;
    padding: 10px 15px;
    color: #fff;

}

.menu_item:hover {
    color: #D10A11;
}

.dropDown_menu {
    position: absolute;
    display: none;
    background-color: #fff;
    min-width: 230px;
    z-index: 999999;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 15px;
}

.dropDown {
    transition: all 0.3s ease-in-out;
}

.dropDown:hover .dropDown_menu {
    display: block;
}

.dropDown_menu li {
    padding: 10px 15px;
}

.dropdown_list_item {
    color: #333;
    border-bottom: 1px solid #f9f9f9;
    transition: all 0.3s ease-in-out;
    padding: 12px 20px;
    font-weight: 500;
}

.dropdown_list_item:hover {
    background-color: #fcfcfc;
    color: #D10A11;
    padding-left: 28px;
}

.navbar_btn button {
    background-color: #D10A11;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-left: 25px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.navbar_btn button:hover {
    background-color: #fff;
    color: #D10A11;
    box-shadow: 0 4px 15px rgba(209, 10, 17, 0.3);
}


/* Index Page Start */

/* Srat Index Slider */
.container {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    background: #aaa;
}

.tour {
    position: relative;
    perspective: 50em;
    width: 100%;
    height: 100%;
    /* border: 1px solid rgba(255, 255, 255, 0.7); */
    background: #222;
    overflow: hidden;
}

.tour ol {
    list-style: none;
    position: absolute;
    bottom: 5px;
    width: 50%;
    padding: 0px;
    margin: 0 25%;
    text-align: center;
}

.tour ol li {
    width: 14px;
    height: 14px;
    display: inline-block;
    border: 1px solid #D10A11;
    border-radius: 50%;
    position: relative;
    z-index: 999;
    cursor: pointer;
}

.tour ol li:after {
    content: '';
    pointer-events: none;
    transition: all .4s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: 0% 0%;
    display: inline-block;
    border-radius: 50%;
    background: #D10A11;
}

.tour ol li.active:after {
    transform: scale(1) translate(-50%, -50%);
}

.tour .tour-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.tour .tour-inner .itemsliding {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    left: 0%;
    transition: transform 0.6s ease-in-out;
    display: none;
}

.tour .tour-inner .itemsliding img {
    width: 100%;
    height: 100%;
}

.tour .tour-inner .itemsliding .tour-caption {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    text-align: center;
    /* border-radius: 20px; */
    color: white;
    transform: translate(-50%, -50%);
    /* backdrop-filter: blur(3px); */
}

.tour .tour-inner .itemsliding .tour-caption h2 {
    font-weight: bold;
    color: #fff;
    font-size: 40px;
    padding: 10px;
    text-shadow: 2px 2px 8px #525252;
}

.tour-caption p {
    padding: 10px;
    width: 55%;
    font-size: 25px;
    margin: auto;
    text-shadow: 2px 2px 8px #525252;
    color: #fff;
}

.tour-caption p a {
    text-decoration: none;
    color: #fff;
}

.tour-caption p button {
    padding: 10px 15px;
    background-color: #D10A11;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px;

}

.tour-caption p button:hover {
    background-color: #007567;

}

.tour .tour-inner .prevleftsliding {
    display: block;
    transform: translate3d(100%, 0, 0);
}

.tour .tour-inner .nextleftsliding {
    display: block;
    transform: translate3d(-100%, 0, 0);
}

.tour .tour-inner .prevrightsliding {
    display: block;
    transform: translate3d(-100%, 0, 0);
}

.tour .tour-inner .nextrightsliding {
    display: block;
    transform: translate3d(100%, 0, 0);
}

.tour .tour-inner .active {
    display: block;
    transform: translate3d(0%, 0, 0);
}

.tour .tour-inner .itemrolling {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    left: 0%;
    opacity: 1;
    transition: transform 0.5s, opacity 0.6s;
    transform: rotateX(-90deg);
    transform-origin: bottom center;
    display: none;
}

.tour .tour-inner .itemrolling img {
    width: 100%;
    height: 100%;
}

.tour .tour-inner .itemrolling .tour-caption {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 20px; */
    color: white;
    transform: translate(-50%, -50%);
}

.tour .tour-inner .itemrolling .tour-caption h2 {
    font-weight: bold;
    color: #222;
}

.tour .tour-inner .prevleftrolling {
    display: block;
    transform-origin: top center;
    transform: rotateX(-90deg);
    opacity: 0;
}

.tour .tour-inner .nextleftrolling {
    display: block;
    transform-origin: bottom center;
    transform: rotateX(90deg);
    opacity: 1;
}

.tour .tour-inner .prevrightrolling {
    display: block;
    transform-origin: bottom center;
    transform: rotateX(90deg);
    opacity: 0;
}

.tour .tour-inner .nextrightrolling {
    display: block;
    transform-origin: top center;
    transform: rotateX(-90deg);
    opacity: 1;
}

.tour .tour-inner .active {
    display: block;
    transform: rotateX(0deg);
}

.tour .tour-inner .itemfading {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    left: 0%;
    transition: opacity 0.6s ease-in-out;
    display: none;
    opacity: 1;
}

.tour .tour-inner .itemfading img {
    width: 100%;
}

.tour .tour-inner .itemfading .tour-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 20px; */
    color: #fff;
    transform: translate(-50%, -50%);
}

.tour .tour-inner .itemfading .tour-caption h2 {
    font-weight: bold;
    color: #fff;
}

.tour .tour-inner .prevleftfading,
.tour .tour-inner .prevrightfading {
    display: block;
    opacity: 0;
}

.tour .tour-inner .nextleftfading,
.tour .tour-inner .nextrightfading {
    display: block;
    opacity: 0;
}

.tour .tour-inner .active {
    display: block;
    opacity: 1;
}

.tour a.tour-control {
    position: absolute;
    top: 0;
    right: 85%;
    bottom: 0;
    left: 0;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.tour a.tour-control span {
    pointer-events: none;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.tour a.tour-control span i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.tour a.tour-control:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent);
}

.tour a.tour-control:hover i {
    color: white;
}

.tour a.tour-control.right {
    right: 0%;
    left: 85%;
}

.tour a.tour-control.right:hover {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.35), transparent);
}

.tour a.tour-control.right:hover i {
    color: white;
}

.tour .timeLine {
    position: absolute;
    height: 3px;
    background: red;
    top: 0px;
    left: 0px;
    right: 100%;
}

.tour .animate {
    animation-name: timeLine;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0, 0, 0.05, 0.85);
}

@keyframes timeLine {
    0% {
        background: white;
        right: 100%;
    }

    100% {
        background: red;
        right: 0%;
    }
}

/* End Index Slider */
/* Start Index Page */

.looking_for {
    width: 100%;
    height: auto;
}

.we_looking_for_area {
    width: 95%;
    margin: auto;
}

.what_looking_for {
    text-align: center;
    padding: 20px 10px;
}

.what_looking_for h1 {
    color: #007567;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;

}

.what_looking_for_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.whats_look_btn {
    padding: 10px;
}

.whats_look_btn button {
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #D10A11;
    color: #D10A11;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.whats_look_btn button:hover {
    background-color: #D10A11;
    color: #fff;
}

.what_looking_for p {
    width: 75%;
    font-size: 18px;
    color: #666;
    margin: auto;
    padding: 10px 0px;
}

.looks_div_controls {
    display: none;
}

.plot_details_for_sell {

    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    padding: 20px;
}

.plot_details_for_sell_box {
    background: #fff;
    border: 0.5px solid #eee;
    padding: 20px;
    width: 100%;
    min-width: 34%;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;

}

.sell_box_image_icon img {
    width: 50px;
    height: 50px;
}

.sell_box_header {
    min-height: 150px;
}

.sell_box_header h2 {
    color: #007567;
    font-size: 20px;
    padding: 10px 0px;
    font-weight: 600;
}

.sell_box_header p {
    color: #666;
    padding: 10px 0px 20px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sell_box_header_btn button {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid #D10A11;
    color: #D10A11;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sell_box_header_btn button:hover {
    background-color: #D10A11;
    color: #fff;
}

.whats_look_btn button.active {
    background-color: #D10A11;
    color: #fff;
}

.plot_details_for_sell.active {
    display: flex;
}


.plot_details_for_sell_box:hover {
    box-shadow: rgba(0, 219, 154, 0.2) 0px 7px 29px 0px;
    transform: translateY(-5px);
    border: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .plot_details_for_sell {
        flex-wrap: nowrap;
    }
}

/* Start About Us Section */
.index_about_us_container {
    width: 100%;
    height: auto;
}

.index_about_us_area {
    width: 95%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 5px;
}

.index_about_us_main_header {
    width: 95%;
    height: auto;
    margin: auto;
    text-align: center;
}

.index_about_us_main_header p {
    color: #666;
    padding: 5px 0px;

}

.index_about_us_main_header h2 {
    color: #007567;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;
}

.index_about_us_text {
    width: 60%;
}

.index_about_us_image {
    width: 40%;
    padding: 10px 10px 10px 10px;
}

.index_about_us_text p {
    color: #666;
    padding: 10px 0px;
    line-height: 25px;
}

.index_about_us_text ul {
    padding-left: 25px;
}

.index_about_us_text ul li {
    padding: 5px 0px;
    color: #666;
    list-style: square;
}

.index_about_us_text button {
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #D10A11;
    color: #D10A11;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 10px 5px;
}

.index_about_us_text button:hover {
    background-color: #D10A11;
    color: #fff;
}

.index_about_us_image img {
    width: 100%;
    align-items: center;
    display: flex;
    border-radius: 10px;

}

.index_about_us_header {
    font-size: 25px;
    padding: 5px 0px;
}


/* Popular_searches_conteinar */
.Popular_searches_conteinar {
    width: 100%;
    height: auto;
}

.Popular_searches_area {
    width: 95%;
    height: auto;
    margin: auto;
    padding: 5px;
    border: 0.5px solid #eee;
}

.Popular_searches_header {
    padding: 10px;
    text-align: center;
}

.Popular_searches_header h2 {
    color: #007567;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;
}

.Popular_searches_header p {
    color: #666;
    padding: 5px 0px;

}

/*  */
.featured_listing_main_area {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
    gap: 20px;
}

.featured_listing_main_image_div_container {
    position: relative;
    width: 100%;
    max-width: 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.featured_listing_main_image_div {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Background images for listings */
.featured_listing_main_image_div_listing-1 {
    background-image: url('../../image/about_us.jpg');
}

.featured_listing_main_image_div_listing-2 {
    background-image: url('../../image/about_us.jpg');
}

/* Featured & Sell Buttons */
.featured_listing_main_image_div_top-buttons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
}

.featured_listing_main_image_div_btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.featured_listing_main_image_div_featured-btn {
    background: #ffa500;
}

.featured_listing_main_image_div_sell-btn {
    background: #ff0000;
}

/* Client Info */
.featured_listing_main_image_div_client-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: white;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 250px;
}

.featured_listing_main_image_div_client-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: 8px;
}

.featured_listing_main_image_div_client-name {
    font-size: 14px;
    font-weight: bold;
    padding: 2px 0px;
}

.featured_listing_main_image_div_price {
    font-size: 12px;
    color: #28a745;
}

/* Why Choose Us */
.why_choses_us_conteinar {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

.why_chooses_us_container_area {
    width: 95%;
    height: auto;
    margin: auto;
}

.why_chooses_us_container_header {
    text-align: center;
    padding: 10px;
}

.why_chooses_us_container_header h2 {
    color: #007567;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;
}

.why_chooses_us_container_header p {
    color: #666;
    padding: 5px 0px;
}

.why_chooses_us_step_area {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why_chooses_us_step_box {
    width: 23%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease-in-out;
}

.why_chooses_us_step_box:hover {
    box-shadow: rgba(0, 117, 103, 0.15) 0px 15px 35px 0px;
    transform: translateY(-5px);
}

.why_chooses_us_step_header {
    display: flex;
    align-items: center;
}

.why_chooses_us_step_header p {
    background-color: #D10A11;
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.why_chooses_us_step_box_img {
    align-items: center;
    padding: 20px 0 10px 0;
}

.why_chooses_us_step_box_img img {
    width: 60px;
    height: auto;
    align-items: center;
    transition: transform 0.3s ease;
}

.why_chooses_us_step_box:hover .why_chooses_us_step_box_img img {
    transform: scale(1.1);
}

.why_chooses_us_step_text {
    padding: 5px 15px;
}

.why_chooses_us_step_text p {
    text-align: justify;
    padding: 5px 5px;
    color: #666;
    line-height: 1.5;
    height: 6em;
    /* Exactly 4 lines */
    overflow-y: auto;
}

/* Scrollbar styling for the paragraph */
.why_chooses_us_step_text p::-webkit-scrollbar {
    width: 4px;
}

.why_chooses_us_step_text p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.why_chooses_us_step_text p::-webkit-scrollbar-thumb {
    background: #007567;
    border-radius: 4px;
}

.why_chooses_us_step_btn {
    align-items: center;
    margin-top: 10px;
}

.why_chooses_us_step_btn button {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid #D10A11;
    color: #D10A11;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.why_chooses_us_step_btn button:hover {
    background-color: #D10A11;
    color: #fff;
    box-shadow: 0 5px 15px rgba(209, 10, 17, 0.2);
}

.why_chooses_us_step_text_header h3 {
    color: #007567;
    font-size: 22px;
    padding: 10px 0px;
    font-weight: 700;
}


/* Totatl Clients Reviews and rating section */
.index_page_total_rating_container {
    width: 100%;
    height: auto;
    background-image: url(../../image/index_background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.index_page_total_rating_area {
    width: 95%;
    height: auto;
    margin: auto;
    min-height: 250px;

}

.index_page_rating_header {
    width: 50%;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.index_page_rating_header h2 {
    margin: auto;
    color: #fff;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;
}

.index_page_rating_header p {
    color: #fff;
    padding: 5px 0px;

}

.main_cointer_div_box {
    display: flex;
    justify-content: space-around;
    margin: 20px 0px;
    padding: 20px;
}

.cointer_div_box {
    min-width: 20%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.counter {
    color: #007567;
    font-size: 30px;
    font-weight: 700;

}

.counter_extra {

    color: #D10A11;
    font-size: 30px;
    font-weight: 700;
}

.counter_main_text {
    color: #007567;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0px;
}




/* property Type Redesign */
.property_type_main_conteinar {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.property_type_main_area {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.property_type_header {
    text-align: center;
    margin-bottom: 50px;
}

.property_type_header h2 {
    color: #007567;
    font-size: 40px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    margin-bottom: 15px;
}

.property_type_header p {
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.property_type_main_box_area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.property_type_main_box_area a {
    text-decoration: none;
    display: block;
}

.property_type_main_box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 117, 103, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.property_type_main_box::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    background: rgba(209, 10, 17, 0.03);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.property_main_area_section:hover .property_type_main_box {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 117, 103, 0.15);
    border-color: #007567;
}

.property_main_area_section:hover .property_type_main_box::after {
    transform: scale(2.5);
}

.property_type_icon {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background: rgba(0, 117, 103, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: background 0.4s ease;
    flex-shrink: 0;
}

.property_type_icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.property_main_area_section:hover .property_type_icon {
    background: #007567;
}

.property_main_area_section:hover .property_type_icon img {
    transform: scale(1.1);
}

.property_type_icon_text {
    flex-grow: 1;
}

.property_type_icon_text h3 {
    color: #333;
    font-size: 20px;
    font-family: "Outfit", sans-serif;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.property_main_area_section:hover .property_type_icon_text h3 {
    color: #D10A11;
}

.property_type_icon_text p {
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property_type_icon_text p i {
    color: #D10A11;
}

.on_hover {
    display: none;
}

.property_main_area_section:hover .on_hover {
    display: block;
}

.property_main_area_section:hover .out_hover {
    display: none;
}


/* Latest Properties */
.Latest_properties_conteinar {
    width: 100%;
    height: auto;
}

.Latest_properties_area {
    width: 95%;
    margin: auto;
    height: auto;
}

.Latest_properties_main_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.property-box {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #007567;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

.sales-active {
    position: absolute;
    top: 10px;
    right: 10px;
    background: green;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

.property-info {
    padding: 10px;
}

.property-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.property-location i {
    color: #007567;
    margin-right: 5px;
}

.video-camera {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.video-camera i {
    margin-right: 5px;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.property-price {
    font-size: 16px;
    font-weight: bold;
    color: #007567;
    margin-bottom: 5px;
}

.property-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.property-features {
    display: flex;
    justify-content: left;
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.property-features i {
    margin-right: 5px;
}

/*  */
.Latest_properties_header {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.Latest_properties_header h2 {
    color: #007567;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;

}

.Latest_properties_header p {
    color: #666;
    padding: 5px 0px;
    width: 65%;
    margin: auto;

}

.Latest_properties_main_box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    margin: auto;
}

.property-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* .property-box:hover {
    transform: translateY(-5px);
} */

.property-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-image:hover img {
    transform: scale(1.1);
    /* Zoom effect */
}

.property-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: bold;
}

.sales-active {
    position: absolute;
    top: 10px;
    right: 80px;
    background: green;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: bold;
}

.just-active {
    position: absolute;
    top: 10px;
    right: 10px;
    background: green;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: bold;
}

.property-info {
    padding: 15px;
}

.property-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.property-location i {
    color: #007567;
    margin-right: 5px;
}

.video-camera {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.video-camera i {
    margin-right: 5px;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #D10A11;
}

.property-price {
    font-size: 18px;
    font-weight: bold;
    color: #007567;
    margin-bottom: 10px;
}

.property-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
    max-lines: 2;
}

.property-features {
    display: flex;
    justify-content: left;
    font-size: 14px;
    font-weight: bold;
    color: #555;
}


.property_facility_icon {
    margin-left: 15px;

}

/* Mobile Optimization */
@media (max-width: 768px) {
    .Latest_properties_main_box {
        grid-template-columns: 1fr;
    }
}

.property-owners_history {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding: 10px 10px;
}

.clients_details_left {
    display: flex;
    align-items: center;

}

.clients_details_left h4 {
    font-size: 15px;
    font-weight: 600;
    padding-left: 10px;
    color: #007567;
}

.client_image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #D10A11;
    overflow: hidden;

}

.client_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px 5px;
}

.clients_social_icon {
    display: flex;
    align-items: center;
}

.clients_social_icon span {
    align-items: center;
}

.clients_social_icon i {
    border: 1px solid #D10A11;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    margin: 5px;
    color: #007567;

}

.index_all_property_control_btn {
    padding: 10px;
    text-align: center;
}

.index_all_property_control_btn button {
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #D10A11;
    color: #D10A11;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 10px 5px;

}

.index_all_property_control_btn button:hover {
    background-color: #D10A11;
    color: #fff;
}

/* FAQ */
.customer_faq_ans_conteinar {
    width: 100%;
    height: auto;
}

.customer_faq_ans_conteinar_area {
    width: 95%;
    margin: auto;
    padding-bottom: 20px;
}

.customer_faq_ans_conteinar_header {
    text-align: center;
    padding: 20px;

}

.customer_faq_ans_conteinar_header h2 {
    color: #007567;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 700;


}

.customer_faq_ans_conteinar_header p {
    color: #666;
    padding: 5px 0px;
    width: 65%;
    margin: auto;

}

.customer_some_main_ques {
    width: 50%;
}

.customer_some_main_ques h3 {
    color: #007567;
    font-size: 25px;
    padding: 10px 0px;
    font-weight: 700;
}

.customer_some_main_ques p {
    color: #666;
    font-size: 15px;
    padding: 5px 0px;
    margin: auto;
}

.customer_faq_ques_area {
    display: flex;
    justify-content: left;
    margin: 0;
}

.faq-container {
    width: 50%;
    background: #fff;
    border-radius: 8px;/
}

.faq-item {
    border: 1px solid #eee;
    padding: 15px 10px;
    cursor: pointer;
    position: relative;
    margin: 5px 2px;
    background-color: #fff;

}

.faq-item h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 10px;
}

.faq-item p {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

.toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.open .toggle-icon {
    transform: rotate(180deg);
}





/* Start Footer Section */



/* Start Footer Section */

.footer_section {
    width: 100%;
    height: auto;
    background-color: #007567;
    color: #fff;
}

.footer_main_conteinar {
    width: 95%;
    height: auto;
    margin: auto;
}

.footer_conteinar {
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
}

.footer_conteinar h2 {
    padding: 5px 0px;
}

.footer_conteinar ul {
    list-style: none;
}

.footer_conteinar ul li {
    padding: 5px 0px;
}

.footer_conteinar ul a {
    text-decoration: none;
    color: #fff;
}

.footer_conteinar ul a:hover {
    color: #ff3940;
}

.footer_about_us {
    width: 25%;
    height: auto;
}

.footer_quick_link {
    width: 25%;
    height: auto;
}

.footer_Featured_Service {
    width: 25%;
    height: auto;
}

.footer_Address {
    width: 25%;
    height: auto;
}

.address_item {
    display: flex;
}

.address_item p {
    text-align: left;


}

.address_icon {
    height: auto;
}

.address_icon i {
    font-size: 25px;
    padding: 5px 15px 5px 5px;
}

.socila_icon_footer {
    padding: 20px 0px;
}

.socila_icon_footer a {
    text-decoration: none;
    color: #fff;

}

.socila_icon_footer a i {
    min-width: 40px;
    font-size: 20px;
    padding: 10px;
    background-color: #d10a11d0;
    gap: 2;

}

.socila_icon_footer a i:hover {
    background-color: #D10A11;
}




.copy_right_section {
    width: 100%;
    background-color: #31201d;
    text-align: center;
}

.copy_right_section p a {
    color: green;

}

.copy_right_section p {
    padding: 15px;

}

/* Page Animation */
@keyframes bottomToTop {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animation {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animation.visible {
    animation: bottomToTop 0.8s ease-out forwards;
}

.design_liner1 {
    width: 50px;
    height: 3px;
    background-color: #D10A11;

}

.design_liner2 {
    width: 100px;
    height: 3px;
    background-color: #D10A11;
    margin: 0px 5px;
}

.design_liner3 {
    width: 50px;
    height: 3px;
    background-color: #D10A11;
}

.lineer_box {
    display: flex;
    justify-content: center;
}