/* Property Grid Section */
.property-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.property-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.property-column {
  flex-basis: calc(33.33% - 2rem);
}

.property-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.property-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.property-box h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.property-box p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.25rem;
}

.property-box a {
  display: inline-block;
  background-color: #ff6500;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

.property-box a:hover {
  background-color: #ff8c00;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .property-column {
    flex-basis: calc(50% - 20px);
  }
}
/* Styling for carousel control buttons */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background-color: transparent;
  color: #999; /* Dark gray color for less prominence */
  opacity: 0.7; /* Reduce opacity for less visibility */
}

/* Hover effect to slightly increase opacity on hover */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.9;
}

/* Styling for the carousel control icons */
.carousel-control-icon {
  background-color: #fff; /* White background for the icons */
  border-radius: 50%;
  color: #999; /* Dark gray color for the icons */
}

/* Styling for the screen reader-only text */
.sr-only {
  display: none; /* Hide the screen reader-only text */
}
