body {
  font-family: Clash Display;
  width: 100%;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
  background-color: white;
  color: #181818;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
}

.marquee-content {
  display: inline-block;
  animation: scroll 75s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee2 {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  width: 100%;
  background-color: #7EAF34;
  /* Green background */
  color: #181818;
  font-size: 36px;
  font-weight: 600;
  transform: rotate(-4deg);
  padding: 10px;
}

.hero {
  height: 900px;
  background-color: #7EAF34;
  position: relative;
}

.hero .logo {
  position: absolute;
  top: 30px;
  left: 10%;
  /* Top-left */
  width: 250px;
  filter: brightness(10%);
}

.hero a {
  text-decoration: none;
  /* Remove underline from links */
  font-weight: 600;
}

.hero .btn-signin {
  background-color: transparent;
  border: 2px solid #181818;
  color: #181818;
  border-radius: 50px;
  padding: 25px 45px;
}

.hero .btn-get-started {
  background-color: #181818;
  color: white;
  border-radius: 50px;
  padding: 25px 45px;
  margin-left: 10px;
}

.hero .btn-get-started2 {
  background-color: transparent;
  color: transparent;
  border-radius: 50px;
  padding: 25px 45px;
  margin-left: 10px;
}

.hero .buttons {
  position: absolute;
  top: 60px;
  right: 10%;
  /* Top-right */
}

.hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #181818;
  font-family: "Clash Display", sans-serif;
  /* Apply Clash Display font */
  width: 100%;
}

.hero .hero-text h1 {
  font-size: 130px;
  font-weight: 600;
}

.hero .hero-text .btn {
  margin-top: 20px;
  padding: 20px 40px;
  font-size: 25px;
}

/* Loading Icon Style */
.loading-icon {
  position: fixed;
  /* Fixes the icon in place */
  top: 80%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  transform: scale(1) translate(-50%, -50%);
  /* Center the icon exactly */
  z-index: 1000;
  /* Make sure it's above other content */
  display: none;
  /* Initially hide the icon */
  transition: all 1s ease;
  transform-origin: top left;
}
.loading-icon.hide {
  opacity: 0;
  transform: scale(0) translate(-50%, -50%);
}

.loading-icon img.pan {
  width: 500px;
  /* Adjust size as needed */
  height: auto;
  /* Maintain aspect ratio */
  animation: moveUpDown 3s ease-in-out infinite;
  /* Apply up and down animation */
}

.droplet {
  position: absolute;
  width: 60px;
  /* Adjust size as needed */
  height: auto;
  /* Maintain aspect ratio */
  animation: flyAway 3s ease-in infinite;
}

/* Positioning specific droplets */
.droplet1 {
  top: -20%;
  left: 71%;
}

.droplet2 {
  top: -20%;
  left: 22%;
}

.droplet3 {
  top: -40%;
  left: 5%;
}

.droplet4 {
  top: -40%;
  left: 15%;
}

.droplet5 {
  top: -20%;
  left: 8%;
}

.droplet6 {
  top: -60%;
  left: 29%;
}

.droplet7 {
  top: -30%;
  left: 35%;
}

.droplet8 {
  top: -20%;
  left: 55%;
}

.droplet9 {
  top: -20%;
  left: 45%;
}

.droplet10 {
  top: -40%;
  left: 55%;
}

.droplet11 {
  top: -40%;
  left: 39%;
}

.droplet12 {
  top: -60%;
  left: 36%;
}

.droplet13 {
  top: -30%;
  left: 4%;
}

.droplet14 {
  top: -20%;
  left: 67%;
}

/* Move Up and Down Animation */
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
    /* Start at original position */
  }
  50% {
    transform: translateY(-100px);
    /* Move up */
  }
  100% {
    transform: translateY(-50);
  }
}
/* Fly Away Animation */
@keyframes flyAway {
  0% {
    opacity: 1;
    transform: translateY(200px) rotate(360deg);
    /* Start from pan */
  }
  50% {
    opacity: 1;
    transform: translateY(-50px) rotate(180deg);
    /* Start from pan */
  }
  100% {
    opacity: 1;
    transform: translateY(200px) rotate(360deg);
    /* Move up and rotate */
  }
}
/* New background and style changes */
.hero::before {
  background-color: #7EAF34;
  content: "";
  /* Required for pseudo-elements */
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 0;
  background-image: url("654.jpg");
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease-in-out;
  transform: rotate(0deg) scaleY(0) translate(-50%, -50%);
  opacity: 0;
  transform-origin: top left;
}

