body {
    margin: 0;
    font-family: sans-serif;
}

/* Top bar */

.topbar {
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #C41218;
}

/* Navbar */


.main-navbar {
    background: #c41218;
    position: relative;
}

/* Logo angled section */

.logo-section {
    background: white;
    padding: 10px 59px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    width: 250px;
}

.logo-img {
    height: 70px;
    width: 100px;
}

/* Nav links */

.navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    margin: 0 15px;
}

.main-navbar {
    background: #c41218;
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 83px;
}


.nav-div {
    margin-top: -8px;
}

/* Quote Button */

.quote-btn .btn {
    background: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 20px;
    font-size: 14px;
}

.quote-btn .btn:hover {
    background: #e68900;
}

/* Mobile */

@media (max-width:991px) {

    .logo-section {
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
        padding: 12px 25px;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        color: black;
    }

    .main-navbar{
        height: 95px;
    }

}

/* baner section */
/* Banner */

.banner-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* margin-top: -5px; */
}

/* Smooth slide */

#heroSlider {
    margin-top: -10px;
}

.carousel-item {
    transition: transform 1s ease;
}

/* Custom Arrow Buttons */

.custom-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}


.carousel-control-prev {
    margin-left: 10px;
}

.carousel-control-next {
    margin-right: 10px;
}

/* Icon Style */

.custom-arrow i {
    color: #fff;
    font-size: 28px;
}

/* Hover Effect */

.custom-arrow:hover {
    background: #C41218;
}

/* Mobile */

@media (max-width:768px) {

    .banner-img {
        height: 180px !important;
    }

    .custom-arrow {
        width: 40px;
        height: 40px;
    }

    .custom-arrow i {
        font-size: 22px;
    }


    #heroSlider{
        margin-top: 0%;
    }

}


/* home page css */
.hing-about-section {
    padding: 60px 20px;
    background: #fff7f7;
    overflow: hidden;
}

.hing-container {
    max-width: 1200px;
    margin: auto;
}

.hing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* INITIAL STATE */

.hing-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(.22, .61, .36, 1);
}

/* WHEN VISIBLE */

.hing-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hing-title {
    font-size: 30px;
    font-weight: 700;
    color: #a30f14;
    margin-bottom: 25px;
    line-height: 1.3;
    animation: fadeUp 1s ease forwards;
}

.hing-text {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    color: #444;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.hing-text:nth-child(2) {
    animation-delay: .2s
}

.hing-text:nth-child(3) {
    animation-delay: .4s
}

.hing-text:nth-child(4) {
    animation-delay: .6s
}


/* RIGHT DESIGN */

.hing-design-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hing-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 19px;
    font-weight: 600;
    color: #a30f14;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.hing-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #a30f14;
    left: -100%;
    top: 0;
    transition: .5s;
    z-index: 0;
}

.hing-card span {
    position: relative;
    z-index: 1;
}

.hing-card:hover {
    color: white;
    transform: translateY(-10px);
}

.hing-card:hover:before {
    left: 0;
}

.hing-card1 {
    animation: float 4s ease-in-out infinite;
}

.hing-card2 {
    animation: float 5s ease-in-out infinite;
}

.hing-card3 {
    grid-column: span 2;
    animation: float 6s ease-in-out infinite;
}


/* RIGHT SIDE WRAPPER */

.hing-right-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* IMAGE DESIGN */

.hing-image-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeUp 1s ease forwards;
}

.hing-image-box img {
    width: 100%;
    height: 300px;
    display: block;
    transition: transform .6s ease;
}

.hing-image-box:hover img {
    transform: scale(1.08);
}

/* ANIMATIONS */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}


/* RESPONSIVE */

@media(max-width:900px) {

    .hing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hing-title {
        font-size: 28px;
    }

    .hing-design-box {
        grid-template-columns: 1fr;
    }

    .hing-card3 {
        grid-column: span 1;
    }

}

/* product page */
.hing-product-premium {

    padding: 60px 20px;
    background: linear-gradient(180deg, #fff, #fff4f4);

}

.hing-product-container {

    max-width: 1200px;
    margin: auto;
    text-align: center;

}

/* HEADING */

.hing-product-heading {

    font-size: 42px;
    color: #a30f14;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;

}

.hing-product-intro {

    max-width: 800px;
    margin: auto;
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #444;

}


/* PRODUCT GRID */

.hing-product-layout {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;

}


/* CARD */

.hing-product-card {

    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: .5s;

}

.hing-product-card img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;

}

