* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-optical-sizing: auto;
    font-family: "Gill Sans", sans-serif;
    scroll-behavior: smooth;
    outline: none ;
    box-shadow: none ;
}



html,
body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;

}

.no-copy {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  
    cursor: default;
    text-align: center;
  }
  

*:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
  }
  


.no-scroll {
    overflow: hidden;
  }
  

/* Navbar */

nav {
    position: fixed;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    z-index: 999;
    top: 0px;

}


.logo img {
    width: 190px;
    height: 80px;
    margin-top: 10px;
    margin-left: 15px;
    background-size: contain;
}



.project-filter-css {
    width: 360px;
    padding: 10px 14px;
    font-size: 16px;
    border: 2px solid gray;
    border-radius: 25px;
    outline: none;
    background-color: #fff;
    color: #333;
    margin-left: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='6'%3E%3Cpath%20fill='%23333'%20d='M0%200l5%206%205-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
  }
  
  .project-filter-css:hover {
    cursor: pointer;
    border: 2px solid #1A537B;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
  }




.nav-items {
    display: flex;

}

.hamburger {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.nav-items ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    text-align: center;



}

.nav-items ul li a {
    color: black;
    text-align: center;
    text-decoration: none;
    padding-right: 35px;
    font-size: 18px;


}

#login {
    font-size: 18px;
    color: #1A537B;
    padding-left: 18px;
    border-left: 2px solid black;
}

.sell-property {
    width: 100%;
    height: 40px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    padding-right: 25px;
    background-color: white;
}

.sell-property button {
    width: 180px;
    background-color: #1A537B;
    color: white;
    border-radius: 22px;
    border: none;
    padding: 10px;
    font-size: 16px;
    transition: 0.2s ease-in;
}

#content {
    margin-top: 20px;
    padding: 20px;
    font-size: 22px;
}


/* EFFECTS */

.nav-items ul li a:before {
    content: "";
    position: absolute;
    margin-top: 25px;
    height: 3px;
    width: 3%;
    background-color: #1A537B;
    border-radius: 50px;
    transform: scaleX(0);
    transition: transform 0.2s linear;


}

.nav-items ul li a:hover::before {
    transform: scaleX(1);
}

.section-8-ctn-us,
.nav-items ul li a:hover {
    color: #1A537B;
}

.section-8-ctn-us,
.sell-property button:hover {
    background-color: whitesmoke;
    color: #1A537B;
    border: 2px solid #1A537B;
    cursor: pointer;
    font-weight: 500;

}


/* Dropdown container */
.dropdown {

    position: relative;

}

.dropdown-menu {
    position: absolute;
    top: 100%;
    list-style: none;
    padding: 0;
    left: 0px;
    width: 80px;
    margin-top: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(-10px);
    text-decoration: none;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 0px;
    text-decoration: none;
    background-color: white;
    border: none;
}

.dropdown-menu li a:hover::before {
    width: 50%;
    transform: scaleX(1);
}

.dropdown-menu li a:hover {
    color: #1A537B;
}

/* Show dropdown */
.dropdown.open .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}



/* Whatsapp FLOATING BUTTON ---------------------------------------------------------------------------------------------------------------*/


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* REVIEW FLOATING BUTTON ---------------------------------------------------------------------------------------------------------------*/

.review-float {
    width: 15%;
    height: 10%;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: orangered;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: contain;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.review-float:hover {
    transform: scale(1.1);
}

.review-float h2 {
    font-size: 15px;
}


.phone-icon {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 15px;
    align-items: center;
    justify-content: center;
    background-color: #007BFF;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.phone-icon:hover {
    background-color: #0056b3;
}

.container {
    padding: 40px;
    text-align: center;
}




/* Main Section  */

main {
    width: 100%;
    height: auto;
    background-color: white;
    text-align: start;
    bottom: 0px;

}

/* Tittle of each section  */

.tittle-h1 {
    font-size: 30px;
    text-align: center;
}

.tittle-h4 {
    font-size: 19px;
    text-align: center;

}

/* Section 1 */



#section-1 {
    width: 100%;
    height: 580px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    object-fit: cover;
    display: flex;
    background-color: white;

}



.image-info {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;


}

.div_sec-1_img_container {
    height: 100%;
    width: 100%;
    position: absolute;
    filter: brightness(95%);
}


.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}


.slide.active {
    opacity: 1;
}

.section-1-content-div {
    position: relative;
}

.tittles-section-1 {
    text-align: center;
    font-size: 30px;
    margin-top: 50px;
    margin-left: 20px;
    line-height: 70px;
    color: white;
}

.tittles-section-1 h1 span {
    color: #1A537B;
}




