:root {
  --green: #1e6f3e;
  --green-dark: #155c31;
  --green-light: #e8f5ee;
  --orange: #f47b20;
  --orange-dark: #d9690f;
  --text: #222;
  --gray: #666;
  --border: #e2ede8;
  --shadow: 0 2px 12px rgba(0, 0, 0, .08);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  color: var(--text);
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* ── NAVBAR ── */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
  padding: 0;
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
}
.navbar-brand img {
  height: 80px;
  width: auto;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 12px !important;
  position: relative;
}
.nav-link.active {
  color: var(--green) !important;
  border-bottom: 2px solid var(--green);
}
.nav-link:hover {
  color: var(--green) !important;
}
.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
}
.btn-nav-soon {
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .2s;
}
.btn-nav-soon:hover {
  background: var(--orange);
  color: #fff;
}
.navbar-nav {
  gap: 2px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #f2fbf5 0%, #eaf7ef 60%, #f7fff9 100%);
  padding: 55px 0 30px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 111, 62, .05), transparent 70%);
  top: -150px;
  right: -100px;
}
.hero-leaf {
  position: absolute;
  opacity: .5;
  animation: leafFloat 4s ease-in-out infinite;
}
.hero-leaf.l1 {
  top: 28px;
  left: 12%;
  font-size: 26px;
}
.hero-leaf.l2 {
  top: 90px;
  right: 15%;
  font-size: 20px;
  animation-delay: .8s;
}
.hero-leaf.l3 {
  bottom: 50px;
  left: 4%;
  font-size: 17px;
  animation-delay: 1.6s;
}
@keyframes leafFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(12deg);
  }
}

.hero-tag {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 600;
  background: var(--green-light);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-h1 {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 2.55rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.18;
  margin-bottom: 6px;
}
.hero-h1 .ora {
  color: var(--orange);
}
.hero-sub {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 400px;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .22s;
  cursor: pointer;
}
.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 111, 62, .3);
}
.btn-outline-grn {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .22s;
  cursor: pointer;
}
.btn-outline-grn:hover {
  background: var(--green);
  color: #fff;
}
.hero-loc {
  font-size: 12.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}
.hero-loc i {
  color: var(--green);
}

/* phone mockup & groceries combo */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}
.phone-outer {
  width: 215px;
  background: #111;
  border: 4px solid #1c1c1e;
  border-radius: 40px;
  padding: 0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  height: 440px;
  display: flex;
  flex-direction: column;
}
.phone-inner {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
}

/* Status Bar */
.p-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 4px;
  font-size: 8px;
  font-weight: 700;
  color: #000;
  background: #fff;
  z-index: 10;
}
.p-time {
  font-size: 8.5px;
}
.p-dynamic-island {
  width: 55px;
  height: 14px;
  background: #000;
  border-radius: 10px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
}
.p-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
}

/* App Header */
.p-app-header {
  text-align: center;
  padding: 8px 10px 4px;
  background: #fff;
}
.p-app-logo {
  height: 38px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.p-app-subtitle {
  font-size: 7px;
  color: var(--green);
  font-weight: 700;
  margin-top: -2px;
  letter-spacing: 0.5px;
}

/* Search Bar */
.p-search-box {
  display: flex;
  align-items: center;
  background: #f6f6f6;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 2px 2px 2px 10px;
  margin: 4px 10px;
  position: relative;
  height: 28px;
}
.p-search-ico {
  font-size: 9px;
  color: #888;
  margin-right: 6px;
}
.p-search-placeholder {
  font-size: 8px;
  color: #888;
  flex-grow: 1;
  text-align: left;
}
.p-search-btn {
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

/* Categories Grid */
.p-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px 10px;
  background: #fff;
}
.p-cat-card {
  background: #fff;
  border-radius: 10px;
  padding: 6px 2px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #f2f7f4;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-cat-card:hover {
  transform: translateY(-2px);
}
.p-cat-icon {
  font-size: 18px;
  margin-bottom: 2px;
}
.p-cat-icon.dot-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.p-cat-title {
  font-size: 7px;
  font-weight: 700;
  color: #333;
}

/* Promo Banner */
.p-promo-banner {
  background: linear-gradient(135deg, #fff4eb 0%, #ffe9d6 100%);
  border-radius: 12px;
  margin: 6px 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ffe3cb;
  position: relative;
  overflow: hidden;
}
.p-promo-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.p-promo-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}
.p-promo-subtitle {
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 1px;
}
.p-promo-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-rider-emoji {
  font-size: 26px;
  animation: leafFloat 3s ease-in-out infinite;
}

/* Bottom Navigation */
.p-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 4px 0 6px;
  z-index: 10;
}
.p-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 7px;
  cursor: pointer;
}
.p-nav-item i {
  font-size: 11px;
  margin-bottom: 1px;
}
.p-nav-item.active {
  color: var(--green);
}

