        * {
            font-family: 'Manrope', sans-serif;
        }

        /* ---------- FORCE REMOVE any line / hairline under filters ---------- */
        /* remove any border, shadow, outline, pseudo elements on filter container */
        .filters-section,
        .filters-section *,
        .filters-section::before,
        .filters-section::after,
        .container-1280,
        main,
        main::before,
        main::after {
            border: 0 !important;
            border-top: 0 !important;
            border-bottom: 0 !important;
            box-shadow: none !important;
            -webkit-box-shadow: none !important;
            -moz-box-shadow: none !important;
            outline: none !important;
            background-clip: padding-box !important;
            content: none !important;
        }

        /* hide any leftover <hr> between sections (defensive) */
        hr { display: none !important; }

        /* ---------- original styles (unchanged except for the forced removals above) ---------- */
        .filter-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            min-width: 200px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .filter-dropdown.active {
            max-height: 400px;
        }

        .filter-option {
            padding: 12px 16px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
            color: #333;
        }

        .filter-option:last-child {
            border-bottom: none;
        }

        .filter-option:hover {
            background-color: #fff5f0;
        }

        .filter-btn-container {
            position: relative;
        }

        /* CHANGED: make individual filter toggles grey (#f0f0f0) */
        .filter-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 16px;
            cursor: pointer;
            transition: border-color 0.2s;
            font-size: 14px;
            color: #333;
            white-space: nowrap;
        }

        .filter-toggle:hover {
            border-color: #999;
        }

        .filter-toggle i:first-child {
            color: #e67e22;
            font-size: 14px;
        }

        .filter-toggle i:last-child {
            color: #999;
            font-size: 12px;
        }

        /* ---------- KNOW MORE button: new style & position (bottom-right of card) ---------- */
        .property-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.2s;
            margin-bottom: 24px;
            position: relative; /* required for absolute positioning of the button */
        }

        .property-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        .know-more-btn {
            /* new compact pill style */
            background: linear-gradient(90deg, #ff8a00 0%, #e67e22 100%);
            color: #fff;
            padding: 10px 14px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 20px rgba(230,126,34,0.18);
            transition: transform 0.14s ease, box-shadow 0.14s ease;
            position: absolute;
            right: 20px;
            bottom: 20px;
            z-index: 5;
            border: none;
        }

        .know-more-btn i {
            margin: 0;
            font-size: 14px;
            line-height: 1;
        }

        .know-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(230,126,34,0.22);
        }

        /* on small screens, keep button in flow (so it doesn't overlap content) */
        @media (max-width: 700px) {
            .know-more-btn {
                position: static;
                display: inline-flex;
                margin-top: 12px;
                box-shadow: none;
                width: auto;
                align-self: flex-start;
                transform: none;
            }
        }

        .scroll-arrow {
            background-color: rgba(0, 0, 0, 0.5);
            color: rgb(27, 27, 27);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            transition: background-color 0.2s;
            position: absolute;
            z-index: 10;
        }

        .scroll-arrow:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .scroll-arrow i {
            font-size: 16px;
        }

        body {
            background-color: #f5f5f5;
        }

        .header {
            background-color: #fff;
            color: #333;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo-box {
            width: 64px;
            height: 64px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0e0e0;
        }

        .logo-text {
            text-align: center;
            font-size: 12px;
        }

        .logo-main {
            font-weight: bold;
            font-size: 16px;
            color: #0066cc;
        }

        .logo-sub {
            font-size: 10px;
            color: #0066cc;
            font-weight: 600;
        }

        .logo-sub2 {
            font-size: 9px;
            color: #999;
        }

        .gallery-container {
            position: relative;
            width: 100%;
            height: 280px;
            background-color: #e8e8e8;
            border-radius: 8px;
            overflow: hidden;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .image-counter {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
        }

        .property-title {
            font-size: 18px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .property-company {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
        }

        .property-location {
            font-size: 12px;
            color: #e67e22;
            margin-bottom: 12px;
        }

        .possession-status {
            font-size: 13px;
            color: #27ae60;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .price-text {
            font-size: 18px;
            font-weight: bold;
            color: #1a1a1a;
        }

        .price-highlight {
            font-size: 18px;
            font-weight: bold;
            color: #e67e22;
        }

        .config-item {
            font-size: 13px;
        }

        .config-label {
            color: #666;
            font-size: 11px;
            margin-bottom: 4px;
        }

        .config-value {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 13px;
        }

        .rera-id {
            font-size: 12px;
            color: #999;
        }

        /* Sort options styling */
        .sort-options {
            display: flex;
            gap: 16px;
            font-size: 13px;
            align-items: center;
            white-space: nowrap;
        }

        .sort-active {
            color: #e67e22;
            font-weight: 600;
            cursor: pointer;
        }

        .sort-inactive {
            color: #666;
            cursor: pointer;
        }

        .sort-inactive:hover {
            color: #333;
        }

        /* Top title + sort row */
        .top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
        }

        .title-block {
            min-width: 0; /* allow truncation if necessary */
        }

        .title-block h2 {
            font-size: 24px;
            font-weight: bold;
            color: #1a1a1a;
            margin: 0;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .title-block h2 span {
            color: #999;
            font-weight: normal;
            font-size: 18px;
        }

        /* Make filters, title and sort responsive and visually aligned */
        .filter-row {
            display:flex;
            gap:16px;
            flex-wrap:wrap;
            align-items:center;
            justify-content:center; /* CENTER the filters row horizontally */
        }

        .filter-row .filter-btn-container {
            margin: 4px 0;
        }

        @media (max-width: 900px) {
            /* allow wrapping into stacked layout */
            .top-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .filter-row {
                width: 100%;
                gap: 8px;
                align-items: center;
                justify-content: center; /* keep centered on small screens */
            }

            .sort-options {
                width: 100%;
                justify-content: flex-start;
                gap: 12px;
            }

            .filter-toggle {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        /* Keep consistent container width */
        .container-1280 {
            max-width: 1280px;
            margin: 0 auto;
        }

        /*
         * Responsive override for the card inner grid:
         * many card grid styles were inline; to make them responsive we override
         * the inline grid-template-columns with !important in media queries.
         */
        .property-card > div {
            display: grid !important;
            grid-template-columns: 1fr 2fr !important;
            gap: 24px !important;
            padding: 24px !important;
        }

        @media (max-width: 700px) {
            /* stack image above details on small screens */
            .property-card > div {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
                padding: 16px !important;
            }

            /* Increased image height for small/mobile screens (requested earlier) */
            .gallery-container {
                height: 260px !important;
            }

            .scroll-arrow {
                width: 36px !important;
                height: 36px !important;
            }

            .property-title {
                font-size: 16px !important;
            }

            .title-block h2 {
                font-size: 20px !important;
            }

            .filter-toggle {
                padding: 8px 10px !important;
                font-size: 13px !important;
            }

            .know-more-btn {
                /* already overridden above to be static on small screens */
            }

            .config-item {
                font-size: 12px !important;
            }

            .image-counter {
                font-size: 11px !important;
                padding: 5px 10px !important;
            }
        }

        /* Slight tweaks for very narrow phones: increased height as well */
        @media (max-width: 420px) {
            .gallery-container {
                height: 220px !important;
            }

            .filter-row {
                gap: 8px;
            }

            .filter-toggle span {
                display: inline-block;
                max-width: 90px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        }

        /* NEW STYLES FOR HEADER AND RESIDENTIAL HEADING */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 24px;
            box-sizing: border-box;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .mobile-contact-section, .mobile-social-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #333;
            font-size: 16px;
        }

        .mobile-contact-item i {
            color: #e67e22;
            width: 24px;
            font-size: 18px;
        }

        .mobile-social-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #333;
            font-size: 16px;
            text-decoration: none;
        }

        .mobile-social-item i {
            color: #e67e22;
            width: 24px;
            font-size: 18px;
        }

        .mobile-menu-title {
            font-size: 18px;
            font-weight: 700;
            color: #e67e22;
            margin-bottom: 10px;
        }

        .desktop-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            font-size: 16px;
            font-weight: 600;
        }

        .desktop-contact i {
            color: #e67e22;
        }

        .residential-heading {
            background: linear-gradient(135deg, #292929 0%, #252525 100%);
            color: white;
            padding: 40px 24px;
            text-align: center;
            margin-bottom: 0;
        }

        .residential-heading h1 {
            font-size: 48px;
            font-weight: 800;
            margin: 0 0 20px 0;
            letter-spacing: -0.5px;
        }

        .residential-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Hamburger Menu Styles (from reference code) */
        .hamburger {
            width: 24px;
            position: relative;
            z-index: 50;
        }
        .hamburger-top,
        .hamburger-middle,
        .hamburger-bottom {
            transform-origin: center;
            background-color: black; /* Ensure bars are black by default */
        }
        .open .hamburger-top {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: black !important; /* Keep X black */
        }
        .open .hamburger-middle {
            opacity: 0;
        }
        .open .hamburger-bottom {
            transform: rotate(-45deg) translate(5px, -5px);
            background-color: black !important; /* Keep X black */
        }
        /* Ensure hamburger is visible over the overlay */
        header.sticky {
            z-index: 40;
        }
        #mobile-menu-overlay {
            z-index: 30;
        }

        /* Mobile Menu Overlay (from reference code) */
        #mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background-color: white;
            display: none;
            z-index: 30;
        }
        #mobile-menu-overlay:not(.hidden) {
            display: block;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #333;
            font-size: 24px;
            cursor: pointer;
            z-index: 50;
        }

        @media (max-width: 900px) {
            .desktop-contact {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .residential-heading h1 {
                font-size: 36px;
            }

            .residential-stats {
                gap: 30px;
            }
        }

        @media (max-width: 600px) {
            .residential-heading h1 {
                font-size: 28px;
            }
            
            .residential-stats {
                gap: 20px;
            }
            
            .stat-value {
                font-size: 20px;
            }
            
            .stat-label {
                font-size: 12px;
            }
        }


        