.tittles-section-1 h2 {
    font-size: 30px;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.image-info img {
    width: 100%;
    height: 100%;
    display: none;
    background-size: contain;
    background-repeat: no-repeat;
}

.searching-options-section-1 {
    width: 100%;
    height: 100%;
    margin-top: 30%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;

}

.search-bar-section-1 button {
    cursor: pointer;
}



.purchase-sell-options-section-1 {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.purchase-sell-options-section-1 button {
    width: 140px;
    padding: 10px;
    margin-right: 25px;
    margin-bottom: 10px;
    font-size: 20px;
    border: none;
    border-radius: 22px;
    cursor: pointer;
}


.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    background: white;
    min-width: 160px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    top: 40px;
    left: 0;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1;
    
}

.dropdown-content.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-content button {
    width: 100%;
    padding: 10px;
    border: none;
    background: whitesmoke;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.dropdown-content button:last-child {
    border-bottom: none;
}

.dropdown-content button:hover {
    background-color: #174166;
    font-size: 15px;
    color: white;
}

/* Additional Filters (Hidden by Default) */
.extra-filters {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;

}

.extra-filters.show {
    display: flex;
    opacity: 1;
    gap: 10px;
}





.search-bar-section-1 {
    width: 70%;
    height: 75px;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px;
    font-size: 22px;
    border: 2px solid white;
    background-color: white;
    border-radius: 22px;
    transition: height 0.2s ease-in-out;

}

.bar-buttons {
    width: auto;
    height: auto;
    padding: 10px;
    margin-right: 20px;
    font-size: 18px;
    border: 2px solid #807B7B;
    border-radius: 22px;
    color: #807B7B;
    background-color: white;
}

#search-button {
    position: fixed;
    width: 180px;
    background-color: #1A537B;
    color: white;
    border-radius: 22px;
    border: none;
    padding: 10px;
    font-size: 18px;
    margin-left: 695px;
    transition: 0.2s ease-in;
}

.active {
    background-color: #174166;
    color: white;
}

.inactive {
    background-color: #ddd;
    color: gray;
}


/* EFFECTS */


.purchase-sell-options-section-1 button:hover {
    background-color: #1A537B;
    color: white;
}

#search-button:hover {
    background-color: whitesmoke;
    color: #1A537B;
    border: 2px solid #1A537B;
    font-weight: 500;
}




/* Section 2 */

#section-2 {
    width: 100%;
    height: 700px;
    padding-top: 75px;
    position: relative;
    background-color: white;
    overflow: hidden;
}

/* Floating Button - Left */
.float-left {
    position: fixed;
    left: 20px;
    bottom: 50%;
    background-color: #1A537B;
    color: white;
    padding: 20px;
    border-radius: 80px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: none;
    z-index: 1;
    display: none;
}

/* Floating Button - Right */
.float-right {
    position: fixed;
    right: 20px;
    bottom: 50%;
    background-color: #1A537B;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
    display: none;
}

/* Hover Effect */
.float-left:hover,
.float-right:hover {
    opacity: 0.8;
}


/* Button div property show case box */


.pscb_view-all-button {
    width: 100%;
    height: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pscb_view-all-button button {
    width: 150px;
    padding: 10px;
    font-size: 19px;
    margin-top: 20px;
    border: none;
    background-color: #1A537B;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in;
}


.pscb_view-all-button button:hover {
    background-color: #16425f;
    transform: translateY(-3px);
}


/* -------------------<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Section 3>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>-------------------------------*/



#section-3 {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.div_rera {
    width: 35%;
    height: 15%;
    background-color: green;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}


.sec-3_btn_view_details button {
    width: 120px;
    padding: 10px;
    font-size: 15px;
    border: none;
    background-color: #1A537B;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in;
}



.div_rera h4 {
    color: white;
}



/* Section 4 ----------------------------------------------------------------------*/



#section-4 {
    width: 100%;
    height: 500px;
    padding-top: 2%;
}





/* Section-5 --------------------------------------------------------------------------------------------------------------------------*/


#section-5 {
    width: 100%;
    height: 550px;
    padding-top: 2%;
    background-color: white;
}

.section-5_how_to_find {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 20%;

}

.section-5_how_to_find_img {
    height: 100%;
    width: 45%;
}

.section-5_how_to_find_content {
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.section-5_h1 {
    font-size: 40px;
}

.section-5_h3 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 400;
}

.section-5_how_to_find_content h2 {
    margin-top: 25px;
}

.section-5_how_to_find_content h2 span {
    color: #1A537B;
    font-weight: bold;
}

#section-5_how_to_find_img_top_content {
    width: 70%;
    height: 50%;
    background-size: cover;
    background-image: url("https://plus.unsplash.com/premium_photo-1661906789703-a25a1e53180e?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-repeat: no-repeat;
    object-fit: cover;
    border-radius: 20px;

}

#section-5_how_to_find_img_bottom_content {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 25px;
}