.hero.new-background::before {
  background-color: #7EAF34;
  content: "";
  /* Required for pseudo-elements */
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 900px;
  background-image: url("654.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* Ensure it stays behind the content of .hero */
  filter: brightness(90%);
  /* Darken the background image */
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 1;
  transform: rotate(0deg) scaleY(1) translate(-50%, -50%);
  max-height: 10000000px;
}

@keyframes revealImage {
  0% {
    clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
    /* Completely hidden */
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    /* Fully revealed */
  }
}
.hero.new-background {
  background: linear-gradient(to bottom, #7EAF34 100%, #7EAF34 100%);
  transition: background 0.1s ease-in-out;
  /* Smooth transition */
}

.hero.new-background .logo,
.hero.new-background .buttons a {
  color: white;
  /* New color for logo, buttons, and title */
  transition: color 1s ease-in-out;
}

.hero.new-background .logo {
  filter: brightness(100%);
}

.hero .hero-text {
  transition: color 1s ease-in-out, all 1s ease-in-out;
  color: #7EAF34;
}

.hero.new-background .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  /* Start below the middle line */
  text-align: center;
  color: white;
  opacity: 0;
  /* Initially hidden */
  animation: slideUpFromMiddle 0.8s ease-in-out forwards;
  /* Slide-up animation */
  transition: color 1s ease-in-out, all 1s ease-in-out;
}

/* Slide up from the middle animation */
@keyframes slideUpFromMiddle {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%);
    /* Start below the middle line */
  }
  80% {
    opacity: 0;
    transform: translate(-50%, -30%);
    /* Slide up and become visible */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
    /* Fully slide up into the center */
  }
}
.hero.new-background .btn-signin {
  border-color: white;
  /* New button border color */
  transition: color 1s ease-in-out;
  color: white;
}

.hero.new-background .btn-get-started {
  background-color: white;
  color: #181818 !important;
  transition: color 1s ease-in-out;
}

.hero.new-background .btn-get-started2 {
  background-color: white;
  color: #181818 !important;
  transition: color 1s ease-in-out;
}

