@font-face {
    font-family: 'Didot';
    src: url("/frontend/vendor/fonts/en/Didot.otf") format('truetype');
}

:root {
    --default-color: #343E3B;
    --red-color: #C52800;
    --secondary-color: #D9D9D9;
    --bg-color: #FFFDFE;
    --link-color: #333;
}

body {
    margin: 0;
    font-family: 'Didot', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
}
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loader img {
    width: 350px;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
    border: #141214 1.5px solid;
}
.form-control{

    border: #141214 1.5px solid;
}
/* ============================================================================================================================================
    Navbar Section
  ============================================================================================================================================ */
.navbar {
    position: relative !important;
    display: flex !important;
    padding: 10px !important;
    background-color: var(--bg-color) !important;
    justify-content: space-around !important;
    align-items: center !important;

}

.nav-items {
    margin-top: 1rem;
}
.nav-items > ul > li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
}

.nav-items > ul > li > a {
    color: var(--default-color);
    text-decoration: none;
    position: relative;
    padding: 10px 0; /* Increase the padding */
}

.nav-items > ul > li > a.active  {
    color: var(--red-color);
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
}

.nav-items > ul > li > a::after
{
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: #C52800;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items > ul > li > a:hover::after,
.nav-items > ul > li > a.active::after {
    transform: scaleX(1);
}
.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    width: 300px;
    height: 58px;
}

.nav-button {
    background-color: var(--bg-color);
    border-radius: 50px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--bg-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.language-picker-select {
    border: none;
    font-size: 20px;
    font-family: 'Didot';
}

#hamburger-menu,
#mobile-menu {
    display: none;
}


/* ============================================================================================================================================
    Hero Section
  ============================================================================================================================================ */

.carousel-inner {
    width: 100%;
    text-align: center;
}

.carousel-caption {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-caption h3 {
    color: white;
    font-size: 3.6rem;
}

.carousel-caption img {
    width: 18rem;
}

/* ============================================================================================================================================
    About Section
  ============================================================================================================================================ */

.about-body {
    height: 40rem;
    padding-inline-start: 5rem;
}

.about-body .section-1 {
    margin-bottom: 2rem;
}

.about-body h3 {
    font-size: 3rem;
    color: var(--red-color);
    margin-top: 3rem;
}

.about-body p {
    font-size: 1rem;
    line-height: 36px;
    color: var(--default-color);
}

.about-body button {
    background-color: var(--red-color);
    color: white;
    border: none;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;

}

.about-img {
    width: 25rem;
    height: 34rem;
    margin: 2rem;
}

.about-img img {
    width: 100%;
    margin-top: 3rem;
    background-size: 100% 100%;
    border-radius: 35px;

}

#about {
    background-image: url('/frontend/images/about-background.webp');
    background-size: 100% 100%;
}

/* ============================================================================================================================================
    Meet Section
  ============================================================================================================================================ */

#meet {
    position: relative;
    overflow: hidden;
    height: 48rem;
}

#meet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#meet .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.meet-title h3 {
    font-size: 3rem;
}

.meet-card {
    border-radius: 2rem;
    height: 12.5rem;
    background-size: 200% 100%;
    background-image: linear-gradient(111.79deg, rgba(255, 255, 255, 0.3) 15.16%, rgba(255, 255, 255, 0.3) 54.09%, rgba(255, 255, 255, 0.021) 85.3%);
    background-position: center;
    backdrop-filter: blur(5px);
    border: 0.5px solid rgba(255, 255, 255, 0.5);
}

.meet-card p {
    color: white;
    font-size: 1.5rem;
}

.meet-card .title {
    max-width: 300px;
    word-wrap: break-word;
}

/* ============================================================================================================================================
    Catering Section
  ============================================================================================================================================ */

.catering-title h3 {
    color: var(--red-color);
    font-size: 3rem;
}

.catering-card {
    position: relative;
    width: 14rem;
    height: 17rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    overflow: hidden;
}

.catering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.67%, rgba(0, 0, 0, 0.6) 100%);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25); /* Increased shadow for better visibility */
    border-radius: inherit;
    z-index: 1;
}

.catering-card img {
    width: 100%;
    border-radius: inherit;
    background-size: 100% 100%;
}

