@media (max-width: 767.98px) {
  .property-carousel-container {
    height: 350px;
  }
}
  /* Property Card Styles */
  .property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.125);
  }
  
  .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .property-card .card-img-container {
    position: relative;
    height: auto;
    overflow: hidden;
  }
  
  .property-card .card-img-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .property-card .price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .property-card .card-body {
    padding: 1rem;
  }

  /*.property-card .property-features {*/
  /*  color: #6c757d;*/
  /*  font-size: 0.9rem;*/
  /*}*/

  /* Modal Styles */
  .property-carousel-container {
    height: auto;
  }

  #propertyModalCarousel {
    height: 100%;
  }
  
  #propertyModalCarousel .carousel-inner {
    height: 100%;
  }

/*.carousel-inner {*/
/*  overflow: initial !important;*/
/*}*/
  
  #propertyModalCarousel .carousel-item {
    height: 100%;
  }
  
  #propertyModalCarousel .carousel-item img {
    object-fit: cover;
  }
  
  .property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-primary);
  }
  
  /* Card Carousel Styles */
  .card-carousel {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  
  .card-carousel .carousel-inner {
    height: 100%;
  }
  
  .card-carousel .carousel-item {
    height: 100%;
  }
  
  .card-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-carousel .carousel-control-prev,
  .card-carousel .carousel-control-next {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .card-carousel .carousel-control-prev {
    left: 10px;
  }
  
  .card-carousel .carousel-control-next {
    right: 10px;
  }
  
  .card-carousel .carousel-control-prev-icon,
  .card-carousel .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .property-carousel-container {
      height: 300px;
    }
  }