*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Roboto',sans-serif;

}
:root {
    --text-color: #000;
    --bg-color: #fff;
    --main-color: #ffa343;

    --h1-font: 4em;
    --h2-font: 3em;
    --p-font: 1rem;
}
body {
    color: var(--text-color);
    background: var(--bg-color);
}

#myDiv {
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    transition: border-color 0.5s;
}
.glowBorder {
    border-color: #fd9628;
    box-shadow: 0 0 10px #43d9ff;
}

header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    padding: 27px 17%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;

    /* background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px); */
    
}
.logo {
    font-size: 30px;
    color: var(--text-color);
    font-weight: 700;
}
span {
    color: var(--main-color);
}
.nav_bar {
    display: flex;
}
.nav_bar a {
    color: #000;
    font-size: var(--p-font);
    font-weight: 500;
    margin: 15px 22px;
    transition: all .50s ease;

}
.nav_bar a:hover {
    color: var(--main-color);
}
.h-right {
    display: flex;
    align-items: center;
}
.h-right a:first-child {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 20px;
}
.h-right a {
    vertical-align: middle;
    font-size: 2rem;
    color: var(--text-color);
    margin-right: 18px;
    margin-left: 5px;
    transition: all .50s ease;
}
.h-right a:hover {
    color: var(--main-color);
    font-size: 1.2rem;
}
#menu-icon {
    color: var(--main-color);
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}
section {
    padding: 70px 17% 60px;
}








.header_image  {
    width: 100%;
    height: auto;
}

.header_image_top  {
    width: 100%;
    height: auto;
    border-bottom: green solid;
}






.welcome-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}
#welcome {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    background-size: cover;
    justify-content: center;
    animation: zoom 2.4s linear infinite;
}
@keyframes zoom {
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1);
    }
    65%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
}






.header_caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f0f0f0;
    font-size: 20px;
    text-align: center;
}






/* this is updated start */
.slider-holder {
    padding: 0rem 0.5rem;
    margin-bottom: 3em;
}
/* this is for import page slider */
.slider-holder_import {
    padding: 0rem 0.5rem;
}
.slider-container {

    width: 100%;
    overflow: hidden;
    position: relative;
    /* border: green solid; */
    border-radius: 10px;
}
.slider {
    display: flex;
    animation: slide 10s linear infinite; /* Adjust timing as needed */
}
.slide {
    margin: 0.3rem;
    width: 250px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
    object-fit: cover;

}
.slide img {
    width: 100%;
    height: auto;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-300px); /* Slide to the left */
    }
    50% {
        transform: translateX(-600px); /* Slide to the left */
    }
    75% {
        transform: translateX(-900px); /* Slide to the left */
    }
    100% {
        transform: translateX(0);
    }
}



/* this is updated end */


.home {
    height: 100vh;
    position: relative;
    overflow: hidden;
    text-align: center;

}
.home-image {
    top: 0;
    height: 100vh;
    width: 100%; 
    background-image: linear-gradient(to left, rgba(0,0,0,0.1),rgba(0,0,0,0.3)),url(../images/grainfarm.jpg);

    background-size: cover;
    background-position: center;

    transition: height 0.3s;

}
.home-logo {
    width: 300px;
    height: auto;
}
.home-text {
    /* position: relative; */
    width: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.home-text h5 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 6px;
    color: #ffcf7e;
    text-align: center;

    
}
.home-text h1 {
    font-size: 4em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffcf7e;
    text-align: center;
}
.home-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
    text-align: center;
}













.view-image {
    margin-top: 5em;
    background-image: linear-gradient(to left, rgba(0,0,0,0.1),rgba(0,0,0,0.3)),url(../images/coffee_plant.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}
.view {
  padding: 20px 0px; 
  display: flex;
  justify-content: flex-end;
}
.semi-circle {
    width: 300px; 
    padding: 10px;
    height: auto; 
    background-color: #f0f0f0;
    top: 0;
    right: 0;
    border-top-left-radius: 25px; /* Half of the height */
    border-bottom-left-radius: 25px; /* Half of the height */
}
.wcu_header {

    text-align: center; 
    font-family: 'Poppins',sans-serif;
    font-weight: 700;
}













/* this is updated start*/

.more-about-export1 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-image: url('../images/boat_1.jpg');
    background-size: cover;
}
.more-about-export2 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.more-about-export3 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-image: url('../images/assortment-of-raw-fresh-meat-on-dark-grunge-background-beef-pork-fish-chicken-and-duck-top-1.jpg');
    background-size: cover;
}

.over-title {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr auto ;
    padding: 0;
}
.title {
    width: 100%;
    height: auto;
    position: relative;
    /* padding: 0.5rem 1rem 1rem 1rem; */
    /* margin: 2rem 1rem; */
    margin: 0;
    padding: 0;
    border-radius: 0.5rem;
    border: #ffa343 solid;
   
}
.under-title {
    margin: 0;
    padding: 0;
    /* display: flex; */
    /* justify-content: space-between; */
    /* grid-template-columns: 1fr auto 1fr; */
    
}
.title h1{
    /* padding: 0.5rem 0 0 1rem; */
    margin: 0;
    padding: 0; 
    font-size: 2.2rem;
    color: #fff;
    
}

