.swiper-slide.one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../img/slider/banner-new.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide.two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../img/slider/banner-2.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media screen and (max-width:600px){
    .swiper-slide.one {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../img/slider/banner-1-mobile.webp);
    }    
    .swiper-slide.two {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../img/slider/banner-2-mobile.webp);
    }    
}

.main_wrapper {
    position: relative;
    width: 100%;
    /* height: 90vh; */
    /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /* 50% black overlay */
    z-index: 1;
}

.banner-video {
    z-index: 0;
}


.banner-content {
    position: relative;
    z-index: 2;
    /* Ensures text is above the video */
    /* text-align: center; */
    color: white;
    padding: 20px;
}


.main_wrapper .slider_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    height: 100vh;
    max-width: 60%;
    padding: 0 60px;
    /* text-align: center; */

}

.slider_content .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.slider_content h1 {
    font-size: 50px;
    line-height: 58px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    /* margin-left: 30px; */
}

.slider_content p {
    color: #fff;
    font-weight: 200;
    font-size: 20px;
    /* margin-left: 30px; */
}

.slider_content .btns {
    display: flex;
    gap: 16px;
}

/* .slider_content .main-btn {
    width: fit-content;
} */





/* Custom Navigation Styles */
.custom-next,
.custom-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-next:hover,
.custom-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

.custom-next {
    right: 30px;
}

.custom-prev {
    left: 30px;
}

/* Modern Pagination Dots */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background: #ffcc00;
    /* Modern highlighted color */
    opacity: 1;
}


.swiper-pagination-fraction {
    font-size: 14px;
    color: #fff;
    /* Change to your preferred color */
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
}



/* banners */

.banners .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.banners .banner {
    background-size: cover;
    background-position: center;
    height: 350px;
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banners .b1 {
    background-image: url(../img/food-banner/b1.png);
}

.banners .b2 {
    background-image: url(../img/food-banner/b2.png);
}

.banners .b3 {
    background-image: url(../img/food-banner/b3.png);
}

.banners .banner h3 {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
    max-width: 50%;
}

.banners .main-btn {
    font-size: 12px;
    width: fit-content;
}



.products .flex_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products .grid_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.product_card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.product_image {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.product_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product_card:hover .product_image img {
    transform: scale(1.05);
}
.product_card .product_name{
    font-size: 14px;
    text-transform: uppercase;
}
.product-name {
    font-size: 16px;
    font-weight: 200;
    color: #333;
    margin: 0;
}

.price {
    font-weight: 600;
}


.what-we-do {
    background: #f9f9f9;
}





.what-we-do .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.what-we-do .service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
}

.what-we-do .service-card:hover {
    transform: translateY(-8px);
}

.what-we-do .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #ffeaea;
}

.what-we-do .icon i {
    font-size: 32px;
    color: #d62828;
}

.what-we-do .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.what-we-do .service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */

@media(max-width:992px) {
    .what-we-do .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .what-we-do .services-grid {
        grid-template-columns: 1fr;
    }

    .what-we-do .section-header h2 {
        font-size: 28px;
    }
}



.footer {
    background: #222;
    color: white;
    padding: 70px 20px 20px;
}

.footer .container {
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
}


.footer-logo {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 14px;
    max-width: 80%;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item i {
    font-size: 20px;
}

.footer-social {
    text-align: center;
    margin-top: 40px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: #e52323;
    margin: 0 6px;
    font-size: 20px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 14px;
}

/* Responsive */

@media(max-width:900px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

}


.serve-section {
    background: #f9f9f9;
}



.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #d62828;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.serve-section .serve-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.serve-section .serve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.serve-section .serve-card i {
    font-size: 48px;
    color: #d62828;
    margin-bottom: 15px;
    display: block;
}

.serve-section .serve-card h3 {
    font-size: 16px;
    font-weight: 600;
}

/* Tablet */

