        .project-list {
            background: #000000;
        }

        .parent_cls_for_list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 cards per row */
            gap: 25px;
            justify-content: center;
        }

        /* CARD */
        .property-card {
            background: linear-gradient(135deg, #e3c16f, #b8903b);
            border: 1px solid #c08830;
            border-radius: 14px;
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(192, 136, 48, 0.35);
        }

        /* IMAGE */
        .property-image {
            position: relative;
        }

        .property-image img {
            width: 100%;
            height: 405px;
            object-fit: cover;
            display: block;
            border-radius: 15px;
        }

        /* BHK BADGE */
        .bhk-badge {
            position: absolute;
            bottom: 0px;
            right: 0px;
            background: #fff;
            color: #000;
            font-size: 15px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 11px;
        }

        /* BOTTOM INFO */
        .property-info {
            background: linear-gradient(135deg, #AB842B, #FAF1A5);


            text-align: center;
            padding: 14px 10px;
        }

        .property-info h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
        }

        .property-info p {
            margin: 4px 0 0;
            font-size: 16px;
            font-weight: bold;
            color: #000;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .parent_cls_for_list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .parent_cls_for_list {
                grid-template-columns: 1fr;
            }

            /* .property-image img {
                height: 300px;
            } */
        }

        .inner-project-listr {
            margin-top: 100px;
        }