*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/rice-terraces-background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center ;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: darkolivegreen;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width:90%;
    color:#fff;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 30px;
    top:50%;
}
.text-box p{
    /* margin: 10px 0 40px; */
    margin: 5px 0 -100px;
    font-size:30px;
    color:#fff;
}

/* .hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;            
    position: relative;
    cursor: pointer;
} */
.hero-btn:hover{
    border: 1px solid darkolivegreen;
    background: darkolivegreen;
    transition: 1s;
}


  
  
@media(max-width: 700px){
    .text-box h1{
        font-size: 15px;
    }
    nav img{
        width: 80px;
    }
    .text-box p{
        margin: -143px 0 40px;
        font-size:10px;
        color:#fff;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position:fixed;
        background: olive;
        height: 100vh;
        width: 200px;
        top:0;
        right:-200px;
        text-align: left;
        z-index:2;
        transition: 1s;
        
    }
    .nav.fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    .fa{
        display: block;
        color: #fff;
    }
    
    .nav-links ul{
        padding:30px;

    }
    .text-box{
        width:100%;
        color:#fff;
        position:absolute;
        top:60%;
        bottom: 10%;
        left:50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }
    
}
@media not screen and (max-width: 700px) {
    .nav-links .fa-bars {
        display: none;
    }
    .nav-links .fa-times {
        display: none;
    }
}

/* ---------------------------chat gpt start--------------------------- */


  /* Hide cross and bars icons on larger screens */
  @media only screen and (min-width: 769px) {
    .bars {
      display: none;
    }
  
    .cross {
      display: none;
    }
  }
  
/* ---------------------------chat gpt end--------------------------- */

/* products */
.products{
    width:  80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color:darkolivegreen;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display:flex;
    justify-content: space-between;
}
.products-col{
    flex-basis: 31%;
    background: darkolivegreen;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.products-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
} 

/* ---------------------------------------------------services -------------------------------------------*/
.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.services-col{
    flex-basis: 30%;
    border-radius: 50px;
    margin-bottom: 50px;
    margin-top: 0%;
    position:relative;
    overflow: hidden;
    display: block;
}
.services-col img{
    width: 100%;
}
.layer{
    background:transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: darkolivegreen;
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
} 

/* -----------------------------------------------cta------------------------------------------------ */
.cta{
    margin: 100px auto;
    width: 80%;
    background-image:url(images/hands-earth-contact.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color:rgb(18, 17, 17);
    margin-bottom: 40px;
    padding: 0;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: rgb(23, 3, 3);
    border: 1px solid rgb(255, 186, 91);
    padding: 12px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
@media(max-width: 700px){
    .cta h1{
        flex-direction: 24px;
    }
} 


/* <!-- ------------------------------------Footer--------------------------------- --> */
.footer{
    color: black;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    color: black;
    font-size: 25px;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.footer p{
    color: rgb(18, 11, 11);
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
/* .icons.fa {
    color: black;
    margin: 50px 13px;
    cursor: pointer;
    padding: 18px 0;
}    */

.icons a {
    color: darkolivegreen;
    margin: 50px 13px;
    cursor: pointer;
    padding: 18px 0;
    text-decoration: none; /* Added this line to remove the underline */

}  
.fa-instagram{
    color: darkolivegreen;
    margin-right: 20px;
}
.fa-linkedin{
    color: darkolivegreen;
    margin-left: 20px;
}

/* -------------------------------------About Us Page---------------------------------- */

.sub-header{
    height: 100vh;
    width: 100%;
    background-image: url(images/hd-wallpaper-wooden.jpg);
    background-position: center;
    background-size:cover;
    text-align:center;
    color:rgb(247, 244, 244);
}
.sub-header h1{
    margin-top: 0px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col p{
    color: black;
    font-size: medium;
}
.about-col img{
    width:100%;
    height: 75vh;
    border-radius: 10px;
}
.about-col h1{
    padding-top: 0;   
}

.about-col p{
    padding: 15px 0 25px;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: darkgoldenrod;
    font-size: 15px;
}
.red-btn:hover{
    color: #fff;
}

/* ------------------------------------------------Contact Us Page---------------------------------------------- */

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.fa p{
    color: black;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: darkolivegreen;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 50px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/* -----------------------------------------Contact-Form------------------------------------------- */

.hero h3{
    margin-top: 15%;
    font-weight: 400;
    font-size: 30px;

}

.hero h1{
    margin-top: 30px;
    font-size: 50px;
}

.hero p{
    margin: 10px 0 50px;
}

.hero{
    width: 100%;
    height: 170vh;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(images/eagal_looking_straight.jpg);
    background-size: cover;
    background-position: center;
    padding: 10px 10%;
    color: white;
}

form{
    background: white;
    display:grid;
    width: fit-content;
}

form input{
    border:0;
    outline: none;
    padding: 10px 20px;
    height: 70px;
    width: 400px;
    font-size: 16px;
}
form button{
    background: #62b752;
    border: none;
    outline: none;
    height: 70px;
    width: 400px;
    cursor: pointer;
}
span{
    color: #61b752;
    margin-top: 50px;
    display: block;
}

.hero-btn .red-btn{
    cursor: pointer;
}

form button {
    background: #62b752;
    border: none;
    outline: none;
    height: 70px;
    width: 400px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #0a5c04;
  }
  
  form button:active {
    background-color: darkgoldenrod;
  }

@media(max-width: 700px){
    .hero{
        height:fit-content;
    }
    form{
        background: white;
        display:grid;
        width:307px;
    }
    form button{
        background: #62b752;
        border: none;
        outline: none;
        height: 70px;
        width: 307px;
        cursor: pointer;
    }
    form input{
        border:0;
        outline: none;
        padding: 10px 20px;
        height: 70px;
        width: 200px;
        font-size: 16px;
    }
} 


/* ----------------------------image filter---------------------------------------------- */

.image filter .section{
    padding: 20px;
    width: 1280px;
    margin: 40px auto;
}
.image filter .section ul{
    display: flex;
    margin-bottom: 10px;
}
.image filter .section ul li{
    list-style: none;
    background: #eee;
    padding: 8px 20px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
}

.image filter .section ul li.active{
    background: #03a9f4;
    color: white;
}

.image filter .product{
    display: flex;
    flex-wrap: wrap;
}

.image filter .product .itembox{
    position: relative;
    width: 300px;
    height: 300px;
    margin: 5px;
}

.image filter .product .itembox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* -----------------------------------------Gallery----------------------------------------------- */

.millets .h1{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.gallery{
    border: 1px solid #ccc;
}

.gallery img{
    width: 100%;
    height: auto;
}

.description{
    padding: 15px;
    text-align: center;
}

.description .p{
    font-family:sans-serif;
}

.responsive{
    padding: 0 6px;
    float: left;
    width: 25%;
}
@media only screen and (max-width: 700px){ 
    .responsive{
        width: 50%;
        margin: 6px 0;
    }
}
@media only screen and (max-width: 500px){ 
    .responsive{
        width: 100%;
        margin: 6px 0;
    }
}


