* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Outfit', Arial, sans-serif;
  overflow-x: hidden;
  background: #f4f6f5 !important;
  color: #171717;
}

nav {
  width: 100%;
  min-height: 92px;
  padding: 16px clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  overflow-x: visible;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 20px);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  padding: 10px 8px;
  border-radius: 999px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #168a2f;
  border-radius: 999px;
  transition: width 0.25s ease;
}

nav a:hover {
  color: #168a2f;
}

nav a:hover::after {
  width: 100%;
}

nav img {
  width: 180px;
  max-width: 28vw;
  height: 70px;
  object-fit: contain;
}

nav .dropdown .btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: #f1f1f1;
  color: #222;
  font-weight: 600;
  box-shadow: none;
}

.openapp {
  background-color: green;
  color: white;
  border: none;
  min-width: 160px;
  min-height: 50px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: clamp(15px, 1.6vw, 20px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.openapp:hover {
  background: #0f7e27;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 128, 0, 0.22);
}

nav>i {
  flex: 0 0 auto;
  color: #111;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  width: auto;
  max-height: none;
  overflow: visible;
  transition: max-height 0.3s ease;
}

.nav-open .nav-menu {
  max-height: 1200px;
}

.main {
  width: 100%;
  min-height: calc(100vh - 92px);
  padding: clamp(24px, 4vw, 54px) clamp(14px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main img {
  width: min(100%, 1180px);
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  animation: floatHero 4.8s ease-in-out infinite;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.12));
}

.images {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
}

.images .card {
  width: 100% !important;
  min-height: 166px;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.images .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}

.images .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.images .card-body {
  width: 100%;
  padding: 10px;
  text-align: center;
}

.images .card-text {
  font-size: 25px;
  margin: 0;
  color: #222;
  font-weight: 500;

}

.main2 {
  width: 100%;
  padding: 64px clamp(16px, 4vw, 64px) 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-section {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.food-card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
}

.image-box {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.food-card:hover .image-box img {
  transform: scale(1.08);
}

.offer {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53935;
  color: #fff;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 8px;
}

.offer.green {
  background: #2e7d32;
}

.rating {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #1b8f3a;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
}

.food-content {
  padding: 15px;
}

.food-content h3 {
  font-size: clamp(19px, 2vw, 24px);
  margin-bottom: 5px;
}

.food-content p {
  color: #666;
  margin-bottom: 12px;
}

.food-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #444;
  font-size: 14px;
}

.main4 {
  width: min(1120px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.main4 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.11);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main4 img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.banner {
  width: min(1180px, calc(100% - 32px));
  min-height: 220px;
  background: #f5f5f5;
  /* use the local banner image as a responsive background */
  /* background-image: url('./banner.jpeg'); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 44px auto 56px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}



.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatHero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 992px) {
  nav {
    justify-content: flex-start;
    padding-inline: 18px;
    gap: 14px;
  }

  .images {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .food-section {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .main {
    min-height: auto;
    padding-block: 36px;
  }

  .main4 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    min-height: auto;
    gap: 12px;
    padding: 12px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    overflow-x: visible;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 12px;
  }

  .nav-open .nav-menu {
    max-height: 1200px;
  }

  .nav-menu .dropdown,
  .nav-menu a,
  .nav-menu .openapp,
  .nav-menu>i {
    width: 100%;
  }

  .nav-menu a {
    text-align: left;
    padding: 10px 0;
    white-space: normal;
  }

  .nav-menu .dropdown .btn {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
  }

  .nav-menu .openapp {
    min-width: auto;
    justify-content: center;
  }

  nav img {
    width: 145px;
    max-width: 100%;
    height: 58px;
  }

  nav a {
    font-size: 15px;
  }

  nav .dropdown .btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .openapp {
    min-width: 120px;
    min-height: 44px;
    padding: 8px 14px;
  }

  .main {
    min-height: auto;
    padding: 24px 12px;
  }

  .main img {
    width: 100%;
    max-height: none;
  }

  .images {
    width: min(100% - 24px, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .images .card {
    min-height: 148px;
  }

  .images .card-img-top {
    height: 96px;
  }

  .food-section,
  .main4 {
    grid-template-columns: 1fr;
  }

  .main2 {
    padding-top: 34px;
    padding-inline: 12px;
  }

  .image-box {
    height: 170px;
  }

  .main4 {
    width: min(100% - 24px, 520px);
    gap: 16px;
  }

  .banner {
    width: min(100% - 24px, 520px);
    min-height: auto;
    margin-block: 28px 40px;
    border-radius: 16px;
  }

  .banner .infood-banner {
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    justify-content: center;
    align-items: center;
  }

  .banner .app-preview {
    max-width: 100%;
    width: auto !important;
    max-height: 220px;
    margin: 0;
  }

  .banner .brand-section {
    width: 100%;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  .banner .button-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .banner .brand-section ul {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }

  .banner .store-btn {
    width: min(160px, 100%);
  }

  .footer {
    padding: 36px 18px;
  }

  .footer-box {
    min-width: 100%;
  }

  .footer-box p,
  .footer-box ul li a,
  .contact-item,
  .footer-bottom {
    font-size: 16px;
  }

  .footer-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  nav {
    align-items: center;
    gap: 10px;
  }

  nav img {
    width: 128px;
    height: 52px;
  }

  nav a {
    font-size: 14px;
  }

  .openapp {
    min-width: auto;
    min-height: 40px;
    font-size: 14px;
  }

  nav>i {
    font-size: 34px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .images {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-content h3 {
    font-size: 20px;
  }

  .contact-item {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }
}


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

.footer {
  background: #fff;
  padding: 50px 8%;
  color: #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-box {
  flex: 1;
  min-width: 220px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.logo-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-box h2 {
  font-size: 32px;
  color: #0b7d4f;
  font-weight: bold;
}

.logo-box h3 {
  font-size: 22px;
  color: #0b7d4f;
  margin-top: 5px;
}

.footer-box p {
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0b7d4f;
  color: #fff;
  border-color: #0b7d4f;
}

.cin {
  font-size: 16px;
  color: #555;
}

.footer-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 14px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #0b7d4f;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 08px;
  font-size: 18px;
}

.contact-item i {
  font-size: 22px;
}

.whatsapp {
  color: #0b7d4f;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 18px;
  color: #555;
}

/* Responsive */
@media(max-width:992px) {
  .footer-container {
    flex-direction: column;
  }

  .logo-box h2 {
    font-size: 28px;
  }

  .logo-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 36px 18px;
  }

  .footer-container {
    gap: 26px;
  }

  .footer-box {
    min-width: 100%;
  }

  .footer-box p,
  .footer-box ul li a,
  .contact-item,
  .footer-bottom {
    font-size: 16px;
  }

  .footer-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .contact-item {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }
}












/* Premium Minimalist Container */
.infood-banner {
  display: flex;
  align-items: center;
  background-color: #f8faf9;
  padding: 20px 40px;
  border-radius: 16px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: min(auto, calc(100% - 32px));
  margin: 0 auto;
}

.app-preview {
  height: 170px;
  width: 220px;
  margin-right: 30px;
}

.brand-section {
  flex: 1;
  margin-left: 20px;
}

.brand-section h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #333;
}

.brand-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-section li {
  margin-bottom: 5px;
  color: #555;
  font-size: 15px;
}

.brand-section li::before {
  content: "✓";
  color: #2e7d32;
  font-weight: bold;
  margin-right: 8px;
}

/* Clickable Buttons Section */
.button-container {
  display: flex;
  gap: 15px;
}

.store-btn {
  width: 160px;
  transition: transform 0.2s ease, opacity 0.2s;
  cursor: pointer;
}

.store-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Section Heading Styling */
.section-title {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: #171717;
  text-align: left;
  width: min(1120px, calc(100% - 32px));
  margin: 54px auto 14px;
  font-family: 'Outfit', Arial, sans-serif;
  position: relative;
  padding-left: 18px;
  scroll-margin-top: 110px; /* offset for sticky navbar */
}

#contact-us {
  scroll-margin-top: 110px; /* offset for sticky navbar */
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 5px;
  background: #168a2f;
  border-radius: 99px;
}