.filterContainer {
    display: grid;

    grid-template-columns: repeat(5, 1fr);
    background-color: white;
    padding: 20px 32px;
    box-shadow: 0px 30px 30px 0px rgba(90, 90, 90, 0.18);
    border-radius: 0px 8px 8px 8px;
}
.propertyAddressBox {
    display: flex;

    padding: 2.2rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    border-radius: 0.4375rem;
    border: 2px solid #4c8f38;

    /* Button shadow */
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.06);
}
.custom-select {
    position: relative;
    /* width: 150px; */
    display: flex;
    justify-content: space-between;
    min-width: 200px;
    border-right: 1px solid #e0def7;
    padding: 0 1.5rem;
}
.filterBox {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.searchBtn {
    display: flex;
    /* width: 125px; */
    height: 48px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 45px;
    background: #f9f78d;
}
.filterBox label {
    opacity: 0.5;
    text-align: left;
    padding: 0 calc(10px + 1.5rem);
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    width: 100%;
}

.custom-select::after {
    content: url("");
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-select select:focus + .custom-select::after,
.custom-select select:active + .custom-select::after {
    transform: translateY(-50%) rotate(180deg);
    border: 2px solid blue;
}
.slider-container {
    position: relative;
    width: 100%; /* Adjust as needed */
    /* overflow: hidden; */

    /* width: 93rem; */
    margin: auto;
    transition: all 0.8s ease-in;
}
.slider-wrapper {
    display: flex;
    width: calc(300px * 1); /* Adjust based on image count and size */
    transition: transform 0.5s ease;
   
    gap: 25px;
}
.image_slider_title {
    color: #1c1c1c;
    font-family: Archivo;
    font-size: 26.981px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.slider-image {
    width: 398px;
    /* height: 335.465px; */
    flex-shrink: 0; /* Adjust as needed */
    flex-direction: column;
    gap: 1rem;
    display: none;
}
.slider-image img {
    height: 335.465px;
}
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: */
    border: none;
    cursor: pointer;
    z-index: 9955;
    /* padding: 10px; */
    /* z-index: 100; */
}
.slider-button.left {
    left: -15px;
}
.leftIocn {
    transform: rotate(-90deg);
    z-index: 999;
}
.rightIocn {
    transform: rotate(90deg);
    z-index: 999;
}
.slider-button.right {
    right: -15px;
}
.whyChooseCont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.whyChooseCont .components {
    width: 352.553px;
    min-height: 30rem;
    border-radius: 8px;
    overflow: hidden;
}
.whyChooseCont .components .headingComp {
    background: #fffcca;
    padding: 35px 26px;
}
.whyChooseCont .components .headingComp h3 {
    color: #000;

    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.whyChooseCont .components .headingComp p {
    color: #000;
    font-family: Archivo;
    font-size: 14.954px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 20.935px */
}
.checkList {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.checkList li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}
.checkList li p {
    color: #1c1c1c;
    font-family: Archivo;
    font-size: 20.562px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 80%;
}

.testimonial-section {
    /* Light green background */
    padding: 40px 0;
}
.testimonial-container {
    background-color: #fffff2; /* White box for testimonial */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;

    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.testimonial-quote {
    color: #1c1c1c;
    text-align: center;

    font-family: Archivo;
    font-size: 1.25em;
    width: 60%;
    font-style: italic;
    font-weight: 400;
    line-height: 170%; /* 2.125rem */
}
.testimonial-author {
    color: #1c1c1c;
    font-family: Archivo;
    font-size: 1.375em;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.testimonial-role {
    color: #1c1c1c;
    font-family: Archivo;
    font-size: 0.875em;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 1.225rem */
}
/* Override Bootstrap carousel control colors */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
}