.section-5_bottom_content_no_1 {
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: whitesmoke;
    background-image: url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?q=80&w=1373&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    border-radius: 20px;
}

.section-5_bottom_content_no_2 {
    width: 80%;
    height: 100%;
    padding: 5%;
    background-color: white;
    background-image: url("pc_images/pc_images_fld/pc_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    object-fit: contain;
    border-radius: 20px;
}




/* SECTION - 6  ------------------------------------------------------------------------------------------------------------ */

#section-6 {
    width: 100%;
    height: 600px;
    padding-top: 100px;
    background-color: white;
    overflow: hidden;


}


.section-6_what_client_says {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;

}

.div_what_our_client_saying {
    width: 100%;
    height: 100%;

}


.div_what_our_client_saying h3 {
    margin-right: 30%;
}

.div_client_saying {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 2%;
}

.div_section-6_client {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.div_section_6_client_profile {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.div_section-6_circular_profile_img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: url('pc_images/icons/user_icon-.png');
    background-size: cover;
    background-position: center;
    border: 3px solid #333;
}

#div-section-6-client-profile-no_2 {
    background-image: url('pc_images/icons/user_icon-.png');
}

.div_section_6_client_message {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.div-section-6_client_feedback {
    width: 80%;
    background-color: beige;
    padding: 5%;
    border-radius: 25px;
    font-size: 15px;
}

.div-section-6_client_name {
    font-size: 20px;
    font-weight: 400;
}



/* SECTION - 8  ---------------------------------------------------------------------------------------------------------------------------- */



#section-8 {
    width: 100%;
    height: 570px;
    background-color: beige;

}

#s-8-h2 {
    text-align: center;
    font-size: 35px;
    padding-top: 5%;
}

#s-8-h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 1%;
}



#s-8-h2 span {
    color: #1A537B;

}


.div_section-8_ {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
}

.div_section-8_left_part,
.div_section-8_right_part {
    width: 50%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.div_section-8_left_part_container,
.div_section-8_right_part_container {
    width: 80%;
    height: 70%;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.div_s-8_l_p_c_left {
    height: 100%;
    width: 70%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
}

.div_s-8_l_p_c_left h2 {
    font-size: 24px;
    font-weight: 600;
}

.div_s-8_l_p_c_left h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}



.div_s-8_l_p_c_right {
    height: 100%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 60%;
    object-fit: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("pc_images/icons/home_icon.png");
}

.section-8-left_contact_button {
    width: 100%;
    height: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-8-left_contact_button button {
    width: 70%;
    padding: 10px;
    font-size: 19px;
    margin-top: 20px;
    border: none;
    background-color: #1A537B;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in;
}



.group-of-content-section-8 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 55px;
}

.content-section-8 {
    width: 23%;
    height: 290px;
    margin-right: 55px;
    border-radius: 15px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-out;

}

.content-section-8-image-div {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.content-section-8-image-div img {
    width: 72px;
    height: 72px;
    margin-top: 60px;
}

.content-section-8-text-div {
    width: 65%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.content-section-8-text-div p {
    margin-top: 10px;
    font-weight: 500;
}

.content-section-8:hover {
    cursor: pointer;
    transform: scale(1.2);
}


/* SECTION-10 - Onestop Buyer ---------------------------------------------------------------------------------------------------------------*/


#section-10-onestop_buyers {
    width: 100%;
    height: 500px;
    background-color: beige;
}

#section-10-onestop_buyers h2 {
    text-align: center;
    font-size: 30px;
    padding-top: 3%;
}

#section-10-onestop_buyers h3 {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    padding-top: 3%;
}

#div_left_part_interior_img {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-image: url("pc_images/pc_images_fld/squared_pc_logo.png");
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    background-size: contain;
    gap: 50px;

}

#intero_visit_btn a{
    text-decoration: none;
    color: white;
}


#div_right_part_interior_img {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-image: url("pc_images/Projects/wall_vista/wall_vista_logo.png");
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    background-size: contain;
    gap: 50px;
}

.div_left_right_partition {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.div_left_part_sec-10 {
    width: 40%;
    height: 80%;
    margin: 5%;
    background-color: white;
    border-radius: 5%;
}

.div_right_left_sec-10-buttons {
    width: 100%;
    height: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div_right_left_sec-10-buttons button {
    width: 150px;
    padding: 10px;
    font-size: 19px;
    margin-top: 20px;
    border: none;
    background-color: orange;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in;
}

#div_left_sec-10-buttons button {
    background-color: #1A537B;
}



/* SECTION -11  ---------Our Gallery-------------------------------------------------------------------------------------------------------------------- */



#section-11 {
    width: 100%;
    height: 600px;
    background-color: whitesmoke;
}