/* Groceries Bag Next to Phone */
.groceries-wrap {
  width: 220px;
  height: 380px;
  background: url('user_upload.png') no-repeat;
  background-position: right center;
  background-size: 200% auto;
  mix-blend-mode: multiply;
  align-self: flex-end;
  z-index: 1;
  margin-left: -50px; /* Slight overlap with the phone */
  pointer-events: none;
}
.float-veg {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .18));
  animation: leafFloat 3s ease-in-out infinite;
}
.fv1 {
  right: -34px;
  top: 18px;
  font-size: 52px;
}
.fv2 {
  left: -44px;
  bottom: 38px;
  font-size: 58px;
  animation-delay: .6s;
}
.fv3 {
  right: -22px;
  bottom: 55px;
  font-size: 38px;
  animation-delay: 1.2s;
}

/* ── FEATURES BAR ── */
.feat-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px;
  border-right: 1px solid var(--border);
}
.feat-item:last-child {
  border-right: none;
}
.feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feat-ico.g {
  background: var(--green-light);
}
.feat-ico.o {
  background: #fff4ea;
}
.feat-txt h6 {
  font-size: 12.5px;
  font-weight: 700;
  margin: 0 0 2px;
}
.feat-txt p {
  font-size: 11px;
  color: var(--gray);
  margin: 0;
}

/* ── SECTION TITLE ── */
.sec-tag {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 5px;
}
.sec-title {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
}
.sec-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 0 auto 28px;
}

/* ── CATEGORIES ── */
.cats-sec {
  padding: 55px 0;
  background: #f8fdf9;
}
.cat-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: .22s;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow);
  display: block;
  color: var(--text);
}
.cat-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .13);
  color: var(--text);
}
.cat-card:hover .cat-em {
  transform: scale(1.18) rotate(5deg);
}
.cat-em {
  font-size: 38px;
  display: block;
  margin-bottom: 8px;
  transition: .25s;
}
.cat-nm {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0;
}
.btn-all {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 38px;
  font-size: 13.5px;
  font-weight: 600;
  transition: .22s;
  cursor: pointer;
  display: inline-block;
}
.btn-all:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 111, 62, .3);
}

/* ── HOW IT WORKS ── */
.how-sec {
  padding: 55px 0;
  background: #fff;
}
.step-wrap {
  position: relative;
  text-align: center;
}
.step-ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .13);
}
.step-ico.sg {
  background: var(--green);
  color: #fff;
}
.step-ico.so {
  background: var(--orange);
  color: #fff;
}
.step-ico.slg {
  background: var(--green-light);
  color: var(--green);
}
.step-num {
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--orange);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-dash {
  position: absolute;
  top: 30px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  z-index: 0;
}
.step-h {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}
.step-p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── STATS ── */
.stats-sec {
  background: var(--green);
  padding: 46px 0;
}
.stat-box {
  text-align: center;
  padding: 10px 16px;
}
.stat-ico {
  font-size: 22px;
  margin-bottom: 6px;
  opacity: .9;
}
.stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-suf {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}
.stat-lbl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  margin-top: 3px;
}
.stat-div {
  width: 1px;
  background: rgba(255, 255, 255, .2);
  height: 55px;
  margin: auto;
}

/* ── APP SECTION ── */
.app-sec {
  padding: 65px 0;
  background: linear-gradient(135deg, #f0faf4, #e8f7ee);
}
.app-h {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
}
.app-p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 22px;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: .22s;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
}
.app-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}
.app-btn .lbl-sm {
  font-size: 9px;
  opacity: .65;
  display: block;
}
.app-btn .lbl-lg {
  font-size: 13px;
  font-weight: 700;
  display: block;
}
/* phones showcase */
.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
}
.ph-wrap {
  background: #111;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}
.ph-screen {
  background: var(--green-light);
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
}
.ph-main {
  width: 138px;
}
.ph-main .ph-screen {
  height: 265px;
}
.ph-side {
  width: 118px;
}
.ph-side .ph-screen {
  height: 225px;
}
.ph-mb {
  margin-bottom: 22px;
}

/* ── TESTIMONIALS ── */
.testi-sec {
  padding: 55px 0;
  background: #fff;
}
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-size: 56px;
  color: var(--orange);
  opacity: .25;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-txt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 16px;
  padding-top: 18px;
}
.testi-auth {
  display: flex;
  align-items: center;
  gap: 11px;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-nm {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
.testi-loc {
  font-size: 11px;
  color: var(--gray);
  margin: 0;
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green) !important;
  border: 0 !important;
  opacity: .35;
  margin: 0 5px !important;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: var(--green) !important;
}

/* ── PARTNER ── */
.partner-sec {
  padding: 55px 0;
  background: #f8fdf9;
}
.partner-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}
.partner-img-col {
  position: relative;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #2d7a4a, #1e6f3e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.shop-big {
  font-size: 90px;
}
.shop-badge {
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  padding: 7px 20px;
  margin-top: 12px;
  display: inline-block;
}
.partner-txt-col {
  padding: 50px 50px 50px 44px;
}
.partner-h {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.partner-h span {
  color: var(--orange);
}
.partner-p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.partner-li {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}
.partner-li li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 9px;
}
.partner-li li i {
  color: var(--green);
  font-size: 15px;
}
.btn-partner {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: .22s;
}
.btn-partner:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  top: -120px;
  right: -80px;
}
.cta-h {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 26px;
}
.cta-p span {
  color: var(--orange);
  font-weight: 700;
}
.btn-cta {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 50px;
  padding: 13px 36px;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .22s;
}
.btn-cta:hover {
  background: #f0f0f0;
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
/* CTA Illustration */
.cta-ill-wrap {
  position: relative;
  display: inline-block;
  padding: 20px;
}
.cta-ill-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 280px;
  margin: 0 auto;
  text-align: left;
}
.cta-badge {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.cta-ill-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 60px;
  margin-bottom: 8px;
  padding: 0 10px;
}
.cta-ill-main::before {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
}
.cta-ill-rider {
  font-size: 40px;
  z-index: 2;
  animation: riderDrive 5s linear infinite;
  display: inline-block;
  transform-origin: center;
}
.cta-ill-house {
  font-size: 38px;
  z-index: 2;
}
.cta-ill-status {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}
.cta-float {
  position: absolute;
  font-size: 24px;
  opacity: 0.85;
}
.cta-float.f1 {
  top: -10px;
  left: -10px;
  animation: leafFloat 3s ease-in-out infinite;
}
.cta-float.f2 {
  bottom: -10px;
  right: -10px;
  animation: leafFloat 3.5s ease-in-out infinite 0.5s;
}
.cta-float.f3 {
  top: 30%;
  right: -30px;
  animation: leafFloat 4s ease-in-out infinite 1s;
}

