.banner-container {
    background-color: var(--primary-bg);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
 
.banner-content {
    max-width: 60%;
}

@media (max-width: 767px) {
    .banner-content {
        max-width: 100%;
    }
    
    .banner-image {
        display: none;
    }
    
}


.banner-container h1 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.banner-container p {
    color: white;
    font-size: 1rem;
    margin: 10px 0;
}

.banner-container .btn {
    padding: 10px 30px;
    border-radius: 30px;
    background-color: white;
    color: var(--primary-bg);
    font-weight: bold;
    transition: all 0.3s ease;
}

.banner-container .btn:hover {
    background-color: #fff;
    color: var(--primary-btn-hover);
    transform: translateY(-5px);
}

.banner-image {
    max-width: 30%;
    height: auto;
}

/* General Styling */
.filter-buttons {
    margin-top: 20px;
    text-align: center;
}

.filter-buttons button {
    margin: 5px;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
}

.service-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.service-image {
    width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
}

.customer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 5px 10px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.customer-badge img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

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

.service-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-old-price {
    text-decoration: line-through;
    color: grey;
    margin-left: 10px;
}

.star-rating {
    color: #f4c150; 
}

.favorite-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    color: var(--primary-color);
}

.filter-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.filter-area input {
    border-radius: 20px;
    margin-left: 5px;
}

.cat-btn {
    min-height: 40px;
}

.search-filter-tab {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.search-filter-tab button,
.search-filter-tab input {
    border-radius: 10px;
    padding: 10px 20px;
    margin: 5px;
    min-height: 50px !important;
}

.filter-buttons .dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.filter-buttons .dropdown-content {
    display: none;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
    background-color: var(--bg-light);
    top: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.filter-buttons .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.filter-buttons .dropdown-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.filter-buttons .dropdown-item:hover {
    color: white;
    background-color: var(--primary-bg);
}

.filter-buttons .dropdown:hover .dropdown-content {
    display: block;
}

.search-and-filter {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.search-area {
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_input {
    flex-grow: 1;
    height: 100%;
    margin-left: 20px;
    background-color: var(--bg-light);
}

.search-panel {
    min-width: 60%;
    height: 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.line-v {
    height: 80%;
    width: 1px;
    background-color: var(--bg-dark);
}

.search-btn {
    min-width: 160px;
    height: 100%;
    border-radius: 0 50px 50px 0;
    color: var(--color-light);
    background-color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-area .dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.search-area .dropdown-content {
    display: none;
    position: absolute;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    background-color: var(--bg-light);
    top: 40px;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
}

.search-area .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.search-area .dropdown-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.search-area .dropdown-item:hover {
    color: white;
    background-color: var(--primary-bg);
}

.search-area .dropdown:hover .dropdown-content {
    display: block;
}

@media only screen and (max-width: 1100px) {
    .search-area {
        min-height: 200px;
        min-width: 200px;
    }

    .search-panel {
        min-width: 100%;
        height: auto;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .search-btn {
        width: 80%;
        height: 50px;
        border-radius: 25px;
    }
}

/* Responsive Columns for Different Screen Sizes */
@media (min-width: 992px) {
    .service-card-container .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-card-container .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .service-card-container .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}