body{
    background:#f4f6f9;
    font-family:'Poppins',sans-serif;
}

/* SECTION */
.property-sec{
   padding: 30px 0px 20px;
    background:#f7f7f7;
}

/* HEADING */
.sec-title{
    font-size:34px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

/* TABS */
.property-tabs{
    display:flex;
    gap:12px;
    margin-bottom:30px;
}

.property-tabs button{
    border:none;
    background:#fff;
    padding:10px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    color:#111;
    transition:.3s;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.property-tabs button.active{
    background:#111827;
    color:#fff;
}

/* CARD */
.property-card{
    background:#fff;
    border-radius:0px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #ececec;
    box-shadow:0 4px 18px rgba(0,0,0,0.05);
    height:100%;
    width: 280px;
}

.property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.property-img{
    position:relative;
    height:180px;
    overflow:hidden;
}

.property-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.property-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */
.property-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

/* TOP BADGE */
.top-badge{
    position:absolute;
    top:14px;
    left:14px;
    background:#ffffff;
    color:#111;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* IMAGE COUNT */
.image-count{
    position:absolute;
    bottom:14px;
    left:14px;
    background: #eefdf3;
    color: #10b981;
    font-weight: 600;
    padding:5px 10px;
    border-radius:0px;
    font-size:13px;
}

/* CONTENT */
.property-content{
    padding:18px;
}

/* TITLE */
.property-title{
    font-size:18px;
    font-weight:700;
    color:#111827;
    margin-bottom:5px;
    line-height:22px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.property-title.two-line-row{
    min-height:44px; /* 22px × 2 */
}
/* TYPE */
.property-type{
    font-size:13px;
    color:#6b7280;
    margin-bottom:5px;
}

/* PRICE */
.property-price{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.property-price span{
    font-size:15px;
    color:#666;
    font-weight:500;
}

/* INFO */
.property-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:5px;
}

.location{
    font-size:12px;
    color:#555;
}

.status{
    background:#eefdf3;
    color:#10b981;
    font-size:12px;
    padding:5px 10px;
    border-radius:20px;
    font-weight:600;
}

/* BUTTONS */
.property-btns{
    display:flex;
    gap:10px;
}

.btn-enquire{
    width:47%;
    border:none;
    background: #000;
    color:#fff;
    padding:4px;
    border-radius:0px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-enquire1{
    /* width:47%; */
    border:none;
    background: #000;
    color:#fff;
    padding:4px;
    border-radius:0px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp{
    width:50%;
    border:none;
    border:1px solid #000;
    color:#000;
    padding:11px;
    border-radius:0px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-enquire:hover{
    background:#000;
}
.btn-enquire1:hover{
    background:#000;
}

.btn-whatsapp:hover{
    background:#15be57;
}

.btn-enquire i,
.btn-whatsapp i{
    margin-right:5px;
}

.btn-enquire1 i,
.btn-whatsapp i{
    margin-right:5px;
}

/* MOBILE */
@media(max-width:767px){

.property-img{
    height:200px;
}

/* CARD */
.property-card{
    background:#fff;
    border-radius:0px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #ececec;
    box-shadow:0 4px 18px rgba(0,0,0,0.05);
    height:100%;
    width: 100%;
}

}



/* TITLE CENTER */
.sec-title{
    text-align:center;
}

/* TABS CENTER */
.tabs{
    display:flex;
    /* justify-content:center; */
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

/* TAB BUTTON */
.tab{
    border:none;
    background:#fff;
    padding:12px 20px;
    border-radius:0px;
    font-size:18px;
    font-weight:600;
    color:#111;
    transition:.3s;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

/* ACTIVE TAB */
.tab.active{
    background:#000;
    color:#fff;
}

/* TAB CONTENT */
.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}


/* =========================
   OPEN BUTTON
========================= */

.open-popup-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    padding:14px 34px;
    background:#003b95;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

/* =========================
   POPUP OVERLAY
========================= */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   POPUP BOX
========================= */

.popup-box{
    width:540px;
    max-width:95%;
    background:#000;
    border-radius:0px;
    padding:45px 45px 40px;
    position:relative;
    overflow:hidden;

    transform:translateY(30px);
    transition:.4s;
}

.popup-overlay.active .popup-box{
    transform:translateY(0);
}

/* Border */
.popup-box::before{
    content:"";
    position:absolute;
    inset:22px;
    border:1px solid #fff;
    pointer-events:none;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-popup {
    position: absolute;
    top: 1px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #f3f3f3;
    border-radius: 50px;
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    z-index: 10;
}

.close-popup:hover{
    transform:rotate(90deg);
}

.close-popup i{
    font-size:20px;
    color:#000;
}

/* =========================
   TITLE
========================= */

.popup-title{
    color:#fff;
    font-size: 20px;
    font-weight:700;
    font-family:Georgia, serif;
    margin-bottom: 24px;
}

/* =========================
   FORM
========================= */

.form-row{
    display:flex;
    gap: 10px;
    margin-bottom: 1px;
}

.form-group{
    width:100%;
}

.popup-input{
 width: 100%;
    height: 52px;
    border: none;
    outline: none;
    border-radius: 0px;
    background: #efefef;
    padding: 0 18px;
    font-size: 15px;
    box-sizing: border-box;
}

.popup-input::placeholder{
    color:#666;
    font-weight:500;
}

.popup-textarea{
    width:100%;
    height:60px;
    border:none;
    outline:none;
    border-radius:10px;
    background:#efefef;
    padding:16px 22px;
    font-size:18px;
    resize:none;
}

/* =========================
   CHECKBOX
========================= */

.checkbox-wrapper{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:12px 0 28px;
}

.checkbox-wrapper input{
    width:21px;
    height:21px;
    margin-top:5px;
    cursor:pointer;
}

.checkbox-wrapper label{
    color:#fff;
    font-size: 12px;
    line-height:1.7;
}

.checkbox-wrapper a{
    color:#fff;
}

/* =========================
   BUTTONS
========================= */

.popup-buttons{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.submit-btn{
    height: 40px;
    min-width: 100px;
    border-radius:0px;
    padding: 6px;
    border:1.5px solid #fff;
    background:transparent;
    color:#fff;
    font-size: 16px;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#fff;
    color:#003b95;
}

.whatsapp-btn{
    height: 40px;
    padding:0 28px;
    background:#25D366;
    border-radius:0px;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap: 10px;
    font-size: 14px;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
}

.whatsapp-btn i{
    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .popup-box{
        padding:30px 20px;
    }

    .popup-box::before{
        inset:14px;
    }

    .popup-title{
        font-size:28px;
        margin-bottom:24px;
    }

    .form-row{
        flex-direction:column;
        gap:18px;
        margin-bottom:18px;
    }

    .close-popup{
        width:58px;
        height:58px;
        top:16px;
        right:16px;
    }

    .close-popup i{
        font-size:24px;
    }

    .popup-buttons{
        flex-direction:column;
    }

    .submit-btn,
    .whatsapp-btn{
        width:100%;
        justify-content:center;
    }

}
.rightnavsection{
    display:flex;
    align-items:center;
    gap:18px;
}



/* ICONS */
.header-icon{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,0.5);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.header-icon:hover{
    background:#fff;
    color:#000;
}

/* HAMBURGER */
.menu-toggle{
    width:40px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    gap:7px;
}

.menu-toggle span{
    width:100%;
    height:3px;
    background:#fff;
    border-radius:10px;
    display:block;
}

/* MOBILE */
@media(max-width:767px){

    #btngetintouch{
        display:none;
    }

    .rightnavsection{
        gap:12px;
    }

    .header-icon{
        width:38px;
        height:38px;
        font-size:17px;
        display:none;
    }

    .menu-toggle{
        width:32px;
    }
}
/* HAMBURGER */
.menu-toggle{
    width:40px;
    display:flex;
    flex-direction:column;
    gap:7px;
    cursor:pointer;
    position:relative;
    /* z-index:9999999; */
}

.menu-toggle span{
    width:100%;
    height:3px;
    background:#fff;
    border-radius:20px;
    transition:.3s;
}

/* OVERLAY */
.sidebar-overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    left:0;
    top:0;
    z-index:999998;
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
    backdrop-filter:blur(4px);
}

/* ACTIVE */
.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* SIDEBAR */
.sidebar-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:380px;
    max-width:100%;
    height:100vh;
    background:#ffffff;
    z-index:999999;
    transition:.45s cubic-bezier(.77,0,.18,1);
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:15px 0 40px rgba(0,0,0,.15);
}

/* OPEN */
.sidebar-menu.active{
    left:0;
}

/* TOP */
.sidebar-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:25px 25px 15px;
    border-bottom:1px solid #ededed;
}

/* LOGO */
.sidebar-logo{
    font-size:34px;
    font-weight:700;
    color:#000;
    letter-spacing:2px;
}

/* CLOSE */
.close-menu{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
    color:#000;
    transition:.3s;
}

.close-menu:hover{
    background:#000;
    color:#fff;
}

/* LINKS */
.sidebar-links{
    list-style:none;
    padding:10px 25px 40px;
    margin:0;
}

/* MENU ITEM */
.sidebar-links li{
    border-bottom:1px solid #efefef;
}

/* LINK */
.sidebar-links li a{
    text-decoration:none;
    color:#111;
    font-size:18px;
    font-weight:500;
    letter-spacing:.5px;
}

/* TOGGLE */
.submenu-toggle{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 0;
    cursor:pointer;
    transition:.3s;
}

/* HOVER */
.submenu-toggle:hover{
    padding-left:8px;
}

/* ARROW */
.submenu-arrow{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    color:#000;
    font-size:12px;
}

/* ACTIVE */
.has-submenu.active .submenu-arrow{
    background:#000;
    color:#fff;
    transform:rotate(45deg);
}

/* SUBMENU */
.submenu{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
    padding-left:12px;
}

/* SHOW */
.has-submenu.active .submenu{
    max-height:500px;
    padding-bottom:18px;
}

/* SUBMENU LINKS */
.submenu li{
    border:none;
}

.submenu li a{
    display:block;
    padding:12px 0;
    font-size:15px;
    font-weight:500;
    color:#666;
    transition:.3s;
}

/* HOVER */
.submenu li a:hover{
    color:#000;
    padding-left:10px;
}

/* NORMAL LINKS */
.sidebar-links > li > a{
    display:block;
    padding:22px 0;
    transition:.3s;
}

/* HOVER */
.sidebar-links > li > a:hover{
    color:#000;
    padding-left:8px;
}

/* FOOTER */
.sidebar-footer{
    background:#000;
    padding:35px 25px;
}

/* FOOTER LINKS */
.footer-links a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:14px;
    font-size:16px;
    transition:.3s;
}

.footer-links a:hover{
    padding-left:8px;
}

/* SOCIAL */
.social-icons{
    display:flex;
    gap:14px;
    margin-top:28px;
}

/* SOCIAL ICON */
.social-icons a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:767px){

    .sidebar-menu{
        width:100%;
    }

    .sidebar-links li a{
        font-size:16px;
    }

}
/* =========================
   DEVELOPERS BUTTON
========================= */

.developer-dropdown{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
}

/* #developerBtn{
    height:115px;
    padding:0 42px;
    border:none;
    background:#f3f3f3;
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s ease;
}

#developerBtn i{
    font-size:13px;
    transition:.3s ease;
} */

.developer-dropdown:hover #developerBtn i{
    transform:rotate(180deg);
}

/* =========================
   MEGA MENU
========================= */

.developer-megamenu {
    position: fixed;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    width: 86%;
    border-radius: 12px;
    max-width: 1400px;
    background: #f5f5f5;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 999999;
    border-top: 2px solid #0f8b8d;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

/* SHOW */
.developer-dropdown:hover .developer-megamenu{
    opacity:1;
    visibility:visible;
}

/* TITLE */
.mega-title{
    padding:20px;
    font-size:18px;
    font-weight:700;
    color:#1f2937;
    border-bottom:1px solid #d8d8d8;
    letter-spacing:1px;
}

/* GRID */
.developer-grid{
     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 12px 30px;
}

/* COLUMN */
.developer-column{
    display:flex;
    flex-direction:column;
}

/* LINKS */
.developer-column a{
    text-decoration:none;
     text-decoration: none;
    color: #1f2937;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid #000000;
    transition: .3s ease;
}

/* HOVER */
.developer-column a:hover{
    color:#000;
    padding-left:10px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1200px){

    .developer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    #developerBtn{
            width: 150px;
    padding: 8px 5px 8px 0px;
    }

    .developer-megamenu{
        top:70px;
        max-width:100%;
    }

    .developer-grid{
        /* grid-template-columns:1fr; */
        padding:20px;
        gap:10px;
    }

    .developer-column a{
        font-size:12px;
        padding: 7px 12px;
    }

    .mega-title{
        padding:20px;
        font-size:15px;
    }

    

}

/* =========================
SECTION
========================= */

.market-section{
    padding:50px 0;
    background:#f7f7f7;
}

.market-container{
    max-width:1650px;
    margin:auto;
    padding:0 35px;
}

/* =========================
TOP BAR
========================= */

.market-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

/* HEADING */

.market-heading{
    font-size:35px;
    line-height:1.1;
    color:#1d1d1d;
    font-weight:300;
    margin:0;
}

/* =========================
LEFT RIGHT BUTTONS
========================= */

.tabs-nav-buttons{
    display:flex;
    align-items:center;
    gap:14px;
}

/* BUTTON */

.tab-scroll-btn{
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#000;
    font-size:18px;
    font-weight:400;
    cursor:pointer;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    line-height:1;
}

/* HOVER */

.tab-scroll-btn:hover{
    background:#000;
    color:#fff;
    transform:scale(1.08);
}

/* =========================
TABS WRAPPER
========================= */

.tabs-wrapper{
    display:flex;
    gap:22px;
    overflow-x:auto;
    overflow-y:hidden;
    flex-wrap:nowrap;
    scroll-behavior:smooth;
    scrollbar-width:none;
    margin-bottom:30px;
}

.tabs-wrapper::-webkit-scrollbar{
    display:none;
}

/* TAB BUTTON */

.custom-tab-btn{
    min-width:max-content;
    white-space:nowrap;
    padding:0 30px;
    height:50px;
    border:1px solid #49586b;
    background:#fff;
    color:#2b3e55;
    font-size:20px;
    font-weight:500;
    transition:.3s ease;
    cursor:pointer;
    flex-shrink:0;
    border-radius:0px;
}

.custom-tab-btn.active{
       background: #000;
    color: #fff;
    border-color: #000;
}

.custom-tab-btn:hover{
    background:#000;
    color:#fff;
}

/* =========================
TAB CONTENT
========================= */

.links-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

/* LIST */

.trend-list{
    list-style:none;
    padding:0;
    margin:0;
}

.trend-list li{
    margin-bottom:20px;
}

.trend-list li a{
    text-decoration:none;
    color:#010101;
    font-size:18px;
    font-weight:500;
    transition:.3s ease;
    line-height:normal;
    display:inline-block;
}

.trend-list li a:hover{
    color:#000;
    transform:translateX(6px);
}

/* HIDDEN */

.hidden-item{
    display:none;
}

.hidden-item.show{
    display:block;
}

/* =========================
VIEW MORE BUTTON
========================= */

.btn-wrap{
    text-align:center;
    margin-top:45px;
}

.view-btn{
   min-width: 240px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background: #000;
    border: 1px solid #000000;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: .3s ease;
}

.view-btn:hover{
    background:#000000;
}

/* =========================
MOBILE
========================= */

@media(max-width:1199px){

    .links-grid{
        grid-template-columns:repeat(2,1fr);
        gap:50px;
    }

}

@media(max-width:767px){

    .market-section{
        padding:45px 0;
    }

    .market-heading{
        font-size:38px;
    }

    .market-topbar{
        margin-bottom:30px;
    }

    .tabs-wrapper{
        gap:12px;
        margin-bottom:40px;
    }

    .custom-tab-btn{
        height:56px;
        padding:0 22px;
        font-size:15px;
    }

    .tab-scroll-btn{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .links-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .trend-list li a{
        font-size:17px;
    }

    .view-btn{
        width:100%;
        min-width:100%;
        height:56px;
        font-size:17px;
    }

}

/* =========================
MOBILE FIX
========================= */

@media(max-width:767px){

    /* SECTION */

    .market-section{
        padding:40px 17px;
    }

    .market-container{
        padding:0 15px;
    }

    /* TOP BAR */

    .market-topbar{
        margin-bottom:22px;
        align-items:center;
    }

    /* HEADING */

    .market-heading{
        font-size:28px;
        line-height:1.25;
        width:100%;
        max-width:220px;
    }

    /* ARROWS */

    .tabs-nav-buttons{
        gap:8px;
        flex-shrink:0;
    }

    .tab-scroll-btn{
        width:38px;
        height:38px;
        min-width:38px;
        font-size:18px;
        box-shadow:0 4px 10px rgba(0,0,0,.10);
    }

    /* TABS */

    .tabs-wrapper{
        gap:10px;
        margin-bottom:30px;
        padding-bottom:5px;
    }

    .custom-tab-btn{
        height:48px;
        padding:0 18px;
        font-size:14px;
        border-radius:8px;
    }


    .developer-main-heading {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin: 0;
    }

    /* GRID */

    .links-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    /* LIST */

    .trend-list li{
        margin-bottom:18px;
    }

    .trend-list li a{
        font-size:15px;
        line-height:1.5;
    }

    /* VIEW MORE BUTTON */

    .btn-wrap{
        margin-top:25px;
    }

    .view-btn{
        width:100%;
        min-width:100%;
        height:52px;
        font-size:15px;
        border-radius:10px;
    }

}

 .property-tabs-wrapper {
                display: flex;
                gap: 10px;
                overflow-x: auto;
                overflow-y: hidden;
                flex-wrap: nowrap;
                scroll-behavior: smooth;
                scrollbar-width: none;
                margin-bottom: 30px;
            }

            .property-tabs-wrapper::-webkit-scrollbar {
                display: none;
            }

            .property-tab-btn {
                min-width: max-content;
                white-space: nowrap;
                padding: 0 30px;
                height: 50px;
                border: 1px solid #49586b;
                background: #fff;
                color: #2b3e55;
                font-size: 20px;
                border-radius: 0px;
                font-weight: 500;
                transition: .3s ease;
                cursor: pointer;
                flex-shrink: 0;
            }

            .property-tab-btn.active {
                background: #000;
                color: #fff;
                border-color: #000;
            }

            .property-tab-btn:hover {
                background: #000;
                color: #fff;
            }


            @media (max-width: 767px) {
                .property-tabs-wrapper {
                    gap: 10px;
                    margin-bottom: 30px;
                    padding-bottom: 5px;
                }


            }

            @media (max-width: 767px) {
                .property-tab-btn {
                    height: 48px;
                    padding: 0 18px;
                    font-size: 14px;
                    border-radius: 8px;
                }
            }


              /* =========================
SECTION
========================= */

            .developer-property-section {
                padding: 50px 0;
                background: #ffffff;
            }



            /* =========================
TOP BAR
========================= */

            .developer-topbar {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
                margin-bottom: 24px;
            }

            /* HEADING */

            .developer-heading-wrap {
                font-size: 35px;
                line-height: 1.1;
                color: #1d1d1d;
                font-weight: 300;
                margin: 0;
            }

            .developer-subtitle {
                display: inline-block;
                font-size: 14px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: #b48a5a;
                margin-bottom: 10px;
            }


            .developer-main-heading {
                font-size: 38px;
                font-weight: 700;
                line-height: 1.2;
                color: #111;
                margin: 0;
            }

            /* =========================
LEFT RIGHT BUTTONS
========================= */

            .developer-nav-buttons {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            /* BUTTON */

            .developer-scroll-btn {
                width: 35px;
                height: 35px;
                border: none;
                border-radius: 50%;
                background: #ffffff;
                color: #000;
                font-size: 18px;
                font-weight: 400;
                cursor: pointer;
                transition: .3s ease;
                box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                line-height: 1;
            }

            /* HOVER */

            .developer-scroll-btn:hover {
                background: #000;
                color: #fff;
                transform: scale(1.08);
            }

            /* =========================
TABS WRAPPER
========================= */

            .developer-tabs-wrapper {
                display: flex;
                gap: 10px;
                overflow-x: auto;
                overflow-y: hidden;
                flex-wrap: nowrap;
                scroll-behavior: smooth;
                scrollbar-width: none;
                margin-bottom: 30px;
            }

            .developer-tabs-wrapper::-webkit-scrollbar {
                display: none;
            }

            /* TAB BUTTON */

            .developer-tab-btn {
                min-width: max-content;
                white-space: nowrap;
                padding: 0 30px;
                height: 50px;
                border: 1px solid #49586b;
                background: #fff;
                border-radius: 0px;
                color: #2b3e55;
                font-size: 20px;
                font-weight: 500;
                transition: .3s ease;
                cursor: pointer;
                flex-shrink: 0;
            }

            .developer-tab-btn.active {
                background: #000;
                color: #fff;
                border-color: #000;
            }

            .developer-tab-btn:hover {
                background: #000;
                color: #fff;
            }

            /* =========================
TAB CONTENT
========================= */

            .links-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            /* LIST */

            .trend-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .trend-list li {
                margin-bottom: 20px;
            }

            .trend-list li a {
                text-decoration: none;
                color: #010101;
                font-size: 18px;
                font-weight: 500;
                transition: .3s ease;
                line-height: normal;
                display: inline-block;
            }

            .trend-list li a:hover {
                color: #000;
                transform: translateX(6px);
            }

            /* HIDDEN */

            .hidden-item {
                display: none;
            }

            .hidden-item.show {
                display: block;
            }

            /* =========================
VIEW MORE BUTTON
========================= */

            .btn-wrap {
                text-align: center;
                margin-top: 45px;
            }

            .view-btn {
                min-width: 240px;
                height: 50px;
                border: none;
                border-radius: 0px;
                background: #000;
                border: 1px solid #000000;
                color: #fff;
                font-size: 18px;
                font-weight: 500;
                transition: .3s ease;
            }

            .view-btn:hover {
                background: #000000;
            }

            /* =========================
MOBILE
========================= */

            @media(max-width:1199px) {

                .links-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 50px;
                }

            }

            @media(max-width:767px) {

                .developer-property-section {
                    padding: 45px 0;
                }

                .developer-heading-wrap {
                    font-size: 38px;
                }

                .developer-topbar {
                    margin-bottom: 30px;
                }

                .developer-tabs-wrapper {
                    gap: 12px;
                    margin-bottom: 40px;
                }

                .developer-tab-btn {
                    height: 56px;
                    padding: 0 22px;
                    font-size: 15px;
                }

                .developer-scroll-btn {
                    width: 42px;
                    height: 42px;
                    font-size: 20px;
                }

                .links-grid {
                    grid-template-columns: 1fr;
                    gap: 10px;
                }

                .trend-list li a {
                    font-size: 17px;
                }

                .view-btn {
                    width: 100%;
                    min-width: 100%;
                    height: 56px;
                    font-size: 17px;
                }

            }

            /* =========================
MOBILE FIX
========================= */

            @media(max-width:767px) {

                /* SECTION */

                .developer-property-section {
                    padding: 40px 17px;
                }



                .property-sec {
                    padding: 30px 17px 20px;
                    background: #f7f7f7;
                }

                .market-container {
                    padding: 0 15px;
                }

                /* TOP BAR */

                .developer-topbar {
                    margin-bottom: 22px;
                    align-items: center;
                }

                /* HEADING */

                .developer-heading-wrap {
                    font-size: 28px;
                    line-height: 1.25;
                    width: 100%;
                    /* max-width: 220px; */
                }

                /* ARROWS */

                .developer-nav-buttons {
                    gap: 8px;
                    flex-shrink: 0;
                }

                .developer-scroll-btn {
                    width: 38px;
                    height: 38px;
                    min-width: 38px;
                    font-size: 18px;
                    box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
                }

                /* TABS */

                .developer-tabs-wrapper {
                    gap: 10px;
                    margin-bottom: 30px;
                    padding-bottom: 5px;
                }

                .developer-tab-btn {
                    height: 48px;
                    padding: 0 18px;
                    font-size: 14px;
                    border-radius: 8px;
                }

                /* GRID */

                .links-grid {
                    grid-template-columns: 1fr;
                    gap: 0;
                }

                /* LIST */

                .trend-list li {
                    margin-bottom: 18px;
                }

                .trend-list li a {
                    font-size: 15px;
                    line-height: 1.5;
                }

                /* VIEW MORE BUTTON */

                .btn-wrap {
                    margin-top: 25px;
                }

                .view-btn {
                    width: 100%;
                    min-width: 100%;
                    height: 52px;
                    font-size: 15px;
                    border-radius: 10px;
                }

            }


            /* =========================================
TAB PARAGRAPH
========================================= */

            .property-tab-para {
                font-size: 16px;
                line-height: 1.8;
                color: #555;
                margin: 12px 0 35px;

            }


            .read-more-btn {
                border: none;
                background: none;
                color: #000;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                padding: 0;
                margin-left: 6px;
            }

            .read-more-btn:hover {
                text-decoration: underline;
            }