html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.ffm {
    font-family: 'Montserrat', Arial, sans-serif;
}
.product-gap{
    padding-right: 10px;
}

html {
    position: relative;
    min-height: 100%;
}

:root {
    --seal-brown: #220f07;
    --apache: #cc9f53;
    --beeswax: #e8dbb4;
    --footer-bg: rgba(34, 15, 7, 0.95);
    --footer-text: #f8e1b0;
    --bg-light: #f8f5f0;
    --divider: #d6c4943;
    --hover-bg: rgba(204, 159, 83, 0.3);
    --congo-brown: #6c4943;
    --dark-tan: #9e6d4f;
    --fallow: #c79d64;
    --callico: #d2b17e;
}
.my-name {
    color: #1d1d1d;
    font-size: 0.8rem;
}

.navbar-custom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-height: 64px;
    border-bottom: none;
    padding: 0;
    transition: background 0.3s, box-shadow 0.3s;
}

/*.scrolled {
    background: rgba(34, 15, 7, 0.95) !important;
}
*/
@media (max-width: 768px) {
    .navbar-custom {
        background: #220f07 !important; /* Solid white for mobile */
    }

    .navbar-toggler {
        background: #e8dbb4 !important;
        margin-right: 10px;
        align-items: center;
   }
}

.landing-section {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('/image/landing-page-2.png')center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
    margin: 0;
}

.container {
    max-width: 100% !important;
    padding: 0px 0px;
}

.row {
    --bs-gutter-x: 0rem !important;
}

.col-md-12 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.navbar-nav {
    justify-content: space-evenly;
}

    .navbar-nav .nav-link {
            font-family: 'Montserrat', Arial, sans-serif;: 'Montserrat', Arial, sans-serif;
        font-size: 0.95rem !important;
        font-weight: bold;
        color: #fff !important;
        padding: 18px 0;
        border-radius: 0;
        background: transparent;
        letter-spacing: 0.01em;
        border-bottom: 3px solid transparent;
        display: inline-flex;
        justify-content: space-evenly;
        width: 100%;
        transition: all 0.3s;
        /*    text-shadow: 0 2px 6px rgba(34,15,7,0.7), 0 0 2px #000;*/
    }

.nav-item {
    padding: 0px 10px;
}

.navbar-brand {
    padding-left: 10px;
    padding-right: 20px;
}

.landing-content {
    max-width: 800px;
    margin: auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.01s;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.landing-content h1 {
    font-size: 3.5rem;
    color: #f8e1b0;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px #000;
    font-weight: bold;
    line-height: 1.3;
}

.landing-content p {
    font-size: 2rem;
    color: #ffff;
    margin-bottom: 32px;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 10px #000000;
    line-height: 1.2;
    font-weight: bold;
}

.footer_section {
    background: linear-gradient(rgba(34,15,7,0.7), rgba(34,15,7,0.7)), url('/image/footer-bg.jpg') center center/ cover no-repeat;
    color: var(--footer-text);
    padding: 0;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    box-shadow: 0 -4px 16px rgba(34,15,7,0.16);
    width: 100%;
    min-height: 350px;
    border-top: 0;
    animation: slideIn 1s both;
}

.footer-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 40px 24px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background: transparent;
    gap: 30px;
}

.footer-col {
    flex: 1 1 160px;
    min-width: 180px;
    margin-bottom: 24px;
}

.footer-pt a {
    color: var(--footer-text);
    text-decoration: none;
    padding-bottom: 12px;
    padding-left: 20px;
}

.footer-logo img {
    max-height: 54px;
    filter: drop-shadow(0 2px 8px #000);
}

.footer-copyright {
    font-size: 0.8rem;
    text-align: left;
    margin-top: 10px;
    padding-left: 40px;
    padding-bottom: 30px;
    letter-spacing: 0.01em;
    justify-content: space-evenly;
}

.footer-links, .footer-products, .footer-segmentation {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li, .footer-products li, .footer-segmentation li {
        margin-bottom: 6px;
    }

    .footer-links a, .footer-products a, .footer-segmentation a {
        color: var(--footer-text) !important;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover,
        .footer-products a:hover,
        .footer-segmentation a:hover {
            color: var(--apache);
            text-decoration: underline;
        }

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--apache);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(232, 219, 180, 0.2);
    color: var(--footer-text) !important;
    font-size: 1.15rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

    .footer-social a:hover {
        background: var(--apache) !important;
        color: var(--seal-brown) !important;
        transform: translateY(-3px);
    }

.product-section {
    background-color: #6c4943;
    padding: 60px 0px content: "";
    z-index: 99;
    position: relative;
    background: #6c4943 url(../image/product-bg.png)center;
    background-blend-mode: overlay;
    padding-bottom: 30px;
    margin: 45px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
    .product-section {
                padding: 60px 0;
                margin: 12px 4px;
    }
}


.product-section .first_row {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
    align-content: flex-start;
    align-items: flex-start;
    text-align: center;
}

@media only screen and (max-width: xspx) {
    .product-section .first_row {
        flex-direction: row;
        width: 423px !important
    }
}

@media only screen and (max-width: lgpx) {
    .product-section .first_row {
        width: 687px
    }
}

.product-section .first_row .header-block {
    width: auto
}

    .product-section .first_row .header-block h2 {
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 36px;
        padding: 40px 60px;
        color: #fff;
    }

.header-block h2 span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 36px;
    line-height: 46px;
    color: #cc9f53;
    font-weight: bold;
}

.product-section .view-all {
    padding: 0px 60px;
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none !important;
    /*margin-top: 25px*/
}

@media only screen and (max-width: 767px) {
    .product-section .view-all {
        margin-top: 12px
    }
}

.product-section .view-all img {
    width: 24.14px;
    margin-left: 5px
}

.product-section .product-list {
    padding: 0px 20px;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px 0;
    width: 930px;
    margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
    .product-section .product-list {
        width: 100%
    }
}

@media only screen and (max-width: 767px) {
    .product-section .product-list {
        gap: 10px 0
    }
}

.product-section .product-list li {
    display: flex;
    justify-content: space-between;
    width: 48%
}

@media only screen and (max-width: 1023px) {
    .product-section .product-list li {
        width: 49%;
        margin-bottom: 24px
    }
}

@media only screen and (max-width: 767px) {
    .product-section .product-list li {
        width: 100%;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 767px) {
    .product-section .product-list li:last-child {
        margin-bottom: 0
    }
}

.product-section .product-list li a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 16px;
    position: relative;
}

@media only screen and (max-width: 1279px) {
    .product-section .product-list li a {
        padding: 5px
    }
}

.product-section .product-list li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 20px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background-color: transparent;
    transition: all .3s ease
}

@media only screen and (max-width: 1279px) {
    .product-section .product-list li a:before {
        display: none !important
    }
}

.product-section .product-list li a:hover:before {
    border: 1px solid #cc9f53
}

.product-section .product-list li a .header {
    width: 70%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin-top: 0
}

    .product-section .product-list li a .header h4 {
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 36px;
        line-height: 46px;
        color: #cc9f53;
        width: 100%;
        margin-bottom: 12px;
        font-weight: bold;
    }

@media only screen and (max-width: 1279px) {
    .product-section .product-list li a .header h4 {
        font-size: 24px;
        line-height: 24px
    }
}

.product-section .product-list li a .header p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #F2F2F2;
    margin-bottom: 0;
    width: 100%
}

@media only screen and (max-width: 1279px) {
    .product-section .product-list li a .header p {
        font-size: 14px;
        line-height: 20px
    }
}

.product-section .product-list li a img {
    width: 140px
}

@media only screen and (max-width: 767px) {
    .product-section .product-list li a img {
        width: 134px
    }
}

.product-section .secound_row {
    display: flex;
    align-items: flex-end;
    gap: 63px
}

@media only screen and (max-width: xlpx) {
    .product-section .secound_row {
        gap: 0px
    }
}

@media only screen and (max-width: lgpx) {
    .product-section .secound_row {
        flex-direction: column;
        align-items: center;
        padding-top: 50px
    }
}

@media only screen and (max-width: lgpx) {
    .product-section .secound_row .col_1 {
        width: fit-content
    }
}

.product-section .secound_row .col_1 .header h2 {
    margin-top: 137.39px;
    margin-left: 141px;
    margin-bottom: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 37px;
    line-height: 24px;
    color: #F6C672
}

.product-section .secound_row .col_1 .header::before {
    content: "";
    z-index: 99;
    position: absolute;
    transform: translate(-5%, -35%);
    width: 148px;
    height: 222px;
    background-image: url(../images/homepage/product_1.png);
    background-size: cover
}

.product-section .secound_row .col_1 .text_box {
    width: 295px;
    height: 218px;
    background-color: #855C1B;
    border-radius: 20px;
    padding: 67px 40px 21px 28px
}

    .product-section .secound_row .col_1 .text_box p {
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 17px;
        line-height: 24px;
        color: #F2F2F2
    }

@media only screen and (max-width: lgpx) {
    .product-section .secound_row .col_2 {
        width: fit-content
    }
}

.product-section .secound_row .col_2 .header h2 {
    margin-top: 137.39px;
    margin-left: 141px;
    margin-bottom: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 37px;
    line-height: 24px;
    color: #F6C672
}

.product-section .secound_row .col_2 .header::before {
    content: "";
    z-index: 99;
    position: absolute;
    transform: translate(-12%, -52%);
    width: 148px;
    height: 222px;
    background-image: url(../images/homepage/product_2.png);
    background-size: cover
}

.product-section .secound_row .col_2 .text_box {
    width: 295px;
    height: 218px;
    background-color: #855C1B;
    border-radius: 20px;
    padding: 67px 40px 21px 28px
}

    .product-section .secound_row .col_2 .text_box p {
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 17px;
        line-height: 24px;
        color: #F2F2F2
    }

@media only screen and (max-width: lgpx) {
    .product-section .secound_row .col_3 {
        width: fit-content
    }
}

.product-section .secound_row .col_3 .header h2 {
    margin-top: 137.39px;
    margin-left: 141px;
    margin-bottom: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 37px;
    line-height: 24px;
    color: #F6C672
}

