

        /*listings*/

        .prop-near {
            position: absolute;
            top: 30rem;
        }

        .prop-rent {
            margin-top: 3rem;
        }

        .prop-buy {
            margin-top: 7rem;
        }
        /* Property Container */
        .main-cont{
            margin-top:4rem;
            max-width: 1200px;
            margin: auto;
        }
        .main-cont h2{
            margin-top:7rem;
            font-size:28px;
            text-align:center;
        }
        .prop-cont {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 columns in a row */
            gap: 20px;
            justify-content: center;
            padding: 20px;
        }
        
        /* Property Card */
        .prop-card {
            width: 100%; /* Adjust width to fit grid */
            background-color: #fff;
            border-radius: 10px;
            overflow: visible;
            position: relative;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Soft shadow */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            margin-bottom: 60px;
        }

        .prop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
            /* Stronger shadow on hover */
        }

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

        .property-image img {
            width: 100%;
            border-radius: 10px;
            height: 300px;
            object-fit: cover;
        }

        /* Heart Icon */
        .heart-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .heart-icon i {
            font-size: 18px;
            color: #333;
            transition: color 0.3s;
        }

        .heart-icon.filled i {
            color: #ff0000;
            /* Red color for filled heart */
        }

        /* Property Details */
        .property-details {
            position: absolute;
            bottom: -50px;
            left: 16px;
            right: 16px;
            background: white;
            padding: 12px;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .property-details h3 {
            margin: 0;
            font-size: 18px;
            color: #333;
        }

        .property-details p {
            margin: 5px 0;
            font-size: 14px;
            color: #666;
        }

        .property-details .price {
            font-size: 16px;
            font-weight: bold;
            color: #ff6600;
        }

        .view {
            display: none;

        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .prop-cont {
                flex-direction: column;
                align-items: center;
            }

            .property-details {
                height: 128px;
                top: 160px;
            }

            .prop-card {
                width: 90%;
            }

            .prop-head {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .see-all-prop {
                margin-top: 10px;
            }

            .view {
                display: inline-block;
                background: #114b54;
                color: white;
                margin-top: 2rem;
                margin-left: 7rem;
                padding: 7px 20px;
                border-radius: 5px;
                font-weight: bold;
                text-decoration: none;
                font-size: 12px;
            }
        }

        .back-next {
            text-align: center;
            padding-top: 100px;

        }

        .btn.active {
            background: #114b54;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
        }

        .btn {
            background: #f0f0f0;
            color: black;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
        }