/* New Section: How It Works */
.how-it-works {
  background: linear-gradient(to bottom, #7EAF34 50%, white 50%);
  position: relative;
}

.how-it-works .content {
  display: flex;
  align-items: center;
  width: 100%;
}

.how-it-works .content img {
  width: 200px;
  margin-right: 20px;
  display: block;
}

.how-it-works .content h2 {
  font-size: 50px;
  color: #181818;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  margin-left: 27%;
}

.cards {
  display: flex;
  justify-content: space-evenly;
  top: 26%;
  width: 100%;
}

.card {
  border-radius: 3%;
  width: 300px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.card img {
  width: 90%;
  height: auto;
}

.yellow-card, .yellow-card2 {
  background-color: #FFFF00;
  color: #181818;
  margin-top: 40px;
}

.red-card {
  background-color: #D12D36;
  color: white;
}

/* Number position */
.number {
  position: absolute;
  top: -90px;
  font-size: 100px;
  font-weight: 600;
  color: white;
  z-index: -1;
}

/* New Section: Two Columns */
.two-columns {
  background-color: #ffffff;
  /* Light grey background for contrast */
  padding: 80px 0;
  /* Add space around the section */
  width: 100%;
}
@media (max-width: 768px) {
  .two-columns {
    padding-top: 0;
  }
}

.two-columns .container {
  margin: 20px auto;
}

.two-columns .left-col img {
  width: 100%;
  height: auto;
}

.two-columns .right-col {
  padding-left: 30px;
}

.two-columns .right-col h2 {
  font-size: 58px;
  font-weight: 600;
  color: #181818;
  margin-bottom: 20px;
}

.two-columns .right-col p {
  font-size: 18px;
  color: #181818;
  margin-bottom: 20px;
}

.two-columns .btn-get-started {
  background-color: #181818;
  color: white;
  border-radius: 50px;
  padding: 15px 25px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.two-columns .cupball-img {
  margin-top: 20px;
  width: 100px;
  /* Adjust as needed */
}

/* New Section: Menu */
.menu-section {
  background-color: #7EAF34;
  padding: 60px 0;
  position: relative;
}

.menu-title {
  font-size: 44px;
  color: #181818;
  margin: 0;
  font-weight: 600;
}

.btn-view-menu {
  background-color: #181818;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 400;
}

.menu-card {
  height: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /* Ensure the content is stacked vertically */
  justify-content: space-between;
  /* Space out the content evenly */
  justify-content: start;
}

.menu-image-wrapper {
  background-color: #181818;
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
  /* Prevent the image from shrinking */
}

.menu-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* Optional: Make the image corners match the card */
}

.food-title {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0 15px;
  flex-shrink: 0;
  /* Keep the title from shrinking */
}

.food-info {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
  /* Prevent shrinking of the food info section */
}

.food-description {
  font-size: 16px;
  margin: 10px 0;
}

.calories, .protein {
  font-size: 14px;
  color: #181818;
  flex-shrink: 0;
  /* Ensure calories and protein info does not shrink */
}

.calories-number, .protein-number {
  color: green;
}

.carousel-control-prev.custom-control, .carousel-control-next.custom-control {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  font-size: 24px;
  /* Make the arrows larger */
  color: white;
  /* Arrow color */
}

.carousel-control-prev {
  left: -20px;
  /* Adjust the positioning */
}

.carousel-control-next {
  right: -20px;
  /* Adjust the positioning */
}

.carousel-control-prev-icon.custom-icon, .carousel-control-next-icon.custom-icon {
  background: none;
  /* Remove the default background image */
  font-weight: bold;
}

/* New Section: Details */
.details-section {
  background-color: white;
  padding: 40px 0;
  /* Reduced padding for mobile */
}
.details-section .col-md-6.col-lg-2.col-xl-2 {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}

/* Title styling */
.details-title {
  font-size: 52px;
  /* Adjusted font size for smaller screens */
  font-weight: 600;
  color: #181818;
  margin-bottom: 20px;
}

/* Description text */
.details-description {
  font-size: 18px;
  /* Adjusted for readability on mobile */
  font-weight: 500;
  color: #454545;
  margin-bottom: 30px;
  /* Reduced margin for a more compact layout */
  line-height: 28px;
}

/* Know More Button */
.btn-know-more {
  background-color: #181818;
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  /* Adjusted padding for mobile */
  text-decoration: none;
  font-weight: 400;
  padding: 20px 40px;
  font-size: 25px;
  margin-top: 20px;
  display: inline-block;
}

/* Image styling */
.details-image {
  width: 100%;
  /* Make the image full width on mobile */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 10px;
}

/* Icon styling */
.details-icon {
  width: 80px;
  /* Reduce size for mobile */
  height: auto;
  margin-bottom: 10px;
}

/* Info text */
.details-info {
  font-size: 16px;
  /* Adjusted for mobile */
  color: #181818;
  margin-bottom: 0;
}

/* New Section: Crossing Marquees */
.crossing-marquees {
  background-color: white;
  position: relative;
  overflow: visible;
}

.marquee-container {
  top: 50%;
  left: 50%;
  height: 200px;
  width: 100%;
  padding-top: 50px;
  margin-top: 30px;
  padding-top: 50px;
}
@media (max-width: 600px) {
  .marquee-container {
    margin-top: 10px;
    margin-bottom: -40px;
  }
}

.marquee-green {
  top: 0;
  left: 0;
  width: 100%;
  background-color: #7EAF34;
  /* Green background */
  color: #181818;
  font-size: 46px;
  font-weight: 600;
  transform: rotate(-4deg);
  padding: 10px;
}

.marquee-white {
  top: 0;
  right: 0;
  width: 100%;
  background-color: white;
  color: #181818;
  font-size: 50px;
  font-weight: 500;
  transform: rotate(4deg);
  position: absolute;
  top: 45px;
}

/* New Section: Customer Reviews */
.customer-reviews {
  background-color: white;
  padding: 20px 10px 50px;
  position: relative;
}

.left-column {
  padding-left: 100px;
}

.left-column h2 {
  font-size: 55px;
  line-height: 32px;
  font-weight: 600;
  color: #181818;
  margin-bottom: 50px;
  margin-top: 30px;
  margin-left: 30px;
}

.arrows {
  display: flex;
  justify-content: space-between;
  width: 100px;
  margin-top: 30px;
  margin-left: 30px;
}

.arrow-left, .arrow-right {
  display: inline-block;
  width: 45px;
  height: 50px;
  border-radius: 50%;
  background-color: #181818;
  color: white;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  /* Center text vertically */
  cursor: pointer;
}

.right-column {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.review-carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 200%;
  /* Width to fit all reviews */
}

.review {
  max-width: 17%;
  padding: 20px;
  text-align: left;
  color: #181818;
  box-sizing: border-box;
  /* Include padding in width calculation */
}

.quote {
  font-size: 50px;
  color: #181818;
  margin-bottom: 10px;
}

.review-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  font-size: 25px;
  font-weight: bold;
  color: #181818;
}

/* PNG Image at the Bottom Left */
.bottom-left-image {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100px;
}

.well-known {
  background-color: #7EAF34;
  /* Green background */
  text-align: center;
  color: #181818;
  position: relative;
  padding: 50px;
}

.well-known h2 {
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 60px;
}

/* Images Row */
.images-row {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  position: relative;
  bottom: 20px;
  color: #181818;
}

.image-container {
  text-align: center;
  width: 100%;
  position: relative;
}

.image-container img {
  width: 100%;
  border-radius: 20px;
}

.image-container .name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
  color: #181818;
}