/* this is updated end*/







.btn {
    display: inline-block;
    padding: 13px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all .50s ease;
    cursor: pointer;
}
.btn:hover {
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}

.btn2 {
    display: inline-block;
    padding: 13px 40px;
    background: rgb(0, 140, 255);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all .50s ease;
    cursor: pointer;
}
.btn2:hover {
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}

header.sticky {
    padding: 8px 17%;
    background: transparent;
    backdrop-filter: blur(35px);
}


.menu-content {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: center;
    text-align: center;
    gap: 3rem;
}
.row-img {
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10%;
    cursor: pointer;
}
.row-img img {
    width: 100%;
    display: block;
    transition: trasform 0.7s;
}
.row-img img:hover {
    transform: scale(1.2);
}
.menu h1 {
    padding-left: 2.5rem;
    padding-bottom: 1rem;
    display: flex;
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.menu .see-btn {
    padding-top: 1.5rem;
    display: grid;
    place-items: center;
    
}
.menu-content h4{
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all .50s ease;
}
.menu-content h4:hover {
    color: var(--main-color);
}



.company_description {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
    margin: 0;
    padding: 0;
    
}
.company_description-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.company_description-text h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 6px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
.company_description-text h2 {
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.company_description-text p {
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    margin-bottom: 35px;
    white-space: normal;
    word-wrap: break-word;
}
.the-text {
    padding: 0;
}



/* this is new start*/
.section-about-us-text {
    padding-top: 10px;
}
.section-about-us-text h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 6px;
    margin-bottom: 20px;
}
.section-about-us-text h2 {
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    z-index: 1;
    color: transparent;
    -webkit-text-stroke: 2px black; /* Add a black outline to the text for better visibility */
    background-color: rgba(255, 255, 255, 0.5);
}


.section-about-us-text p {
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #000;
}


/* this is new end*/








/* this is updated start*/


.content_one {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, auto));
    align-items: center;
    gap: 0 1rem;
    margin: 0;
    padding: 0;

    /* padding: 0.5rem; */
    /* background-image: linear-gradient(to left, rgba(0,0,0,0.1),rgba(0,0,0,0.4)),url(../images/food-herbs-and-spices-spices-hd-wallpaper-preview.jpg); */
}
.content_one .box {
    position: relative;
}
.content_one .con_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(90%);
    transition: all .3s cubic-bezier(.499, .05, .55, .95);
    will-change: filter;
    display: block;
    border: #7c6f6f solid;
}
/* .content_one .con_box h6 {
    position: absolute;
    left: 25px;
    bottom: 95px;
    font-size: 18px;
    font-weight: 500;
} */
.content_one .con_box h4 {
    position: relative;
    left: 20px;
    bottom: 45px;
    font-size: 25px;
    font-weight: 700;
}   
.content_one .con_box img:hover {
    filter: brightness(100%);
    transform: scale(1.04);
    cursor: pointer;
}
.content_one .center-btn {
    /* text-align: center; */
    /* margin-top: 1rem; */
    
}

/* this is updated end*/




.center-text {
    text-align: center;
}
.center-text h2 {
    font-size: var(--h2-font);
}
.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 3rem;
}
.menu-content2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 3rem;
    margin-top: 5rem;
    text-align: center;
}
.menu-content h4{
    color: #f0f0f0;
}

.box {
    position: relative;
}
.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(70%);
    transition: all .3s cubic-bezier(.499, .05, .55, .95);
    will-change: filter;
    display: block;
}
.contain_all-text img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    filter: brightness(70%);
    transition: all .3s cubic-bezier(.499, .05, .55, .95);
    will-change: filter;
    display: block;
}
.box h6 {
    position: absolute;
    left: 25px;
    bottom: 95px;
    font-size: 18px;
    font-weight: 500;
}
.box h4 {
    position: absolute;
    left: 25px;
    bottom: 65px;
    font-size: 20px;
    font-weight: 700;
}
.box img:hover {
    filter: brightness(90%);
    transform: scale(1.04);
    cursor: pointer;
}
.center-btn {
    /* text-align: center;
    margin-top: 4rem; */
}





.contain_all_categories{
 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 5rem;



}
.contain_all_categories-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.contain_all_categories-div {
    background-image: url(../images/different_grain_croped.jpeg);
    background-size: cover;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    border-radius: 25px;
}
.contain_all_categories-div h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 6px;
    margin-bottom: 20px;
    
}
.contain_all_categories-div h2 {
    font-size: var(--h2-font);
    color: var(--main-color);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.contain_all_categories-div p {
    font-size: var(--p-font);
    color: var(--main-color);
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
}


.for_my_h1 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 10px;
    margin-bottom: 20px;
}