@keyframes riderDrive {
  0% {
    transform: translateX(0) scaleX(1);
  }
  48% {
    transform: translateX(140px) scaleX(1);
  }
  50% {
    transform: translateX(140px) scaleX(-1);
  }
  98% {
    transform: translateX(0) scaleX(-1);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}

/* ── FOOTER ── */
.footer {
  background: #0b1510;
  padding: 55px 0 0;
  color: rgba(255, 255, 255, .65);
}
.footer-logo img {
  height: 58px;
  width: auto;
}
.footer-desc {
  font-size: 12.5px;
  line-height: 1.75;
  margin: 10px 0 15px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  transition: all .25s ease;
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.social-links a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(11, 122, 61, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}
.footer-h {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}
.footer-h::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-ul li {
  margin-bottom: 10px;
}
.footer-ul a {
  color: rgba(255, 255, 255, .6);
  font-size: 12.5px;
  transition: all .2s ease-in-out;
  display: inline-block;
}
.footer-ul a:hover {
  color: var(--orange);
  transform: translateX(4px);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 14px;
  transition: color 0.2s ease;
}
.footer-contact li:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-contact li i {
  color: var(--green);
  background: rgba(11, 122, 61, 0.15);
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s ease;
}
.footer-contact li:hover i {
  background: var(--green);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 20px 0;
  margin-top: 45px;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

/* scroll top */
#toTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 17px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(30, 111, 62, .4);
  z-index: 999;
  transition: .22s;
}
#toTop.on {
  display: flex;
}
#toTop:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Phone Mockup Screen Styling */
.ph-tracking, .ph-rating {
  text-align: center;
}
.ph-icon-lg {
  font-size: 30px;
}
.ph-title-sm {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--green);
  margin: 5px 0 2px;
}
.ph-desc-sm {
  font-size: 7px;
  color: var(--gray);
}
.ph-badge-green {
  margin-top: 9px;
  background: var(--green);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 6.5px;
  color: #fff;
}
.ph-stars {
  margin-top: 8px;
  color: var(--orange);
  font-size: 11px;
}

.ph-app-nav {
  background: var(--green);
  padding: 9px;
  border-radius: 23px 23px 0 0;
  text-align: center;
  width: 100%;
}
.ph-app-title {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}
.ph-app-body {
  padding: 10px;
  width: 100%;
  text-align: left;
}
.ph-section-title {
  font-size: 7.5px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}
.ph-promo-card {
  background: #fff3e8;
  border-radius: 7px;
  padding: 7px;
  margin-bottom: 5px;
  text-align: center;
}
.ph-promo-emoji {
  font-size: 18px;
}
.ph-promo-name {
  font-size: 7.5px;
  font-weight: 700;
  color: var(--text);
}
.ph-promo-discount {
  font-size: 7px;
  color: var(--orange);
}
.ph-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 6px;
}
.ph-grid-item {
  background: var(--green-light);
  border-radius: 5px;
  padding: 4px;
  text-align: center;
  font-size: 6px;
  color: var(--text);
}
.ph-grid-emoji {
  font-size: 14px;
}
.ph-action-btn {
  background: var(--orange);
  border-radius: 18px;
  padding: 4px 9px;
  text-align: center;
  font-size: 7.5px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
