/* Header Section Starts */
.navbar {
  background-color: #A059FD;
}
.navbar .nav-link,
.navbar .navbar-brand {
  color: white !important;
  font-family: "Poppins", sans-serif;
}
.nav-item {
  margin-right: 40px;
}
/* WhatsApp button */
.btn-whatsapp {
  font-family: "Manrope", sans-serif;
  background-color: #007bff;
  color: white;
  border: 1px solid white;
}
.btn-whatsapp:hover {
  background-color: white;
  color: #007bff;
}
/* Book a Demo button */
.btn-primary {
  font-family: "Manrope", sans-serif;
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff;
}
.btn-primary:hover {
  background-color: #007bff;
  color: white;
}

/* Header Section Ends */

/* ********************************************************************************* */

/* Feature Section 1 Starts */

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #A059FD;
  color: white;
  padding-top: 80px;
  padding-bottom: 90px;
  box-sizing: border-box;
  border-top: white 2px solid;
  position: relative; /* To position the pseudo-element */
  overflow: hidden; /* Ensures the image stays contained */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg.svg') no-repeat center center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
}

.hero-section h1,
.hero-section p,
.hero-section button {
  position: relative;
  z-index: 2;
}


.hero-section h1 {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin: 10px 0;
}

.hero-section h1 img {
  vertical-align: middle;
  width: 50px;
}

.hero-section p {
  margin: 10px 0;
}
.hero-section .p1 {
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  font-weight: 500;
}

.hero-section .p2 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 24px;
  }
  .hero-section .p1 {
    font-size: 14px;
  }
  .hero-section .p2 {
    font-size: 16px;
  }
}

.hero-section button {
  margin-top: 20px;
  padding: 10px 30px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 60px;
  color: #A059FD;
  background-color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-section button:hover {
  background-color: #d9c7fc;
}

/* Feature Section 1 Ends */

/* ********************************************************************************* */

/* Feature Section 2 Starts */

.solutions-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.solutions-section h2 {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #383838;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 cards per row on larger screens */
  gap: 20px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .cards-container {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
  }
}

@media (max-width: 768px) {
  .cards-container {
      grid-template-columns: 1fr; /* 1 card per row on small screens */
  }
}

.card {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  align-items: center;
}

.card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #383838;
}

.card p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #383838;
}

.card a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #A059FD;
  transition: color 0.3s;
}

.card a:hover {
  color: #814cff;
}

/* Feature Section 2 Ends */

/* ********************************************************************************* */

/* Feature Section 3 Starts */

.upper-section {
  background-color: rgba(160, 89, 253, 0.8);
  color: #fff;
  padding: 40px 0;
}

.lower-section {
  background-color: #7e53c5;
}

/* Title and subtitle */
.food-business-section .section-title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  padding-top: 30px;
}

.food-business-section .section-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }
  .section-subtitle {
    font-size: 14px;
  }
}

.custom-food-card {
  border: none;
  background-color: #A059FD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1; /* Keeps the card square */
  width: 100%;
  
  /* Inner shadow effect */
  box-shadow: inset -10px -10px 30.5px rgba(0, 0, 0, 0.1);
}

.custom-food-card .icon {
  max-width: 80px;
  height: auto;
}

.card-title {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  padding-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 21.11px;
  }
  .custom-food-card .icon {
    max-width: 65.26px;
  }
}

/* Flex container styling */
.food-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: space-between;
}

.food-card-wrapper > .food-card {
  flex: 1 1 calc(20%);
  max-width: calc(20%);
}

/* Ensures 2 cards per row on smaller screens */
@media (max-width: 992px) {
  .food-card-wrapper > .food-card {
    flex: 1 1 calc(50%);
    max-width: calc(50%);
  }
}
/* Feature Section 3 Ends */

/* ********************************************************************************* */

/* Feature Section 4 Starts */

.feature-section-4 {
  padding: 40px 0;
  color: white;
}

.feature-section-4 .section-title {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #383838;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 50px;
  margin-bottom: 20px;
}

.feature-section-4 .section-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #383838;
  text-align: center;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .feature-section-4 .section-title {
    font-size: 20px;
  }
  .feature-section-4 .section-subtitle {
    font-size: 16px;
  }
}

.feature-item {
  display: flex;
  margin-bottom: 30px;
  padding: 0 10px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A059FD;
  border-radius: 50%;
  margin-right: 20px;
}

.feature-text {
  font-family: "Manrope", sans-serif;
  color: #383838;
  max-width: 80%;
}

.feature-text h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .feature-text h5 {
    font-size: 18px;
  }
  .feature-text p {
    font-size: 16px;
  }
}

/* Responsive layout */


/* Feature Section 4 Ends */

/* ********************************************************************************* */

/* Form Section and Footer Starts */

.form-section {
  background-color: #F2E2FF;
  padding: 40px 20px;
}
.form-section h2 {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #000; /* Black text for the title */
}
.form-section p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #383838;
  font-size: 18px;
}
.form-section span {
  height: 46px;
}
.form-label {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #383838;
}
/* Divider Styling */
.vertical-divider {
  width: 3px;
  background-color: #4a4aeb;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vertical-divider {
    width: 100%;
    height: 3px;
  }
}

.form-section form input,
.form-section form select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
}
.form-section .input-group-text {
  border-radius: 8px 0 0 8px;
  border: 1px solid #ccc;
}
.form-section .btn-submit {
  background: linear-gradient(90deg, #A059FD, #F891FD);
  color: white;
  border: none;
  border-radius: 18px;
  padding: 12px 25px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.1rem;
}
.map-section img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
  margin-top: 100px;
}
.map-section {
  text-align: center;
}
.map-section p {
  color: #333;
  font-weight: 400;
  font-size: 25px;
  text-align: left;
}

/* Footer Styling */
.form-section {
  background-color: #f6eaff;
  padding: 40px 20px;
}
.form-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}
.form-section p {
  color: #555;
  font-size: 1rem;
}
.form-section span {
  height: 46px;
}
.vertical-divider {
  width: 3px;
  background-color: #4a4aeb;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vertical-divider {
    width: 100%;
    height: 3px;
  }
}

.form-section form input,
.form-section form select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
}
.form-section .input-group-text {
  border-radius: 8px 0 0 8px;
  border: 1px solid #ccc;
}
.form-section .btn-submit {
  background: linear-gradient(90deg, #a03cf0, #ea80fc);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 1.1rem;
}
.map-section img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
  margin-top: 100px;
}
.map-section {
  text-align: center;
}
.map-section p {
  color: #333;
  font-weight: 400;
  font-size: 25px;
  text-align: left;
}
@media (max-width: 768px) {
  .map-section p {
    text-align: center;
  }
}

/* Footer Section */
.footer-section {
  background-color: white;
  padding: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow elements to wrap on smaller screens */
}

.footer-section .company-text {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 20px;
}

.footer-section .company-name {
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: #A059FD;
  font-weight: bold;
}

.footer-section a {
  color: #A059FD;
  margin-left: 15px;
  font-weight: bold;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Media query for smaller screens */
@media (min-width: 769px) {
  .wy-p {
    display: none;
  }
}
@media (max-width: 768px) {
  .wy-d {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section .company-name {
    font-size: 20px;
  }
  .footer-section .company-text {
    margin-bottom: 10px;
  }

  .footer-section .footer-content > div {
    margin-top: 10px;
  }

  .footer-section a {
    margin-left: 0;
    margin-top: 5px;
    font-size: 16px;
    margin-right: 10px;
  }
}