.image-container .description {
  font-size: 18px;
  color: #181818;
}

/* Higher images */
.image-container.higher {
  margin-bottom: 30px;
  /* Adjust to raise the first and third images */
}

/* Default - Desktop */
.desktop-row {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

.carouself-container {
  display: none;
  /* Hide the carousel by default on desktop */
}

.image-container {
  text-align: center;
  width: 100%;
  position: relative;
}

.image-container img {
  width: 100%;
  border-radius: 20px;
}

.image-container .name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
  color: #181818;
  text-align: left;
}

.image-container .description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
}

/* Higher images for desktop */
.image-container.higher {
  margin-bottom: 30px;
}

/* Mobile and Tablet view */
@media (max-width: 768px) {
  .desktop-row {
    display: none;
    /* Hide desktop row on small screens */
  }

  .carouself-container {
    display: block;
    /* Show carousel on small screens */
    position: relative;
    overflow: hidden;
  }

  .carouself {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* To accommodate all images */
  }

  .image-container {
    flex: 1 0 100%;
    /* Each image takes full width in carousel */
  }

  .carousel-prevf, .carousel-nextf {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }

  .carousel-prevf {
    left: 0;
  }

  .carousel-nextf {
    right: 0;
  }
}
/* Footer Section */
.footer {
  background-color: #181818;
  color: white;
  padding: 60px 140px;
  position: relative;
}

.footer .logo img {
  width: 250px;
  /* Adjust the size of the logo */
}

.footer .social-links a {
  color: white;
  font: Clash Display;
  text-decoration: underline;
  margin: 0 15px;
  font-size: 20px;
}

.footer .divider {
  border: 1px solid white;
  margin: 90px 0;
}

.footer .copyright {
  text-align: left;
  font-size: 18px;
  color: white;
  margin-top: 1px;
}

.marquee-item {
  display: inline-block;
  margin: 0 20px;
  padding: 20px 30px;
  border: 2px solid black;
  border-radius: 50px;
  /* Rounds the borders */
  font-size: 30px;
  font-weight: 600;
  background-color: #fff;
  /* White background for items */
  color: black;
}

.rotateminus10 {
  transform: rotate(-10deg);
}

.rotateplus10 {
  transform: rotate(10deg);
}

.rotate {
  transform: none;
  z-index: 1;
}

.carousel-container {
  display: none;
}

.carousel-indicators {
  top: 100%;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
  /* Default color */
  border-radius: 30%;
  /* Circular indicators */
}

.carousel-indicators .active {
  background-color: white;
  /* Active indicator color */
}

