@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
    font-family: "Poppins", sans-serif !important;
}

#filled:hover {
    background-color: white !important;
    color: black !important;
}

#outlined:hover {
    background-color: #9B5DE5;
    color: white;
}

.search-bar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 20px;
}

.nav-pills .nav-link.active {
    background-color: #f6f6f6;
    font-weight: bold;
    color: #333;
}

.input-group-text {
    border-radius: 50px 0 0 50px;
    background-color: #f6f6f6;
}

.form-control {
    border-radius: 0 50px 50px 0;
}

.btn {
    border-radius: 50px;
    font-weight: bold;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.image-container {
    position: relative;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scale(1.1);

}

.image-container:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay button {
    background-color: #fff;
    border: none;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hover-overlay button:hover {
    background-color: #007bff;
    color: #fff;
}

.badge {
    position: absolute;
    font-size: 0.8rem;
    padding: 5px 10px;
    color: #fff;
}

.badge-featured {
    top: 10px;
    left: 10px;
    background: orange;
}

.badge-price {
    bottom: 10px;
    right: 10px;
    font-size: 18px;
    color: #fff;
    background: blue;
}

.badge-hot {
    top: 10px;
    right: 10px;
    background: red;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.profile {
    display: flex;
    align-items: center;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-name {
    font-size: 1.2rem;
    /* font-weight: 700; */
}

.carousel-indicators button.thumbnail {
    width: 100px;
}

.carousel-indicators button.thumbnail:not(.active) {
    opacity: 0.7;
}

.carousel-indicators {
    position: static;
}

@media screen and (min-width: 992px) {
    .carousel {
        max-width: 100%;
        margin: 0 auto;
    }
}

.property-icon {
    font-size: 1.5rem;
    color: #6c757d;
}

.property-overview {
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    /* background-color: #f8f9fa; */
}

.property-item {
    margin-bottom: 15px;
}


.carousel-item img {
    width: 100%;
    height: 200px;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensure the image covers the space without distortion */
}

/* Ensure the card has consistent dimensions */
.card {
    height: 100%;
    /* Set height to make the card uniform */
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 150px;
    }
}

@media (min-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}


#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    display: none;
    /* transform: translate(-50%, -50%); */
    z-index: 9999;
    /* High z-index to ensure it's on top */
}
