<style>
    body {
        font-family: Questrial, sans-serif;
    }
    
    .form-control {
        border-top-left-radius: 5px; /* Rounded corners for left side */
        border-bottom-left-radius: 5px;
    }

    .input-group-append {
        border-top-right-radius: 5px; /* Rounded corners for right side */
        border-bottom-right-radius: 5px;
    }

    .form-control.rounded-left {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    .input-group-append.bg-white.rounded-right {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    
    .rounded {
        border-radius: 5px;
    }
    
    .btn.btn-white {
        background-color: white;
        border: none;
        height: 100%;
    }

    .hero-section {
        position: relative;
        overflow: hidden;
        height: 100vh;
        padding-top: 270px;
    }
    
    .hero-section .slideshow-container img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .hero-section .slideshow-container img.active {
        opacity: 1;
    }
    
    .hero-section .hero-header-title, .hero-warp {
        position: relative;
        z-index: 2;
    }
    
    .hero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .hero-header-title {
        position: relative;
        z-index: 2;
        color: white;
        font-size: 50px;
        text-align: center;
        text-shadow: 1px 1px 1px #000;
        padding: 0 35px;
    }
    
    .form-control {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        margin-bottom: 0;
        height: auto;
    }
    
    .input-group-append {
        margin-left: -1px;
        background-color: white;
    }
    
    .motif-para {
        max-width: 600px;
    }
    
    .h3, h3 {
        font-size: 1.5rem;
    }
    
    .icon-background {
        width: 50px;
        height: 50px;
        border-radius: .375rem;
        background-color: var(--main-red-secondary);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    :root {
        --main-red: #DD2422;
        --main-red-secondary: #DD242265;
        --main-border-radius: .375rem;
        --marker-hover: #4F4FE3;
    }

    .custom-link {
        text-decoration: none;
        color: #846B6B;
        font-weight: 500;
        cursor: pointer;
        font-size: 1.05rem;
    }
    
    .custom-link:hover {
        color: var(--main-red-secondary);
        text-decoration: none;
    }
    
    .middle-content {
        margin-right: 25px;
        margin-left: 25px;
    }
    
    @media (min-width: 1200px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl {
            max-width: 100%;
        }
    }

    .main-search-form {
        font-family: "Lato", sans-serif;
        width: 50%;
        margin: 0 auto;
    }

    /* For small devices (width less than or equal to 768px) */
    @media (max-width: 768px) {
        .main-search-form {
            width: 80%;
        }
    }

    .section-title h2 {
        display: flex;
        align-items: center;
        font-size: 1.5em; /* Adjust font size as needed */
    }
    
    .section-title h2 svg {
        margin-right: 10px; /* Space between SVG and text */
    }
    
    .coming-soon {
        font-size: 16px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .coming-soon-label {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: black;
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        z-index: 1;
    }

    .accordion .btn-link {
        text-decoration: none;
        color: inherit;
        font-size: inherit;
        padding: 0;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
    }

    .accordion .btn-link:hover {
        text-decoration: none;
        color: inherit;
    }

    .accordion .btn-link:focus {
        text-decoration: none;
        box-shadow: none;
    }

    .accordion .bi-chevron-double-down {
        transition: transform 0.3s ease;
        color: var(--main-red);
    }

    .accordion .btn-link[aria-expanded="true"] .bi-chevron-double-down {
        transform: rotate(180deg);
        color: var(--main-red);
    }

    .card-img-top {
        border-bottom: 3px solid #dd1f1d;
    }

    /* Scroll Hint */
    .scroll-hint {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #ffffff;
        opacity: 0;
        pointer-events: none;
        animation: fadeIn 1s ease forwards, bounce 2.5s ease-in-out infinite;
        text-shadow: 0 2px 6px rgba(0,0,0,.6);
        background: rgba(18,18,18,.26);
    }

    .scroll-hint .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .scroll-hint i {
        font-size: 1.6rem;
    }

    @keyframes bounce {
        0%, 100% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, 6px); }
    }

    @keyframes fadeIn {
        to { opacity: 1; }
    }


<!-- Additional CSS for card styling -->

    .search-results-img {
        border: 1px solid #000000;
        border-radius: 5px;
        transition: box-shadow 0.3s ease;
    }

    .search-results-img:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .image-container {
        width: 100%;
        height: 225px;
        overflow: hidden;
    }

    .image-container img {
        width: 100%;
        height: 225px;
        object-fit: cover;
    }

    .swiper-container {
        width: 100%;
        height: auto;
		overflow: hidden;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
		/* margin-right: 10px !important; */
    }

    .card {
        width: 100%;
        height: 100%;
        /* max-width: 400px; */
    }

    .swiper-button-next, .swiper-button-prev {
        color: #dc3545;
    }

    .swiper-pagination-bullet-active {
        background-color: #dc3545;
    }

    .card-body {
        padding: 10px;
    }

    .card-title {
        font-size: 16px;
        font-weight: bold;
    }

    .card-text {
        margin: 0;
        font-size: 14px;
    }

    .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
    }
	.container-fluid {
  		width: 100%;
  		padding-right: 0px;
  		padding-left: 0px;
  		margin-right: auto;
  		margin-left: auto;
	}
	.property-link {
		font-size 1.5
	}

/* Accordion button styles to match filter button */
.accordion .btn-danger {
  background-color: #de201e;
  border-color: #403839;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.22) !important;
  transition: all 0.3s ease;
}

.accordion .btn-danger:hover {
  background-color: #c41c1a;
  border-color: #403839;
}

.accordion .btn-danger:focus {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.22) !important;
}

.accordion .btn-danger:not(.collapsed) {
  background-color: #c41c1a;
}

.accordion .btn-danger:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.accordion .transition-transform {
  transition: transform 0.3s ease;
}

/* Remove default button focus styles */
.accordion .btn:focus {
  outline: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.22) !important;
}

    .up-button {
        border-radius: 100%;
        
        z-index: 30;
        position: fixed;
        bottom: 16px;
        right: 16px;
        cursor: pointer;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
</style>