/* Styles for hover + animation */
.project-detail-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.5s forwards;
  color: black;
}

/* .project-detail-box:hover {
  background-color: #f8f9fa;
  padding: 8px;
  border-radius: 8px;
} */

.project-detail-box img {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cover Image */

section img {
  animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Styles for hover + animation End  */

/* Gallery Image */

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: transform all 0.5s ease-in-out;
}

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

.related-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
}
.related-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.property-image {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Gallery Image */