.hing-product-card:hover img {

    transform: scale(1.1);

}


/* OVERLAY */

.hing-product-overlay {

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    text-align: left;

}

.hing-product-overlay h3 {

    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;

}

.hing-product-overlay p {

    font-size: 16px;
    line-height: 1.4;

}


/* HOVER */

.hing-product-card:hover {

    transform: translateY(-12px);

}


/* BOTTOM TEXT */

.hing-product-bottom {

    max-width: 850px;
    margin: 40px auto 0;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #444;

}


/* ANIMATION */

.hing-product-reveal {

    opacity: 0;
    transform: translateY(80px);
    transition: 1s cubic-bezier(.22, .61, .36, 1);

}

.hing-product-reveal.active {

    opacity: 1;
    transform: translateY(0);

}


/* MOBILE */

@media(max-width:900px) {

    .hing-product-layout {

        grid-template-columns: 1fr;

    }

    .hing-product-heading {

        font-size: 30px;

    }

}

/* SECTION BACKGROUND */

.mb-choose-section {

    position: relative;
    background: url("../img/bg-image.png") center/cover no-repeat;
    padding: 60px 20px;
    z-index: 1;

}

/* DARK OVERLAY */

.mb-choose-section::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 39, 39, 0.315);
    z-index: -1;

}

/* CONTAINER */

.mb-choose-container {

    max-width: 1200px;
    margin: auto;

}

/* TITLE */

.mb-choose-title {

    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;

}

/* DESCRIPTION */

.mb-choose-desc {

    text-align: center;
    max-width: 700px;
    margin: auto;
    font-weight: 600;
    margin-bottom: 70px;
    font-size: 18px;
    color: #f2f2f2;
    line-height: 1.4;

}

/* GRID */

.mb-choose-grid {

    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 40px;
    align-items: center;

}

/* COLUMN */

.mb-choose-col {

    display: flex;
    flex-direction: column;
    gap: 35px;

}

/* ITEM */

.mb-choose-item {

    display: flex;
    align-items: flex-start;
    gap: 18px;

}

/* ICON */

.mb-choose-icon {

    width: 65px;
    height: 65px;
    background: #a30f14;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    flex-shrink: 0;

}

/* TEXT */

.mb-choose-text h4 {

    font-size: 23px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;

}

.mb-choose-text p {

    font-size: 16px;
    color: #f8f4f4;
    line-height: 1.6;

}

/* CENTER IMAGE */

.mb-choose-center {

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);

}

.mb-choose-center img {

    width: 100%;
    height: 400px;
    display: block;

}

/* ANIMATION */

.mb-choose-anim {

    opacity: 0;
    transform: translateY(60px);
    transition: all .9s ease;

}

.mb-choose-anim.active {

    opacity: 1;
    transform: translateY(0);

}

/* MOBILE */

@media(max-width:950px) {

    .mb-choose-grid {

        grid-template-columns: 1fr;
        gap: 40px;

    }

    .mb-choose-center {

        order: -1;

    }

    .mb-choose-item {

        justify-content: center;
        text-align: center;
        flex-direction: column;

    }

}

/* other contet */

.hing-award-sec {

    padding: 60px 20px;
    background: #f7f7f7;

}

.hing-award-container {

    max-width: 1250px;
    margin: auto;

}

.hing-award-title {

    text-align: center;
    font-size: 38px;
    font-weight: 600;
    color: #a30f14;
    margin-bottom: 15px;
    /* color: #222; */

}

.hing-award-desc {

    text-align: center;
    max-width: 820px;
    margin: auto;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.4;
    color: #555;

}


/* GRID */

.hing-award-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}


/* CARD */

.hing-award-card {

    position: relative;
    height: 340px;
    width: 300px;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;

}


/* IMAGE */

.hing-award-card img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;

}

.hing-award-card:hover img {

    transform: scale(1.1);

}


/* OVERLAY */

.hing-award-overlay {

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: 0.5s;

}


/* STEP NUMBER */

.hing-award-overlay span {

    font-size: 40px;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 5px;

}


/* TEXT */

.hing-award-overlay h3 {

    font-size: 20px;
    margin-bottom: 8px;

}

