body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.nav-bar {
  background-color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  margin-left: 100px;
}

ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  gap: 50px;
}

ul li {
  margin-right: 20px;
}

ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: 0.3s ease;
}

ul li a:hover {
  color: orange;
}

.search {
  display: flex;
  align-items: center;
  margin-right: 150px;
}

.search input {
  padding: 8px;
  margin-right: 10px;
  border: none;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.search svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: orange;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 5px 20px;
}

.search svg:hover {
  background: #e7c906;
}

.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-left: 100px;
  margin-right: 100px;
}

.text {
  flex: 1;
}

.text h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.text h4 {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.btns {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}

.btns button {
  padding: 10px 40px;
  margin-top: 10px;
  background-color: #ee7f11;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btns button a {
  text-decoration: none;
  color: #fff;
}

.btns button:hover {
  background-color: #d06b05;
}

.image img {
  width: 400px;
}

.mid-section {
  display: flex;
  overflow: hidden;
  justify-content: space-around;
  padding: 30px;
  background-color: #f5f5f5;
  margin-top: 30px;
}

.fruit-cards {
  display: flex;
  height: 30vh;
}

.f-card {
  flex: 0 0 30%;
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: 0.3s ease;
}

.f-card:hover {
    background-color: #e17c17;
    transform: scale(1.1);
}

.f-card img {
  max-width: 15%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.f-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.f-card p {
  font-size: 13px;
  font-weight: bold;
  color: #666;
}

.box {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.box-1 {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e8861e;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}

.box h1 {
  font-size: 34px;
  margin-top: 20px;
}

.box p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.end-section {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background-color: #f5f5f5;
}

.fruit-cards2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px;
  background-color: #f5f5f5;
}

.f-card2 {
  display: flex;
  align-items: center;
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: auto;
  max-width: 50vw;
  transition: 0.3s ease;
}

.f-card2:hover {
    background-color: #e98e2e;
    transform: scale(1.1);
}

.text-container {
  flex: 1; /* Take up remaining space in the container */
}

.f-card2 img {
  max-width: 30%;
  height: auto;
  border-radius: 8px;
  margin-left: 20px; /* Add margin-left for spacing between text and img */
}

.f-card2 h2 {
  font-size: 18px;
  margin-bottom: 5px;
}

.f-card2 p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.f-card2 button {
  padding: 10px;
  background-color: #e17c17;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.f-card2 button a {
  text-decoration: none;
  color: #fff;
}

.f-card2 button:hover {
  background-color: #e47600;
}

.footer {
  background-color: #d1d0d0;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 100px;
  height: auto;
}

.footer-info,
.footer-contact {
  flex: 1;
  margin: 0 10px;
}

.footer h4 {
  font-size: 30px;
  font-weight: bolder;
  color: #fff;
}

.footer p {
  color: #fff;
  line-height: 1.5;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    margin-left: 0;
    margin-bottom: 10px;
  }

  ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .search {
    margin-right: 0;
  }

  .search input {
    margin-right: 0;
  }

  .search svg {
    padding: 5px 10px;
  }

  .section {
    margin-left: 10px;
    margin-right: 10px;
  }

  .btns {
    margin-top: 20px;
  }

  .btns button {
    width: 100%;
  }

  .image img {
    width: 100%;
  }

  .mid-section {
    padding: 10px;
    margin-top: 10px;
  }

  .fruit-cards {
    flex-direction: column;
  }

  .f-card {
    min-width: 100%;
  }

  .end-section {
    padding: 10px;
    margin-top: 10px;
  }

  .fruit-cards2 {
    gap: 10px;
    padding: 10px;
  }

  .f-card2 {
    width: 100%;
  }
}
