
    /* Add styles for the zoom animation */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5); /* Change the scale value as needed */
    }
}
/*menu section */
.nav-tabs-container .nav-tabs .nav-item .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-tabs-container .nav-tabs .nav-item .nav-link .icon-large {
    font-size: 24px;
}
.nav-tabs-container .nav-tabs .nav-item .nav-link .nav-text {
    font-size: 16px;
}
@media (max-width: 576px) {
    .nav-tabs-container .nav-tabs .nav-item .nav-link {
        flex-direction: row;
        justify-content: center;
    }
    .nav-tabs-container .nav-tabs .nav-item {
        width: 10%;
    }
    .nav-tabs-container .nav-tabs .nav-item .nav-link .icon-large {
        font-size: 24px;
        margin-bottom: 0;
        margin-right: 5px;
    }
    .nav-tabs-container .nav-tabs .nav-item .nav-link .nav-text {
        display: none;
    }
}

.loading-animation {
    display: none;
    text-align: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.minus-btn, .plus-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    color: #333;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.minus-btn:hover, .plus-btn:hover {
    background-color: #e7e7e7;
}

.quantity-input {
    width: 100px;
    height: 30px;
    border: 1px solid #ddd;
    text-align: center;
    margin: 0 5px;
}

/*categories*/
.grid-item {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    height: 100px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--base-color);
}
.grid-item:hover {
    transform: scale(1.05);
    background-color: #e2e6ea;
}
.active {
    /*transform: scale(0.95);*/
    background-color:  var(--base-color);
    color:white
}
.icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.name {
    font-size: 14px;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

    .star-rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        font-size: 2.5em;
    }
    .star-rating input[type="radio"] {
        display: none;
    }
    .star-rating label {
        font-size: 2em;
        color: #ccc;
        cursor: pointer;
        transition: color 0.2s;
    }
    .star-rating input[type="radio"]:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label {
        color: var(--base-color);
    }
    .card {
        margin-bottom: 20px;
        transition: transform 0.2s ease-in-out;
    }
    .card:hover {
        transform: translateY(-10px);
    }
    .testimonial-text {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    .testimonial-name {
        font-weight: bold;
        font-size: 1.2em;
    }
    .masonry {
        column-count: 3;
        column-gap: 15px;
    }
    .masonry .card {
        display: inline-block;
        width: 100%;
    }
    .responsive-image {
        max-width: 100%; /* Ensure image scales properly */
        width: auto;     /* Auto width for responsiveness */
        min-height: 300px; /* Minimum height for small screens */

    }

    @media (max-width: 768px) { /* For small screens */
        .responsive-image {
            /*min-height: 300px; !* Set max height for small screens *!*/
        }
    }

    @media (min-width: 769px) { /* For laptops and larger screens */
        .responsive-image {
            /*max-height: 500px; !* Set max height for larger screens *!*/
            min-height: 500px; /* Minimum height for small screens */
        }
    }
    .feature-box-icon-rounded {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    .feature-box-icon-hover {
           position: absolute;
           top: 0px;
           left: 0px;
           width: 100%;
           height: 100%;
       }