#section-11 h2 {
    color: black;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.div_section-11_container {
    width: 100%;
    height: 100%;
    padding: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.div_section-11_our_gallery {
    width: 90%;
    height: 90%;
    padding: 1%;
}

.div_sec-11_top_part,
.div_sec-11_bottom_part {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.div_sec-11_image_boxes {
    width: 35%;
    height: 95%;
    padding: 3%;
    margin: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    object-fit: contain;
    background-repeat: no-repeat;
    border-radius: 20px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);

}


#div_sec-11_img_box_2 {
    background-image: url("pc_images/Projects/premises_consulting/dont_do.png");
}

#div_sec-11_img_box_3 {
    background-image: url("pc_images/Projects/premises_consulting/discover_property.png");

}

#div_sec-11_img_box_4 {
    background-image: url("pc_images/Projects/premises_consulting/trust_in_expertise.png");

}

#div_sec-11_img_box_5 {
    background-image: url("pc_images/Projects/premises_consulting/navigating_property_market_alone.png");

}


.sec-11_read_more {
    width: 100%;
    height: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-11_read_more button {
    width: 150px;
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
    border: none;
    background-color: orange;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in;
}


/* SECTION - 12  ---------Looking for a property block-------------------------------------------------------------------------------------------------------------------- */


#section-12 {
    width: 100%;
    height: 200px;
    background-color: white;
}

.div_section-12_container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div_sec-12_container_block {
    width: 80%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid gray;
}


#div_sec-12_elem_imge_1 {
    width: 30%;
    height: 100%;
    background-image: url("pc_images/icons/illustration_find_home.png");
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

#div_sec-12_elem_content {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

#div_sec-12_elem_content h2 {
    font-size: 30px;
}

#div_sec-12_elem_imge_2 {
    width: 30%;
    height: 100%;
    background-image: url("pc_images/icons/Illustration_handover_key.png");
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: contain;
}

.sec-12_contact_PC_btn {
    width: 100%;
    height: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-12_contact_PC_btn button {
    width: 350px;
    padding: 10px;
    font-size: 18px;
    border: none;
    background-color: #1A537B;
    border-radius: 10px;
    color: white;
    transition: 0.2s ease-in;
}

/* SECTION - 13  ---------Most Selling Project-------------------------------------------------------------------------------------------------------------------- */



#section-13 {
    width: 100%;
    height: 500px;
    background-color: white;
}

#s-13-h2 {
    font-size: 28px;
    text-align: center;
    padding-top: 3%;
}