.catering-card .title {
    position: absolute;
    top: 14rem;

}

.catering-card .title p {
    color: #FFFDFE;
    font-size: 1rem;
    z-index: 1;
    position: relative;

}

/* ============================================================================================================================================
    Chef Section
  ============================================================================================================================================ */

#chef {
    background-image: url('/frontend/images/chef-background.webp');
    background-size: 100% 100%;
    height: 48rem;
}

.chef-image {
    width: 31rem;
    height: 31rem;
    border-radius: 50px;
    overflow: hidden;
}

.chef-image img {
    width: 100%;
    background-size: 100% 100%;
    border-radius: inherit;
}

.chef-title h3 {
    color: var(--red-color);
    font-size: 3rem;
}

.chef-body p {
    color: var(--default-color);
    font-size: 1rem;
    line-height: 2.5rem;
}

.quote-container {
    position: relative;

}

.quote-icon-top {
    position: absolute;
    transform: translateX(-50%);
    z-index: 10;
}

.quote-icon-bottom {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
    z-index: 10;
}

.quote-icon-top {
    top: 0;
    left: -3%;
}

.quote-icon-bottom {
    bottom: 10%;
}
.see-more button {
    background-color: var(--red-color);
    color: white;
    border: none;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;

}


/* ============================================================================================================================================
    Customize Section
  ============================================================================================================================================ */

#customize {
    background-image: url('/frontend/images/customize-background.webp');
    background-size: 100% 100%;
    height: 46rem;
}

.customize-list {
    padding-inline-start: 6rem;
}

.customize-list li {
    font-size: 1rem;
    color: var(--default-color);
    list-style: none;
    line-height: 3rem;
    display: flex !important;
    justify-content: start;
}

.badge {
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(197, 40, 0, 1);
    border-radius: 50%;
    margin-top: 0.8rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge::before {
    content: "";
    color: white;
}

.customize-image {
    width: 30rem;
    height: 30rem;
}

.customize-title h3 {
    color: var(--red-color);
    font-size: 3rem;
}

.customize-image {
    width: 30rem;
    height: 30rem;
    background-image: url('/frontend/images/customize-group.webp');
}

/* ============================================================================================================================================
    Dish Section
  ============================================================================================================================================ */

#dish {
    background-image: url('/frontend/images/dish-background.webp');
    background-size: 100% 100%;
    height: max-content;
}

.dish-title h3 {
    font-size: 3rem;
    color: var(--red-color);
}

.dish-title p {
    font-size: 1.5rem;
    color: #000000;
}

.dish-card {
    width: 23rem;
    height: 30rem;
    background-color: rgba(255, 253, 254, 1);
    border-radius: 35px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    position: relative;

}

.dish-card .carousel-item img {
    border-radius: 35px 35px 0 0;
    height: 15rem;
}

.card-title p {
    font-size: 1rem;
    color: var(--default-color);
    max-height: 4rem;
    overflow: hidden;
}

.dish-card .carousel-indicators {
    margin-bottom: 0 !important;
}

.dish-card .carousel-indicators button {
    width: 3.5rem;
    height: 0.3rem;
}

.dish-card .carousel-indicators button .active {
    background-color: rgba(255, 253, 254, 1);
}

.card-button button {
    width: 20rem;
    background-color: rgba(153, 115, 44, 1);
    border: none;
    border-radius: 35px;
    padding: 15px 20px 15px 20px;
    color: rgba(255, 253, 254, 1);
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

/* ============================================================================================================================================
    Testimonial Section
  ============================================================================================================================================ */

#testimonial {
    background-image: url('/frontend/images/testimonial-background.webp');
    background-size: 100% 100%;
    height: 37rem;

}

.testimonial-title h3 {
    font-size: 1.2rem;
    color: var(--red-color);
}

.slick-prev::before {
    font-size: 3rem !important;
    color: rgba(176, 62, 24, 0.9) !important;
    position: absolute;
    left: -10px;
}

.slick-next::before {
    font-size: 3rem !important;
    color: rgba(176, 62, 24, 0.9) !important;
    position: absolute;
    left: -20px;
}

.slick-next {
    z-index: 999;
}

.slick-prev {
    z-index: 999;
}