.product-section .secound_row .col_3 .header::before {
    content: "";
    z-index: 99;
    position: absolute;
    transform: translate(-1%, -55%);
    width: 148px;
    height: 222px;
    background-image: url(../images/homepage/product_3.png);
    background-size: cover
}

.product-section .secound_row .col_3 .text_box {
    width: 295px;
    height: 218px;
    background-color: #855C1B;
    border-radius: 20px;
    padding: 67px 40px 21px 28px
}

    .product-section .secound_row .col_3 .text_box p {
    font-family: 'Montserrat', Arial, sans-serif;
        font-size: 17px;
        line-height: 24px;
        color: #F2F2F2
    }
@media only screen and (max-width: 767px) {
    .product-section .product-list li a {
        flex-direction: column !important;
        align-items: center !important;
    }

        .product-section .product-list li a .header {
            width: 100% !important;
            margin-bottom: 10px !important;
            text-align: center !important;
            justify-content: center !important;
        }

        .product-section .product-list li a img {
            display: block !important;
            margin: 10px auto 0 auto !important;
            max-width: 170px !important; /* or 100% if you want to scale it down */
            width: 100% !important;
        }
}
@media only screen and (max-width: 767px) {
    .product-section .view-all {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; /* Or right if you prefer */
        padding: 12px 0 !important;
        margin-top: 16px !important;
        font-size: 17px !important;
        gap: 8px !important;
    }

        .product-section .view-all img {
            margin-left: 10px !important;
            width: 28px !important;
        }
}

.brands-section {
    background: #d2b17e;
    background-blend-mode: normal;
    border-radius: 20px;
    margin: 40px 20px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
    /**/ /*width: 100%;*/
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    padding: 40px 20px 50px 20px; /* Top, right, bottom, left */
    overflow: hidden; /* Ensures scaled logos don't spill out */
    box-sizing: border-box;
}

    .brands-section h2 {
        text-align: center !important;
        font-family: "Montserrat-Bold", sans-serif;
        font-size: 36px;
        padding: 40px 60px;
        color: #9e6d4f;
        font-weight: bold;
    }

        .brands-section h2 span {
            font-family: "Montserrat-Bold", sans-serif;
            font-size: 36px;
            line-height: 46px;
            color: #6c4943;
            font-weight: bold;
        }

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    /*    align-items: center;
*/ margin-top: 0px;
}

.brand-logo {
    background:rgba(232, 219, 180, 0.95);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(34,15,7,0.15);
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 320px;
    min-height: 200px;
    transition: transform 0.3s;
    max-width: 400px;
    margin: 0px 20px;
}

    .brand-logo img {
        max-height: 90px;
        max-width: 200px;
        filter: grayscale(0.2);
        transition: filter 0.3s;
        margin-bottom: 20px;
    }

    .brand-logo h4 {
        margin: 0 0 12px 0;
        font-size: 1.7rem;
        color: var(--seal-brown);
        text-align: center;
    }

    .brand-logo p {
        margin: 0;
        font-size: 1.2rem;
        color: var(--seal-brown);
        /*        text-align: center;
*/
    line-height: 1.6;
}

    .brand-logo:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(34,15,7,0.2);
    }

        .brand-logo:hover img {
            filter: grayscale(0);
        }
@media (max-width: 767px) {
    .brands-section {
        padding: 20px 20px 30px 20px;
        overflow: hidden;
        box-sizing: border-box;
        max-width: 100vw;
        margin-left: 4px;
        margin-right: 4px;

    }

    .brands-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .brand-logo {
        box-sizing: border-box;
        /*max-width: calc(100vw - 60px);*/ /* 60px = left+right padding */
        /*min-width: 180px;*/
        padding: 20px 10px;
        word-break: break-word;
        margin: 0 auto;
        transition: transform 0.3s;
    }

        .brand-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(34,15,7,0.2);
            z-index: 10;
        }
}


.insights-section {
    background: url(../image/dry_fruits-bg.png);
    background-blend-mode: multiply;
    border-radius: 20px;
    margin: 45px 20px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
    /*    width: 100%;
    */ box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden; /* <-- Prevents hover overflow */
    box-sizing: border-box;
}

    .insights-section h2 {
        text-align: center !important;
        font-family: "Montserrat-Bold", sans-serif;
        font-size: 36px;
        padding-top: 40px;
        color: #9e6d4f;
        font-weight: bold;
    }

        .insights-section h2 span {
            font-family: "Montserrat-Bold", sans-serif;
            font-size: 36px;
            line-height: 46px;
            color: #6c4943;
            font-weight: bold;
        }
.insights-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.insights-col {
    flex: 1 1 260px;
    max-width: 340px;
    min-width: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(34,15,7,0.2);
    padding: 24px 18px 18px 18px;
    margin: 10px 0;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .insights-section {
        padding: 20px 10px 30px 10px; /* Smaller padding for mobile */
        margin: auto 4px;
    }

    .insights-col {
        max-width: calc(100vw - 40px); /* 40px = left+right padding */
        width: 100%;
        margin: 10px auto;
    }
}
.insights-col:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 25px rgba(34,15,7,0.15);
    z-index: 2;
}

    .insights-col.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .insights-col:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 10px 25px rgba(34,15,7,0.15);
    }

    .insights-col img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 18px;
        background: #eee;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .insights-col h5 {
        color: var(--seal-brown);
        margin-bottom: 10px;
        text-align: center;
    }

    .insights-col p {
        color: var(--seal-brown);
        /*        text-align: center;
*/
    }

.contact-section {
    background: #e8dbb4;
    border-radius: 20px;
    margin: 50px 20px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
    /*    width: 100%;
    */ box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

    .contact-section.mx-auto {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

.contact-form-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 800px;
    margin: 0 auto;
}

    .contact-form-box .row {
        --bs-gutter-x: 0.5rem !important;
    }

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: #6c4943;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    padding-top: 45px;
}

.contact-desc {
    text-align: center;
    color:#6c4943;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 0px 20px;
}

.contact-form {
    padding: 0px 20px;
}
@media only screen and (max-width: 767px) {
    .contact-section,
    .contact-form-box,
    .contact-form {
        padding-left: 12px !important;
        padding-right: 12px !important;
        margin: 50px 4px;
    }

        .contact-form .form-control,
        .contact-form select,
        .contact-form textarea {
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
}

.ff {
    font-family: 'Montserrat', Arial, sans-serif !important;
}

.fs1 {
    font-size: 2rem;
}

.fs2 {
    font-size: 1.2rem;
}

.fw {
    font-weight: bold;
}

.fc1 {
    color: #c79d64;
}

.fc2 {
    color: #000
}

.ml {
    margin-left: 20px;
}

.mr {
    margin-right: 20px;
}

.mt {
    margin-top: 100px;
}

.pp {
    padding-top: 20px;
}

.about_banner {
    background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('/image/about-cover.jpg') center center/ cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
    margin: 0;
    min-height: 100vh;
    width: 100%;
}

@media only screen and (max-width: 1023px) {
    .about_banner {
        padding: 0 20px 80px 20px
    }
}

@media only screen and (max-width: 1023px) {
    .about_banner {
        height: 90vh
    }
}

.about_banner .container {
    height: 100%;
    align-items: flex-end;
    display: flex;
    padding: 0px
}

@media only screen and (max-width: 767px) {
    .about_banner .container {
        width: 100% !important
    }
}

.about_banner .container .row .banner_text {
    margin-left: 20px;
    padding: 0px 30px;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out forwards 0.01s;
}

    .about_banner .container .row .banner_text h1 {
        font-family: 'Montserrat', Arial, sans-serif !important;
        margin-bottom: 24px;
        font-size: 50px;
        line-height: 66px;
        color: #fff;
        text-align: left;
        font-weight: bold;
    }

@media only screen and (max-width: 767px) {
    .about_banner .container .row .banner_text h1 {
        font-size: 36px;
        line-height: 47px
    }
}

.about_banner .container .row .banner_text h1 span {
    color: #cc9f53;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 50px;
    line-height: 70px;
    display: block;
    /*    max-width: 500px;
*/
}

@media only screen and (max-width: 767px) {
    .about_banner .container .row .banner_text h1 span {
        font-size: 40px;
        line-height: 52px;
        display: inline
    }
}

.about_banner .container .row .banner_text .text {
    color: #fff;
    font-size: 18px;
    max-width: 600px;
    line-height: 25px;
    font-family: 'Montserrat', Arial, sans-serif !important;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .about_banner .container .row .banner_text .text {
        font-size: 16px;
        line-height: 21px
    }
}

.about_banner .container .scroll_down {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    margin: auto
}

    .about_banner .container .scroll_down p {
        text-align: center;
        font-family: 'Montserrat', Arial, sans-serif !important;
        font-size: 14px;
        line-height: 20px;
        color: #fff
    }
@media only screen and (max-width: 767px) {
    .about_banner .container {
        align-items: center; /* Vertically center content */
        justify-content: center; /* Horizontally center content */
        display: flex;
    }

        .about_banner .container .row {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Center children horizontally */
        }

            .about_banner .container .row .banner_text {
                margin: 0 auto; /* Center the block horizontally */
                padding: 0 10px;
                text-align: left; /* Center text inside the block */
            }

                .about_banner .container .row .banner_text h1,
                .about_banner .container .row .banner_text .text {
                    text-align: left; /* Center headings and paragraphs */
                }
}


@media only screen and (max-width: 767px) {
    .manufacture_section {
        padding: 40px 20px
    }
}

.capacity_section {
    border-radius: 20px;
    margin: 45px 20px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    
}

@media only screen and (max-width: 767px) {
    capacity_section {
        padding: 0px 20px 40px 20px;
    }
}

.capacity_section .header-block p {
    text-align: center;
    font-weight: bold;
    color: #e8dbb4;
}

.capacity_section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    border-radius: 20px;
    background: #6c4943;
}

@media only screen and (max-width: 767px) {
    .capacity_section{
        margin: 45px 4px;
    }
    .capacity_section .container {
        padding: 16px;
        width: 100% !important
    }
}

