.service-menu {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-menu:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.premium-card {
    background: linear-gradient(135deg, #fff8e1, #ffe082);
    border: 1px solid #ffd54f;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    position: relative;
    /* overflow: hidden; */
}

.text-gradient {
    background: linear-gradient(45deg, #b8860b, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ribbon {
    width: 110px;
    height: 110px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    left: -10px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 5px 0;
    background: linear-gradient(45deg, #f4b400, #ffca28);
    color: #000;
    text-align: center;
    font-weight: bold;
    transform: rotate(-45deg);
    top: 25px;
    left: -35px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.offer-box {
    background: #fff3cd;
    border-left: 4px solid #ffca28;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.offer-box.basic {
    background: #e1ffe1;
    border-left-color: #3fa34d;
}

.image-container {
    position: relative;
}

.main-img {
    border-radius: 12px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .service-menu {
        padding: 15px;
    }

    .offer-box {
        font-size: 13px;
    }

    .main-img {
        max-height: 180px;
    }
}

.rating-box {
    border-radius: 20px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.premium-rating {
    background: #fff8e1;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.35);
}

.normal-rating {
    background: #f5f5f5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.rating-box:hover {
    transform: scale(1.05);
}

.rating-box i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.rating-box:hover i {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .rating-box {
        padding: 3px 8px;
        font-size: 13px;
    }

    .rating-box i {
        font-size: 12px;
    }
}

.service-menu {
    background-color: #e1ffe1;
    border-left: 6px solid #3fa34d;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-menu:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.premium-card {
    background: linear-gradient(135deg, #fffdf5, #fff2c7);
    border-left: 6px solid #e6b400;
    border-top: 1px solid #fff3d1;
    border-right: 1px solid #ffeaa7;
    border-bottom: 1px solid #fff1a8;
    padding: 22px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
    position: relative;
    transition: all 0.35s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
    background: linear-gradient(135deg, #fff9e6, #ffefb0);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.8), rgba(255, 239, 150, 0.9), rgba(255, 215, 0, 0.8));
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

@media (max-width: 768px) {

    .service-menu,
    .premium-card {
        padding: 15px;
    }
}

.bg-green {
    background: linear-gradient(135deg, rgb(210, 248, 210) 0%, rgb(210, 248, 210) 100%);
}

.service-menu:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card-body h4 {
    font-weight: 700;
    color: #2e7d32;
}

.service-card-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

/* .book-btn {
    margin-top: 10px;
    border-radius: 25px;
    padding: 6px 20px;
    font-size: 0.9rem;
} */

.filter-bar select,
.filter-bar input {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 12px;
}

@media (max-width: 768px) {
    .filter-bar {
        text-align: center;
    }

    .filter-bar .col-md-4 {
        margin-bottom: 10px;
    }

    .service-menu {
        text-align: center;
    }

    .service-card-body {
        text-align: left;
    }
}

.image-scroller {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding-bottom: 5px;
}

.image-scroller img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

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

.image-scroller::-webkit-scrollbar {
    display: none;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    display: flex;
    scroll-behavior: smooth;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    width: 100%;
}

.slider-image {
    flex: 0 0 100%;
    height: 220px;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: 10px;
}

.image-slider::-webkit-scrollbar {
    display: none;
}

.fa-star {
    font-size: 22px;
    color: gray;
    cursor: pointer;
    transition: color 0.3s ease;
}

.fa-star.checked {
    color: gold;
}

.modal-content {
    border-radius: 12px;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #218838;
}

.textcolor {
    color: #333;
    font-weight: 500;
}

.rating-hover-box {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    padding: 15px;
    border-radius: 10px;
    width: 260px;
    z-index: 9999 !important;
    transition: all 0.25s ease;
}

.rating-box-wrapper:hover .rating-hover-box {
    display: block;
}

.service-menu .rating-hover-box {
    background: linear-gradient(135deg, #e9ffe9, #d6f7d6);
    border: 1px solid #8ed98e;
    box-shadow: 0 4px 10px rgba(0, 128, 0, 0.10);
}

.premium-card .rating-hover-box {
    background: linear-gradient(135deg, #fff8dc, #ffefb5);
    border: 1px solid #f4c542;
    box-shadow: 0 5px 15px rgba(255, 200, 0, 0.30);
}

.rating-hover-box .bar {
    height: 7px;
    background: #e3e3e3;
    width: 60%;
    display: inline-block;
    margin: 0 10px;
    border-radius: 4px;
    vertical-align: middle;
}

.rating-hover-box .bar div {
    height: 100%;
    background: #28a745;
    border-radius: 4px;
}

.star-row {
    margin: 5px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
}


#reviewModal .modal-content {
    background: linear-gradient(135deg, #e9ffe9, #d6f7d6);
    border: 1px solid #8ed98e;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 128, 0, 0.15);
}

#reviewModal h5 {
    color: #2e7d32;
    font-weight: 600;
}

#reviewModal label,
#reviewModal .textcolor {
    color: #245c29;
}

#reviewModal textarea,
#reviewModal select,
#reviewModal input[type=file] {
    border: 1px solid #a0d7a0;
    background-color: #f6fff6;
}