*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}


nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    margin: 10px auto 150px auto;
}

nav .logo{
    font-weight: bold;
}

nav .logo a{
    text-decoration: none;
    color: #000;
}
nav ul li{
    display: inline-block;
    margin: 0 30px;
}

nav ul li a{
    text-decoration: none;
    color: black;
    font-size: large;
}


nav ul li a:hover {
    color: gold; 
    transform: translateY(20px); 
}

img {
    max-width: 100%;
    height: auto;
}


.content{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 75%;
    margin: auto;
}
.content .text{
    width: 40%;
}

.content .text h2{
    font-size: 65px;
}
.content .text p{
    margin: 15px 0;
    line-height: 22px;
}
.content .text button{
    padding: 10px 20px;
    background-color: black;
    color: white;
}
.content .text button:hover{
    background-color: orangered;
}
.p1{
    margin-bottom: 50px;
}
.text1{
    text-align: center;
    margin: 100px 0 50px 0;
}
.con{
    text-align: center;
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.orange ,.grapes ,.guava{
    height: 250px;
    width: 250px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.107);
}
.orange:hover ,.grapes:hover ,.guava:hover{
    border-top: 5px orangered solid;
}
.im{
    width: 40px;
    height: 40px;
    margin: 15px;
}
h4{
    color: orangered;
    font-size: large;
    font-weight: lighter;
    margin-bottom: 10px;
}
.to{
    padding: 10px;
    margin: 20px 0 50px 620px;
    color: white;
    background-color: black;
}
.fruits-section {
    padding: 40px;
    text-align: center;
}

.fruit-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.fruit-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.fruit-img {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.fruit-img img {
    max-width: 200px;
}
.toto{
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}
.bg{
    color: white;
    text-align: center;
    background-image: url(images/tasty.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.bg h2{
    padding: 200px;
    font-size: 100px;
}
.testi{
    text-align: center;
}
.mg{
    border: 0 solid rgba(255, 255, 255, 0);
    border-radius: 50px;
}
.text2{
    margin: 50px;
}
h3{
    font-size: 30px;
    margin: 15px;
    font-weight: 100;

}
h2{
    font-size: 30px;
    margin: 20px;
}
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    }

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 2px solid #000;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    outline: none;
}

.contact-form button {
    width: 120px;
    padding: 10px;
    background-color: #ff5e14;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    
}

.contact-form button:hover {
    background-color: #e04e0f;
}

.contact-image {
    flex: 1;
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
}