.testimonial-section-col-logo-holder {
    width: 19rem !important;
    height: 19rem !important;
    border: 30px !important;
}

.testimonial-section-col-content-holder .slick-slide img {
    width: 100% !important;
    background-size: 100% 100% !important;
    border-radius: 30px !important;
    align-items: center;
}


.testimonial-section-col-content-holder .slick-slide .slick-current .slick-active img {
    width: 100% !important;
    background-size: 100% 100% !important;
    border-radius: 30px !important;
}

.testimonial-section-col-logo-holder p {
    font-size: 1.2rem;
    line-height: 2rem;
}

.testimonial-slider {
    position: relative;
    border: 0.5px solid rgba(255, 253, 254, 0.5);
    box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.testimonial-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(111.79deg, rgba(255, 255, 255, 0.3) 15.16%, rgba(255, 255, 255, 0.3) 54.09%, rgba(255, 255, 255, 0.021) 85.3%);
    z-index: 1;
    border-radius: 30px;
    background-size: cover;
}

.user-info {
    display: flex;
    justify-content: center;
    align-content: center;
    z-index: 999;
    margin: 1rem;
    border-radius: 50%;

}
.user-info h5{
    color : var(--red-color)
}
.user-info img {
    border-radius: inherit;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.testimonial-image img {
    background-size: 100% 100%;
    border-radius: inherit;
}
 
/* ============================================================================================================================================
    Footer Section
  ============================================================================================================================================ */

footer {
    height: 16.5rem;
    background-color: rgba(235, 201, 184, 1);
}

footer ul li {
    font-size: 1rem;
    color: var(--default-color);
}

footer h5 {
    font-size: 1rem;
    color: var(--default-color);
    max-width: 10rem;
    word-wrap: break-word;
}

.nav-link {
    color: var(--default-color) !important;
}

.copy-right {
    height: 3rem;
}
.social-icons a{
    margin-left: 1rem;
}
/* ============================================================================================================================================
    Menu Page
  ============================================================================================================================================ */
#menu{
    background-image: url('/frontend/images/Menu.webp');
    background-size: 100% 100%;
}
#menu-navbar {
    position: relative;
    display: flex;
    background-color: rgba(235, 201, 184, 1);
    width: 100%;
    transition: top 0.9s ease-in-out;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.25);
}

#menu-navbar.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
#menu-navbar.sticky-navbar a {
    padding: 10px 20px;
}
#menu-navbar a {
    display: block;
    color: var(--default-color);
    text-decoration: none;
    position: relative;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
}

#menu-navbar a.active {
    color: var(--red-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
}

#menu-navbar a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: #C52800;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#menu-navbar a:hover::after,
#menu-navbar a.active::after {
    transform: scaleX(1);
}

.menu-head-title {
    position: absolute;
    top: 20%;
    left: 8%;
}

.menu-title h3 {
    font-size: 2rem;
    color: var(--red-color);
}

.menu-title p {
    font-size: 1.2rem;
    color: var(--default-color);
}
    .menu-header{
        height: 16rem;
        background-image: url('/frontend/images/menu-head.webp');
        background-size: 100% 100%;

    }


.menu-header h1 {
    font-size: 4rem;
    color: rgba(197, 40, 0, 1);
}

.menu-header p {
    max-width: 35rem;
    color: white;
    font-size: 1.2rem;

}

.menu-content {
    height: max-content;
}

.search {
    height: 3rem;
    width: 75%;
}

.input-group.search {
    display: flex;
    align-items: center;
    border: rgba(217, 217, 217, 1) solid 1px;
    border-radius: 50px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}
.input-search:focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}
.input-group.search .form-control,
.input-group.search .btn {
    border-radius: 50px;
    padding: 11px 24px 11px 24px;
    border: none;

}

.input-group.search .btn {
    margin-left: 0.5rem;
    background-color: var(--red-color);
    color: white;
    border-radius: 50px !important;

}

