*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'poppins',sans-serif;
}
.container_list{
    width: 100%;
    min-height:10vh;
    display:flex;
    align-items:center;
    justify-content: center;
    /* padding: 10px 1%; */

}
.list{
    display: grid;
    width: 100%;
    height: auto;
    object-fit: cover;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    grid-gap: 20px;
    position: relative;
    
}
@media (max-width:968px){
    .list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 568px){
    .list{
        grid-template-columns: repeat(1, 1fr);
    }
}
.list-item{
    position: relative;
    border-radius: 25px;
}

.list-item img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.5em;
}
.list-item .caption{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-bottom-right-radius: 1.5em;
    border-bottom-left-radius: 1.5em;
}



.large_h1 {
    border-top: 10px solid #ffa343;
    border-radius: 25px 25px 0px 0px;

    letter-spacing: 6px;
    margin-bottom: 20px;

    padding: 0.3rem;    
    color: #f0f0f0;
    font-size: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
}











*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Open Sans',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);
}
header {
    position: relative;
    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;
}
.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: var(--p-font);
    margin-right: 20px;
}
.h-right a {
    vertical-align: middle;
    font-size: 20px;
    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_top  {
    width: 100%;
    height: auto;
    display: block;
}

.header_comtainer {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.header_caption {
    position: absolute;
    padding: 0.5rem;
    top: 83.3%;
    left: 80%;
    transform: translate(-50%, -50%);
    color: #f0f0f0;
    font-size: 50px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}








/* this is updated start */
.slider-holder {
    padding: 1rem 0.5rem;
}
.slider-container {
    width: 100%;
    height: 200px;
    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 {
    position: relative;
    top: 0;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0,0,0,0.1),rgba(0,0,0,0.4));
    /* background-image: url(../images_test/home_page_image.jpg); */
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content:center;
    text-align: center;
}
.home-logo {
    width: 300px;
    height: auto;
}
.home-text {
    width: 100%;
}
.home-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
    text-align: center;
}
.home-text h1 {
    font-size: 4em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}
.home-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
    text-align: center;
}

/* this is updated start*/

.more-about-export1 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;

    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-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);
}
header.sticky {
    padding: 8px 17%;
    background: transparent;
    backdrop-filter: blur(35px);
}


.navigation-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);
}
.navigation 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;
}
.navigation .see-btn {
    padding-top: 1.5rem;
    display: grid;
    place-items: center;
    
}
.navigation-content h4{
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all .50s ease;
}
.navigation-content h4:hover {
    color: var(--main-color);
}


.container_1 h5{
    font-size: 22px;
    font-weight: 600;
    color: #30acff;
    letter-spacing: 6px;
    margin-bottom: 20px;
}


.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;
    margin-bottom: 25px;
}
.section-about-us-text p {
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
}


/* 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);
}
.list-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}
.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;
}
.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; */
}



@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;
    }
    .header_caption {
        font-size: 43px;
    }
}
@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;
    }
    .header_caption {
        font-size: 38px;
    }
}
@media (max-width: 1050px) {
    .navigation-content {
        gap: 1.5rem;
    }

    .company_description{
        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;
    }
    .header_caption {
        font-size: 30px;
    }
}
@media (max-width: 900px) {

    .header_caption {
        font-size: 25px;
    }
}
@media (max-width: 800px) {
    .holiday {
        grid-template-columns: 1fr;
    }
    .company_description {
        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;
    }
    .header_caption {
        font-size: 25px;
    }
}
@media (max-width: 750px) {

    .header_caption {
        font-size: 22px;
    }
}
@media (max-width: 700px) {

    .header_caption {
        font-size: 20px;
    }
    .large_h1 {
        font-size: 35px;
    }
}
@media (max-width: 600px) {
    :root {
        --h1-font: 3.5rem;
        --h2-font: 2.1rem;
    }
    .home {
        height: 85hv;
    }
    .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;
    }
    .header_caption {
        font-size: 16px;
    }
}
@media (max-width: 550px) {

    .header_caption {
        font-size: 14px;
    }
    .large_h1 {
        font-size: 30px;
    }
}

@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;
    }
    .header_caption {
        font-size: 11px;
    }
}
@media (max-width: 390px) {
    .home-logo {
        width: 190px;
        height: auto;
    }
    .h-right a:first-child {
        font-size: 1rem;
    }
    .header_caption {
        font-size: 10px;
    }
    .large_h1 {
        font-size: 25px;
    }
}
@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;
    }
    .header_caption {
        font-size: 8px;
    }
}   
@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;
    }
}




/* this is from common css */

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


.container_2-text .menu a {
    font-size: 1.1em;
    width: 0.2em;
    height: 2em;
}

.container_2-text .menu div{
    width: 2em;
    height: 2em;
}

.container_2-text .menu .item_img{
    max-width: 100%;
    max-height: 100%;
}


@media (max-width:720px){

    .container_2 {
        grid-template-columns: repeat(1, 1fr);
    }
}




/* this is only for contact us page */

.container_form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.submit-button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.submit-button:hover {
    background-color: #555;
}




.div_icon {
    width: 50px; 
    height: auto; 
    background-repeat: no-repeat;
    display: block;
}
.div_icon img{
    max-width: 100%;
    max-height: 100%;
}





.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}


/* this only for the submition message */

.message {
    border-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin: 20px auto;
    max-width: 80%;
    border-radius: 5px solid;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.error {
    border-color: #f44336;
}

.message p{

    color: black;
}


/* this is for cotntact us btn on footer */


.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);
}