.contain_all{
    /* background-image: url(../images/different_grain_croped.jpeg); */
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 5rem;



}
.contain_all-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.contain_all-text {
    height: 50vh;
    background-color: #f0f0f0;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    border-radius: 25px;
}
.contain_all-text h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 6px;
    margin-bottom: 20px;
    
}
.contain_all-text h2 {
    font-size: var(--h2-font);
    color: var(--main-color);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.contain_all-text p {
    font-size: var(--p-font);
    color: var(--main-color);
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
}



.container_1{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
    background-color: #fff;
}
.container_1-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.container_1-text h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 6px;
    margin-bottom: 20px;
}
.container_1-text h2 {
    font-size: var(--h2-font);
    color: var(--main-color);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.container_1-text p {
    font-size: var(--p-font);
    color: var(--main-color);
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
}






@media (max-width: 1700px){
    header{
        padding: 18px 8%;
    }
    header.sticky{
        padding: 7px 8%;
    }
    section{
        padding: 50px 8% 40px;
    }
    .content_one .box h4 {
        font-size: 40px;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
}
@media (max-width: 1200px){
    header{
        padding: 14px 5%;
    }
    header.sticky{
        padding: 7px 5%;
    }
    section{
        padding: 45px 5% 35px;
    }
    :root {
        --h1-font: 4.6rem;
        --h2-font: 2.8rem;
        --p-font: 15px;
    }
    .home {
        height: 90vh;
    }
    .h-right a:first-child {
        font-size: 1.2rem;
 
    }
    .h-right a:first-child:hover {
        font-size: 1.3rem;
        color: #ffa343;
    } 
    .home-text h1 {
        font-size: 3em;
    }
    .home-logo {
        width: 250px;
        height: auto;
    }
}
@media (max-width: 1050px) {
    .menu-content {
        gap: 1.5rem;
    }
    .company_description{
        gap: 3rem;
    }
    .container_1 {
        gap: 3rem;
    }
    #menu-icon {
        display: block;
    }
    .nav_bar {
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 40px 60px;
        top: 0;
        bottom: 0;
        left: 100%;
        right: 0;
        display: flex;
        flex-direction: column;
        background-color: #000;
        transition: all .50s ease;
    }
    .nav_bar a {
        display: block;
        color: #ffa343;
        padding: 0;
        margin: 0px 0px 40px 0px;
        font-size: 2.2rem;
        font-weight: 400;
    }
    .nav_bar.open {
        left: 0;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
}
@media (max-width: 800px) {
    .company_description {
        grid-template-columns: 1fr;
    }
    .container_1 {
        grid-template-columns: 1fr;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
    }
    .content_one .box h4 {
        font-size: 30px;
    }
    .logo {
        font-size: 20px;
        color: var(--text-color);
        font-weight: 700;
    }
    .home-text h1 {
        font-size: 2.5em;
    }
    .home-logo {
        width: 230px;
        height: auto;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
    .home-text h5 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    :root {
        --h1-font: 3.5rem;
        --h2-font: 2.1rem;
    }
    .menu-content {
        grid-template-columns: 1fr 1fr;
    }
    .home {
        height: 85vh;
    }
    .content_one {
        display: grid;
        grid-template-columns: repeat(2, minmax(250px, auto));
    }
    .company_description {
        grid-template-columns: 1fr;
    }
    .home-logo {
        width: 210px;
        height: auto;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
}
@media (max-width: 450px) {
    header{
        padding: 12px 3%;
    }
    header.sticky{
        padding: 7px 3%;
    }
    section{
        padding: 60px 3% 50px;
    }
    .content_one .box h4 {
        font-size: 25px;
    }
    .logo {
        font-size: 15px;
        color: var(--text-color);
        font-weight: 700;
    }
    .home-text h1 {
        font-size: 1.9em;
    }
    .home-logo {
        width: 200px;
        height: auto;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
    .home-text h5 {
        font-size: 30px;
    }
}
@media (max-width: 390px) {
    .home-logo {
        width: 190px;
        height: auto;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
}
@media (max-width: 340px) {
    .logo {
        font-size: 13px;
        color: var(--text-color);
        font-weight: 700;
    }
    .home-logo {
        width: 180px;
        height: auto;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
}
@media (max-width: 290px) {
    .logo {
        font-size: 11px;
        color: var(--text-color);
        font-weight: 700;
    }
    .h-right a:first-child {
        color: var(--text-color);
        font-size: 1rem;
        margin-right: 20px;
    }
    .home-logo {
        width: 170px;
        height: auto;
    }
}
@media (max-width: 270px) {
    .home-logo {
        width: 160px;
        height: auto;
    }
}
@media (max-width: 250px) {
    .home-logo {
        width: 150px;
        height: auto;
    }
}
@media (max-width: 235px) {
    .home-logo {
        width: 140px;
        height: auto;
    }
}
@media (max-width: 220px) {
    .home-logo {
        width: 130px;
        height: auto;
    }
}
@media (max-width: 200px) {
    .home-logo {
        width: 120px;
        height: auto;
    }
}
@media (max-width: 185px) {
    .home-logo {
        width: 110px;
        height: auto;
    }
}
@media (max-width: 170px) {
    .home-logo {
        width: 100px;
        height: auto;
    }
}




