* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600; 
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.navbar .logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.search-icon {
  height: 20px;
  cursor: pointer;
}

.search-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.search-icon {
  margin-left: 50px;
}

.welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  background-color: #fafafa;
}

.welcome .text {
  max-width: 50%;
}

.welcome h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.welcome p {
  margin-bottom: 20px;
}

.buttons button {
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.btn-orange {
  background-color: orange;
  color: white;
}

.btn-black {
  background-color: black;
  color: white;
}

.welcome .image img {
  max-width: 400px;
}

/* Services Section */
.services {
  text-align: center;
  padding: 50px 10%;
}

.service-boxes {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.service-boxes .box {
  width: 30%;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
}

.service-boxes .box img {
  height: 50px;
  margin-bottom: 15px;
}
.service-boxes .box h3 {
  color: orange;
}

 
.fresh-fruits {
  padding: 50px 10%;
}

.fresh-fruits .fruit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
}

.fresh-fruits .fruit img {
  height: 150px;
}
.tasty-banner {
  text-align: center;
  margin: 30px 0;
}

.tasty-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}


.testimonial {
  text-align: center;
  padding: 50px 10%;
  background: #f0f0f0;
}

.client img {
  border-radius: 50%;
  height: 280px;
  margin: 20px 0;
}

/* Contact */
.contact {
  padding: 50px 10%;
  background: #fff8f0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
}


footer {
  background: #f5f5f5;
  padding: 40px 10%;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-cols div {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-cols h4 {
  margin-bottom: 10px;
}

.footer-cols .social img {
  height: 20px;
  margin-right: 10px;
}

.subscribe {
  margin-top: 10px;
}

.subscribe input {
  padding: 8px;
  width: 70%;
  margin-right: 5px;
}

.subscribe button {
  padding: 8px 12px;
  background: orange;
  border: none;
  color: white;
  cursor: pointer;
}

footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