.capacity_section .container .row .header-block h2 {
    font-family: 'Montserrat', Arial, sans-serif !important;
    text-align: center;
    font-weight: bold;
    color: #e8dbb4
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .header-block h2 {
        font-size: 24px;
        line-height: 36px
    }
    .capacity_section .container .row .header-block h2 span {
        font-size: 24px;
        line-height: 36px
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .col-md-12 {
        justify-content: center;
        display: flex
    }
}

.capacity_section .container .row .manufacturing_plant {
    padding: 0px;
    width: 100%;
    height: 209px;
    border: 4px solid #cc9f53;
    border-radius: 20px;
    display: flex;
    background-color: #e8dbb4;
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant {
        height: 170px
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant {
        flex-direction: column;
        align-items: center;
        height: fit-content;
        gap: 20px;
        padding-bottom: 10px
    }
}

.capacity_section .container .row .manufacturing_plant .plants {
    position: relative;
    /*    z-index: 9999;
*/ width: 288px;
    padding: 0px 25px 0 0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .plants {
        width: 30%
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .plants {
        width: 100%;
        padding: 29px 0px
    }
}

.capacity_section .container .row .manufacturing_plant .plants::before {
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 70%;
    position: absolute;
    z-index: -1;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .plants::before {
        width: 100%;
        border-bottom-left-radius: 0;
        border-top-right-radius: 16px
    }
}

.capacity_section .container .row .manufacturing_plant .plants::after {
    background-image: url(../images/about_us/arrow-extension.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 10px;
    top: 0;
    content: "";
    height: 100%;
    width: 70px;
    position: absolute;
    z-index: -2
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .plants::after {
        display: none
    }
}

.capacity_section .container .row .manufacturing_plant .plants .content {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .plants .content {
        align-content: flex-end;
        align-items: flex-end
    }
}

.capacity_section .container .row .manufacturing_plant .plants .content img {
    width: 59px;
    height: fit-content;
    display: flex;
    align-self: center
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .plants .content img {
        width: 40px
    }
}

.capacity_section .container .row .manufacturing_plant .plants .content .txt {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 70px;
    line-height: 73px;
    color: #100000;
    position: relative;
    top: -10px;
    margin-bottom: 0
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .plants .content .txt {
        font-size: 41px;
        line-height: 41px;
        color: #100000;
        margin-bottom: 0;
        display: flex;
        align-self: center
    }
}

.capacity_section .container .row .manufacturing_plant .plants .para {
    margin-top: 0;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #100000
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .plants .para {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .plants .para {
        font-size: 20px;
        line-height: 26px
    }
}

.capacity_section .container .row .manufacturing_plant .bulk_capacity {
    width: 100%;
    display: flex;
    justify-content: center
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity {
        width: 70%
    }
}

.capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container {
    display: flex;
    align-items: center;
    padding: 0px 21.1px
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container {
        flex-direction: column;
        align-items: center;
        padding: 10px 4px;
    }
}

.capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container h3 {
    text-align: left;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 24px;
    line-height: 34px;
    color: #9e6d4f;
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container h3 {
        font-size: 18px;
        line-height: 24px
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container h3 {
        font-size: 20px;
        line-height: 26px;
        text-align: center
    }
}

.capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container h3 span {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 36px;
    line-height: 45px;
    color: #9e6d4f;
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container h3 span {
        font-size: 22px;
        line-height: 32px
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container h3 span {
        font-size: 24px;
        line-height: 29px
    }
}

.capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container .plus {
    width: 56px;
    height: 56px;
    margin: 0px 4px;
    position: relative;
    left: -18px;
    padding-right: 18px;
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container .plus {
        width: 40px;
        height: 40px;
        left: -15px
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .manufacturing_plant .bulk_capacity .capcity_container .plus {
        left: auto
    }
}

.capacity_section .container .row .image_row {
    display: flex;
    margin: 20px 0px;
    align-items: end;
    justify-content: end;
    margin-bottom: 20px
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .image_row {
        width: fit-content;
        flex-direction: column;
        align-items: center;
        gap: 4px
    }
}

.capacity_section .container .row .image_row .indian_map {
    width: 455px;
    height: 522px
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .image_row .indian_map {
        width: 300px;
        height: 344px
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .image_row .indian_map {
        width: 300px;
        height: 344px
    }
}

.capacity_section .container .row .image_row .web {
    display: block
}

    .capacity_section .container .row .image_row .web .port {
/*        width: 200px;
        height: auto;*/
    }

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .image_row .web {
        display: none
    }
}

.capacity_section .container .row .image_row .mobile {
    display: none
}

    .capacity_section .container .row .image_row .mobile .port {
        width: 100px;
        height: auto;
    }

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .image_row .mobile {
        display: block
    }
}

.capacity_section .container .row .cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 0px;
    margin: 0px

}

    @media only screen and (max-width: 1279px) {
        .capacity_section .container .row .cards {
        flex-wrap: wrap;
        justify-content: center
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .cards {
        flex-direction: column;
        align-items: center
    }
}

.capacity_section .container .row .cards .card {
    width: 244px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 16px;
    border-radius: 20px;
    background: #e8dbb4;
    border: 4px solid #cc9f53
}

@media only screen and (max-width: 1279px) {
    .capacity_section .container .row .cards .card {
        flex-basis: 32%
    }
}

@media only screen and (max-width: 1023px) {
    .capacity_section .container .row .cards .card {
        flex-basis: 48%
    }
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .cards .card {
        width: 100%;
        height: 196px
    }
}

.capacity_section .container .row .cards .card .card_img {
    width: 70px;
    height: 70px
}

.capacity_section .container .row .cards .card .card_text {
    font-family: 'Montserrat', Arial, sans-serif !important;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    color: #100000;
    margin-bottom: 0
}

@media only screen and (max-width: 767px) {
    .capacity_section .container .row .cards .card .card_text {
        font-size: 18px;
        line-height: 23px
    }
}


.timelines {
    --color: rgba(30, 30, 30);
    background: #faf6f3;
    background-blend-mode: difference;
    min-height: 100vh;
    display: grid;
    align-content: start;
    gap: 2rem;
    padding: 2rem;
    font-family: 'Montserrat', Arial, sans-serif !important;
    color: var(--color);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 45px 20px;
}
@media (max-width: 767px) {
    .timelines {
        min-height: auto; /* Remove fixed height for flexibility */
        margin: 10px 0px;
        padding: 15px 0;
        gap: 1rem; /* Reduce gap for smaller screens */
        border-radius: 15px; /* Slightly smaller radius */
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        font-size: 0.95rem; /* Slightly smaller text */
    }
}
.tls-h1 {
    text-align: center;
    padding: 15px 0;
    color: #100000;
    font-weight: bold;
}

    .tls-h1 span {
        color: #cc9f53;
    }
@media (max-width: 767px) {
    .tls-h1 {
        padding: 20px 0;
        font-size: 2rem; /* Increase font size for mobile */
    }

        .tls-h1 span {
            /* Optional: adjust color or size on mobile if needed */
        }
}

.tls-ul {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
}

    /* line */
    .tls-ul::before {
        content: "";
        grid-column: 1;
        grid-row: 1 / span 20;
        background: rgba(204, 159, 83, 0.5);
        border-radius: calc(var(--line-w) / 2);
    }

    /* columns*/

    /* row gaps */
    .tls-ul li:not(:last-child) {
        margin-bottom: var(--row-gap);
    }

    /* card */
    .tls-ul li {
        grid-column: 2;
        --inlineP: 1.5rem;
        margin-inline: var(--inlineP);
        grid-row: span 2;
        display: grid;
        grid-template-rows: min-content min-content min-content;
    }

        /* date */
        .tls-ul li .date {
            --dateH: 3rem;
            height: var(--dateH);
            margin-inline: calc(var(--inlineP) * -1);
            text-align: center;
            background-color: var(--accent-color);
            color: white;
            font-size: 1.25rem;
            font-weight: bold;
            display: grid;
            place-content: center;
            position: relative;
            border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
        }

            /* date flap */
            .tls-ul li .date::before {
                content: "";
                width: var(--inlineP);
                aspect-ratio: 1;
                background: var(--accent-color);
                background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
                position: absolute;
                top: 100%;
                clip-path: polygon(0 0, 100% 0, 0 100%);
                right: 0;
            }

            /* circle */
            .tls-ul li .date::after {
                content: "";
                position: absolute;
                width: 2rem;
                aspect-ratio: 1;
                background: var(--bgColor);
                border: 0.3rem solid var(--accent-color);
                border-radius: 50%;
                top: 50%;
                transform: translate(50%, -50%);
                right: calc(100% + var(--col-gap) + var(--line-w) / 2);
            }

        /* title descr */
        .tls-ul li .title,
        .tls-ul li .descr {
            background: #e8dbb4;
            position: relative;
            padding-inline: 1.5rem;
            border: 2px solid #cc9f53;
        }

        .tls-ul li .title {
            overflow: hidden;
            padding-block-start: 1.5rem;
            padding-block-end: 1rem;
            font-weight: bold;
        }

        .tls-ul li .descr {
            padding-block-end: 1.5rem;
            font-weight: 300;
            padding-top: 20px;
        }

            /* shadows */
            .tls-ul li .title::before,
            .tls-ul li .descr::before {
                content: "";
                position: absolute;
                width: 90%;
                height: 0.5rem;
                background: rgba(0, 0, 0, 0.5);
                left: 50%;
                border-radius: 50%;
                filter: blur(4px);
                transform: translate(-50%, 50%);
            }

        .tls-ul li .title::before {
            bottom: calc(100% + 0.125rem);
        }

        .tls-ul li .descr::before {
            z-index: -1;
            bottom: 0.25rem;
        }

@media (min-width: 40rem) {
    .tls-ul {
        grid-template-columns: 1fr var(--line-w) 1fr;

    }

        .tls-ul::before {
            grid-column: 2;
        }

        .tls-ul li:nth-child(odd) {
            grid-column: 1;
        }

        .tls-ul li:nth-child(even) {
            grid-column: 3;
        }

        /* start second card */
        .tls-ul li:nth-child(2) {
            grid-row: 2/4;
        }

        .tls-ul li:nth-child(odd) .date::before {
            clip-path: polygon(0 0, 100% 0, 100% 100%);
            left: 0;
        }

        .tls-ul li:nth-child(odd) .date::after {
            transform: translate(-50%, -50%);
            left: calc(100% + var(--col-gap) + var(--line-w) / 2);
        }

        .tls-ul li:nth-child(odd) .date {
            border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
        }
}

.credits {
    margin-top: 1rem;
    text-align: right;
}

    .credits a {
        color: var(--color);
    }

.founders_section {
    padding: 20px 0px 100px 0px;
    text-align: center;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 45px 20px;
    background: #e8dbb4;
}
.founders_name{
    color: #6c4943;
    padding-top: 10px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
    .founders_section {
        padding: 40px 0px;
        margin: 45px 4px;
    }
}

@media only screen and (max-width: 767px) {
    .founders_section {
        padding: 40px 20px
    }
}

.founders_section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*    padding: 32px;
*/ /*    background: #fff;
*/
    border-radius: 20px;
    /*    background: #fff;
*/ /*background-color: #fff*/
}

@media only screen and (max-width: 767px) {
    .founders_section .container {
        width: 100% !important
    }
}

.founders_section .container .row {
    flex-wrap: nowrap;
    display: flex;
    gap: 40px
}

@media only screen and (max-width: 1279px) {
    .founders_section .container .row {
        flex-wrap: nowrap;
        display: flex
    }
}

@media only screen and (max-width: 1023px) {
    .founders_section .container .row {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center
    }
}

@media only screen and (max-width: 767px) {
    .founders_section .container .row {
        flex-wrap: wrap
    }
}

.founders_section .container .row h2 {
    font-family: "Montserrat-Medium",sans-serif;
    font-size: 40px;
    line-height: 50px;
    color: #290909;
    padding-bottom: 25px;
    padding-top: 25px;
    font-weight:bold;
}

@media only screen and (max-width: 767px) {
    .founders_section .container .row h2 {
        font-size: 24px;
        line-height: 31px
    }
}

.founders_section .container .row h2 span {
    font-family: "Montserrat-Light",sans-serif;
    font-size: 40px;
    line-height: 73px;
    color: #cc9f53;
    font-weight:bold;
}

@media only screen and (max-width: 767px) {
    .founders_section .container .row h2 span {
        font-size: 32px;
        line-height: 30px
    }
}

@media only screen and (max-width: 1279px) {
    .founders_section .container .row .col-3 {
        width: 254px
    }
}

@media only screen and (max-width: 767px) {
    .founders_section .container .row .col-3 {
        width: 286px
    }
}

.founders_section .container .row .col-3 .founder {
    width: 254px;
    height: 254px;
    border-radius: 20px
}

.founders_section .container .row .col-9 {
    width: 761px
}

@media only screen and (max-width: 1279px) {
    .founders_section .container .row .col-9 {
        width: 649px
    }
}

@media only screen and (max-width: 1023px) {
    .founders_section .container .row .col-9 {
        width: 100%
    }
}

.founders_section .container .row .col-9 .about_founder {
    text-align: justify;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 20px;
    line-height: 28px;
    color: #9e6d4f;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .founders_section .container .row .col-9 .about_founder {
        font-size: 18px;
        line-height: 26px
    }
}

.factory_banner {
    background: linear-gradient(rgba(34,15,7,0.3), rgba(34,15,7,0.3)), url('../image/Moulding-Line.jpg') center center/ cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    max-height: 750px;
    align-items: center;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .factory_banner {
        height: 100vh;
        max-height: 682px;
        padding-bottom: 125px
    }
}

.factory_banner .container {
    height: 100%;
    align-items: center;
    display: flex
}

@media only screen and (max-width: xlpx) {
    .factory_banner .container {
        width: 630px
    }
}

@media only screen and (max-width: 767px) {
    .factory_banner .container {
        width: 100%;
        padding-left: 20px
    }
}

.factory_banner .container .banner_text {
    width: 638px;
    /*    text-align: center;
*/ margin: 0px 100px;
    animation: fadeInUp 1s ease-out forwards 0.01s;
}

@media only screen and (max-width: 767px) {
    .factory_banner .container .banner_text {
        width: 330px
    }
}

.factory_banner .container .banner_text .text_header {
    font-family: "Montserrat-SemiBold",sans-serif;
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 66px;
    color: #fff;
    /*    text-align: left;
*/ margin-bottom: 10px;
   font-weight:bold;
}

@media only screen and (max-width: xlpx) {
    .factory_banner .container .banner_text .text_header {
        font-size: 45px;
        line-height: 55px
    }
}

@media only screen and (max-width: 1023px) {
    .factory_banner .container .banner_text .text_header {
        font-size: 45px;
        line-height: 55px
    }
}

@media only screen and (max-width: 767px) {
    .factory_banner .container .banner_text .text_header {
        font-size: 30px !important;
        line-height: 40px !important;
        display: flex;
        flex-wrap: wrap
    }
}

.factory_banner .container .banner_text .text_header span {
    color: #cc9f53;
    font-family: "Montserrat-Light",sans-serif;
    font-size: 60px;
    line-height: 70px
}

@media only screen and (max-width: 1023px) {
    .factory_banner .container .banner_text .text_header span {
        font-size: 40px;
        line-height: 52px
    }
}

@media only screen and (max-width: 767px) {
    .factory_banner .container .banner_text .text_header span {
        font-size: 35px;
        line-height: 45px
    }
}

.factory_banner .container .banner_text .text {
    color: #fff;
    font-size: 18px;
    /*    text-align:center;*/
    max-width: 459px;
    /**/ line-height: 25px;
    font-family: 'Montserrat', Arial, sans-serif !important;
    /*    padding: 0px 200px;*/
}

@media only screen and (max-width: 767px) {
    .factory_banner .container .banner_text .text {
        font-size: 16px;
        line-height: 21px;
        max-width: 350px;
    }
}

.factory_banner .container .banner_text .watchVideo {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 14px;
    color: #100000;
    gap: 5px;
    display: flex;
    white-space: pre;
    align-items: center;
    background-color: #fff;
    border: none;
    width: 174px;
    height: 64px;
    border-radius: 20px;
    padding: 10px 10px 10px 25px;
    margin-top: 24px
}

    .factory_banner .container .banner_text .watchVideo img {
        height: 52px;
        width: 52px;
        transition: all .5s ease
    }

    .factory_banner .container .banner_text .watchVideo:hover img {
        transform: rotate(360deg)
    }
@media only screen and (max-width: 767px) {
    .factory_banner .container .banner_text {
        width: 330px;
        margin: 0 auto; /* Center the block horizontally */
        text-align: left; /* Center the text inside */
    }

        .factory_banner .container .banner_text .text {
            text-align: left; /* Center the paragraph text */
            margin: 0 auto;
        }
}


.aspects_section {
    /*    margin: 14px 20px;*/
    padding: 45px 20px;
}

    .aspects_section .container .row {
        --bs-gutter-x: 1.5rem !important;
        --bs-gutter-y: 1rem !important

    }
        .aspects_section .container .row .col .header-block h2 {
            text-align: center;
            padding-bottom: 20px;
            font-weight: bold;
        }

@media only screen and (max-width: 767px) {
    .aspects_section .container .row .col .header-block {
        margin-bottom: 8px;
        text-align: center
    }
}

.aspects_section .container .row .col .header-block p {
    margin: 20px 0 0 0
}

.aspects_section .container .row .col .factory-aspects {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 32px 16px;
    border-radius: 20px;
    height: 354px;
    border: 2px solid #cc9f53;
    background: #e8dbb4;
}
aspects_section .container .row .col .factory-aspects:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(34,15,7,0.2);
}


@media only screen and (max-width: 767px) {
    .aspects_section .container .row .col .factory-aspects {
        height: auto;
        padding: 16px
    }
}

.aspects_section .container .row .col .factory-aspects .about_aspect {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center
}

    .aspects_section .container .row .col .factory-aspects .about_aspect h3 {
        font-family: 'Montserrat', Arial, sans-serif !important;
        font-size: 22px;
        margin: 16px 0 13px;
        line-height: 28px;
        font-weight: bold;
    }

@media only screen and (max-width: 767px) {
    .aspects_section .container .row .col .factory-aspects .about_aspect h3 {
        font-size: 20px;
        line-height: 23px
    }
}

.aspects_section .container .row .col .factory-aspects .about_aspect h4 {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 24px;
    line-height: 34px;
    color: #cc9f53;
    margin: 0 0 13px;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .aspects_section .container .row .col .factory-aspects .about_aspect h4 {
        font-size: 20px;
        line-height: 26px
    }
}

.aspects_section .container .row .col .factory-aspects .about_aspect p {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    text-align: center
}

@media only screen and (max-width: 767px) {
    .aspects_section .container .row .col .factory-aspects .about_aspect p {
        font-size: 14px;
        line-height: 18px
    }
}

.factory_section {
    font-family: 'Montserrat', Arial, sans-serif !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #fff;
}

    .factory_section .header-block {
        margin-bottom: 0;
    }

        .factory_section .header-block h2 {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: #222;
        }

        .factory_section .header-block span {
            color: #cc9f53;
        }

        .factory_section .header-block .para {
            font-size: 1.1rem;
            margin: 0;
            color: #555;
            font-weight: 600;
        }


    .process-flex-container {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        margin: 45px 20px 0 20px;
        background: #e8dbb4;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    }

    .process-flex-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 48px;
        width: 100%;
        max-width: 1200px;
        padding: 36px;
    }

    .process-flex-text {
        flex: 1;
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

        .process-flex-text .head {
            color: #6c4943;
            font-family: 'Montserrat', Arial, sans-serif !important;
            font-size: 2rem;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .process-flex-text .text {
            font-family: 'Montserrat', Arial, sans-serif !important;
            font-size: 1.1rem;
            color: var(--bs-body-color);
            margin-bottom: 12px;
        }

        .process-flex-text .bigBtn1,
        .process-flex-text .bigBtn3 {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 20px;
            background: #cc9f53;
            color: #fff;
            font-size: 1.1rem;
            font-family: 'Montserrat', Arial, sans-serif !important;
            font-weight: bold;
            text-decoration: none;
            margin-top: 8px;
            transition: background 0.2s;
            border: none;
            box-shadow: 0 2px 8px rgba(204,159,83,0.08);
            text-align: center;
        }

            .process-flex-text .bigBtn1:hover,
            .process-flex-text .bigBtn3:hover {
                background: #a97b2a;
            }

    .process-flex-img {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .process-flex-img img {
            max-width: 100%;
            max-height: 320px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            display: block;
            margin: 0 auto;
        }

    /* Responsive Design */
    @media (max-width: 1023px) {
        .process-flex-content {
            flex-direction: column;
            gap: 24px;
            padding: 24px 12px;
        }

        .process-flex-text {
            align-items: center;
            text-align: center;
        }

        .process-flex-img img {
            max-height: 220px;
        }

        .process-flex-text .head {
            font-size: 2rem;
        }

        .process-flex-text .text {
            font-size: 1rem;
        }
    }

    @media (max-width: 767px) {
        .factory_section {
            margin-top: 60px;
            gap: 0px;
            padding: 0px;
        }
        .factory_section .header-block{
            font-size: 1.2rem;
            padding: 0 10px;
        }
        .process-flex-container {
            margin: 24px 4px;
            border-radius: 20px;
        }

        .process-flex-content {
            flex-direction: column;
            gap: 18px;
            padding: 20px 10px;
        }

        .process-flex-img img {
            max-height: 140px;
            border-radius: 20px;
        }

        .process-flex-text .head {
            font-size: 1.5rem;
        }

        .process-flex-text .text {
            font-size: 1.2rem;
        }
    }

    .mr20 {
        margin-left: 20px;
        margin-right: 20px;
    }

    .mrauto {
        margin-left: auto;
        margin-right: auto;
    }

    .topmargin {
        margin-top: 100px;
    }

    .btmmargin {
        margin-bottom: 50px;
    }


    .accordion-button {
        color: #cc9f53 !important;
        background-color: #6c4943 !important;
        border-radius: 20px;
    }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc9f53'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc9f53'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

    .accordion-item {
        border: 3px solid #fff;
    }

        .accordion-item:first-of-type .accordion-button {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .accordion-item:last-of-type .accordion-button {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

    .accordion-button:focus {
        border-color: #cc9f53;
        box-shadow: 0 0 0 0 rgba(204, 160, 82, 0.25);
    }

    .accordion-item:last-of-type .accordion-button.collapsed {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .Certification_section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 0px 50px;
        margin-top: 45px;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        margin-left: 20px;
        margin-right: 20px;
        background: #ffff;
        border: 2px solid #cc9f53
    }

    @media only screen and (max-width: 767px) {
        .Certification_section {
            padding: 0px 0px 40px;
            margin: 0 4px;
        }
            .Certification_section .header-block h2 {
                font-size: 2rem;
            }
    }

    .Certification_section .header-block {
        margin-top: 10px;
        color: #cc9f53;
    }

        .Certification_section .header-block h2 {
            font-weight: bold;
        }

    .Certification_section .web_certificates {
        display: flex;
        margin-top: 40px;
        justify-content: center;
        list-style: none;
        flex-wrap: wrap;
        width: 100%;
        gap: 24px
    }

    @media only screen and (max-width: 767px) {
        .Certification_section .web_certificates {
            margin-top: 24px;
            display: block;
            text-align: center
        }
    }

    .Certification_section .web_certificates .certificate {
        border-radius: 20px;
        border: 0px solid #cc9f53;
        width: auto;
        height: 100px;
    }

    @media only screen and (max-width: 1023px) {
        .Certification_section .web_certificates .certificate {
            border-radius: 20px
        }
    }

    @media only screen and (max-width: 767px) {
        .Certification_section .web_certificates .certificate {
            border-radius: 20px;
            height: 50px;
            margin-right: 12px;
            margin-bottom: 12px
        }
    }

    .btn-edit {
        background-color: #6c4943;
        color: #cc9f53;
        padding: 15px 30px;
        border-radius: 20px;
        text-align: center;
        border: none !important;
        display: inline-flex;
        justify-content: center;
    }

    .btn-primary:hover {
        background-color: #e8dbb4;
        color: #6c4943;
        border: 1px solid #6c4943 !important;
    }

    .imgs1 {
        width: 100%;
        height: auto;
    }

    .brd20 {
        border-radius: 20px;
    }

    .mr10 {
        margin: 10px;
    }

    .hd01 {
        font-weight: bold;
        font-size: 1.2rem;
        padding-bottom: 10px;
    }

    #cookieConsentdiv {
        z-index: 1000;
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(68, 30, 31, 0.9);
        padding: 20px 30px 20px 30px;
        font-family: 'Montserrat', Arial, sans-serif !important;
        box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
        text-align: center;
    }

        #cookieConsentdiv button {
            display: block;
            margin-left: auto;
            margin-right: auto;
            border: none;
            background-color: black;
            padding: 10px 50px;
            margin-top: -5px;
            color: white;
            transition: all ease 0.01s;
        }

            #cookieConsentdiv button:hover {
                background-color: #cc9f53;
            }

        #cookieConsentdiv h3 {
            font-size: 22px;
            color: navajowhite;
        }

        #cookieConsentdiv p {
            font-size: 13px;
            color: navajowhite;
        }

        #cookieConsentdiv a {
            color: navajowhite;
            text-decoration: underline;
        }

    .flxinl {
        display: inline-flex;
        justify-content: center;
    }

    .txtjust {
        text-align: justify
    }

    .imgproduction {
        width: 100%;
        height: 100%;
        /*    margin-right: 30px;
*/ /*padding-right: 100px;*/
        border-radius: 20px;
    }

    .client_section {
        padding: 20px 0px 20px 0px;
        text-align: center;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        margin: 45px 20px;
        background: #e8dbb4;
        border: 2px solid #cc9f53;
    }

    @media only screen and (max-width: 767px) {
        .client_section{
            margin: 45px 4px;
        }
        .client_section .container {
            width: 100% !important;
            padding: 32px 16px
        }
    }

    .client_section .container .row {
        display: flex;
        flex-direction: row;
        gap: 48px;
        flex-wrap: nowrap
    }

    @media only screen and (max-width: 1279px) {
        .client_section .container .row {
            gap: 24px
        }
    }

    @media only screen and (max-width: 767px) {
        .client_section .container .row {
            gap: 20px
        }
    }

    .client_section .container .row h2 {
        font-family: "Montserrat-Medium",sans-serif;
        font-size: 40px;
        line-height: 50px;
        color: #290909;
        font-weight: bold;
    }

    @media only screen and (max-width: 767px) {
        .client_section .container .row h2 {
            font-size: 24px;
            line-height: 31px
        }
    }

    .client_section .container .row h2 span {
        font-family: "Montserrat-Light",sans-serif;
        font-size: 40px;
        line-height: 73px;
        color: #cc9f53
    }
@media only screen and (max-width: 767px) {
    .client_section .container .row h2 span {
        font-size: 30px;
        line-height: 31px
    }
}
.client_container{
    align-content: center;
    padding: 0;
}

    .disflx {
        display: inline-flex;
        justify-content: space-evenly;
    }

    .productioninfo-container {
        display: flex;
        justify-content: center;
        margin: 45px 20px 40px;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        background: #6c4943;
    }

    .productioninfo-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 48px;
        width: 100%;
        margin: 45px;
    }

    .productioninfo-text {
        flex: 1;
        text-align: justify;
    }

    .productioninfo-img-container {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .productioninfo-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    /* Mobile view */
    @media (max-width: 767px) {
        .productioninfo-container {
            margin: 10px 4px;
        }

        .productioninfo-content {
            flex-direction: column;
            gap: 24px; /* Reduce gap for tighter stacking */
            margin: 25px;
            align-items: center;
        }

        .productioninfo-text {
            flex: none;
            width: 100%;
            text-align: center; /* Center text for better mobile readability */
            font-size: 1rem; /* Adjust font size if needed */
            padding: 0 10px;
        }

        .productioninfo-img-container {
            flex: none;
            width: 100%;
            max-width: 100%;
        }

        .productioninfo-img {
            width: 100%; /* Make image full width */
            height: auto;
            max-width: 350px; /* Optional max width for smaller images */
            margin: 0 auto;
        }
    }

    .headerproduction {
        text-align: center;
        margin-bottom: 24px;
        font-weight: bold;
        color: #e8dbb4;
    }

    .headerproduction-span {
        color: #cc9f53;
    }

    .txtproduction {
        text-align: justify;
        margin: 0 auto;
        display: inline-block;
        padding-left: 0;
        list-style-position: inside;
        max-width: 500px;
        color: #e8dbb4;
    }

    @media (max-width: 768px) {
        .productioninfo-content {
            flex-direction: column;
            gap: 24px;
        }

        .productioninfo-text,
        .productioninfo-img-container {
            width: 100%;
        }
    }

    .pcflx {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background: #6c4943 url(../image/dry_fruits-bg.png) center;
        background-blend-mode: screen;
        flex-wrap: wrap;
        margin: 45px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border-radius: 20px;
    }

    .pcflxitem {
        background: transparent;
        color: white;
        font-size: 1.5rem;
        padding: 30px;
        border-radius: 20px;
        flex: 1 1 300px; /* grow/shrink basis 300px */
        margin: 20px 10px;
        text-align: center;
        align-content: center;
        min-width: 0;
        max-width: 300px;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

        .pcflxitem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 12px;
            background: #fff;
        }

        .pcflxitem h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: bold;
            color: #cc9f53;
        }

    .breakitem {
        flex-basis: 100%;
        height: 0;
    }

    /* Tablet view */
    @media (min-width: 768px) and (max-width: 1024px) {
        .pcflx {
            margin: 45px 4px;
        }

        .pcflxitem {
            flex: 1 1 220px;
            margin: 20px 4px;
            max-width: none; /* Allow widths to grow */
        }
    }

    /* Mobile view */
    @media (max-width: 767px) {
        .pcflx {
            margin: 45px 4px !important;
            flex-direction: column; /* stack items vertically */
            align-items: center; /* center items horizontally */
        }

        .pcflxitem {
            flex: 1 1 auto;
            max-width: 100% !important; /* full width */
            margin: 10px 4px !important;
            padding: 20px; /* slightly smaller padding for small screens */
        }
    }

    .margflx {
        margin-top: 100px;
        text-align: center;
        font-weight: bold;
        color: #100000;
    }

    .margflxspan {
        color: #cc9f53;
    }

    /* Mobile view font size increase */
    @media (max-width: 767px) {
        .margflx {
            font-size: 2.2rem; /* Increase as desired */
        }

        .margflxspan {
            /* Optional: adjust size or styles on mobile too if needed */
        }
    }


    .segflx {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
        gap: 20px; /* consistent gaps horizontally and vertically */
        margin: 45px 20px; /* container margin */
        border-radius: 20px;
        box-sizing: border-box; /* include padding and border in size */
        background: url(/image/dry_fruits-bg.png)
    }

    /* Set all grid items to the same fixed height and full width of their grid cell */
    .segflxitem {
        color: white;
        font-size: 1.5rem;
        padding: 20px;
        border-radius: 20px;
        width: 100%; /* full width of grid cell */
        height: 420px; /* fixed height to equalize all */
        box-sizing: border-box;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
        /*    background: rgba(255, 255, 255, 0.3);
*/ background: #cc9f53;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

        /* Image scaling: make image height fixed but allow scaling within container */
        .segflxitem img {
            height: 197px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 12px;
            background: #fff;
            max-width: 100%; /* prevent horizontal overflow */
        }

        /* Text and headings */
        .segflxitem h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: bold;
            color: #ffff;
        }

        .segflxitem p {
            margin: 0;
            font-size: 0.9rem;
            color: #fff;
            text-align: justify;
            overflow-wrap: break-word; /* prevent overflow on long words */
            padding-bottom: 10px;
        }

    /* Responsive adjustments */

    /* Tablet: 3 columns */
    @media (max-width: 900px) {
        .segflx {
            grid-template-columns: repeat(3, 1fr);
            margin: 30px 15px;
            gap: 18px;
        }

        .segflxitem {
            height: 380px; /* slightly smaller fixed height */
        }

            .segflxitem img {
                height: 200px;
            }
    }

    /* Mobile: 1 column */
    @media (max-width: 600px) {
        .segflx {
            grid-template-columns: 1fr;
            margin: 20px 16px;
            gap: 16px;
            justify-items: center;
        }

        .segflxitem {
            width: auto;
            height: auto;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-top: 16px;
        }

            .segflxitem img {
                width: 100%;
                height: auto;
                max-width: 95vw;
                border-radius: 16px;
                display: block;
                margin-top: 12px;
            }

            .segflxitem h4 {
                font-size: 1.1rem; /* increased from 1rem */
                margin: 10px 0 4px;
            }

            .segflxitem p {
                font-size: 0.95rem; /* increased from 0.85rem */
                line-height: 1.3;
                margin: 0 8px 12px;
            }
    }

    /*.margflx{
        margin-top: 100px;
        text-align:center;
        font-weight:bold;
        color: #100000;
    }
    .margflxspan{
        color: #cc9f53;
    }

.segflx {
    display: flex;*/ /* Enables flexbox layout */
    /*flex-direction: row;*/ /* Items are placed in a row */
    /*justify-content: space-evenly;*/ /* Even spacing between items */
    /*align-items: stretch;*/ /* Vertically center items */
    /*         height: 550px; /* Optional: set a container height */
    /*background-blend-mode: multiply;
    flex-wrap: wrap;
    margin: 45px 20px;*/
    /*    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
*/ /*border-radius: 20px;
    background: url(../image/dry_fruits-bg.png);
    background-blend-mode: normal;
}

.segflxitem {
    color: white;
    font-size: 1.5rem;
    padding: 20px;
    border-radius: 20px;
    flex: 1;*/ /* All items grow equally */
    /*margin: 0 10px;*/ /* Space between items */
    /*text-align: center;
    align-content: center;
    max-width: 300px;
    margin: 20px;
    height: auto;*/ /* Let flexbox determine the height */
    /*display: flex;*/ /* To center content vertically, if desired */
    /*flex-direction: column;*/ /* Stack content vertically */
    /*justify-content: flex-start;*/ /* Vertically center content */
    /*box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.segflxitem img {
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 12px;
    background: #fff;
}

.segflxitem h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #cc9f53
}
    .segflxitem p {
        margin: 0;
        font-size: 0.9rem;
        color: black;
        text-align:justify;
    }
.segflxitem-dummy {
    visibility: hidden;
    pointer-events: none;
}
@media (max-width: 600px) {
    .segflxitem-dummy {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .segflx {
        flex-direction: column;
        align-items: center;*/ /* Center items horizontally */
    /*margin: 10px 0;*/ /* Reduce outer margin */
    /*}

    .segflxitem {
        max-width: 95vw;*/ /* Responsive width */
    /*width: 100%;*/ /* Take full width of parent */
    /*margin: 10px 0;*/ /* Adjust spacing for stacking */
    /*padding: 12px 6px;*/ /* Reduce padding if needed */
    /*}

        .segflxitem img {
            height: 160px;*/ /* Smaller image for mobile */
    /*}

    .segflxitem-dummy {
        display: none !important;
    }
}*/
    /* Default: 4 per row (desktop) */
    /*.segflxitem,
.segflxitem-dummy {
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
    margin: 20px;
}*/

    /* Tablet: 3 per row */
    /*@media (max-width: 900px) {
    .segflxitem,
    .segflxitem-dummy {
        flex: 1 1 calc(33.333% - 40px);
        max-width: calc(33.333% - 40px);
    }*/
    /* Hide extra dummies if not needed */
    /*.segflxitem-dummy.tablet-hide {
            display: none !important;
        }
}*/

    /* Phone: 1 per row, dummies not needed */
    /*@media (max-width: 600px) {
    .segflx {
        flex-direction: column;
        margin: 10px 0;
    }

    .segflxitem,
    .segflxitem-dummy {
        flex: 1 1 100%;
        max-width: 95vw;
        margin: 8px 0;
    }

    .segflxitem-dummy {
        display: none !important;
    }
}*/

    .pl-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/dark chocolate.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .pl-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .pl-section {
        margin: 45px 20px;
        display: grid; /* Use CSS Grid layout */
        grid-template-columns: repeat(auto-fit, 360px);
        grid-gap: 40px; /* Gap between grid items */
        justify-content: center; /* Align grid items to the left */
        background: #6c4943 url(/image/product-bg.png)center no-repeat;
        background-blend-mode: overlay;
        padding-top: 40px;
        padding-bottom: 40px;
        border-radius: 20px;
    }

    /* Keep .plitem and other inner containers unchanged to preserve their styling */
    .plitem {
        background: rgba(255, 255, 255, 0.8);
        /* white with 30% transparency */
        /* ...rest of your styles... */
        color: black;
        font-size: 1.5rem;
        /*    padding: 30px;
*/ border-radius: 20px;
        text-align: center;
        /*    align-content: center;
*/ width: 100%; /* change from 360px to 100% */
        max-width: 360px; /* optionally keep max-width to limit size */
        margin: 0;
        height: auto;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        padding: 16px;
        gap: 10px;
        min-height: 270px;
    }

    /* Removed the .dummy class entirely as it is not required */

    /* Other styles remain unchanged */

    .plitem-img {
        width: 100%;
        height: 348px;
        object-fit: cover;
        margin-bottom: 12px;
        display: block;
        border-radius: 20px;
    }

    @media only screen and (max-width: 600px) {
        .pl-section {
            display: block !important; /* Remove grid layout */
            margin: 20px 4px !important; /* Reduce margin on sides */
            padding: 20px 10px !important; /* Adjust padding */
            border-radius: 16px !important; /* Keep rounded corners */
            background-size: cover !important; /* Fix background scaling */
            overflow: hidden !important;
        }

        .plitem {
            max-width: 100% !important; /* Full width of parent container */
            width: 100% !important; /* Take full available width */
            min-width: 0 !important; /* Prevent minimum width issues */
            margin: 0 auto 15px auto !important; /* Bottom margin for spacing */
            padding: 12px 16px !important; /* Reduced padding for small screens */
            border-radius: 16px !important; /* Slightly smaller border radius */
            font-size: 1.2rem !important; /* Adjust font size for readability */
            box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important; /* Softer shadow */
            display: flex !important;
            flex-direction: column !important;
            justify-content: flex-start !important;
        }

        .plitem-img {
            width: 100% !important;
            height: auto !important; /* Maintain image aspect ratio */
            max-height: 220px !important; /* Reduce height for mobile */
            border-radius: 14px !important;
            margin-bottom: 10px !important;
        }
    }

    .image-overlay-container {
        position: relative;
        display: inline-block;
    }

    .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0,0,0,0.5); /* semi-transparent */
        color: #fff;
        padding: 16px 32px;
        border-radius: 8px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        letter-spacing: 2px;
        pointer-events: none;
    }

    .dummy {
        background: transparent;
        color: black;
        font-size: 1.5rem;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        align-content: center;
        max-width: 300px;
        margin: 20px;
        height: auto;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 360px;
        position: relative;
        padding: 16px;
        gap: 10px;
        min-height: 270px;
        visibility: hidden;
    }

    @media (max-width: 600px) {
        .dummy {
            display: none !important;
        }
    }

    .plp {
        font-size: 1rem;
        font-family: 'Montserrat', Arial, sans-serif !important;
        color: #6c4943;
        padding: 18px 20px 20px 20px;
        text-align: center;
        border: 3px solid #cc9f53;
        border-radius: 20px;
    }

    .plformp {
        font-size: 1rem;
        color: #6c4943;
    }

    .plh3 {
        font-size: 1.4rem;
        color: #6c4943;
        font-weight: bold;
        text-align: center;
    }

    .descrpl {
        background-color: #e8dbb4;
        /**/ box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        margin: 16px;
    }

    .plspan {
        font-weight: bold;
        display: block;
    }

    .plhref {
        text-decoration: none;
    }

    .compounds-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/compounds-1.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .comppl-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .cocoaproducts-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/cocoa products cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .cocoapl-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .decorations-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.4), rgba(34,15,7,0.4)), url('../image/strands.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .decorpl-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .hotchocolate-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/hot chocolate 2.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .dcpl-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .fillings-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/fillings-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .fill-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .product-details-container {
        display: flex;
        max-width: 100%;
        margin: 75px 20px;
        background: #e8dbb4;
        border-radius: 18px;
        overflow: hidden;
        font-family: 'Montserrat', Arial, sans-serif;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    }

    .product-image-container {
        flex: 0 0 340px;
        height: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
        position: sticky;
        top: 40px;
        z-index: 2;
        margin-left: 24px; /* Add left margin */
        margin-right: 24px; /* Add right margin */
    }

    .enquiry-button {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        font-weight: bold;
    }

    /* Mobile styling */
    @media (max-width: 767px) {
        .enquiry-button {
            position: fixed !important;
            bottom: 20px !important;
            left: 5% !important;
            width: 90% !important;
            z-index: 1000 !important;
            font-size: 1.2rem !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
            border-radius: 6px !important;
            background-color: #6c4943 !important;
            color: #cc9f53 !important;
            text-align: center !important;
            padding: 12px 0 !important;
        }
    }

    .product-image {
        max-width: 100%;
        max-height: 340px;
        border-radius: 20px;
        box-shadow: 0 2px 12px rgba(62,39,34,0.10);
        background: #fff;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    }

    .product-info-container {
        flex: 1;
        padding: 40px 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-title {
        font-size: 2.4rem;
        margin-bottom: 32px;
        color: #6c4943;
        font-weight: bold;
        text-shadow: 0 1px 0 #f7e6d8;
    }

    .product-specs-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .product-specs-list li {
            display: flex;
            align-items: center;
            margin-bottom: 22px;
            background: #6c4943;
            border-radius: 20px;
            padding: 14px 18px;
            transition: box-shadow 0.2s;
            box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
        }

            .product-specs-list li:hover {
                box-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
            }

        .product-specs-list .icon {
            width: 36px;
            height: 36px;
            background: #ffe0b2;
            color: #a0522d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 1.3rem;
            box-shadow: 0 1px 4px rgba(255,193,7,0.13);
            margin-top: auto;
            margin-bottom: auto;
        }

    .icon-filled {
        width: auto;
        height: 36px;
        color: #cc9f53;
        /*    border-radius: 50%;
*/ display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
        /**/ font-size: 1.3rem;
        /*    box-shadow: 0 1px 4px rgba(255,193,7,0.13);
*/ margin-top: auto;
        margin-bottom: auto;
        /*    background: #ffe0b2;
*/
    }

    .icon-empty {
        width: auto;
        height: 36px;
        /*    border-radius: 50%;
*/ display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
        /**/ font-size: 1.3rem;
        /*    box-shadow: 0 1px 4px rgba(255,193,7,0.13);
*/ margin-top: auto;
        margin-bottom: auto;
        color: #e8dbb4;
        /*    background: #ffe0b2;
*/
    }

    .product-specs-list .label {
        font-weight: bold;
        color: #cc9f53;
        min-width: 140px;
        margin-right: 10px;
        font-size: 1.08rem;
        letter-spacing: 0.5px;
    }

    .product-specs-list .value {
        color: #e8dbb4;
        font-size: 1.08rem;
        font-weight: bold;
    }

    .progress-bar-container {
        width: 120px;
        height: 10px;
        background: #f3e7d9;
        border-radius: 5px;
        margin-left: 16px;
        display: inline-block;
        vertical-align: middle;
        overflow: hidden;
        position: relative;
    }

    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #c7b2a8 0%, #ffb347 100%);
        border-radius: 5px 0 0 5px;
        transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    }
    /* Responsive adjustments */
    @media (max-width: 900px) {
        .product-details-container {
            flex-direction: column;
            margin: 24px 8px;
        }

        .product-image-container {
            flex: none;
            width: 100%;
            height: 280px;
            border-radius: 18px 18px 0 0;
            margin-right: 0;
            padding: 24px 0 0 0;
        }

        .product-info-container {
            padding: 24px 16px;
        }
    }

    @media (max-width: 600px) {
        .product-details-container {
            flex-direction: column;
            margin: 70px 4px; /* Reduce outer margin for small screens */
            border-radius: 12px;
            box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
            width: 98vw;
            max-width: 99vw;
            overflow: visible !important; /* allow content to flow outside if needed */
            border-radius: 12px !important;
        }

        .product-image-container {
            height: 420px !important; /* Original desktop container height */
            padding: 4px 18px !important; /* Original padding */
            margin: 0 !important; /* Remove unwanted margins */
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            position: static !important; /* Remove sticky positioning on mobile */
            box-sizing: border-box !important;
        }

        .product-image {
            max-height: 340px !important; /* Original desktop max height */
            max-width: 100% !important;
            width: auto !important; /* Let width auto scale */
            height: auto !important;
            border-radius: 20px !important;
            box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3) !important;
            background: #fff !important;
            margin: 0 auto !important;
            display: block !important;
        }


        .product-info-container {
            padding: 18px 7px 17px 7px;
            border-radius: 0 0 13px 13px;
            /*margin-top: 15px !important;*/ /* Space to prevent overlap */
        }

        .product-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .product-specs-list li {
            flex-direction: row;
            margin-bottom: 13px;
            padding: 10px 10px;
            border-radius: 7px;
            font-size: 0.96rem;
            align-items: flex-start;
            line-height: 24px;
            font-size: 16px; /* or smaller if needed */
        }

        .product-specs-list .icon,
        .icon-filled,
        .icon-empty {
            width: 24px;
            height: 24px;
            font-size: 1.06rem;
            min-width: 24px;
            min-height: 24px;
            margin-right: 8px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            display: flex;
            box-sizing: border-box;
        }
            /* If your icons use svg, constrain with max-width */
            .product-specs-list .icon svg,
            .icon-filled svg,
            .icon-empty svg {
                width: 18px;
                height: 18px;
            }

        .product-specs-list .label {
            min-width: unset;
            font-size: 0.97rem;
            margin-right: 7px;
            text-align: left;
            margin-top: auto;
            margin-bottom: auto;
        }

        .product-specs-list .value {
            font-size: 0.97rem;
            /*        line-height: 1.3;
*/ word-break: break-word;
        }

        .progress-bar-container {
            width: 65px;
            height: 7px;
            margin-left: 8px;
            vertical-align: middle;
            margin-top: auto;
            margin-bottom: auto;
        }
    }

    .bakery-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.4), rgba(34,15,7,0.4)), url('../image/bakery-new.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .homebakers-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/male-home baker.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .horeca-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.5), rgba(34,15,7,0.5)), url('../image/horeca-cover-new.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .biscuits-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.5), rgba(34,15,7,0.5)), url('../image/cookies-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .icecream-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.45), rgba(34,15,7,0.45)), url('../image/icecream-chocolate.jpg')center center/cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .pharma-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/pharma-banner.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    @media (max-width: 600px) {
        .pharma-banner h1 {
            font-size: 300%; /* smaller font size for mobile */
            padding: 0 20px;
        }
    }

    .chainacc-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/chef-cover.jpg') bottom/cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .main-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 32px;
        max-width: 1100px;
        margin: 48px auto;
        padding: 20px;
    }

    .grid-item {
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 4px 18px rgba(160,82,45,0.09);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 38px 32px 32px 32px;
        position: relative;
        min-height: 260px;
        transition: box-shadow 0.2s, transform 0.2s;
    }

        .grid-item:hover {
            box-shadow: 0 8px 32px rgba(160,82,45,0.16);
            transform: translateY(-4px) scale(1.02);
        }

    .icon {
        font-size: 2.3rem;
        color: #a0522d;
        background: #ffe0b2;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        box-shadow: 0 2px 10px rgba(255,193,7,0.10);
    }

    .grid-item h2 {
        font-size: 1.35rem;
        color: #4e2e1e;
        font-weight: 700;
        margin: 0 0 12px 0;
        letter-spacing: 0.5px;
    }

    .grid-item p {
        color: #333;
        font-size: 1.02rem;
        margin-bottom: 22px;
        margin-top: 0;
        flex: 1;
    }

    .learn-btn {
        background: #a0522d;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 28px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        align-self: flex-start;
        transition: background 0.2s;
        box-shadow: 0 1px 4px rgba(160,82,45,0.09);
    }

        .learn-btn:hover {
            background: #7a3b1d;
        }

    /* Distinct backgrounds for each topic (optional for visual variety) */
    .sourcing {
        background: linear-gradient(120deg, #fffbe9 80%, #e8dbb4 100%);
    }

    .innovation {
        background: linear-gradient(120deg, #fff8f2 80%, #f3e7d9 100%);
    }

    .quality {
        background: linear-gradient(120deg, #f7f0e8 80%, #e8ded6 100%);
    }

    .certifications {
        background: linear-gradient(120deg, #fffbe9 80%, #f3e7d9 100%);
    }

    .trends {
        background: linear-gradient(120deg, #fff8f2 80%, #e8dbb4 100%);
    }

    .logistics {
        background: linear-gradient(120deg, #f7f0e8 80%, #fffbe9 100%);
    }

    .business {
        background: linear-gradient(120deg, #fffbe9 80%, #e8ded6 100%);
    }

    .sustainability {
        background: linear-gradient(120deg, #f3e7d9 80%, #fffbe9 100%);
    }

    /* Responsive Design */
    @media (max-width: 900px) {
        .main-grid {
            grid-template-columns: 1fr;
            grid-template-rows: none;
            gap: 24px;
            padding: 10px;
        }

        .grid-item {
            min-height: 180px;
            padding: 28px 16px 24px 16px;
        }

        .icon {
            font-size: 2rem;
            width: 40px;
            height: 40px;
            margin-bottom: 16px;
        }
    }
    /* ========== BASE CONTACT BODY ========== */
    .contact-body {
        background: #fffbe9;
        font-family: 'Montserrat', Arial, sans-serif;
        margin: 20px;
        margin-top: 100px;
        color: var(--seal-brown);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    /* ========== MAIN WRAPPER ========== */
    .main-contact-wrapper {
        display: flex;
        flex-direction: row; /* Ensures side-by-side */
        align-items: flex-start;
    }

    .contact-column, .map-column {
        flex: 1 1 50%; /* Each takes half width */
        min-width: 340px;
        padding: 44px 32px;
        box-sizing: border-box;
    }

    .contact-column {
        border-right: 2px solid var(--beeswax);
        display: flex;
        flex-direction: column;
    }

    .map-column {
        border-radius: 0 18px 18px 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* ========== TITLES ========== */
    .contacth1 {
        text-align: center;
        color: var(--seal-brown);
        margin: 0 0 26px;
        letter-spacing: 1.5px;
        font-size: 2.1em;
        font-weight: 700;
        font-family: 'Montserrat', Arial, sans-serif;
    }

    .map-column h2 {
        color: var(--seal-brown);
        text-align: center;
        margin-bottom: 6px;
        font-size: 1.26em;
        font-weight: 700;
    }

    .map-column h3 {
        color: var(--dark-tan);
        margin: 14px 0 8px;
        font-size: 1.12em;
        font-weight: bold;
    }

    /* ========== TABS ========== */
    .tabbed-interface {
        margin-bottom: 18px;
        padding-top: 30px;
    }

    .tabs {
        display: flex;
        list-style: none;
        border-bottom: 3px solid var(--callico);
        margin: 0;
        padding: 0;
        font-size: 15px;
        box-shadow: 0 1px 10px rgba(108, 73, 67, 0.07);
        text-align: center;
    }

    .tab {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        font-weight: bold;
        font-family: 'Montserrat', Arial, sans-serif;
        letter-spacing: 1px;
        padding: 16px 0;
        cursor: pointer;
        background: var(--fallow);
        color: var(--seal-brown);
        border: none;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        transition: background 0.28s, box-shadow 0.25s;
        margin-right: 2px;
        box-shadow: 0 2px 12px rgba(158, 109, 79, 0.09);
        z-index: 2;
        font-size: 1em;
        padding: 10px;
    }

        .tab.active {
            background: var(--dark-tan);
            color: #fff;
            z-index: 3;
            box-shadow: 0 7px 18px rgba(34, 15, 7, 0.16), 0 2px 6px rgba(158, 109, 79, 0.12);
        }

        .tab:not(.active):hover {
            background: var(--callico);
            box-shadow: 0 4px 15px rgba(108, 73, 67, 0.1);
        }

    /* ========== TAB CONTENT ========== */
    .tab-content {
        display: none;
        animation: fadeIn 0.45s ease;
        margin-top: 42px;
    }

        .tab-content.active {
            display: block;
        }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ========== FORM ========== */
    form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    label {
        font-weight: 700;
        color: var(--congo-brown);
        margin-bottom: 4px;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .required-asterisk {
        color: #d04e00;
        font-weight: 700;
        font-size: 1.12em;
    }

    input, textarea, select {
        border: 1px solid var(--callico);
        border-radius: 6px;
        padding: 13px 12px;
        font-size: 1em;
        background: #fffdfa;
        color: var(--seal-brown);
        font-family: 'Montserrat', Arial, sans-serif;
        transition: border 0.18s, background 0.18s;
    }

        input:focus, textarea:focus, select:focus {
            border-color: var(--dark-tan);
            outline: none;
        }

        /* Accessibility */
        input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--dark-tan);
            outline-offset: 2px;
        }

    /* Phone block */
    .contact-phone-block {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

        .contact-phone-block select,
        .contact-phone-block input[type="tel"] {
            min-width: 108px;
        }

    /* ========== MAP BOX ========== */
    .map-frame {
        width: 100%;
        height: 200px;
        border: 0;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(60, 20, 20, 0.09);
        background: var(--beeswax);
    }

    .map-address {
        font-size: 1em;
        color: var(--congo-brown);
        line-height: 1.5;
    }

    /* ========== RESPONSIVE BREAKPOINTS ========== */
    @media (max-width: 1100px) {
        .main-contact-wrapper {
            flex-direction: column;
            max-width: 98vw;
            overflow: hidden;
        }

        .contact-column {
            border-bottom: 2px solid var(--callico);
            border-right: none;
            width: 100%;
        }
    }

    @media (max-width: 900px) {
        .tabs {
            flex-wrap: wrap;
            font-size: 14px;
        }

        .tab {
            flex: 1 1 45%;
            margin: 4px 4px 0 0;
            padding: 14px 0;
        }

        form {
            gap: 16px;
        }

        input, textarea, select {
            font-size: 0.95em;
            padding: 11px 10px;
        }
    }

    @media (max-width: 600px) {
        html, body {
            overflow-x: hidden;
        }

        .contact-body {
            margin: 8px 4px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.09);
        }

        .main-contact-wrapper {
            gap: 18px;
            padding: 0 0 10px;
            max-width: 99vw;
            margin: 10px 1vw;
        }

        .contact-column, .map-column {
            padding: 18px 12px !important;
            margin-bottom: 14px;
            border-radius: 10px;
        }

        .contact-column {
            border-bottom: 5px solid var(--callico);
        }

        contacth1 {
            font-size: 1.5em;
            margin: 6px 0 18px;
        }

        .map-frame {
            height: 120px;
            border-radius: 7px;
        }

        .tabs {
            flex-direction: column;
            font-size: 13px;
            border-bottom: 2px solid var(--callico);
        }

        .tab {
            flex: 1;
            margin-bottom: 3px;
            padding: 9px 0;
            font-size: 0.98em;
        }

        form {
            gap: 9px;
        }

        input, textarea, select {
            font-size: 1em;
            padding: 9px 10px;
            width: 100%;
        }

        .contact-phone-block {
            flex-direction: column;
            gap: 5px;
        }

            .contact-phone-block select,
            .contact-phone-block input[type="tel"] {
                width: 100%;
                min-width: 0;
            }
    }

    .pl-section.blog-page {
        margin: 45px 20px;
        display: grid; /* Use CSS Grid layout */
        grid-template-columns: repeat(auto-fit, 360px);
        grid-gap: 40px; /* Gap between grid items */
        justify-content: center; /* Align grid items to the left */
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
        grid-column: 1 / -1;
        margin-bottom: 18px;
        color: #6c4943;
        font-weight: bold;
    }

    .plitem.blog-post {
        display: flex;
        flex-direction: column;
        background: #f9f5e9;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
        padding: 24px 18px 18px 18px;
        min-height: 320px;
        align-items: center;
        width: 100%;
        position: relative;
        box-sizing: border-box;
    }

    .blog-img-placeholder {
        margin-bottom: 16px;
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog-img {
        width: 300px;
        height: 250px;
        object-fit: cover;
        border-radius: 18px;
        background: #e8dbb4;
        box-shadow: 0 2px 8px rgb(0 0 0 / 0.07);
    }

    .plh3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #6c4943;
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.25;
    }

    .plp {
        font-size: 1rem;
        color: #5a4a3e;
        text-align: center;
        line-height: 1.6;
        flex-grow: 1;
        margin-bottom: 8px;
    }

    .learn-more-btn {
        margin-top: 10px;
        padding: 8px 18px;
        align-self: center;
        font-size: 1.05rem;
        font-weight: 600;
        border-radius: 14px;
        min-width: 120px;
        transition: background-color 0.3s ease;
        background-color: #0d6efd;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    }

        .learn-more-btn:hover {
            background-color: #8a6d4d;
            color: #fff;
        }

    @media (max-width: 767px) {
        .pl-section.blog-page {
            grid-template-columns: 1fr;
            gap: 22px 0;
        }

        .landing-space, .pl-section.blog-page {
            padding-left: 4px;
            padding-right: 4px;
        }
    }

    .trends-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.4), rgba(34,15,7,0.4)), url('../image/trends-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .sourcing-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/Sourcing-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .sourcing-bannertxt {
        font-weight: bold;
        font-size: 4rem;
        color: #e8dbb4;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

@media (max-width: 767px) {
    .sourcing-bannertxt {
        font-size: 2.5rem; /* Smaller size for mobile */
        margin: 0 10px;
    }

    .sourcing-bannertxt-p {
        font-size:1.2rem !important;
        margin: 10px 10px;
    }
}


    .sourcing-bannertxt-p {
        font-weight: bold;
        font-size: 1.5rem;
        color: #ffff;
        animation: fadeInUp 1s ease-out forwards 0.01s;
    }

    .sourcing-content-section {
        max-width: 100%;
        margin: 45px 20px;
        padding: 20px 20px;
        background: #e8dbb4;
        border-radius: 20px;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 767px) {
        .sourcing-content-section {
            margin: 20px 4px;
            padding: 15px 0px;
            border-radius: 15px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
        }
    }

    .sourcing-content-block {
        display: flex;
        gap: 20px;
        margin: 2.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

        .sourcing-content-block div:first-child {
            flex: 1 1 45%;
        }

        .sourcing-content-block div:last-child {
            flex: 1 1 50%;
            font-size: 1.1rem;
            color: #4e2e1e;
            text-align: justify;
        }

        .sourcing-content-block img {
            width: 100%;
            border-radius: 20px;
            max-height: 310px;
            object-fit: cover;
            box-shadow: 0 4px 12px rgba(34, 15, 7, 0.15);
        }

        /* Optional: Alternate image on right for even blocks */
        .sourcing-content-block:nth-child(even) {
            flex-direction: row-reverse;
        }

    /* Responsive stacking on smaller screens */
    @media (max-width: 767px) {
        .sourcing-content-block {
            flex-direction: column !important;
            margin: 25px;
        }

            .sourcing-content-block div {
                flex: 1 1 100%;
            }
    }

    .sourcing-content-block img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(34,15,7,0.15);
        margin-bottom: 1rem;
    }

    .sourcing-content-block p {
        font-size: 1.1rem;
        color: #6c4943;
        text-align: justify;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    @media (max-width: 767px) {
        .sourcing-banner h1 {
            font-size: 2.5rem;
        }

        .sourcing-banner p {
            font-size: 1.25rem;
        }
    }

    .product-dev-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/innovation-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .quality-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/Quality-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .certification-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/compounds-1.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .market-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/market-trends-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .logistics-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/logistics-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .business-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/compounds-1.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }

    .sustainability-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(34,15,7,0.2), rgba(34,15,7,0.2)), url('../image/sustainability-cover.jpg') center center/ cover no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: #e8dbb4;
        margin: 0;
    }