.div_section-13_LR_container {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div_section-13_L_Part {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div_section-13_R_Part {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.div_section-13_img_container {
    width: 85%;
    height: 85%;
    border-radius: 20px;
    position: relative;
    background-size: cover;
    object-fit: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("pc_images/Projects/palm_olympeia/premises_consulting_palm.png");
    background-color: whitesmoke;
}

.div_few_inventory_left {
    width: 45%;
    height: 10%;
    position: absolute;
    border-radius: 20px 20px 0px 0px;
    right: 0px;
    bottom: 0px;
    color: white;
    background-color: red;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div_section-13_content_container {
    width: 90%;
    height: 80%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: beige;
}

.div_section-13_content_container h2 {
    font-size: 25px;
}

.div_sec-13_cc_top {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div_sec-13_cc_top h2 {
    padding-top: 15px;
    font-size: 25px;
    color: crimson;

}

.div_sec-13_cc_top h4 {
    padding-top: 5px;
}


.div_sec-13_cc_middle {
    width: 100%;
    height: 70%;
    text-align: start;
    padding: 2%;

}

.div_sec-13_cc_middle h3 {
    font-weight: 200;
}

.div_sec-13_cc_middle h4 {
    font-weight: 600;
    line-height: 25px;
}

.div_sec-13_cc_middle h5 {
    font-weight: 400;
    font-size: 15px;
}

.div_sec-13_cc_bottom {
    width: 100%;
    height: 20%;
}


/* Section-9-Why Choose Us ----------------------------------------------------------------------------------------------------------------------------------- */



#section-9-why_choose_us {
    width: 100%;
    height: 500px;
    position: relative;
    background-image: url("pc_images/Projects/palm_olympeia/extra_tinted_palm_olympeia.png");
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;

}


#section-9-why_choose_us h4 {
    color: white;
}

.div_section-9_container_div {
    width: 100%;
    height: 100%;

}


.div_section-9_top_part {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.div_section-9_top_part span {
    color: yellowgreen;
}

.div_section-9_top_part h2 {
    font-size: 35px;
    font-weight: 600;
    color: white;
}

.div_section-9_top_part h4 {
    font-size: 25px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    color: white;
}

.div_section-9_bottom_part {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.div_section-9-bottom-boxs {
    width: 33.3%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.div_section-9-bottom-boxs h4 {
    font-size: 25px;
    margin: 5px;
}

/* SECTION - 7  ---------Second Last Footer-------------------------------------------------------------------------------------------------------------------- */



#section-7 {
    width: 100%;
    height: 200px;
    background-color: white;
    overflow: hidden;

}

.div_second_last_footer {
    width: 100%;
    height: 100%;
    background-color: beige;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#dslf_left_footer {
    width: 70%;
    height: 100%;
    font-size: x-large;
    display: flex;
    padding-left: 3%;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    line-height: 40px;
}

#dslf_left_footer h4 {
    font-size: 18px;
}

#dslf_right_footer {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* Footer ----------------------------------------------------------------------------------------------------------------------------------- */

/* Footer ----------------------------------------------------------------------------------------------------------------------------------- */

.footer-bottom-content {
    width: 100%;
    height: 250px;
    background-color: black;
    margin-bottom: 0px;

}

#row-wise-footer-dividation-top {
    width: 100%;
    height: 80%;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}

#row-wise-footer-dividation-bottom {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid white;
}

.row-wise-footer-dividation h4 {
    color: white;
    font-size: 15px;
    font-weight: 400;
}



.footer-content-boxes {
    width: 20%;
    height: 100%;
    padding: 5px;
    color: white;

}

.footer-content-boxes h2 {
    font-weight: normal;
}

.footer-content-boxes h4 {
    color: white;
    margin-top: 10px;
    font-weight: 400;
    font-size: 15px;

}

.footer-content-boxes ul {

    margin-top: 10px;
    list-style-type: none;
}

.footer-bottom-content ul li a {
    text-decoration: underline;
    font-size: 18px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;


}

.footer-content-boxes i {
    margin-right: 10px;
    margin-top: 10px;
}

.footer-content-boxe-subscribe {
    margin-top: 20px;
}


.footer-content-boxe-subscribe input {
    margin-top: 10px;
    padding: 10px;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 0 0 2px #807B7B;
    border: none;
}





.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(50%);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }




/* 🔽 Mobile Responsive Media Query */
@media (max-width: 768px) {
    nav {
        height: 50px;
        flex-direction: column;
        align-items: flex-start;

    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Gill Sans", sans-serif;
        scroll-behavior: smooth;
    }

    html,
    body {
        height: 100%;
        width: 100%;
    }

    body.noscroll {
        overflow: hidden;
    }


    .search-bar {
        width: 100%;
        margin: 10px 0;
        display: none;

    }

    .logo {
        width: 80%;
    }

    .logo img {
        width: 60%;
        height: auto;
    }

    .nav-items {
        width: 100%;
        flex-direction: column;
        margin-top: 10px;
        display: none;

    }



    .nav-items ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-items ul li {
        width: 100%;
        margin: 8px 0;
    }

    .nav-items ul li a {
        width: 100%;
        font-size: 18px;
        padding-left: 10px;
    }

    #login {
        border: none;
        padding-left: 0;
        margin-top: 10px;
    }

    .sell-property {
        display: none;
        justify-content: center;
        padding: 15px 0;
    }

    .sell-property button {
        width: 90%;
        max-width: 280px;
        font-size: 18px;
    }

    #content {
        font-size: 18px;
    }
}


