* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-blue: #3673bc;
  --dark-blue: #2a3a72;
  --text-white: #ffffff;
  --bg-light-blue: #d1f5ff;
}

html,
body {
  width: 100%;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-blue);
  padding: 1rem 3rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 50px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: var(--text-white);
  font-size: 1rem;
  transition: 0.3s;
}

.contact-btn a {
  background-color: white;
  color: var(--primary-blue);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.hero-section,
.fruit-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4rem 5%;
  min-height: 80vh;
  color: white;
}

.hero-section {
  background-color: var(--primary-blue);
}

.bg-brown {
  background-color: brown;
}
.bg-orange {
  background-color: orange;
}
.bg-purple {
  background-color: #732b90;
}
.bg-green {
  background-color: green;
}

.bg-black {
  background-color: black;
}
.bg-cola {
  background-color: rgb(130, 16, 16);
}
.bg-shikanji {
  background-color: rgb(170, 170, 35);
}
.bg-panna {
  background-color: rgb(116, 161, 47);
}
.bg-kalakhatta {
  background-color: blueviolet;
}

.text-content,
.image-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}
.text-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.image-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.title-img {
  width: 80%;
  max-width: 400px;
}
.flavor-title {
  width: 60%;
  margin-bottom: 1rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: var(--primary-blue);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  width: fit-content;
}
.arrow {
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.8rem;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--bg-light-blue);
  padding: 4rem 5%;
  gap: 2rem;
}

.card {
  width: 300px;
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 0.5rem;
}
.desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-blue-pill {
  background-color: var(--dark-blue);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
}

footer {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
}
.notice-link {
  color: white;
  text-decoration: underline;
  display: block;
  margin: 1rem 0;
}
.divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    height: auto;
    justify-content: space-between;
  }

  .nav-links {
    width: 100%;
    text-align: center;
    justify-content: space-evenly;
  }

  #joinus,
  #become,
  #partner,
  #exports {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  .hero-section,
  .fruit-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
    height: auto;
  }

  .text-content,
  .image-content {
    width: 100%;
    margin-bottom: 2rem;
    align-items: center;
  }
  .image-content {
    order: 1;
  }

  .hero-section {
    flex-direction: column-reverse;
  }
  .fruit-section {
    flex-direction: column-reverse;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .logo img {
    height: 25px;
  }
  .contact-btn {
    display: none;
  }
  .navbar {
    padding: 0.5rem;
    gap: 1.5rem;
  }
  .nav-links li a {
    font-size: 0.8rem;
  }
  #about {
    display: none;
  }
  .text-content h1,
  .text-content h2 {
    font-size: 1.5rem;
  }
  .hero-section {
    justify-content: flex-end;
  }
  .image-content img {
    width: 80%;
  }
  .title-img {
    width: 70%;
  }
  footer {
    font-size: 0.8rem;
  }
}
