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

a {
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", sans-serif;
  /* agar custom font use kar rahe ho */
}

/* Headings (700 Bold) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

/* Descriptions (400 Regular) */
p,
.desc {
  font-family: "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
}

/* Buttons (600 SemiBold) */
.btn {
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #d35400;
}

/* Fonts */

/* Regular */
@font-face {
  font-family: "Segoe UI";
  src: url("/assets/wajabat/fonts/SegoeUI.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Segoe UI";
  src: url("/assets/wajabat/fonts/SegoeUI-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: "Segoe UI";
  src: url("/assets/wajabat/fonts/SegoeUI-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: "Segoe UI";
  src: url("/assets/wajabat/fonts/SegoeUI-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

/* Fonts End */

/* Header */

/* Make header sticky */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 40px;
  transition: all 0.3s ease-in-out;
  right: 0;
}

/* Default state (no background) */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.2);
  /* transparent white */
  backdrop-filter: blur(10px);
  /* glass effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
  width: 100%;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.171);
  border-radius: 16px;
  margin: 1rem auto;
  max-width: 1200px;
  padding: 0rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  position: relative;
  background-color: white;
  margin-bottom: 3em;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #d62828;
  font-size: 1.1rem;
}

.logo img {
  width: 80px;
}


/* Nav links */
nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #d62828;
}

/* Buttons */
.btns {
  display: flex;
  gap: 0.8rem;
}

.btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn.request {
  border-color: #009444;
  color: #009444;
  border: 1px solid #009444;
  background: white;
  padding: 7px 25px;
}

.btn.request:hover {
  background: #009444;
  color: #fff;
}

.btn.sponsor-1 {
  background: #d62828;
  color: #fff;
  padding: 7px 25px;
}

.btn.sponsor-1:hover {
  background: #b71c1c;
}

/* Mobile Styles */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.beforefooter {
  padding-top: 5em !important;
  padding-bottom: 6em !important;
  color: #fff !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background-image: url("../src/images/before.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.171);
  display: flex;
  /* NEW */
  justify-content: center;
  /* center horizontally */
}

.stats-header h2 {
  margin-top: 25px;
}

.community-stats {
  max-width: 1200px;
  /* keep it responsive */
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}

/* Header */
.stats-header {
  margin-bottom: 3em;
  position: relative;
  z-index: 1;
}

.stats-header h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
  line-height: 60px;
}

.stats-header span {
  color: #38bdf8;
  /* accent (replace later) */
}

.stats-header p {
  font-size: 20px;
  line-height: 1.6;
  color: #e7e7e7;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Grid layout for cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* flexible grid */
  gap: 20px;
  justify-items: center;
  align-items: center;
}

@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    /* ✅ ensures full width */
    width: 100%;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    gap: 1rem;
    display: none;
    text-align: center;
    z-index: 999;
    /* ✅ keeps nav above other content */
  }

  nav.active {
    display: flex;
  }

  header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* 🔴 Hide buttons on mobile */
  .btns {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: #d62828;
  }
}

/* Main Banner */
.main-section {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  z-index: 1;
  position: relative;
}

.main-banner {
  margin-top: -7em;
  width: 100%;
  padding-top: 19rem;
  padding-bottom: 2em;
  gap: 2rem;
  height: auto;
  background-image: url("../src/images/main-section-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mainiconlist {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  background-color: white;
  border: 1px solid #0e9f6e;
  padding: 8px;
  border-radius: 33554400px;
}

.mainiconlist img {
  margin-bottom: -2px;
  width: 20px;
}

.icon-list-text {
  color: #1e2939;
}

.icon-list-innerdiv {
  width: 50%;
}

.mainiconlist {
  width: 50%;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.171);
}

.main-banner-heading {
  font-size: 72px;
  line-height: 1.2;
  color: #1e2939;
  font-weight: 700;
  margin: 1rem 0;
}

.color-red {
  color: #dc3545;
}

