
        .title {
            text-align: center;
            font-size:36px;
            color:#ffffff;
            margin-bottom: 3rem;
            font-weight: bold;
        }

        .property-grid {
           display: flex;
           display: -webkit-flex;
           flex-wrap: wrap;
           align-items: center;
           gap:14px;
           justify-content: center;
           margin-bottom: 50px;

        }

        .property-card {
                background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0) 49%, rgb(0 0 0) 100%);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 25px;
            max-width: 380px;
            width: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width:calc(33% - 16px);
                border: 1px solid #c08830;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .property-image {
            width: 100%;
            height:190px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 1rem;
            border:1px solid #c08830;
        }
        .btn.btn-primary.featureProject {margin-bottom:30px;}

        .property-title {
            font-size: 1.4rem;
            font-weight: 600;
            color:#c08830;
            text-align: center;
            margin-bottom: 0.1rem;
        }

        .property-location {
            color: #ffffff;
            text-align: center;
            margin-bottom: 1rem;
            font-size:1.20rem;
        }
        .btn.btn-primary.featureProject{display: flex;display: -webkit-flex;justify-content: center;margin:0 auto;padding:12px 25px;border-radius:8px;}

        .decorative-line {
            height: 1px;
            background: linear-gradient(90deg, transparent, #f59e0b, transparent);
            margin: 1rem 0;
        }

        .price-section {
            background: #c08830;
            text-align: center;
            padding: 0.75rem;
            border-radius: 6px;
            margin-bottom: 1rem;
        }

        .price-text {
            color:#000;
            font-weight:600;
            font-size: 1rem;
        }

        .apartment-types {
            color:#c08830;
            text-align: center;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 1rem;
        }

        .property-size {
            color:#fff;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .interested-btn {
            display: block;
            background: #fff;
            color: #000;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            margin: 0 auto;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .interested-btn:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
           
            .property-card {
                max-width: 100%;
                padding: 20px;
                
            }
            
            .property-image {
                height:190px;
            }
            
            .title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
        
        }

        @media screen and (max-width: 540px) {
            .property-card {
                padding: 15px;
                width:100%;
            }
            
            .property-image {
                height: 180px;
            }
            
            .property-title {
                font-size: 1.2rem;
            }
            
            .title {
                font-size: 1.8rem;
            }
        }

        @media screen and (min-width: 1200px) {
         .property-card{width:calc(33% - 16px)}
        }