/* General adjustments for mobile */
@media (max-width: 768px) {
  /* Marquee Section */
  .marquee {
    font-size: 14px;
    /* Reduce font size for smaller screens */
    padding: 5px 0;
    /* Adjust padding */
  }

  /* Hero Section */
  .hero {
    height: 900px;
    /* Adjust height to fit smaller screens */
  }

  /* Adjust logo size */
  .hero .logo {
    width: 150px;
    /* Reduce logo size */
    left: 5%;
    /* Adjust position */
    top: 20px;
  }

  /* Adjust buttons size */
  .hero .buttons {
    top: 30px;
    /* Adjust positioning */
    right: 5%;
    /* Adjust positioning */
  }

  .hero .buttons a {
    padding: 15px 25px;
    /* Adjust button padding */
    font-size: 14px;
    /* Adjust button font size */
  }

  /* Main Text */
  .hero .hero-text {
    top: 30%;
    /* Adjust text position */
    left: 50%;
    transform: translate(-50%, -30%);
  }

  .hero .hero-text h1 {
    font-size: 50px;
    /* Adjust font size */
  }

  .hero .hero-text .btn {
    font-size: 18px;
    /* Adjust button font size */
    padding: 15px 25px;
    /* Adjust padding */
  }

  /* Loading Icon */
  .loading-icon img.pan {
    width: 300px;
    /* Resize pan image */
  }

  .droplet {
    width: 40px;
    /* Resize droplets */
  }

  /* Positioning specific droplets */
  .droplet1 {
    top: -60%;
    left: 71%;
  }

  .droplet2 {
    top: -60%;
    left: 22%;
  }

  .droplet3 {
    top: -80%;
    left: 5%;
  }

  .droplet4 {
    top: -80%;
    left: 15%;
  }

  .droplet5 {
    top: -60%;
    left: 8%;
  }

  .droplet6 {
    top: -90%;
    left: 29%;
  }

  .droplet7 {
    top: -70%;
    left: 35%;
  }

  .droplet8 {
    top: -50%;
    left: 55%;
  }

  .droplet9 {
    top: -60%;
    left: 45%;
  }

  .droplet10 {
    top: -70%;
    left: 55%;
  }

  .droplet11 {
    top: -80%;
    left: 39%;
  }

  .droplet12 {
    top: -90%;
    left: 36%;
  }

  .droplet13 {
    top: -50%;
    left: 4%;
  }

  .droplet14 {
    top: -60%;
    left: 67%;
  }

  /* How It Works Section */
  .how-it-works {
    background: linear-gradient(to bottom, #7EAF34 83%, white 17%);
    position: relative;
    padding: 50px 0;
    text-align: center;
  }

  .how-it-works .content {
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }

  .how-it-works .content img {
    width: 100px;
    display: none;
  }

  .how-it-works .content h2 {
    font-size: 50px;
    color: black;
    font-family: "Clash Display", sans-serif;
    font-weight: 600;
    margin-left: 0;
  }

  .rotate, .rotateplus10, .rotateminus10 {
    transform: none;
    z-index: 1;
  }

  /* Cards */
  .cards {
    flex-direction: column;
    /* Stack cards vertically */
    align-items: center;
    /* Center-align the cards */
    top: 140px;
    left: 25%;
  }

  .desktop-cards {
    display: none;
    /* Hide desktop cards on mobile and tablet */
  }

  .carousel-container {
    display: block;
    /* Show carousel */
    position: relative;
    overflow: hidden;
  }

  .carouselc {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Adjust width to accommodate all images */
  }

  .card {
    flex: 1 0 100%;
    /* Each card takes full width in the carousel */
  }

  .carousel-prevc, .carousel-nextc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }

  .carousel-prevc {
    left: 0;
  }

  .carousel-nextc {
    right: 0;
  }

  .card img {
    width: 50%;
  }

  .yellow-card, .red-card, .yellow-card2 {
    transform: none;
    /* Remove rotation for mobile */
  }

  .number {
    z-index: -1;
    top: -50px;
    /* Adjust position of numbers */
    font-size: 60px;
    /* Reduce number size */
  }

  /* Two Columns Section */
  .two-columns .left-col, .two-columns .right-col {
    padding: 0;
    /* Remove padding to fit better */
  }

  .two-columns .right-col {
    padding-left: 0;
    text-align: center;
    /* Center text for better mobile view */
  }

  .two-columns .right-col h2 {
    font-size: 35px;
    line-height: 20px;
    margin-top: 20px;
  }

  .two-columns .right-col p {
    font-size: 16px;
    /* Smaller font size for mobile */
  }

  .two-columns .container {
    padding: 0 20px;
    /* Add padding for smaller screens */
  }

  .two-columns .right-col {
    padding-left: 0;
    text-align: center;
    /* Center-align text for smaller screens */
  }

  .two-columns .right-col h2 {
    font-size: 36px;
    /* Smaller heading size for mobile */
  }

  .two-columns .right-col p {
    font-size: 16px;
    /* Adjust paragraph size */
  }

  .two-columns .btn-get-started {
    padding: 10px 20px;
    /* Smaller button padding */
  }

  /* Menu Section */
  .menu-section {
    padding: 20px 0;
  }

  .menu-title {
    font-size: 32px;
    /* Smaller font size */
  }

  .menu-card {
    margin-bottom: 20px;
    /* Add spacing between cards */
    max-height: 95%;
  }

  .menu-card img {
    max-width: 100%;
  }

  /* Carousel Controls */
  .carousel-control-prev, .carousel-control-next {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  /* Details Section */
  .details-section {
    height: auto;
    /* Remove fixed height for better flow on smaller screens */
  }

  /* Adjust columns for mobile view */
  .details-section .row {
    flex-direction: column;
    /* Stack the columns vertically */
    align-items: center;
    /* Center the content */
  }

  .details-title {
    font-size: 28px;
    /* Further reduce the title size on small devices */
    text-align: center;
    /* Center-align the title on mobile */
  }

  .details-description, .details-info {
    text-align: center;
    /* Center-align text content */
  }

  .btn-know-more {
    display: block;
    /* Make the button take up full width */
    text-align: center;
    margin: 0 auto;
    /* Center the button */
  }

  .marquee2 {
    font-size: 25px;
    padding: 5px;
    transform: rotate(-8deg);
  }

  .marquee-white {
    font-size: 20px;
    transform: rotate(8deg);
  }

  .marquee-item {
    font-size: 20px;
    padding: 10px 15px;
  }

  /* Reduce the image size on mobile */
  .details-image {
    width: 75%;
    /* Limit the image width to 70% */
    margin: 25px auto 20px;
    /* Center the image and add spacing below it */
    display: block;
    /* Ensure it's treated as a block element */
  }

  .details-icon {
    width: 60px;
    /* Further reduce icon size for mobile */
    margin-bottom: 20px;
  }

  /* Customer Reviews */
  .customer-reviews {
    padding: 20px 10px;
    /* Reduce padding */
  }

  .left-column {
    padding-left: 20px;
    /* Reduce padding */
  }

  .left-column h2 {
    font-size: 28px;
    /* Smaller heading size */
    font-size: 36px;
    line-height: 1px;
  }

  .arrows {
    margin-left: 0;
  }

  /* Review Carousel */
  .review-carousel {
    width: 300%;
    /* Fit more reviews horizontally */
  }

  .review {
    width: 100%;
    /* Ensure each review takes up full width */
    padding: 10px;
  }

  /* Well Known and Well Fed Section */
  .well-known {
    padding: 20px;
  }

  .well-known h2 {
    font-size: 32px;
    /* Adjust heading size */
  }

  .images-row {
    align-items: center;
  }

  .image-container {
    width: 80%;
    /* Larger image container */
    margin-bottom: 20px;
  }

  .image-container img {
    max-height: auto;
  }

  /* Footer */
  .footer {
    padding: 30px 20px;
    /* Reduce padding */
    height: auto;
  }

  .footer .logo img {
    width: 150px;
    /* Smaller logo */
  }

  .footer .social-links {
    font-size: 16px;
  }
}
.image-container .name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  color: #181818;
}