/* =================== Mobile Responsive Styles - Section-1 =================== */
@media (max-width: 768px) {

    * {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;

    }

    html,
    body {
        height: 100%;
        width: 100%;
        margin: 0px;
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 24px;
        bottom: 15px;
        right: 15px;

    }

    /* Review Floating Button */
    .review-float {
        width: 50%;
        height: 8%;
        bottom: 20px;
        left: 15px;
        padding: 5px;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }



    .phone-icon {
        display: inline-flex;
    }

    .dropdown-menu li a{
        background-color: whitesmoke;
    }

    .dropdown-menu li a:hover::before {
        width: 10%;
        transform: scaleX(1);
    }



    /* Responsive Styles */
    @media (max-width: 1024px) {
        .search-bar input {
            width: 250px;
        }

        .nav-items ul li a {
            padding-right: 20px;
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {


        nav {
            flex-direction: column;
            align-items: center;
            height: auto;
        }

        .hamburger {
            display: block;
            font-size: 25px;
            cursor: pointer;
            user-select: none;
        }

        .logo {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 120px;
        }

        .logo img {
            width: 50%;
        }

        #project-filter{
            display: block;
            width: 85%;
            margin: 10px;
        }

        #project-size-filter{
            display: block;
            width: 85%;
        }

        .search-bar input {
            width: 100%;
        }

        .sell-property {
            display: none;
        }

        .nav-items {
            width: 100%;
            height: auto;
            display: block;
            flex-direction: column;
            background: white;
            overflow: hidden;
            justify-content: start;
            align-items: start;
        }


        #menuList {
            transition: all 0.5s;
        }

        .search-bar {
            display: block;
        }

        .nav-items ul {
            width: 100%;
            padding-left: 10px;
            text-align: left;

        }

        .nav-items ul li a {
            padding: 10px 0;
            display: block;
        }
    }



    /* Section-1 Image + Content */
    #section-1 {
        width: 100%;
        height: 580px;
        flex-direction: column;
        margin-top: 110px;
        overflow: hidden;
        
    }

    .div_sec-1_img_container {
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: top;
    }


    .image-info {
        width: 100%;
        height: auto;
        object-fit: contain;
        background-size: contain;
        background-position: center;

    }

    .div_sec-1_img_container {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }


    .tittles-section-1 {
        font-size: 24px;
        line-height: 40px;
        margin-top: 300px;
    }

    .tittles-section-1 h2 {
        font-size: 22px;
    }

    .searching-options-section-1 {
        margin-top: 10%;
        width: 100%;
        padding: 0 10px;
    }

    .purchase-sell-options-section-1 {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .purchase-sell-options-section-1 button {
        width: 120px;
        font-size: 16px;
        margin: 5px;
    }

    .search-bar-section-1 {
        width: 100%;
        height: auto;
        display: flex;
        align-items: stretch;
        padding: 10px;

    }

    .bar-buttons {
        width: 100%;
        margin: 5px 0;
        font-size: 16px;
    }



    #search-button{
        display: block;
        width: 65%;
        margin: 70px 0px 0px 35px;
    }


    .dropdown-content {
        top: 45px;
        left: 0;
        min-width: 100%;
        z-index: 1;
    }

    /* Extra filters on mobile */
    .extra-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        z-index: 2;
    }

    /* Main content spacing */
    main {
        width: 100%;
        height: auto;
        padding-bottom: 100px;
        /* To avoid float button overlap */
    }

    /* Title headers */
    .tittle-h1 {
        font-size: 24px;
    }

    .tittle-h4 {
        font-size: 16px;
    }
}


