:root {
    --primary-color: #E83C91;
    --primary-color-light: #ec4899;
    --secondary-color: #ffffff;
    --font-family: 'Arial, sans-serif';
    --yellow-bg-color: #FAEB92;
    --yellow-bg-light-color: #f8f6e8;
    --pink-light-bg-color: #FFD6BA;
    --dark-color: #43334C;
    --light-grey-color: #ecf5ff;
    --black: #000000;
}

.text-primary-text {
    font-family: var(--font-family);
    color: var(--primary-color);
}

.text-primary-bold {
    font-family: var(--font-family);
    color: var(--primary-color);
    font-weight: bolder;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
}

/* Hero Section */

#hero {
    background: url('../images/bg-hero.png') no-repeat top center/cover;
}

.hero-section .col-lg-6 {
    margin: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-section .image-container {
    position: relative;
    width: 100%;
    height: 75vh;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 75vh;
    border-radius: 10px;
    object-fit: cover;
    animation: fadeInOut 12s infinite;
}

.hero-section img:nth-child(1) {
    animation-delay: 0s;
}

.hero-section img:nth-child(2) {
    animation-delay: 3s;
}

.hero-section img:nth-child(3) {
    animation-delay: 6s;
}

.hero-section img:nth-child(4) {
    animation-delay: 9s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    8.33% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    33.33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.yellow-bg {
    background-color: var(--yellow-bg-color);
}

#custom-design {
    background-color: var(--yellow-bg-color);
}

#fresh-ingredients {
    background-color: var(--primary-color);
}

#timely-delivery {
    background-color: var(--pink-light-bg-color);
}

.cta-section {
    color: var(--secondary-color) !important;
}

.cta-section h3 {
    color: var(--secondary-color) !important;
}

.cta-section .btn {
    background-color: var(--yellow-bg-color);
    color: var(--dark-color);
}

.cta-section .btn:hover {
    background-color: var(--pink-light-bg-color);
    color: var(--dark-color);
}

/* Services Page */
.services-page h1,
.services-page h2,
.services-page h3,
.services-page h4,
.services-page h5,
.services-page h6{
    color: var(--primary-color) !important;
}

.services-page p {
    color: var(--dark-color) !important;
}

/* Products Page */
.list-group-item.active {
    background-color: var(--light-grey-color);
    color: var(--black) !important;
}

.list-group-item.active:hover {
    background-color: var(--light-grey-color);
    color: var(--black);
}

/* Our achievements */
.imgbox
{
    height: 400px !important;
    position: relative;
}

.imgbox img {
    height: 100% !important;
    width: 100% !important;
    position: relative;
    object-fit:cover;
}

/* Testimonial CSS */
.testimonial-imgbox
{
    height: 400px !important;
    position: relative;
    background-color: var(--yellow-bg-light-color);
}
.testimonial-imgbox img {
    height: 100% !important;
    width: 100% !important;
    position: relative;
    object-fit:contain;
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 40px 0;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: var(--secondary-color) !important;
}

footer .social-icons a:hover {
    color: var(--dark-color) !important;
}

footer .footer-bottom {
    border-top: 1px solid var(--secondary-color);
    margin-top: 20px;
    padding-top: 10px;
    text-align: center;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
p {
    color: var(--secondary-color) !important;
}

/* Chatbot */
.whatsapp-float {
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: box-shadow 0.2s;
}

.whatsapp-float:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.chatbot-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    border-radius: 24px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-dialog-bottom {
    position: fixed;
    bottom: 80px;
    right: 24px;
    margin: 0;
    max-width: 340px;
    width: 100%;
}


/* Responsive Design  */
@media (max-width: 768px) {
    .hero-section .col-lg-6:nth-child(2) {
        order: 1;
    }

    .hero-section .col-lg-6:nth-child(1) {
        order: 2;
    }

    .hero-section .col-lg-6 img {
        height: 50vh;
    }

    .hero-section .image-container {
        position: relative;
        width: 100%;
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-section .col-lg-6:nth-child(2) {
        order: 1;
    }

    .hero-section .col-lg-6:nth-child(1) {
        order: 2;
    }

    .hero-section .col-lg-6 img {
        height: 50vh;
    }

    .hero-section .image-container {
        position: relative;
        width: 100%;
        height: 50vh;
    }
}