.image-container .description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

/* Further adjustments for smaller mobile screens */
@media (max-width: 480px) {
  .menu-section {
    padding: 20px 0;
  }

  .how-it-works .content {
    width: 50;
    top: 3%;
    left: 10%;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    top: 140px;
    left: 20%;
    width: 80%;
  }

  .well-known {
    padding: 40px;
  }

  .details-image {
    width: 60%;
  }

  /* Marquee Section */
  .marquee {
    font-size: 12px;
    /* Reduce font size further */
  }

  /* Main Text */
  .hero .hero-text h1 {
    font-size: 40px;
    /* Adjust font size */
  }

  /* Buttons */
  .hero .buttons a {
    padding: 10px 20px;
    /* Further adjust padding */
    font-size: 12px;
    /* Adjust font size */
  }

  .how-it-works {
    background: linear-gradient(to bottom, #7EAF34 84%, white 16%);
    position: relative;
    padding: 50px 0;
    text-align: center;
  }

  .how-it-works .content {
    width: 50;
  }

  .how-it-works .content h2 {
    font-size: 30px;
    color: #181818;
  }

  /* Cards */
  .card {
    width: 75%;
    /* Full width for very small screens */
  }

  .card img {
    width: 80%;
    /* Make images full width */
  }

  .two-columns .right-col h2 {
    font-size: 28px;
    /* Further reduce heading size */
  }

  .two-columns .right-col p {
    font-size: 14px;
    /* Smaller paragraph font */
  }

  /* Menu Section */
  .menu-title {
    font-size: 28px;
    /* Reduce heading size */
  }

  .menu-card {
    margin-bottom: 10px;
    max-height: 95%;
  }

  /* Carousel Controls */
  .carousel-control-prev, .carousel-control-next {
    width: 25px;
    height: 25px;
    font-size: 14px;
    /* Reduce font size */
  }

  /* Customer Reviews */
  .left-column h2 {
    font-size: 24px;
    /* Further reduce heading size */
  }

  .review {
    font-size: 14px;
  }

  /* Well Known and Well Fed Section */
  .well-known h2 {
    font-size: 28px;
    /* Reduce heading size */
  }

  .image-container .name {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
    color: #181818;
  }

  .image-container .description {
    font-size: 14px;
    color: #181818;
  }

  .images-row {
    align-items: center;
  }

  .image-container {
    width: 60%;
  }

  /* Footer */
  .footer .logo img {
    width: 120px;
    /* Further reduce logo size */
  }

  .footer .social-links {
    font-size: 10px;
    /* Reduce font size */
  }

  .footer .social-links a {
    color: white;
    font: Clash Display;
    text-decoration: underline;
    margin: 0 15px;
    font-size: 14px;
  }
}
body .how-it-works {
  position: relative;
}
@media (max-width: 768px) {
  body .how-it-works {
    background: #7EAF34;
  }
}
@media (min-width: 769px) {
  body .how-it-works .content > h2 {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translate(-50%, 0);
    margin-inline: 0;
  }
}
@media (max-width: 768px) {
  body .how-it-works .content > h2 {
    margin-bottom: 50px;
  }
}
@media (min-width: 769px) {
  body .how-it-works .cards-carousel-mob {
    display: none !important;
  }
  body .how-it-works .carouselc:not(.cards-carousel-mob) {
    display: block !important;
  }
}
@media (max-width: 768px) {
  body .how-it-works {
    background-color: #7EAF34;
  }
  body .how-it-works .cards-carousel-mob {
    display: block !important;
  }
  body .how-it-works .carouselc:not(.cards-carousel-mob) {
    display: none !important;
  }
}
body .how-it-works .cards {
  padding-inline: 20px;
}
@media (min-width: 769px) and (max-width: 1160px) {
  body .how-it-works .cards .card,
body .how-it-works .mobile-carousel .card {
    width: 240px;
  }
}
body .how-it-works .cards .card h3,
body .how-it-works .mobile-carousel .card h3 {
  font-weight: 600;
  margin-top: 25px;
}
@media (min-width: 769px) and (max-width: 1160px) {
  body .how-it-works .cards .card h3,
body .how-it-works .mobile-carousel .card h3 {
    font-size: 18px;
  }
}
body .how-it-works .cards .card h3,
body .how-it-works .cards .card p,
body .how-it-works .mobile-carousel .card h3,
body .how-it-works .mobile-carousel .card p {
  width: 100%;
  text-align: left;
  padding-inline: 15px;
}
@media (min-width: 768px) {
  body .how-it-works .mobile-carousel {
    display: none;
  }
}
body .how-it-works .mobile-carousel .carousel-prevc,
body .how-it-works .mobile-carousel .carousel-nextc {
  display: none;
}
body .how-it-works .mobile-carousel .carouselc {
  display: flex;
  flex-flow: column;
}
body .how-it-works .mobile-carousel .carouselc .card {
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding-top: 30px;
}
body .how-it-works .mobile-carousel .carouselc .card * {
  text-align: center;
}
body .how-it-works .mobile-carousel .carouselc .card p {
  margin-bottom: 3rem;
}
body .how-it-works .mobile-carousel .cards-carousel-mob .card {
  width: 320px;
  margin-inline: auto;
  height: 475px;
  justify-content: flex-start;
  border-radius: 5px;
  padding: 15px;
}

body .two-columns .row {
  justify-content: center;
  align-items: center;
}
body .two-columns .row > div.right-col {
  position: relative;
}
body .two-columns .row > div.right-col h2 {
  line-height: 1;
}
body .two-columns .row > div.right-col a {
  padding: 20px 40px;
  font-size: 25px;
  margin-top: 20px;
  display: inline-block;
}
body .two-columns .row > div.right-col .cupball-img {
  display: none;
}
body .two-columns .row > div.right-col .trophy-img {
  display: block;
  margin: 30px auto 0;
  max-width: 160px;
}
@media (min-width: 1000px) {
  body .two-columns .row > div.right-col {
    margin-bottom: 30px;
  }
  body .two-columns .row > div.right-col a {
    margin-top: 35px;
  }
  body .two-columns .row > div.right-col .cupball-img {
    display: block;
    position: absolute;
    top: -40px;
    right: 0;
    margin-top: 0;
  }
}

body .menu-section .flying-football {
  position: absolute;
  top: 25%;
  right: -60px;
  max-width: 250px;
}
body .menu-section .carousel-inner,
body .menu-section .owl-carousel {
  overflow: visible !important;
}
body .menu-section .owl-carousel .owl-stage {
  display: flex;
}
body .menu-section .owl-carousel .owl-stage .menu-card {
  padding: 25px 25px 70px;
}
body .menu-section .owl-carousel .owl-stage .menu-content {
  text-align: left;
}
body .menu-section .owl-carousel .owl-stage .menu-content p {
  font-size: 18px;
}
body .menu-section .owl-carousel .owl-stage .menu-content .food-title {
  position: relative;
  padding-right: 40px;
}
body .menu-section .owl-carousel .owl-stage .menu-content .food-title .food-info {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 5px;
  border: 1px solid #E75C41;
}
body .menu-section .owl-carousel .owl-stage .menu-content .food-title .food-info .food-icon {
  font-size: 0;
  width: 10px;
  height: 10px;
  background: #E75C41;
  border-radius: 100px;
}
body .menu-section .owl-carousel .owl-stage .menu-content .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 800px) {
  body .menu-section .owl-carousel .owl-stage .menu-content .flex {
    position: absolute;
    bottom: 40px;
    width: calc(100% - 50px);
  }
}
body .menu-section .owl-carousel .owl-stage .menu-content .flex p {
  margin: 0;
}
body .menu-section .owl-carousel .owl-stage .menu-content .flex .calories-number,
body .menu-section .owl-carousel .owl-stage .menu-content .flex .protein-number {
  margin-left: 15px;
  font-size: 20px;
}
body .menu-section .owl-carousel .owl-nav {
  position: absolute;
  top: 40%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  width: calc(100% + 140px);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 630px) {
  body .menu-section .owl-carousel .owl-nav {
    width: 100%;
  }
  body .menu-section .owl-carousel .owl-nav button {
    border: 2px solid white;
  }
}
body .menu-section .owl-carousel .owl-nav .owl-prev,
body .menu-section .owl-carousel .owl-nav .owl-next {
  background-color: #181818;
  color: white;
  padding: 30px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  font-size: 35px;
  line-height: 1;
}
body .menu-section .owl-carousel .owl-dots {
  filter: brightness(0.5);
  margin-top: 20px;
}

body .customer-reviews {
  position: relative;
}
@media (min-width: 1101px) {
  body .customer-reviews .review-owl-carousel {
    display: none;
  }
}
@media (max-width: 1100px) {
  body .customer-reviews .review-carousel,
body .customer-reviews .arrows {
    display: none;
  }
  body .customer-reviews .left-column {
    width: 100%;
  }
  body .customer-reviews .review {
    max-width: 100%;
  }
  body .customer-reviews .review img {
    max-width: 40px;
  }
}

body .well-known .carousel-nextf,
body .well-known .carousel-prevf {
  background-color: #181818;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  font-size: 26px;
  line-height: 1;
  display: grid;
  align-items: center;
  padding: 14px;
}

@media (max-width: 767px) {
  body .who-carousel-desk {
    display: none !important;
  }
}

@media (min-width: 768px) {
  body .who-carousel {
    display: none !important;
  }
}
body .who-carousel .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

#meal-count-box {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #e9f7ef;
  font-weight: bold;
  color: #155724;
}