.banner-container .banner-image {

    background-image: url("/assets/img/kesh999/slider/1-1.jpg");
    background-size: cover;
    background-position: center top;
    height: 470px !important;

}

.content {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    color: #333;
}

.content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

.content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.content ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 1.2rem;
    line-height: 1;
}

.key-ingredients {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /* Adjust size as needed */
    gap: 1em;
    /* Adjust the gap between items */
}

.ingredient {
    padding: 0.75em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.ingredient:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.contact-info {
    padding: 60px 0;
    background: #f9f9f9;
    /* Light background for the section */
}

.contact-info .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
    /* Dark color for the section title */
    font-weight: 700;
}

.contact-info .info-item {
    background: #fff;
    /* White background for items */
    border: 1px solid #ddd;
    /* Light border for items */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info .info-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    /* Slight lift effect on hover */
}

.contact-info .info-item .icon {
    font-size: 24px;
    color: #007bff;
    /* Primary color for icons */
    margin-right: 15px;
}

.contact-info .info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    /* Dark color for headings */
}

.contact-info .info-item p {
    font-size: 16px;
    color: #555;
    /* Slightly lighter black for text */
}

@media (max-width: 768px) {
    .contact-info .section-title {
        font-size: 24px;
    }

    .contact-info .info-item {
        padding: 15px;
    }

    .contact-info .info-item h3 {
        font-size: 16px;
    }

    .contact-info .info-item p {
        font-size: 14px;
    }
}




/* Swiper Container */
.swiper {
    width: 100%;
    padding: 20px 0;
    /* Adjust padding as needed */
}

/* Swiper Wrapper */
.swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Swiper Slide */
.swiper-slide {
    display: flex;
    justify-content: center;
    /* Center images horizontally */
    align-items: center;
    /* Center images vertically */
    background: #fff;
    /* Optional: Background color for slides */
    border-radius: 8px;
    /* Optional: Rounded corners for slides */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: Shadow for slides */
    padding: 10px;
    /* Optional: Space around images */
}

/* Swiper Slide Images */
.swiper-slide img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* Optional: Rounded corners for images */
}

/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #007bff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0056b3;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
}
