.so-ego-properties {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}
.so-ego-properties .so-ego-property {
    width: 30%;
    position: relative;
}
.so-ego-properties .so-ego-property img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.bg-primary {
    
}
.text-center {
    text-align: center !important;
}
.so-ego-single-property {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.property-header {
    margin-bottom: 20px;
}
.property-featured-image img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.property-description {
    margin-bottom: 20px;
}
.property-details ul {
    list-style: none;
    padding: 0;
}
.property-details li {
    margin-bottom: 10px;
}
.property-gallery {
    margin-top: 20px;
}
.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery-images img {
    max-width: 200px;
    height: auto;
}

.gallery-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}