.menu-card-button a {
    width: 8rem;
    background-color: rgba(153, 115, 44, 1);
    border: none;
    border-radius: 35px;
    padding: 14px 21px 14px 21px;
    color: rgba(255, 253, 254, 1);
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    text-decoration: none;
}
.modal-content{
    border-radius: 50px;
}
.btn-close{
    color: #000000;
    margin-top: 1rem;
}
.modal-header {
    border-bottom: none;
}
.modal-body p{
 font-size: 1rem;
    color: var(--default-color);
    line-height: 2rem;
}
.splide{
    display: flex;
    justify-content: center;
    padding: 0;
    border-radius: 30px;
}
.splide img{
    width: 100%;
    height: 18rem;
    border-radius: 30px;
}
.splide__track{
    border-radius: 30px;
}
.thumbnails {
    display: flex;
    margin: 1rem auto 0;
    padding: 0;
    justify-content: center;
}


.thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
    border-radius: 10px;
}


.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.splide__arrow{
     background: rgba(176, 62, 24, 0.9) !important;
}
.splide__arrow svg{
    fill: #ffffff !important; ;
}
/* ============================================================================================================================================
   Pagination
 ============================================================================================================================================ */
.pagination-circular li.current a {
    background-color: rgba(197, 40, 0, 1);
    color: #fefefe;
    border: 1px solid rgba(197, 40, 0, 1);
}

.pagination-circular li.disabled a {
    border: 1px solid #cacaca;
    color: #cacaca;
}

.pagination-circular .current a {
    border-radius: 50%;
    padding: 10px 15px;
    border: 1px solid #000000;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    margin-left: 1rem;
}

.pagination-circular a {
    border-radius: 50%;
    padding: 10px 15px;
    border: 1px solid #000000;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
}

.pagination-circular li:not(.disabled):not(.current) a:hover {
    background: rgba(197, 40, 0, 1);
    color: #fefefe;
}

.pagination-circular li a {
    transition: background 0.15s ease-in, color 0.15s ease-in;
}

/* ============================================================================================================================================
    Contact Page
  ============================================================================================================================================ */
.contact-header {
    width: 100%;
    height: 40rem;
    background-image: url('/frontend/images/contact-header.webp');
    background-size: 100% 100%;
}
.contact-info {
    position: absolute;
    top: 39%;
    left: 19%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 2.5rem;
}
.contact-info h3 {
    font-size: 1rem;
}

.contact-info h1{
    font-size: 3rem;
    color: var(--red-color);
}
.contact-info p {
    font-size: 18px;
    margin-top: 3px;
}
.contact-info span{
    color: var(--red-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}
#map{
    width: 100%;
    height: 35rem;
    background-color: #FFFDFE;
}
.map{
    border-radius: 10px;
}
.map-title h1{
    font-size: 40px;
    color: var(--red-color);
    max-width: 30rem;
}
#contact-form{
    width: 100%;
    height: auto;
    background-image: url('/frontend/images/contact-background.webp');
    background-size: 100% 100%;
}
#contact-form h1{
    font-size: 3rem;
    color: var(--red-color);
}
.contact-form input{
    border: #141214 1.5px solid;
}
.contact-form textarea{
    border: #141214 1.5px solid;

}
.submit-btn{
    width: 12rem;
    border: none;
    background: #99732C;
    padding: 10px;
    margin: 1.5rem;
    border-radius: 50px;
    color: white;
}

/* ============================================================================================================================================
  Application Page
============================================================================================================================================ */
#application{
    height: max-content;
}
#application-form{
    background-image: url('/frontend/images/application.webp');
    background-size: 100% 100%;
}
#application-form h1{
    color: var(--red-color);
    font-size: 3rem;
}
#application h1{
    color: var(--red-color);
    font-size: 3rem;
}
.img-card {
    width: 20rem;
    height: 20rem;
    border-radius: 50px;
}
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

@media (max-width: 767px) {
    .gallery_cont .slick-prev::before {
        left: 40px;
    }

    .gallery_cont .slick-next::before {
        left: -50px !important;
    }
}

/* ============================================================================================================================================
  About Page
============================================================================================================================================ */

#about-section{
    width: 100%;
    height: max-content;
    background-image: url('/frontend/images/about-section-background.webp');
    background-size: 100% 100%;
}
#about-section .title h1{
    font-size: 3rem;
    color: var(--red-color);
}
.title-line {
    width: 100%;
    height: 2px;
    background-color: var(--red-color);
    margin-top: 10px;
}
.about-section-body{
    font-size: 1.2rem;
    color: var(--default-color);
    line-height: 3rem;

}
.about-section-image{
    margin-top: 6rem;
    width: 36rem;
    height: 21rem;
    border-radius: 20px;
}
.about-section-image img{
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
#mission-section{
    width: 100%;
    height: max-content;
    background-image: url('/frontend/images/mission-background.webp');
    background-size: 100% 100%;
}