/* ========== Mobile Responsive Styles for Section 2 ========== */
@media (max-width: 768px) {

    #section-2 {
        height: auto;
        width: 100%;
        padding: 20px 10px;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .float-left,
    .float-right {
        display: none;
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 40px;
    }

    .float-left {
        left: 10px;
        bottom: 45%;
    }

    .float-right {
        right: 10px;
        bottom: 45%;
    }

    .boxs-section-our-luxury-project {
        flex-direction: column;
        flex-wrap: nowrap;
        height: auto;
        overflow-x: hidden;
    }

    .div_section-2_olap_slider {
        width: 100%;
        flex-direction: column;
        padding: 10px;
        gap: 20px;
    }

    .property_Show_case_box {
        width: 100%;
        height: auto;
        padding: 10px;
        margin-bottom: 20px;
    }

    .img_div_pscb {
        height: 200px;
        background-position: center;
    }

    .div_ready_to_move {
        width: 40%;
        font-size: 12px;
        padding: 5px;
        text-align: center;
    }


    .details_div_pscb h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .details_div_pscb h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .button_eq_pscb {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .button_eq_pscb button {
        width: 100%;
        font-size: 15px;
    }

    .pscb_view-all-button button {
        width: 80%;
        font-size: 16px;
        padding: 10px;
        margin-top: 15px;
    }

    .pscb_view-all-button button i {
        display: none;
    }

    .text-box-luxury-projects {
        padding: 5px 0;
    }
    
}




/* ========== Mobile Responsive Styles for Section 3 & 4 ========== */
@media (max-width: 768px) {

    /* ---------- Section 3 ---------- */
    #section-3 {
        width: 100%;
        height: auto;
        padding: 20px 10px;
    }

    .div_rera {
        width: 40%;
        height: auto;
        padding: 10px;
        margin-bottom: 15px;
        justify-content: center;
        text-align: center;
    }

    .div_rera h4 {
        font-size: 14px;
    }

    .div_section-3_bottom_button_part {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .sec-3_btn_view_details,
    .sec-3_btn_get_enquire {
        width: 100%;
        margin-bottom: 10px;
    }

    .sec-3_btn_view_details button,
    .sec-3_btn_get_enquire button {
        width: 90%;
        font-size: 14px;
    }

    /* ---------- Section 4 ---------- */
    #section-4 {
        height: auto;
        padding: 30px 10px;
    }

    .div_tittle_section {
        margin-top: 15%;
        padding-top: 20px;
    }

    .section-4 h1 {
        font-size: 22px;
        padding-top: 20px;
    }






    /* =================== Responsive Design for Section 5, 6, and 8 =================== */

    @media (max-width: 768px) {

        /* ---------- Section 5 ---------- */
        #section-5 {
            height: auto;
            margin-top: 15%;
            padding: 20px 10px;
        }

        .section-5_how_to_find {
            flex-direction: column;
            gap: 20px;
        }

        .section-5_how_to_find_img {
            width: 100%;
            height: auto;
        }

        .section-5_how_to_find_content {
            width: 100%;
            height: auto;
            padding: 2%;
        }

        .section-5_h1 {
            font-size: 26px;
        }

        .section-5_h3 {
            font-size: 16px;
            text-align: start;
        }

        #section-5_how_to_find_img_top_content {
            width: 100%;
            height: 250px;
            background-position: center;
        }

        #section-5_how_to_find_img_bottom_content {
            flex-direction: column;
            gap: 15px;
            padding: 10px 0;
        }

        .section-5_bottom_content_no_1,
        .section-5_bottom_content_no_2 {
            width: 90%;
            height: 200px;
        }

        /* ---------- Section 6 ---------- */
        #section-6 {
            height: auto;
            padding: 60px 10px 30px;
        }

        .section-6_what_client_says {
            flex-direction: column;
            padding: 0;
        }

        .div_what_our_client_saying h3 {
            margin: 0 auto;
            text-align: start;
            font-size: 15px;
            padding-bottom: 15px;
        }

        .div_client_saying {
            padding: 10px;
        }

        .div_section-6_client {
            flex-direction: column;
            gap: 20px;
        }

        .div_section_6_client_profile,
        .div_section_6_client_message {
            width: 100%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        .div_section-6_circular_profile_img {
            width: 100px;
            height: 100px;
        }

        .div-section-6_client_feedback {
            width: 100%;
            font-size: 14px;
            padding: 15px;
            text-align: center;
        }

        .div-section-6_client_name {
            font-size: 16px;
            margin-top: 10px;
        }



        /* ---------- Section 8 ---------- */


        #section-8 h2 {
            font-size: 25px;

        }


        #section-8 h2 span {
            font-size: 25px;
        }


        #section-8 h4 {
            margin-top: 20px;
        }

        .div_section-8_ {
            margin-top: 30px;
        }

        .group-of-content-section-8 {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .content-section-8 {
            width: 90%;
            height: auto;
            flex-direction: column;
            margin-right: 0;
            padding: 15px;
            text-align: center;
            transition: none;
        }

        .content-section-8-image-div {
            width: 100%;
            height: auto;
            justify-content: center;
            margin-bottom: 10px;
        }

        .content-section-8-image-div img {
            width: 60px;
            height: 60px;
            margin-top: 0;
        }

        .content-section-8-text-div {
            width: 100%;
            padding: 10px;
            align-items: center;
        }

        .content-section-8-text-div p {
            font-size: 14px;
        }

        .content-section-8:hover {
            transform: none;
        }

        .section-8-left_contact_button button i {
            display: none;
        }


    }


    #section-8 {
        height: auto;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #s-8-h2 {
        font-size: 26px;
    }


    #s-8-h4 {
        font-size: 16px;
    }

    .div_section-8_ {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .div_section-8_left_part,
    .div_section-8_right_part {
        width: 80%;
        height: 50%;
    }

    .div_section-8_left_part_container,
    .div_section-8_right_part_container {
        width: 100%;
        flex-direction: column;
        padding: 20px;
        height: 30%;
    }

    .div_s-8_l_p_c_left {
        width: 100%;
        padding: 10px;
        align-items: center;
        text-align: center;
    }

    .div_s-8_l_p_c_left h2 {
        font-size: 20px;
    }

    .div_s-8_l_p_c_left h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .div_s-8_l_p_c_right {
        width: 100%;
        height: 150px;
        background-size: 40%;
    }

    .section-8-left_contact_button {
        width: 100%;
        margin-top: 10px;
    }

    .section-8-left_contact_button button {
        width: 90%;
        font-size: 16px;
        padding: 10px;
    }

    #section-8 h2 span {
        font-size: 30px;
    }
}



/* ---------------------------------- Responsive CSS for Mobile Devices ---------------------------------- */