@media(max-width:992px) {

    .serve-section .serve-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Mobile */

@media(max-width:600px) {

    .serve-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

}




/* category */

.categories-section {
    padding: 100px 20px;
    background: #f9f9f9;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #d62828;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}





.categories-section .categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.categories-section .category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.categories-section .category-card:hover {
    transform: translateY(-6px);
}

.categories-section .category-card img {
    width: 100%;
    /* height: 220px; */
    object-fit: cover;
}

.categories-section .category-card h3 {
    padding: 20px 0px;
    font-size: 16px;
}

/* Tablet */

@media(max-width:992px) {
    .categories-section .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media(max-width:600px) {
    .categories-section .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-section .section-title h2 {
        font-size: 28px;
    }
}





.about-section {
    /* padding: 100px 20px; */
    background: #fff;
}

.about-section .container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section .about-image {
    position: relative;
}

.about-section .about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-section .about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #d62828;
    color: white;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
}

.about-section .about-badge h3 {
    font-size: 36px;
    margin: 0;
}

.about-section .about-badge p {
    margin: 5px 0 0;
    font-size: 14px;
}

.about-section .subtitle {
    color: #d62828;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-section .about-content h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-section .about-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-section .about-btn {
    display: inline-block;
    background: #d62828;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.about-section .about-btn:hover {
    background: #b71c1c;
}

/* Responsive */

@media(max-width:992px) {

    .about-section .container {
        grid-template-columns: 1fr;
    }

    .about-section .about-content h2 {
        font-size: 32px;
    }

    .about-section .about-badge {
        right: 20px;
        bottom: 20px;
    }

}



.cta-section {
    padding: 90px 20px;
    background: #d62828;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .main-btn {
    background: #fff;
    padding: 12px 16px !important;
    color: var(--primary-color) !important;
}
.cta-section .main-btn i{
    color: #fff;
}
.cta-section .main-btn:hover {
    color: var(--primary-color) !important;
}

/* Responsive */

@media(max-width:768px) {

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

}










.why-section {
    padding: 100px 0;
    background: url("../img/why-choose-us.png") center/cover no-repeat;
    position: relative;
    color: #fff;
    background-attachment: fixed;
}

/* dark overlay */

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.why-section .container {
    position: relative;
    z-index: 2;
}


/* IMAGE */

.why-section__image {
    position: relative;
}

.why-section__image img {
    width: 100%;
    border-radius: 20px;
}

/* experience card */

.why-section__experience {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: #e52323;
    padding: 25px 35px;
    border-radius: 14px;
    text-align: center;
}

.why-section__experience h3 {
    font-size: 36px;
    margin: 0;
}

.why-section__experience p {
    margin: 0;
    font-size: 14px;
}


/* TAG */

.why-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff5a36;
    font-weight: 600;
    margin-bottom: 15px;
}

/* TITLE */

.why-section__title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* DESCRIPTION */

.why-section__desc {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* FEATURES */

.why-section__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FEATURE CARD */

.why-section__feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.why-section__feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ICON */

.why-section__icon {
    font-size: 26px;
    color: #ff5a36;
}


/* FEATURE TEXT */

.why-section__feature h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.why-section__feature p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #cfcfcf;
}


/* RESPONSIVE */

@media(max-width:991px) {

    .why-section__title {
        font-size: 30px;
    }

    .why-section__experience {
        bottom: -15px;
    }

}



.mission-values-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.mission-values-section__title {
    font-size: 40px;
    font-weight: 700;
    color: #e52323;
    margin-bottom: 25px;
}

/* MISSION */

.mission-values-section__mission-list {
    padding-left: 20px;
    list-style: disc;
}

.mission-values-section__mission-list li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.mission-values-section__mission-list strong {
    font-weight: 600;
}

/* VALUES */

.mission-values-section__timeline {
    border-left: 2px solid #e52323;
    padding-left: 25px;
}

.mission-values-section__item {
    margin-bottom: 25px;
}

.mission-values-section__item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.mission-values-section__item p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .mission-values-section__title {
        font-size: 32px;
    }

    .mission-values-section__timeline {
        margin-top: 40px;
    }

}



.contact-page-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-page-section__item {
    padding: 20px 30px;
}

.contact-page-section__icon {
    font-size: 40px;
    color: #e52323;
    margin-bottom: 20px;
}

.contact-page-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-page-section p {
    color: #777;
    line-height: 1.6;
}

.contact-page-section__highlight {
    color: #e52323;
    font-weight: 600;
}

.contact-page-section__divider {
    border-left: 1px solid #e5e5e5;
}

/* Responsive */

@media(max-width:991px) {

    .contact-page-section__divider {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        margin-top: 40px;
        padding-top: 40px;
    }

}



.product_filter{
    /* text-align:center; */
    margin-bottom:40px;
    }
    
    .filter_btn{
    border:none;
    background:#eee;
    padding:10px 22px;
    margin:5px;
    border-radius:30px;
    cursor:pointer;
    font-weight:500;
    }
    
    .filter_btn.active{
    background:#e52323;
    color:#fff;
    }