.title h1{
    font-size: 3rem;
    color: var(--red-color) !important;
}

.mission-section-body{
    font-size: 1.2rem;
    color: var(--default-color);
    line-height: 3rem;

}
.mission-section-image{
    margin-top: 5rem;
    width: 36rem;
    height: 31rem;
    border-radius: 20px;
}
.mission-section-image img{
    width: 100%;
    height: 100%;
    border-radius: inherit;
}


@media only screen and (max-width: 600px) {
    /* ============================================================================================================================================
    Navbar Section
  ============================================================================================================================================ */
    .navbar {
        position: relative;
        display: flex;
        padding: 10px;
        background-color: var(--bg-color);
    }

    .nav-logo {
        width: 250px;
    }

    .nav-logo img {
        width: 100%;
    }

    .nav-mobile-logo {
        width: 300px;

        padding: 10px;
        padding-inline-start: 20px;
    }

    .nav-mobile-logo img {
        width: 100%;

    }

    #mobile-menu {
        background-color: var(--bg-color);
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        z-index: 999;
    }

    .mobile-nav-items > ul {
        padding: 0px;
    }

    .mobile-nav-items {
        height: 50rem;
    }

    .mobile-nav-items > ul > li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 20px;
    }

    .mobile-nav-items > ul > li > a {
        color: var(--default-color);
        text-decoration: none;
    }

    .mobile-nav-items > ul > li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-items > ul > li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: var(--default-color);
        transition: width 0.3s ease, left 0.3s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: var(--default-color);
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items > ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: var(--default-color);
        cursor: pointer;
        font-size: 30px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: var(--default-color);
        cursor: pointer;
        font-size: 24px;
    }
    /* ============================================================================================================================================
        Hero Section
      ============================================================================================================================================ */

    .swiper-container {
        width: 100%;
        max-width: 100%;
        position: fixed;
    }


    .carousel-item img {
        height: 18.75rem;
    }

    .carousel-caption {
        width:90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .carousel-caption h3 {
        color: white;
        font-size: 2rem;
    }

    .carousel-caption img {
        width: 9rem;
        height: 3rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    /* ============================================================================================================================================
        About Section
      ============================================================================================================================================ */

    #about {
        background-image: url('/frontend/images/about-mobile.webp');
        background-size: 100% 100%;
        height: 64rem;
    }

    .about-body {
        height: 25rem;
        padding-inline-start: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-body .section-1 {
        margin-bottom: 1rem;
    }

    .about-body h3 {
        font-size: 3rem;
        color: var(--red-color);
        margin-top: 3rem;
        text-align: center;
    }

    .about-body p {
        font-size: 1rem;
        line-height: 28px;
        color: var(--default-color);
    }

    .about-body button {
        background-color: var(--red-color);
        color: white;
        border: none;
        border-radius: 1.5rem;
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;

    }

    .about-img {
        width: 18rem;
        height: 23rem;
    }

    .about-img img {
        width: 100%;
        margin-top: 10rem;

    }

    /* ============================================================================================================================================
        Meet Section
      ============================================================================================================================================ */

    .meet-title h3 {
        font-size: 1.5rem;
    }

    .meet-card p {
        font-size: 1.2rem;
    }
    /* ============================================================================================================================================
        Catering Section
      ============================================================================================================================================ */

    #catering {
        background-image: url('/frontend/images/catering-background-mob.webp') !important;
    }

    .catering-title h3 {
        color: var(--red-color);
        font-size: 2rem;
    }

    .catering-card {
        width: 11rem;
        height: 14rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 40px;
        overflow: hidden;
    }

    .catering-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.67%, rgba(0, 0, 0, 0.6) 100%);
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25); /* Increased shadow for better visibility */
        border-radius: inherit;
        z-index: 1;
    }

    .catering-card img {
        width: 100%;
        border-radius: inherit;
        background-size: 100% 100%;
    }


    .catering-card .title {
        position: absolute;
        top: 12rem;

    }

    .catering-card .title p {
        color: #FFFDFE;
        font-size: 1rem;
        z-index: 1;
        position: relative;

    }
    /* ============================================================================================================================================
        Chef Section
      ============================================================================================================================================ */

    #chef {
        background-image: url('/frontend/images/chef-background-mob.webp');
        background-size: 100% 100%;
        height: 50rem;
    }

    .chef-image {
        width: 22rem;
        height: 22rem;
        border-radius: 50px;
        overflow: hidden;
    }

    .chef-image img {
        width: 100%;
        height: auto;
        background-size: 100% 100%;
        background-position: center;
    }

    .chef-title h3 {
        color: var(--red-color);
        font-size: 2rem;
    }

    .chef-message {
        max-height: 170px;
        overflow: hidden;
    }

    .chef-body p {
        color: var(--default-color);
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .quote-container {
        position: relative;
        width: 95%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-inline-start: 1rem;
    }

    .quote-icon-top {
        top: 0;
        left: 1%;
    }
    /* ============================================================================================================================================
        Customize Section
      ============================================================================================================================================ */

    #customize {
        background-image: url('/frontend/images/customize-background-mob.webp');
        background-size: 100% 100%;
        height: max-content;

    }

    .customize-title h3 {
        font-size: 2rem;
        color: var(--red-color);
    }

    .customize-list {
        display: grid;
        padding-inline-start: 0;
        margin: 1rem;
        max-width: 20rem;
        overflow: hidden;
        grid-template-columns: repeat(2 ,1fr);
        column-gap: 2.5rem;
        line-height: 0!important;
    }
   

    .customize-list li {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .customize-list li p {
        margin-top: 1rem;
    }

    .customize-image {
        width: 23rem;
        height: 23rem;
        background-image: url('/frontend/images/customize-group-mob.svg');
        background-size: 100% 100%;
    }
    /* ============================================================================================================================================
        Dish Section
      ============================================================================================================================================ */

    #dish {
        background-image: url('/frontend/images/dish-background-mob.webp');
        background-size: 100% 100%;
        height: max-content;
    }

    .dish-title h3 {
        font-size: 2rem;
        color: var(--red-color);
    }

    .dish-title p {
        font-size: 1rem;
        color: #000000;
    }

    .dish-card {
        width: 23rem;
        height: 30rem;
        background-color: rgba(255, 253, 254, 1);
        border-radius: 35px;
        box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
        position: relative;
    }

    .dish-card .carousel-item img {
        border-radius: 35px 35px 0 0;
    }

    .card-title h5 {
        font-size: 1rem;
    }

    .card-title p {
        font-size: 0.8rem;
        color: var(--default-color);
        max-height: 3.8rem;
        overflow: hidden;
    }

    .dish-card .carousel-indicators {
        margin-bottom: 0 !important;
    }

    .dish-card .carousel-indicators button {
        width: 3.5rem;
        height: 0.3rem;
    }

    .dish-card .carousel-indicators button .active {
        background-color: rgba(255, 253, 254, 1);
    }

    .card-button button {
        width: 20rem;
        background-color: rgba(153, 115, 44, 1);
        border: none;
        border-radius: 35px;
        padding: 15px 20px 15px 20px;
        color: rgba(255, 253, 254, 1);
        cursor: pointer;
        position: absolute;
        left: 1.5rem;
        bottom: 1rem;
    }
    /* ============================================================================================================================================
        Testimonial Section
      ============================================================================================================================================ */

    #testimonial {
        height: 26rem;
    }
    
    /* ============================================================================================================================================
        Footer Section
      ============================================================================================================================================ */

    footer {
        width: 100%;
        height: 33rem;

    }

    .testimonial-image-container {
        display: none;
    }

    .slick-prev::before {
        font-size: 2rem !important;
        position: absolute;
        left: -1px;
    }

    .slick-next::before {
        font-size: 2rem !important;
        position: absolute;
        left: -12px;
    }
    /* ============================================================================================================================================
        Menu Page
      ============================================================================================================================================ */

    .menu-header{
        background-image: url('/frontend/images/header.webp');

    }
    .menu-header h1 {
        font-size: 2rem;
    }

    .menu-header p {
        font-size: 0.8rem;
        color: white;
    }
    .menu-head-title{
        margin-top: 5rem;
        align-items: center;
        text-align: center;
        max-width: 22rem;
        word-wrap: break-word;
        left: 13%!important;
    }
    #menu-navbar{
     overflow: auto;
        max-width: 100%;
        height: 5rem;

    }
    #menu-navbar a {
        display: block;
        color: var(--default-color);
        text-decoration: none;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 0;
        cursor: pointer;
        font-size: 20px;
        width: 7rem;
    }
    #menu-navbar a.active {
        color: var(--red-color);
        text-decoration: none;
        position: relative;
        display: inline-block;
        margin: 10px;
        padding: 10px 0;
        cursor: pointer;
        font-size: 20px;
        align-items: center;
    }
    #menu-navbar.sticky-navbar a {
        padding: 10px 0;
    }

    .search {
        height: 3rem;
        width: 100%;
        margin-left: 1rem;
    }
    .menu-content {
        height: max-content;
    }
