: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-main {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .22s;
  cursor: pointer;
}
.btn-nav-main:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-nav-outline {
  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: .22s;
  cursor: pointer;
}
.btn-nav-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}
.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 {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9e4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.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;
}
.badge-pill-light {
  background: #fff4ea;
  color: var(--orange);
  border: 1px solid #ffd8b3;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(244, 123, 32, 0.05);
}
.badge-pill-light i {
  color: var(--orange);
  animation: starPulse 1.5s ease-in-out infinite;
}
.hero-loc {
  font-size: 12px;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  background: rgba(11, 122, 61, 0.06);
  border: 1px solid rgba(11, 122, 61, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(11, 122, 61, 0.02);
}
.hero-loc i {
  color: var(--green);
  font-size: 13.5px;
  animation: bounceGps 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
@keyframes bounceGps {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* 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;
}
.p-promo-green {
  background: linear-gradient(135deg, #eaf7ef 0%, #d5eedf 100%) !important;
  border-color: #c4e9d3 !important;
}
.p-promo-green .p-promo-title {
  color: var(--green-dark) !important;
}
.p-promo-green .p-promo-subtitle {
  color: var(--green) !important;
}

/* 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('../img/grocery_bag.svg') no-repeat;
  background-position: right center;
  background-size: contain;
  mix-blend-mode: normal;
  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: #f8faf9;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 122, 61, 0.06);
  border-color: rgba(11, 122, 61, 0.12);
}
.feat-item.delivery:hover {
  box-shadow: 0 15px 35px rgba(244, 123, 32, 0.06);
  border-color: rgba(244, 123, 32, 0.15);
}
.feat-item.support:hover {
  box-shadow: 0 15px 35px rgba(244, 123, 32, 0.06);
  border-color: rgba(244, 123, 32, 0.15);
}
.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.feat-item:hover .feat-ico {
  transform: scale(1.1);
}
.feat-ico.g {
  background: var(--green-light);
  color: var(--green);
}
.feat-ico.o {
  background: #fff4ea;
  color: var(--orange);
}
.feat-txt h6 {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.feat-txt p {
  font-size: 11.5px;
  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: 85px 0;
  background: radial-gradient(120% 120% at 50% 10%, #fff 60%, #f3faf5 100%);
}
.cat-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: block;
  color: var(--text);
  text-decoration: none;
}
.cat-card:hover {
  transform: translateY(-5px);
  color: var(--text);
}
.cat-card:hover .cat-em {
  transform: scale(1.18) rotate(5deg);
}
.cat-em {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  transition: .25s;
}
.cat-nm {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

/* Category Specific Hover Glows */
.cat-card.cat-grocery:hover { border-color: #3182ce; background: #f0f8ff; box-shadow: 0 12px 28px rgba(49, 130, 206, 0.08); }
.cat-card.cat-veg:hover { border-color: #38a169; background: #f0fff4; box-shadow: 0 12px 28px rgba(56, 161, 105, 0.08); }
.cat-card.cat-fish:hover { border-color: #319795; background: #e6fffa; box-shadow: 0 12px 28px rgba(49, 151, 149, 0.08); }
.cat-card.cat-meat:hover { border-color: #e53e3e; background: #fff5f5; box-shadow: 0 12px 28px rgba(229, 62, 62, 0.08); }
.cat-card.cat-fruit:hover { border-color: #dd6b20; background: #fffaf0; box-shadow: 0 12px 28px rgba(221, 107, 32, 0.08); }
.cat-card.cat-medicine:hover { border-color: #805ad5; background: #faf5ff; box-shadow: 0 12px 28px rgba(128, 90, 213, 0.08); }
.cat-card.cat-drinks:hover { border-color: #d69e2e; background: #fefcbf; box-shadow: 0 12px 28px rgba(214, 158, 46, 0.08); }
.cat-card.cat-house:hover { border-color: #4a5568; background: #edf2f7; box-shadow: 0 12px 28px rgba(74, 85, 104, 0.08); }
.cat-card.cat-more:hover { border-color: var(--green); background: var(--green-light); box-shadow: 0 12px 28px rgba(11, 122, 61, 0.08); }

.btn-all {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 42px;
  font-size: 13.5px;
  font-weight: 600;
  transition: .22s;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(11, 122, 61, 0.15);
}
.btn-all:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 122, 61, 0.25);
  color: #fff;
}
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 111, 62, .3);
}

/* ── HOW IT WORKS ── */
/* ── HOW IT WORKS ── */
.how-sec {
  padding: 85px 0;
  background: #fdfdfd;
}
.step-wrap {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.step-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 122, 61, 0.07);
  border-color: rgba(11, 122, 61, 0.12);
}
.step-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.step-wrap:hover .step-ico {
  transform: scale(1.15) rotate(5deg);
}
.step-ico.sg {
  background: linear-gradient(135deg, #eaf7ef 0%, #c4e9d3 100%);
  color: var(--green);
}
.step-ico.so {
  background: linear-gradient(135deg, #fff4ea 0%, #ffd8b3 100%);
  color: var(--orange);
}
.step-ico.slg {
  background: linear-gradient(135deg, #eaf7ef 0%, #c4e9d3 100%);
  color: var(--green);
}
.step-num {
  position: absolute;
  top: -2px;
  left: -2px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9e4f 100%);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(244, 123, 32, 0.3);
}
.step-dash {
  position: absolute;
  top: 66px;
  left: calc(50% + 46px);
  width: calc(100% - 40px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green), var(--green) 5px, transparent 5px, transparent 10px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.step-h {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step-p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Scooter micro-animation */
.step-wrap:hover .step-ico span {
  display: inline-block;
  animation: stepScooterRide 0.8s ease-in-out infinite alternate;
}
@keyframes stepScooterRide {
  0% { transform: translateX(0); }
  100% { transform: translateX(6px); }
}

/* ── STATS ── */
.stats-sec {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-sec::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  right: -50px;
  top: -50px;
  pointer-events: none;
}
.stat-box {
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.stat-ico {
  font-size: 32px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.stat-box:hover .stat-ico {
  transform: scale(1.18);
}
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-suf {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}
.stat-lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-top: 6px;
}

/* ── APP SECTION ── */
.app-sec {
  padding: 85px 0;
  background: #0b0f19;
  position: relative;
  overflow: hidden;
}
.app-sec::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 122, 61, 0.22) 0%, transparent 70%);
  left: -150px;
  top: -150px;
  pointer-events: none;
}
.app-sec::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.15) 0%, transparent 70%);
  right: -100px;
  bottom: -150px;
  pointer-events: none;
}
.app-sec .sec-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  display: inline-block;
}
.app-h {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
.app-h span {
  background: linear-gradient(135deg, var(--green) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-p {
  font-size: 14.5px;
  color: #a0aec0;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 480px;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  transition: .22s;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}
.app-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11, 122, 61, .35);
  color: #fff !important;
}
.app-btn .lbl-sm {
  font-size: 9px;
  opacity: .75;
  display: block;
  text-align: left;
}
.app-btn .lbl-lg {
  font-size: 13px;
  font-weight: 700;
  display: block;
  text-align: left;
}

/* phones showcase */
.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  padding: 20px 0;
}
.ph-wrap {
  background: #1e2530;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .4s ease, opacity .4s ease;
}
.ph-wrap:hover {
  transform: translateY(-5px) !important;
}
.ph-screen {
  background: #f8f9fa;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
.ph-main {
  width: 190px;
  z-index: 3;
}
.ph-main .ph-screen {
  height: 380px;
}
.ph-side {
  width: 155px;
  opacity: 0.85;
  filter: brightness(0.95);
}
.ph-side .ph-screen {
  height: 320px;
}
.ph-side:first-child {
  transform: rotate(5deg) translateY(25px);
  z-index: 1;
}
.ph-side:last-child {
  transform: rotate(-5deg) translateY(25px);
  z-index: 1;
}
.ph-mb {
  margin-bottom: 0px;
}

/* ── 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;
}

/* Animated Map Mock */
.ph-map-mock {
  position: relative;
  width: 100%;
  height: 40px;
  background: rgba(11, 122, 61, 0.05);
  border-radius: 8px;
  border: 1px dashed rgba(11, 122, 61, 0.2);
  overflow: hidden;
}
.ph-map-line {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green), var(--green) 4px, transparent 4px, transparent 8px);
  transform: translateY(-50%);
}
.ph-map-rider {
  position: absolute;
  top: 50%;
  left: 20%;
  font-size: 16px;
  transform: translateY(-50%);
  animation: mapRiderDrive 3.5s ease-in-out infinite alternate;
}
.ph-map-pin {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 14px;
  transform: translateY(-50%);
}
@keyframes mapRiderDrive {
  0% { left: 10px; }
  100% { left: 70%; }
}

/* User Review Card */
.ph-review-card {
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  width: 100%;
  text-align: left;
}
.ph-review-auth {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ph-review-av {
  font-size: 14px;
  background: #f1f1f1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-review-nm {
  font-size: 8px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--text);
}
.ph-review-stars {
  color: var(--orange);
  font-size: 8px;
  margin-top: 1px;
}
.ph-review-txt {
  font-size: 7.5px;
  color: var(--gray);
  margin: 4px 0 0;
  line-height: 1.3;
  font-style: italic;
}

/* Premium Single App Phone Showcase */
.app-glow-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(11, 122, 61, 0.3) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.app-phone-showcase {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.app-phone-showcase:hover {
  transform: translateY(-8px);
}

/* Floating feature cards around phone */
.app-feat-card {
  position: absolute;
  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: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 5;
  width: 200px;
  pointer-events: none;
  text-align: left;
}
.card-top-left {
  left: -80px;
  top: 40px;
  animation: appCardFloat 5s ease-in-out infinite;
}
.card-mid-right {
  right: -80px;
  top: 190px;
  animation: appCardFloat 5.5s ease-in-out infinite 0.5s;
}
.card-bot-left {
  left: -80px;
  bottom: 40px;
  animation: appCardFloat 6s ease-in-out infinite 1s;
}
.feat-card-ico {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-card-t {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px 0;
}
.feat-card-d {
  font-size: 9.5px;
  color: #a0aec0;
  margin: 0;
}

@keyframes appCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating Badges in Hero */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
}
.fb-left {
  left: -70px;
  top: 100px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.fb-right {
  right: -50px;
  bottom: 120px;
  animation: badgeFloat 4.5s ease-in-out infinite 0.5s;
}
.badge-icon {
  font-size: 20px;
  background: var(--green-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-right .badge-icon {
  background: #fff4ea;
}
.fb-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.fb-desc {
  font-size: 9.5px;
  color: var(--gray);
  margin: 0;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