@media screen and (max-width: 768px) {

    /* SECTION 10 - Onestop Buyer */
    #section-10-onestop_buyers {
        height: 100%;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }

    #section-10-onestop_buyers h2,
    #section-10-onestop_buyers h3 {
        font-size: 22px;
    }

    .div_left_right_partition {
        margin: 20px;
        flex-direction: column;
        height: 50%;
        width: 80%;
    }



    .div_left_part_sec-10 {
        width: 90%;
        height: auto;
        margin: 10px 0;
        border-radius: 10px;
    }

    #div_left_part_interior_img,
    #div_right_part_interior_img {
        background-size: contain;
        height: 200px;
        width: 100%;
    }

    .div_right_left_sec-10-buttons button {
        width: 60%;
        font-size: 16px;
        margin-top: 10px;
    }

    .div_right_left_sec-10-buttons button i {
        display: none;
    }

    /* SECTION 11 - Our Gallery */
    #section-11 {
        height: auto;
        padding: 20px 10px;
    }

    #section-11 h2 {
        font-size: 24px;
    }

    .div_section-11_container {
        padding: 20px;
    }

    .div_section-11_container h2 {
        padding: 20px;
    }

    .div_sec-11_top_part,
    .div_sec-11_bottom_part {
        flex-direction: column;
        height: auto;
    }

    .div_sec-11_image_boxes {
        width: 90%;
        height: 200px;
        margin: 10px 0;
        padding: 10px;
        display: flex;
        justify-content: space-around;
        align-items: center;

    }

    #div_sec-11_img_box_1 {
        margin-top: 0px;
    }

    .sec-11_read_more button {
        width: 80%;
        font-size: 15px;
    }

    /* SECTION 12 - Looking for a property block */
    #section-12 {
        height: auto;
        padding: 20px 10px;
    }

    .div_sec-12_container_block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
        gap: 20px;
        width: 90%;
    }

    #div_sec-12_elem_imge_1 {
        width: 70%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: contain;
        object-fit: contain;
    }

    #div_sec-12_elem_imge_2 {
        display: none;
    }

    #div_sec-12_elem_content {
        width: 100%;
        text-align: center;
    }

    #div_sec-12_elem_content h2 {
        font-size: 23px;
    }

    .sec-12_contact_PC_btn button {
        width: 90%;
        font-size: 16px;
        margin-top: 20px;
    }


    .sec-12_contact_PC_btn button i {
        display: none;
    }


    /* SECTION 13 - Most Selling Project */
    #section-13 {
        height: auto;
        padding: 20px 10px;
    }

    #s-13-h2 {
        font-size: 22px;
    }

    .div_section-13_LR_container {
        flex-direction: column;
    }

    .div_section-13_L_Part,
    .div_section-13_R_Part {
        width: 100%;
        height: auto;
        margin: 25px;
    }

    .div_section-13_img_container {
        width: 100%;
        height: 250px;
        background-position: center;
    }

    .div_few_inventory_left {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .div_section-13_content_container {
        width: 100%;
        padding: 10px;
    }

    .div_section-13_content_container h2 {
        font-size: 20px;
    }

    .div_sec-13_cc_middle h3,
    .div_sec-13_cc_middle h4,
    .div_sec-13_cc_middle h5 {
        font-size: 14px;
        line-height: 20px;
    }

    .div_sec-13_cc_top h2 {
        font-size: 20px;
    }

    .div_sec-13_cc_top h4 {
        font-size: 16px;
    }
}



/* Responsive Styles for Mobile Devices */
@media (max-width: 768px) {

    /* Section 7 - Second Last Footer */


    #section-7 {
        width: 100%;
        height: 250px;
    }

    .div_second_last_footer {
        flex-direction: column;
        height: auto;
        padding: 20px 10px;
    }

    #dslf_left_footer,
    #dslf_right_footer {
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 10px 0;
    }

    #dslf_left_footer h2 {
        font-size: 25px;
        text-align: start;
        line-height: 30px;

    }

    #dslf_left_footer h4 {
        line-height: 20px;
        text-align: start;
        margin-top: 10px;
    }





    /* Section 9 - Why Choose Us */
    #section-9-why_choose_us {
        width: 100%;
        height: 500px;
        padding: 2%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .div_section-9_top_part {
        text-align: center;
    }

    .div_section-9_top_part h2 {
        font-size: 28px;
    }


    .div_section-9_bottom_part {
        flex-direction: row;
        text-align: center;

    }

    .div_section-9-bottom-boxs {
        width: 100%;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .div_section-9-bottom-boxs i {
        width: 50%;
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div_section-9_top_part h4,
    .div_section-9-bottom-boxs h4 {
        font-size: 18px;
        text-align: center;
    }

    /* ----------------------------<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Footer>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>---------------------------------------- */


    .footer-bottom-content {
        height: auto;
    }

    #row-wise-footer-dividation-top {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #row-wise-footer-dividation-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .footer-content-boxes {
        width: 90%;
        text-align: center;
    }

    .footer-content-boxes ul {
        padding-left: 0;
    }

    .footer-content-boxes h4,
    .footer-content-boxes h2 {
        text-align: center;
    }




    /* Floating Enquiry Form */


    .form-container h2 {
        font-size: 22px;
    }

    input,
    textarea {
        font-size: 16px;
    }

    .close-btn {
        font-size: 16px;
    }

    #enquiryForm {
        width: 90%;
        height: auto;
        padding: 10px;
        z-index: 1;
    }

    /* Sell Property Form */
    .form-container {
        width: 90%;
        z-index: 1;

    }

}