.section_title h3 {
    font-size: 28px;
    color: #00796B;
}
.section_title p {
    font-size: 14px;
    color: #666;
}
.category-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.category-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.card-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}
.btn-gradient {
    background: linear-gradient(to right, #28a745, #20c997);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.btn-gradient:hover {
    background: linear-gradient(to right, #20c997, #28a745);
    transform: scale(1.05);
}
/* Mobile Friendly Adjustments */
@media (max-width: 576px) {
    .category-img {
        height: 120px;
    }
    .card-title {
        font-size: 14px;
    }
    .btn-gradient {
        padding: 6px 16px;
    }
}


.ratings-container {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1.7rem;
    line-height: 1;
    white-space: nowrap;
}

.ratings {
    position: relative;
    color: #cccccc;
}

.ratings-val {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #fcb941;
}

.ratings-text {
    color: #cccccc;
    letter-spacing: -.01em;
    margin-left: .8rem;
}

.ratings:before, .ratings-val:before {
    content: "\f005" "\f005" "\f005" "\f005" "\f005"; /* Correct star icon */
    font-family: "FontAwesome"; /* Required for Font Awesome 4.7.0 */
}