.splide img{
    width: 100%;
    height: 13rem;
    border-radius: 30px;
}
    #map{
        width: 100%;
        height: max-content;
        background-color: #FFFDFE;
    }
    .map-title img{
        margin-right: 1rem;
    }
    .contact-header {
        width: 100%;
        height: 38rem;
        background-image: url('/frontend/images/header.webp');
        object-fit: cover;
        background-position: center;
    }
    .contact-info {
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        line-height: 2.5rem;
    }
    .contact-info h3 {
        font-size: 1rem;
    }

    .contact-info h1{
        font-size: 2rem;
        color: var(--red-color);
    }
    .contact-info p {
        font-size: 18px;
        margin-top: 3px;
    }
    .contact-info span{
        color: var(--red-color);
        font-size: 1rem;
        margin-right: 1rem;
    }
    .full-width{
        width: 100% !important;
    }

    #about-section{
        width: 100%;
        height: max-content;
        background-image: url('/frontend/images/about-section-background.webp');
        background-size: 100% 100%;
    }
    #about-section .title h1{
        font-size: 2rem;
        color: var(--red-color);
    }
    .title-line {
        width: 100%;
        height: 2px;
        background-color: var(--red-color);
    }
    .about-section-body{
        font-size: 1rem;
        color: var(--default-color);
        line-height: 2rem;
    }
    .about-section-image{
        margin: 0;
        width: 23rem;
        height: 13rem;
        border-radius: 20px;
    }
    .about-section-image img{

        width: 100%;
        border-radius: inherit;
        background-size: 100% 100%;
    }
    #mission-section{
        width: 100%;
        height:max-content;
        background-image: url('/frontend/images/mission-background.webp');
        background-size: 100% 100%;
    }
    .mission-row{
        flex-direction: column-reverse;
    }
    .title h1{
        font-size: 2rem;
        color: var(--red-color) !important;
    }

    .mission-section-body{
        font-size: 1rem;
        color: var(--default-color);
        line-height: 2rem;

    }
    .mission-section-image{
        margin: 0;
        width: 23rem;
        height: 21rem;
        border-radius: 20px;
    }
    .mission-section-image img{
        width: 100%;
        border-radius: inherit;
        background-size: 100% 100%;
    }
    #vision-section{
        width: 100%;
        background-image: url("/frontend/images/vision-background.webp");
        height: max-content;
    }

}
@media (min-width: 768px) and (max-width: 1024px) {
    #about{
        height: 72rem;
    }
    .about-body{
        height: 27rem;
    }
    #chef {
        height: 68rem;
    }
    .customize-list{
        padding-inline-start: 1rem;
    }
    .dish-card{
        height: 25rem;
    }
    .card-button button{
        width: 11rem;
        font-size: 10px;
        padding: 12px;
    }
    .contact-info {
        left: 30%;
    }
    .contact-header{
        height: 35rem;
    }
    .testimonial-row{
        align-items: center;
    }
    .testimonial-image img {
      margin-left: 1rem;
        width: 17rem;
    }
    #testimonial{
        height: 26rem;
    }
    .customize-image{
        background-size: 100% 100%;
        margin-top: 2rem;
    }
    .map-title img{
        margin-right: 1rem;
    }
}