.mainbannertext {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.bannerbutton1 {
  background: #d62828;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: 50px;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 210px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.bannerbutton1:hover {
  background: #b71c1c;
  /* darker red */
  transform: translateY(-3px);
  /* small lift */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bannerbutton2 {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: #009444 2px solid;
  padding: 10px 20px;
  font-size: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 210px;
  color: #009444;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.bannerbutton2:hover {
  background: #e4e4e4;
  /* green fill */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.btnsdiv {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: left;
  align-items: center;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
}

.step-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

img.item-icon-arrow {
  margin-top: -11em;
  margin-bottom: 3em;
  width: 34px;
}

.step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient Overlay */
.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.contentboxes1 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.contentboxes1 h3 {
  margin-top: -8px;
}

/* Step Numbers - Perfect Circle */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 8px;
}

.step-card:nth-child(1) .step-number {
  background: #ff6b6b;
}

.step-card:nth-child(2) .step-number {
  background: #00bcd4;
}

.step-card:nth-child(3) .step-number {
  background: #ff9800;
}

.step-card:nth-child(4) .step-number {
  background: #4caf50;
}

/* Title Typography */
h3 {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 24px;
  color: white;
}

/* Description Typography */
p {
  font-family: "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: white;
}

.heart-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  padding: 12px 16px;
  font-size: 22px;
  color: #ff4d6d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border: 2px solid #fce0d1;
}

/* ============================
   Section 2 Styles
============================ */
.second-section {
  background-image: url("/assets/wajabat/src/images/second-section-bg.webp");
  padding: 80px 16px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* Heading */
.section-title {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  color: #1e2939;
  margin-bottom: 16px;
}

.section-subtitle {

  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 64px;
}

.card {
  background: #fff;
  border: 1px solid #f2f4f6;
  border-radius: 24px;
  padding: 32px 24px;
  width: 340px;
  text-align: center;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1),
    0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.card-title {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #1e2939;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.card-desc {
  font-family: "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 22.8px;
  color: #4a5565;
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn.green {
  background: linear-gradient(90deg, #0e9f6e, #28a745);
}

.btn.red {
  background: linear-gradient(90deg, #dc3545, #ff4355);
}

.btn.blue {
  background-color: #0E9F6E;
}

.btn:hover {
  opacity: 0.9;
}

.bottom-box-text {
  padding-top: 1em;
  color: #99a1af;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
}

/* Feature Highlights */
.features {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0em 4em;
}

.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: 340px;
  text-align: center;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-box img {
  width: 32px;
  height: auto;
  margin-bottom: 12px;
}

.feature-box p {
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e2939;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards {
    gap: 16px;
  }

  .card {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
    margin-top: 13em !important;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
    max-width: 400px;
  }

  header {
    width: 100%;
    box-shadow: 0 2px 50px rgba(0, 0, 0, 0.171);
    border-radius: 16px;
    margin: 1rem auto;
    max-width: 1200px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    position: relative;
    background-color: white;
    left: 0;
    right: 0;
  }
}

/* ============================
   Section 2 Styles End

   /* 3rd Section Start */

.sectiontitle {
  color: #1e2939;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

.gradient-heading {
  color: #dc3545;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

.sectiondesc {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.third-section {
  width: 1200px;
  margin: 0px auto;
  padding: 5em 0em;
}

.maingrid {
  padding-top: 0em;
  display: flex;
  align-items: center;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  padding: 2em 0em;
  gap: 100px;
}

.grid1 {
  flex: 1;
  padding: 1em;
}

.item-icon {
  margin-bottom: -4em;
  margin-right: 3em;
  margin-left: 3.5em;
  width: 200px;
}

.itemheading {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #1e2939;
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}

.itemdesc {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #4a5565;
  text-align: center;
}

img.item-icon-arrow {
  margin-top: -11em;
  margin-bottom: 3em;
}

.newsetter {
  background-image: url("../src/images/newsletter-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4em 2em;
  margin-top: 5em;
  border-radius: 16px;
  text-align: center;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.newsetterheading {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  color: #1e2939;
  text-align: center;
}

.newsetter-desc {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  text-align: center;
  padding-bottom: 1em;
  padding-top: 1em;
}

.newsletter buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding-top: 3em;
}

.newsletterbutton1 {
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 45px;
  background: #d62828;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: 0.3s;
  border: none;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-badge {
  display: inline-block;
  background: #d62828;
  color: #fff;
  font-weight: 600;
  font-size: 0.9em;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 1em;
  animation: fadeInDown 1s ease forwards;
}

.newsletterbutton1:hover {
  background: #b71c1c;
  /* slightly darker red */
}

.newsletterbutton2 {
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 45px;
  background: #ff435600;
  color: #0e9f6e;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: 0.3s;
  border: 1px solid #0e9f6e;
}

.newsletterbutton2:hover {
  background: #0e9f6e;
  /* fill with darker green */
  color: #fff;
  /* text turns white */
}


.fourth {
  padding: 4em 0em;
  background-image: url("../src/images/fourth.webp");

  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5em;
  margin: 0px auto;
}

.sectiontitle {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 70px;
  color: #1e2939;
  text-align: center;
  margin-bottom: 16px;
}

.text-pink {
  color: #dc3545;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
  margin-bottom: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
}

.maingird {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Always 4 boxes in 1 row */
  gap: 20px;
  max-width: 1200px;
  margin: 2em auto;
  padding: 0.5 1.5em;
  margin-bottom: 4em;
}

.food-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 14px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Image section */
.food-image {
  position: relative;
}

.food-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Price tag */
.price-tag {
  position: absolute;
  top: 15px;
  right: 10px;
  background: #fff;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Favorite icon */
.favorite-icon {
  position: absolute;
  top: 15px;
  left: 10px;
  background: #fff;
  font-size: 20px;
  padding: 6px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Content */
.food-content {
  padding: 0.5em 1em 1.5em 1em;
}

.rating-time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -15px;
  font-size: 14px;
  color: #666;
}

.food-title {
  font-size: 17px;
  font-weight: bold;
  margin: 15px 0;
  color: #1e2939;
}

.restaurant {
  font-size: 16px;
  color: #4a5565;
  margin-bottom: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}

.restaurant img {
  width: 20px;
}

/* Request button default */
.request-btn {
  width: 100%;
  padding: 10px;
  background: #d62828;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s;
}

.request-btn:hover {
  background: #e64444;
}

/* 2nd & 4th card button gradient */
.food-card:nth-child(2) .request-btn,
.food-card:nth-child(4) .request-btn {
  background: linear-gradient(90deg, #0e9f6e, #28a745);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.food-card:nth-child(2) .request-btn:hover,
.food-card:nth-child(4) .request-btn:hover {
  background: linear-gradient(90deg, #0c865d, #218838);
}

.partners-section {
  background-image: url("../src/images/bgbenefits.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 3em 4em;
  border-radius: 48px;
  max-width: 1180px;
  margin: 2em auto;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

/* Title + subtitle */
.partners-title {
  font-size: 36px;
  color: white;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 0.5em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.partners-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Grid of partner cards */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 2.5em;
}

.partner-card {
  position: relative;
  background-image: url('../src/images/blurbg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 1.4em;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.partner-card img {
  width: 50px;
}

.status-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  /* green */
  border-radius: 50%;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.partner-card .icon {
  font-size: 28px;
  /* Placeholder for icon */
  margin-bottom: 0.8em;
}

.partner-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.3em;
}

.partner-type {
  font-size: 14px;
  color: #94a3b8;
}

/* Stats */
.partners-stats {
  display: flex;
  justify-content: center;
  gap: 228px;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 28px;
  font-weight: bold;
}

.stat-value.red {
  color: #ef4444;
}

.stat-value.green {
  color: #22c55e;
}

.stat-label {
  font-family: "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: white;
}

.stat-sub {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 400;
}

/* CTA */
.partners-cta {
  text-align: center;
}

.partner-btn {
  padding: 12px 30px;
  background: linear-gradient(90deg, #0e9f6e, #28a745);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.partner-btn:hover {
  opacity: 0.9;
}

.cta-sub {
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 1em;
}


.community-stats {
  max-width: 1200px;
  /* keep it responsive */
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}

/* Header */
.stats-header {
  margin-bottom: 3em;
  position: relative;
  z-index: 1;
}

.stats-header h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
  line-height: 60px;
}

.stats-header span {
  color: #38bdf8;
  /* accent (replace later) */
}

.stats-header p {
  font-size: 20px;
  line-height: 1.6;
  color: #e7e7e7;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Grid layout for cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* flexible grid */
  gap: 20px;
  justify-items: center;
  align-items: center;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Card design */
.stat-card {
  background-image: url("../src/images/Overlay+Border+OverlayBlur.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 24px;
  padding: 1em 1.5em;
  text-align: center;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}

.stat-icon {
  width: 260px;
  display: flex;
  align-items: left;
  justify-content: left;
}

.stat-icon img {
  place-items: left;
  margin-left: -2em;
  margin-bottom: -2em;
  width: 120px;
}

.stat-value {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 0.4em;
}

.stat-title {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.stat-card small {
  font-size: 0.9em;
  color: #94a3b8;
}

/* Color themes */
.red-card .stat-icon {
  background: #ef4444;
}

.red-card .stat-value {
  color: #ef4444;
}

.green-card .stat-icon {
  background: #22c55e;
}

.green-card .stat-value {
  color: #22c55e;
}

/* Footer */
.site-footer {
  background-image: url("../src/images/Footer.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 6em 2em 1em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: 2em;
}

.footer-col h4 {
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.footer-col.footer-contact {
  padding-left: 8em;
}

.footer-col.footer-links {
  padding-left: 6em;
}


.footer-about .footer-logo {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1em;
  justify-content: flex-start;
}

.footer-logo img {
  width: 130px;
}

.footer-about p {
  color: #cbd5e1;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  width: 40px;
}


/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6em;
}

.footer-links ul li a {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.95em;
}

.footer-links ul li a:hover {
  color: #38bdf8;
  /* accent */
}

/* Contact */
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}

.footer-contact ul li {
  color: #cbd5e1;
  margin-bottom: 0.8em;
  font-size: 0.95em;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact ul li img {
  margin-top: 3px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  border-radius: 26px;
  font-weight: 600;
  font-size: 0.95em;
}

.whatsapp-btn img {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 2em auto 0;
  padding: 2em 0em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9em;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5em;
}

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1em;
    text-align: center;
  }
}

/* Footer End */


/* ==============================
   Responsive Media Queries
============================== */

/* Tablets (992px and below) */
@media (max-width: 992px) {
  .main-section {
    flex-direction: column;

  }

  .item-icon {
    margin-bottom: -4em;
    margin-right: 3em;
    margin-left: 3.5em;
    width: 36% !important;
    display: flex;
    justify-content: center;
  }

  .main-banner {
    margin-top: -4em;
    padding-top: 12rem!important;
    padding-bottom: 1rem!important;
  }

  .mainiconlist {
    width: 70%;
    margin: 0 auto 1.5rem auto;
  }

  .main-banner-heading {
    font-size: 48px;
  }

  .mainbannertext {
    font-size: 18px;
  }

  .btnsdiv {
    justify-content: center;
    flex-wrap: wrap;
  }

  .steps-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
  .main-banner {
    margin-top: -3em;
    padding: 4rem 1rem;
  }

  .mainiconlist {
    width: 90%;
  }

  .main-banner-heading {
    line-height: 1.3;
    text-align: center;
  }

  .mainbannertext {
    font-size: 16px;
    text-align: center;
  }

  .btnsdiv {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .bannerbutton1,
  .bannerbutton2 {
    width: 100%;
    max-width: 280px;
  }


  .steps-container {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  img.item-icon-arrow {
    display: none;
    /* arrows hide on mobile */
  }
}

@media (max-width: 768px) {
  .btnsdiv {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    display: flex;
    align-content: center;
  }

  .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 04px 10px;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.logo img{
  width: 70px;
}
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
  .main-banner {
    padding: 3rem 1rem;
    margin-top: -2em;
  }

  .main-banner-heading {
    font-size: 40px;
  }

  .mainbannertext {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .btnsdiv {
    gap: 0.6rem;
  }

  .bannerbutton1,
  .bannerbutton2 {
    width: 100%;
    font-size: 14px;
  }

  .step-card h3 {
    font-size: 1em;
  }

  .step-card p {
    font-size: 12px;
    line-height: 18px;
  }

  .icon-list-innerdiv {
    width: 100%;
  }
}


/* ==============================
   Global Responsive Media Queries
============================== */

/* Large Tablets (max-width: 1200px) */
@media (max-width: 1200px) {
  .third-section {
    width: 100%;
    padding: 4em 1.5em;
  }

  .maingird {
    grid-template-columns: repeat(3, 1fr);
  }

  .community-stats {
    width: 100%;
    padding: 0 1em;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {

  /* Section 2 */
  .section-title {
    font-size: 48px;
    line-height: 52px;
  }

  .section-subtitle {
    font-size: 13px;
    margin-bottom: 48px;
  }

  .cards {
    justify-content: center;
  }

  .features {
    padding: 0 2em;
    justify-content: center;
  }

  /* Third Section */
  .maingrid {
    flex-direction: column;
    gap: 50px;
    padding: 2em 1em;
  }

  .item-icon {
    margin: 0 auto -2em auto;
    width: 160px;
  }

  /* Food Cards Grid */
  .maingird {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Partners */
  .partners-stats {
    gap: 60px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
  }

  .footer-col.footer-contact,
  .footer-col.footer-links {
    padding-left: 0;
  }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {

  /* Headings */
  .section-title,
  .sectiontitle,
  .gradient-heading {
    font-size: 25px !important;
    line-height: 30px !important;
  }

  .partners-section {
    background-image: url("../src/images/bgbenefits.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 3em 4em;
    border-radius: 48px;
    max-width: 1180px;
    margin: 2em auto;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
    margin: 25px;
  }

@media (max-width: 576px) {
    .stat-icon img {
        width: 90px;
        margin: 0 auto -0.5em !important;
    }
    .footer-about .footer-logo {
    width: 100%;
    display: flex
;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1em;
    justify-content: center;
}
}

  .partner-btn {
    padding: 12px 30px;
    background: linear-gradient(90deg, #0e9f6e, #28a745);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-bottom: 1em;
    margin-top: 26px;
  }

  .maingird {
    padding: 0px 30px;
  }

  .sectiondesc {
    font-size: 16px;
    line-height: 22px;
    padding: 0 1em 2em;
  }

  /* Cards */
  .cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 380px;
  }

  .text-pink {
    color: #dc3545;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 16px;
  }

  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 1em;
  }

  .feature-box {
    max-width: 380px;
  }

  /* Third Section */
  .third-section {
    padding: 3em 1em;
  }

  .item-icon {
    width: 200px !important;
    margin-bottom: -1.5em;
  }

  /* Newsletter */
  .newsletter buttons {
    flex-direction: column;
    gap: 12px;
  }

  .newsletterbutton1,
  .newsletterbutton2 {
    margin-top: 1em;
    width: 100%;
    max-width: 280px;
  }

  /* Food cards */
  .maingird {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Partners */
  .partners-stats {
    gap: 40px;
  }

  /* Before Footer */
  .stats-header h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .section-header{
    padding-top: 5em;
  }

  .stats-header p {
    font-size: 16px;
    line-height: 22px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.small-btn {
  background: #d62828;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
}

/* Small Phones (max-width: 576px) */
@media (max-width: 576px) {

  /* Section 2 */
  .section-title,
  .sectiontitle,
  .gradient-heading {
    font-size: 12px;
    line-height: 20px;
  }

  .section-subtitle {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 32px;
  }

  .card {
    padding: 20px 16px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-desc {
    font-size: 13px;
  }

  /* Features */
  .feature-box {
    padding: 16px;
  }

  /* Newsletter */
  .newsetterheading {
    font-size: 26px;
    line-height: 32px;
  }

  .newsetter-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .newsletterbutton1,
  .newsletterbutton2 {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Partners */
  .partners-title {
    font-size: 26px;
    line-height: 32px;
  }

  .partners-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  /* Stats */
  .stat-card {
    padding: 1.5em 1em;
    height: auto;
    align-items: center;
    text-align: center;
  }

 @media (max-width: 576px) {
    .stat-icon img {
        width: 90px;
        margin: 0 auto -0.5em;
    }
}

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1em;
  }

  .beforefooter1 {
  padding-top: 4em !important;
  padding-bottom: 6em !important;
  color: #fff !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background-image: url("../src/images/before.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.171);
  display: flex;
  /* NEW */
  justify-content: center;
  /* center horizontally */
}
}