.hing-award-overlay p {

    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;

}



/* HOVER EFFECT */

.hing-award-card:hover .hing-award-overlay {

    padding-bottom: 40px;

}





/* RESPONSIVE */

@media(max-width:1000px) {

    .hing-award-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .hing-award-grid {

        grid-template-columns: 1fr;

    }

    .hing-award-card {

        height: 300px;

    }

}


/* serving food */
.mb-food-industries {

    background: url("https://img.freepik.com/free-photo/side-view-smiley-woman-baking-kitchen_23-2150014848.jpg?semt=ais_hybrid&w=740&q=80") center/cover no-repeat;
    padding: 50px 20px;
    position: relative;

}

.mb-food-overlay {

    background: rgba(0, 0, 0, 0.65);
    padding: 50px 0;

}

.mb-food-container {

    max-width: 1200px;
    margin: auto;

}


/* GRID */

.mb-food-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}


/* LEFT */

.mb-food-title {

    font-size: 65px;
    color: #fff;
    margin-bottom: 20px;

}

.mb-food-text {

    color: #eee;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;

}

.mb-food-highlight {

    background: #a30f14;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;

}


/* RIGHT */

.mb-food-right {

    display: flex;
    flex-direction: column;
    gap: 22px;

}

.mb-food-card {

    display: flex;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: .4s;

}

.mb-food-card:hover {

    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.12);

}

.mb-food-icon {

    width: 48px;
    height: 48px;
    background: #a30f14;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;

}

.mb-food-card h4 {

    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;

}

.mb-food-card p {

    color: #ddd;
    font-size: 16px;
    line-height: 1.6;

}


/* MOBILE */

@media(max-width:900px) {

    .mb-food-grid {

        grid-template-columns: 1fr;

    }

    .mb-food-title {

        text-align: center;
        font-size: 34px;

    }

    .mb-food-text {

        text-align: center;

    }

    .mb-food-highlight {

        display: block;
        margin: auto;

    }

}


/* footer  */
.mb-footer {

    background: #fff;
    padding-top: 70px;
    border-top: 1px solid #eee;

}

.mb-footer-container {

    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

}


/* GRID */

.mb-footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;

}


/* LOGO */

.mb-footer-logo {

    width: 100px;
    margin-bottom: 15px;

}

.mb-footer-text {

    font-size: 16px;
    color: #666;
    line-height: 1.7;
    width: 80%;

}


/* HEADINGS */

.mb-footer-heading {

    font-size: 20px;
    font-weight: 600;
    color: #a30f14;
    margin-bottom: 20px;

}


/* LINKS */

.mb-footer-links {

    list-style: none;
    padding: 0;

}

.mb-footer-links li {

    margin-bottom: 10px;

}

.mb-footer-links a {

    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: .3s;

}

.mb-footer-links a i {

    margin-right: 6px;
    color: #a30f14;

}

.mb-footer-links a:hover {

    color: #a30f14;

}


/* CONTACT */

.mb-footer-contact p {

    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;

}

.mb-footer-contact i {

    color: #a30f14;
    margin-right: 8px;

}


/* BOTTOM */

.mb-footer-bottom {

    margin-top: 50px;
    border-top: 1px solid #eee;
    padding: 15px 0;
    background: #fafafa;

}

.mb-footer-bottom-container {

    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;

}

.mb-copy-left i {

    margin-right: 6px;
    color: #a30f14;

}


/* BRAND FLEX */

.mb-footer-brand {

    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;

}

.mb-footer-company {

    font-size: 19px;
    font-weight: 600;
    color: #a30f14;
    margin: 0;
    line-height: 1.3;

}


/* LOGO */

.mb-footer-logo {

    width: 90px;

}

/* MOBILE */

@media(max-width:900px) {

    .mb-footer-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:600px) {

    .mb-footer-grid {

        grid-template-columns: 1fr;

    }

    .mb-footer-bottom-container {

        flex-direction: column;
        gap: 8px;
        text-align: center;

    }

}

/* scroll buttun */
/* SCROLL TOP BUTTON */

.mb-scroll-top {

    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #a30f14;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 999;

}

/* SHOW BUTTON */

.mb-scroll-top.show {

    opacity: 1;
    visibility: visible;

}

/* HOVER */

.mb-scroll-top:hover {

    background: #7d0c10;
    transform: translateY(-4px);

}