     /* Small Square Image */
     .property-thumbnail {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 5px;
    }

    /* Blue Location Icon */
    .text-primary {
        color: #007bff !important;
    }

    /* List Item Formatting */
    .property_list_widget li {
        display: flex;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Title Formatting */
    .property_list_widget h6 {
        margin: 0;
        font-size: 16px;
    }

    /* Location Formatting */
    .property_list_widget span {
        font-size: 14px;
        color: #666;
    }

/* Zoom Effect */
.property-img {
    overflow: hidden;
}

.zoom-effect {
    transition: transform 0.4s ease-in-out;
}

.property-img:hover .zoom-effect {
    transform: scale(1.1);
} 

.portfolio-info img {
   /* padding: 20px; /* Adjust padding as needed */
   /* display: block; /* Ensures proper spacing */
   /*  width: 100%; /* Keeps image responsive */
}

.portfolio-info {
    background: #fff; /* White background */
   /* padding: 20px; /* Space inside the box */
    border-radius: 8px; /* Rounded corners */
    border: 1px solid #eee; /* Light gray border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */

}

.portfolio-info h3 {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee; /* Underline the heading */
    padding-bottom: 10px;
    margin-bottom: 15px;
}


.property-carousel {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .property-image {
    height: 400px;
    object-fit: cover;
  }
  
  .custom-carousel-control {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  
  .property-quantity {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
  }
  
  .details-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
  
  .details-list li {
    width: 50%;
    padding: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  
  .details-list i {
    margin-right: 10px;
    color: #007bff;
  }
  
 
  /* 🔹 Property Summary */
.summary-table {
    width: 100%;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
  }
  
  .summary-table td {
    padding: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  
  .summary-table i {
    color: #007bff;
    margin-right: 10px;
  }

  
  /* 🔹 Features List */
.features {
    background: #eef5ff;
    padding: 15px;
    border-radius: 10px;
  }
  
  .feature-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-list li {
    width: 50%;
    padding: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  
  .feature-list i {
    margin-right: 10px;
    color: #007bff;
  }

  
 /* 🔹 Floor Plans Accordion */
.accordion-item {
    border-bottom: 1px solid #ddd;
  }
  
  .accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .accordion-btn i {
    transition: transform 0.3s ease-in-out;
  }
  
  .accordion-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
  }
  
  .accordion-btn:hover {
    background: #e2e6ea;
  }
  
  .floor-plan {
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  @keyframes zoomEffect {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .carousel-item img {
    animation: zoomEffect 6s ease-in-out infinite;
    transition: transform 0.5s ease-in-out;
  }
  