@media(max-width: 1199px){
    header{
        padding: 15px 2%;
    }
    header nav .logo img{
        width: 140px;
    }
    header nav{
        gap: 15px;
    }
    header nav ul{
        gap: 15px;
    }
}

@media(max-width: 991px){
    header .menu-button {
        display: grid;
    }
    header nav ul{
        display: none;
    }
    .banner .content h2 {
        font-size: 38px;
    }
    .banner .content p {
        font-size: 26px;
    }
    .about_us_img_2 {
        margin-top: 0;
    }
}

@media(max-width: 768px){
    .banner img{
        aspect-ratio: 3/4;
        object-fit: cover;
    }
    .property_sec .property_type ul li{
        width: 49%;
    }
}

@media (max-width: 600px) {
    header .visit_btn{
        display: none;
    }
    .banner .content p {
        font-size: 18px;
    }
    .banner .content h2 {
        font-size: 26px;
    }
    .banner_slider .slick-arrow{
        top: auto;
        bottom: 5%;
    }
    .banner_slider .slick-arrow.slick-prev {
        left: 50%;
        transform: translate(-108%, 0%);
    }
    .banner_slider .slick-arrow.slick-next {
        right: 50%;
        transform: translate(108%, 0%);
    }
    .heading h2 {
        font-size: 28px;
    } 
    .faq_accordion .accordion-button span{
        font-size: 15px !important;
    }
}

@media(max-width: 991px){
    header{
        justify-content: space-between;
    }
    header .header_right{
        flex: 0 0 auto;
    }
    header .header_right .call_btn span{
        display: none; /* optional: keep just the icon on mobile */
    }
    header nav{
        flex: 1;
        justify-content: start;
        gap: 0;
    }
    header nav .logo img{
        width: 120px;
    }
    header .header_left{
        flex: 0 0 auto;
        gap: 15px;
    }
    header .menu-button {
        display: grid;
        place-items: center;
    }
    header .mobile_menu ul{
        display: flex; /* overrides the desktop ul display:none */
    }
    header .mobile_menu{
        max-height: 0;
        overflow: hidden;
        clip-path: none; /* simpler height-based animation instead of clip-path */
    }
    header .mobile_menu.active{
        max-height: 400px;
    }
}

@media(max-width: 600px){
    header{
        padding: 12px 4%;
    }
    header .header_right .call_btn{
        font-size: 0; /* hide text, keep icon */
    }
    header .header_right .call_btn i{
        display: none; /* show icon */
    }
    header nav .logo img{
        width: 100px;
    }
}


/* footer */

.links_s{
    position: relative;
    left: 9%;
}

@media(max-width: 991px){
    .links_s{
    position: relative;
    left: 0%;
    }
}