/* ==========================================================
   PayBazaar — Global Stylesheet
   Step 1: css/style.css
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --primary:      #0b4f8a;
  --primary-dark: #083968;
  --teal:         #0d9488;
  --teal-light:   #14b8a6;
  --gold:         #f59e0b;
  --gold-light:   #fbbf24;
  --dark:         #0f172a;
  --dark2:        #1e293b;
  --mid:          #475569;
  --light:        #94a3b8;
  --bg:           #f8fafc;
  --bg2:          #f0f7ff;
  --white:        #ffffff;
  --border:       rgba(0,0,0,0.08);

  --font-head: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow:    0 6px 28px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.13);

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15.5px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #f0f4f8; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ── SELECTION ── */
::selection { background: var(--teal); color: white; }

/* ─────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────── */
.section-py    { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto 14px;
  line-height: 1.7;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(120deg, var(--primary) 0%, var(--teal) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline;
}

/* Badge pill */
.badge-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(13,148,136,0.1);
  color: var(--teal);
  margin-bottom: 16px;
  border: 1px solid rgba(13,148,136,0.25);
}

/* Title underline */
.title-line {
  width: 60px; height: 4px;
  background: linear-gradient(to right, var(--primary), var(--teal));
  border-radius: 4px;
  margin: 14px auto 0;
}
.title-line.left { margin: 14px 0 0; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 50px;
  padding: 11px 28px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,79,138,0.35);
}

.btn-teal {
  background: var(--teal);
  color: white !important;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: #0b7a70;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}

.btn-outline-white {
  background: transparent;
  color: white !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary) !important;
  border-color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark) !important;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #d97706;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

/* ─────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────── */
.back-to-top {
  position: fixed; right: 24px; bottom: 28px;
  width: 46px; height: 46px;
  background: var(--primary); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; z-index: 999;
  box-shadow: 0 6px 20px rgba(11,79,138,0.4);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal); transform: translateY(-4px); color: white; }

/* ─────────────────────────────────────────
   PRELOADER
───────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: white; margin-bottom: 32px;
}
.preloader-logo span { color: var(--teal); }

.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
}
.preloader-bar-inner {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--gold));
  border-radius: 10px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { from{width:0%} to{width:100%} }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages breadcrumb)
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0b4f8a 0%, #083968 50%, #0d9488 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.page-hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -200px; right: -100px;
}
.page-hero-shape-2 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: -100px; left: -80px;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 2.2rem);
  font-weight: 800; color: white; margin-bottom: 12px;
}
.page-hero-sub { color: rgba(255,255,255,0.72); font-size: 16px; }
.breadcrumb { background: transparent; padding: 0; margin: 0 0 14px; }
.breadcrumb-item a { color: rgba(255,255,255,0.65); }
.breadcrumb-item a:hover { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────
   NAVBAR  (component — see navbar.html)
───────────────────────────────────────── */
.navbar-main {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1040;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.navbar-main.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2 4px;
}

/* Logo */
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo img { height: 52px; width: auto; }
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 800;
  color: white;
  transition: color var(--transition);
}
.navbar-main.scrolled .navbar-logo-text { color: var(--dark); }

/* Nav links */
.navbar-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.navbar-links a {
  padding: 8px 16px;
  font-size: 14.5px; font-weight: 600;
  color: rgba(255,255,255,0.88);
  border-radius: 50px;
  position: relative;
  transition: var(--transition);
}
.navbar-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 55%; }
.navbar-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.navbar-links a.active { color: white; }

.navbar-main.scrolled .navbar-links a { color: var(--mid); }
.navbar-main.scrolled .navbar-links a:hover { color: var(--primary); background: rgba(11,79,138,0.07); }
.navbar-main.scrolled .navbar-links a.active { color: var(--primary); }
.navbar-main.scrolled .navbar-links a::after { background: var(--primary); }

/* Login button */
.navbar-login {
  background: white;
  color: var(--primary) !important;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}
.navbar-login:hover {
  background: var(--gold);
  color: var(--dark) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.navbar-main.scrolled .navbar-login {
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
}
.navbar-main.scrolled .navbar-login:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white !important;
}

/* Hamburger */
.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px; cursor: pointer;
  padding: 6px; border: none; background: transparent;
}
.nav-toggler span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition);
}
.navbar-main.scrolled .nav-toggler span { background: var(--dark); }
.nav-toggler.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggler.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav-toggler.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
@media (max-width: 991px) {
  .nav-toggler { display: flex; }
  .navbar-nav-wrap {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: 80px 28px 40px;
    flex-direction: column !important;
    transition: right 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 1035;
    overflow-y: auto;
    display: flex !important;
  }
  .navbar-nav-wrap.open { right: 0; }
  .navbar-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px; width: 100%;
  }
  .navbar-links a {
    color: var(--dark) !important;
    width: 100%; padding: 13px 16px;
    font-size: 16px;
  }
  .navbar-links a:hover { background: var(--bg2) !important; color: var(--primary) !important; }
  .navbar-links a::after { display: none; }
  .navbar-links a.active {
    background: var(--bg2) !important;
    color: var(--primary) !important;
  }
  .navbar-login {
    margin-top: 16px; width: 100%;
    justify-content: center;
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
  }
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1030;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* ─────────────────────────────────────────
   FOOTER  (component — see footer.html)
───────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); font-size: 14px; }

/* Top contact bar */
.footer-topbar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}
.footer-topbar-inner {
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.footer-contact-item { display: flex; align-items: center; gap: 12px; }
.footer-contact-item i { color: var(--gold); font-size: 18px; }
.footer-contact-item .fc-label {
  font-size: 11px; color: rgba(255,255,255,0.4);
  display: block; text-transform: uppercase; letter-spacing: 1px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 14px;
  display: block;
}
.footer-contact-item a:hover { color: var(--gold); }

/* Main grid */
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-brand-logo {
  height: 40px; width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand-text {
  font-size: 1.4rem; font-weight: 800;
  color: white; margin-bottom: 14px;
  font-family: var(--font-head);
  display: block;
}
.footer-brand-text span { color: var(--teal); }
.footer-brand-desc { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 22px; }

/* Social icons */
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--teal); color: white; transform: translateY(-3px); border-color: transparent; }

/* Headings */
.footer-heading {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: white; margin-bottom: 20px;
}

/* Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45); font-size: 13.5px;
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--teal); font-size: 16px; font-weight: 700; }
.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }

/* Address */
.footer-address .addr-block { margin-bottom: 18px; }
.footer-address .addr-type {
  color: var(--gold); font-size: 11px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; display: block; margin-bottom: 5px;
}
.footer-address p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }
.footer-address strong { color: rgba(255,255,255,0.75); }

/* App store button */
.app-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white; transition: var(--transition);
  margin-top: 4px;
}
.app-store-btn:hover { background: rgba(255,255,255,0.13); color: white; transform: translateY(-2px); }
.app-store-btn i { font-size: 22px; color: rgba(255,255,255,0.7); }
.app-store-btn .as-label { font-size: 10px; display: block; color: rgba(255,255,255,0.45); }
.app-store-btn .as-name  { font-size: 14px; font-weight: 700; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.footer-bottom-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 12px; color: rgba(255,255,255,0.3);
  padding: 2px 10px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.footer-bottom-links a:last-child { border-right: none; }
.footer-bottom-links a:hover { color: var(--teal); }

/* Footer responsive */
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
 
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-topbar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ─────────────────────────────────────────
   HERO SECTION  (index.html only)
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0b4f8a 0%, #083968 40%, #062a50 70%, #0d2e4a 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.06; pointer-events: none;
  animation: floatShape 8s ease-in-out infinite;
}
.hbs-1 { width:600px;height:600px;background:var(--teal);top:-200px;right:-150px; animation-delay:0s; }
.hbs-2 { width:400px;height:400px;background:var(--gold);bottom:-100px;left:-100px; animation-delay:-3s; }
.hbs-3 { width:250px;height:250px;background:white;top:35%;left:38%; animation-delay:-5s; }
@keyframes floatShape {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100%{ transform:scale(1);opacity:1 }
  50%    { transform:scale(1.5);opacity:0.6 }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: white;
  line-height: 1.1; margin-bottom: 20px;
}
.hero-title .typed-line {
  display: block; color: var(--teal-light);
  min-height: 1.2em;
}

.hero-desc {
  font-size: 16.5px; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 36px; line-height: 1.8;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.8rem;
  font-weight: 800; color: white; display: block; line-height: 1;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* Hero image card */
.hero-img-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 32px; position: relative;
}
.hero-img-card img { width: 100%; max-width: 340px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }

/* Floating badges */
.hero-float-badge {
  position: absolute;
  background: white; border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--dark);
  animation: floatBadge 4s ease-in-out infinite;
}
.hfb-1 { top: -20px; left: -30px; animation-delay:0s; }
.hfb-2 { bottom: 20px; right: -20px; animation-delay:-2s; }
.hfb-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hfb-green { background:rgba(13,148,136,0.12); color:var(--teal); }
.hfb-blue  { background:rgba(11,79,138,0.12);  color:var(--primary); }
.hfb-sub   { font-size: 11px; color: var(--mid); }
@keyframes floatBadge {
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-10px); }
}

/* ─────────────────────────────────────────
   MARQUEE TICKER
───────────────────────────────────────── */
.marquee-section {
  background: var(--dark2);
  padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 13px;
  font-weight: 600; letter-spacing: 0.5px; white-space: nowrap;
}
.marquee-item i { color: var(--gold); font-size: 12px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
  transition: var(--transition);
  border: 1.5px solid var(--border); height: 100%;
}
.service-card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(to right, var(--primary), var(--teal));
  transform: scaleX(0); transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 30px; color: var(--primary);
  transition: var(--transition); border: 2px solid rgba(11,79,138,0.1);
}
.service-card:hover .service-icon-wrap {
  background: var(--primary); color: white;
  transform: rotate(-5deg) scale(1.05); border-color: transparent;
}
.service-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card-desc { font-size: 13.5px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.service-card-link {
  color: var(--teal); font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card-link:hover { gap: 10px; color: var(--primary); }

/* ─────────────────────────────────────────
   STATS SECTION
───────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0a3060 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.stat-card { text-align: center; padding: 44px 20px; position: relative; z-index: 1; }
.stat-card::after {
  content: ''; position: absolute; right:0; top:20%; height:60%;
  width:1px; background: rgba(255,255,255,0.1);
}
.stat-card:last-child::after { display: none; }
.stat-icon { font-size: 28px; color: rgba(255,255,255,0.15); margin-bottom: 12px; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem,4vw,3rem); font-weight: 800;
  color: var(--gold-light); display: block; line-height:1; margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

@media(max-width:767px){
  .stat-card::after{display:none}
  .stat-card{border-bottom:1px solid rgba(255,255,255,0.07); padding:32px 20px;}
  .stat-card:last-child{border-bottom:none}
}

/* ─────────────────────────────────────────
   WHY CHOOSE US / ACCORDION
───────────────────────────────────────── */
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: white;
  border-radius: var(--radius); padding: 18px 24px;
  box-shadow: var(--shadow-lg); text-align: center; min-width: 140px;
}
.why-badge .wb-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.why-badge .wb-label { font-size: 11px; opacity: 0.75; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px; overflow: hidden;
}
.accordion-button {
  font-family: var(--font-body); font-weight: 700;
  font-size: 15px; color: var(--dark);
  background: white; padding: 16px 20px;
  border-radius: var(--radius) !important;
  display: flex; align-items: center; gap: 12px;
}
.accordion-button:not(.collapsed) { background: var(--bg2); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg2); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal); font-size: 14px; flex-shrink: 0;
}
.accordion-body { font-size: 14px; color: var(--mid); padding: 12px 20px 18px; line-height: 1.7; }

/* ─────────────────────────────────────────
   FEATURE / BENEFITS CARDS
───────────────────────────────────────── */
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; height: 100%; position: relative;
  overflow: hidden; transition: var(--transition);
  border: 1.5px solid var(--border);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(11,79,138,0.15); }
.feature-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-head); font-size: 4.5rem;
  font-weight: 800; color: rgba(11,79,138,0.04); line-height: 1;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.fi-blue   { background:rgba(11,79,138,0.1);  color:var(--primary); }
.fi-teal   { background:rgba(13,148,136,0.1); color:var(--teal); }
.fi-gold   { background:rgba(245,158,11,0.1); color:var(--gold); }
.fi-purple { background:rgba(124,58,237,0.1); color:#7c3aed; }
.fi-red    { background:rgba(225,29,72,0.1);  color:#e11d48; }
.fi-green  { background:rgba(22,163,74,0.1);  color:#16a34a; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { font-size: 13.5px; color: var(--mid); line-height: 1.7; }

/* ─────────────────────────────────────────
   QUOTE BAND
───────────────────────────────────────── */
.quote-band {
  background: linear-gradient(270deg, var(--gold) 0%, var(--primary) 40%, var(--teal) 80%, var(--gold) 100%);
  background-size: 400% 400%;
  animation: gradShift 12s ease infinite;
  padding: 64px 0; text-align: center;
}
@keyframes gradShift {
  0%  {background-position:0% 50%}
  50% {background-position:100% 50%}
  100%{background-position:0% 50%}
}
.quote-band blockquote {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.1rem,2.5vw,1.5rem); font-weight: 700;
  color: white; max-width: 820px; margin: 0 auto; line-height: 1.65;
}
.quote-band blockquote::before { content:'\201C'; font-size:3.5rem; line-height:0; vertical-align:-0.6em; opacity:0.4; margin-right:4px; }
.quote-band blockquote::after  { content:'\201D'; font-size:3.5rem; line-height:0; vertical-align:-0.6em; opacity:0.4; margin-left:4px; }

/* ─────────────────────────────────────────
   BLOG CARDS
───────────────────────────────────────── */
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid var(--border);
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-card-img {
  overflow: hidden; height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-card-img .bci-icon { font-size: 4rem; color: rgba(255,255,255,0.2); }
.blog-card-img img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-tag {
  position: absolute; top:16px; left:16px;
  background: var(--gold); color: var(--dark);
  font-size:11px; font-weight:800; text-transform:uppercase;
  letter-spacing:1px; padding:4px 12px; border-radius:50px;
}

.blog-card-body { padding: 24px; flex:1; display:flex; flex-direction:column; }
.blog-card-date { font-size:12px; color:var(--light); margin-bottom:10px; display:flex; align-items:center; gap:6px; }
.blog-card-title { font-size:17px; font-weight:700; color:var(--dark); margin-bottom:10px; line-height:1.4; transition:color var(--transition); }
.blog-card:hover .blog-card-title { color: var(--teal); }
.blog-card-excerpt { font-size:13.5px; color:var(--mid); line-height:1.7; flex:1; margin-bottom:16px; }
.blog-card-link { color:var(--primary); font-size:13px; font-weight:700; display:inline-flex; align-items:center; gap:6px; }
.blog-card-link:hover { color:var(--teal); gap:10px; }

/* ─────────────────────────────────────────
   TESTIMONIALS (Swiper)
───────────────────────────────────────── */
.testi-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1.5px solid var(--border);
  height: 100%; transition: var(--transition); position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(11,79,138,0.1); }
.testi-card::before {
  content: '\201C';
  position: absolute; top:16px; right:20px;
  font-size:4rem; line-height:1;
  color: rgba(13,148,136,0.1); font-family: Georgia, serif;
}
.testi-stars { color: var(--gold); font-size:15px; margin-bottom:14px; letter-spacing:2px; }
.testi-text  { font-size:14.5px; color:var(--mid); line-height:1.75; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-author img { width:46px;height:46px;border-radius:50%;object-fit:cover;border:2px solid var(--bg2); }
.testi-name { font-weight:700; font-size:14px; color:var(--dark); }
.testi-shop { font-size:12px; color:var(--light); }

/* Swiper pagination dots */
.swiper-pagination-bullet { background: var(--mid) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { background: var(--primary) !important; opacity: 1; }

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section { background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(11,79,138,0.25) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index:1; text-align:center; padding: 90px 0; }
.cta-title { font-size:clamp(1.8rem,4vw,3rem); font-weight:800; color:white; margin-bottom:16px; }
.cta-desc  { font-size:16px; color:rgba(255,255,255,0.6); max-width:500px; margin:0 auto 36px; line-height:1.7; }
.cta-btns  { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* ─────────────────────────────────────────
   LEGAL PAGES  (Privacy, Terms etc.)
───────────────────────────────────────── */
.legal-body {
  max-width: 860px; margin: 0 auto;
  padding: 60px 0 80px;
}
.legal-body h2 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--primary); margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--teal);
}
.legal-body h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }
.legal-body p  { color: var(--mid); line-height: 1.85; margin-bottom: 14px; font-size: 15px; }
.legal-body ul { color: var(--mid); line-height: 1.85; padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { margin-bottom: 6px; font-size: 15px; }
.legal-body a  { color: var(--teal); }
.legal-body a:hover { color: var(--primary); }
.legal-updated {
  display: inline-block;
  background: var(--bg2); color: var(--mid);
  font-size: 13px; padding: 6px 16px; border-radius: 50px;
  border: 1px solid var(--border); margin-bottom: 32px;
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-info-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; height: 100%; transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.contact-info-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 18px;
}
.contact-info-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.contact-info-text  { font-size: 13.5px; color: var(--mid); line-height: 1.7; }
.contact-info-text a { color: var(--teal); }
.contact-info-text a:hover { color: var(--primary); }

.contact-form-wrap {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow);
}
.form-label { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 7px; }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 16px; font-size: 14.5px;
  font-family: var(--font-body); color: var(--dark);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--light); }

/* ─────────────────────────────────────────
   BLOG LISTING PAGE
───────────────────────────────────────── */
.blog-sidebar-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.blog-sidebar-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--bg); }
.blog-cat-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; font-size: 14px; color: var(--mid);
  border-bottom: 1px dashed var(--border);
  transition: color var(--transition);
}
.blog-cat-link:last-child { border-bottom: none; }
.blog-cat-link:hover { color: var(--teal); }
.blog-cat-badge { background: var(--bg2); color: var(--primary); font-size:12px; font-weight:700; padding:2px 10px; border-radius:50px; }

/* ─────────────────────────────────────────
   AOS & PARTNERS
───────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

.partner-logo-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  display: flex; align-items: center; justify-content: center;
  height: 88px; transition: var(--transition);
  filter: grayscale(35%) opacity(0.7);
}
.partner-logo-box:hover {
  filter: grayscale(0%) opacity(1);
  box-shadow: var(--shadow); transform: translateY(-3px); background: white;
}
.partner-logo-box img { max-height: 44px; width: auto; object-fit: contain; }

/* ─────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────── */
.faq-group-title {
  font-size: 1.2rem; font-weight: 700; color: var(--primary);
  margin: 40px 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--bg);
}

/* ─────────────────────────────────────────
   RESPONSIVE HELPERS
───────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-content { padding: 110px 0 60px; }
  .hero-img-card { margin-top: 40px; }
  .hfb-1 { top: -10px; left: 0; }
  .hfb-2 { bottom: 10px; right: 0; }
  .why-badge { right: 0; bottom: -16px; }
}
@media (max-width: 767px) {
  .section-py    { padding: 64px 0; }
  .section-py-sm { padding: 44px 0; }
  .hero-stats { gap: 20px; }
  .cta-inner  { padding: 64px 0; }
  .contact-form-wrap { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns  .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   NAVBAR — InstantPay Style (White Card)
   ============================================================ */

/* Outer wrapper — transparent to solid on scroll */
.navbar-main {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1040;
  padding: 16px 0;
  transition: all 0.4s ease;
  /* dark bg (for pages with dark hero) */
  background: transparent;
}
.navbar-main.scrolled {
  padding: 10px 0;
  background: rgba(10, 20, 50, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* White pill card */
.navbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 10px 8px 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.navbar-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}

/* ── LOGO ── */
.navbar-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.navbar-logo img { height: 48px; width: auto; }
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}
.navbar-logo-text span { color: var(--teal); }

/* ── NAV LINKS (center) ── */
.navbar-links {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
  gap: 2px; flex: 1; justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px;
  font-size: 14.5px; font-weight: 600;
  color: #1e293b !important;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  background: #f1f5f9;
  color: var(--primary) !important;
}
.nav-link.active { color: var(--primary) !important; }

/* Dropdown arrow */
.nav-arrow {
  font-size: 10px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}
.nav-item.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* ── DROPDOWN PANEL ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%);
  min-width: 280px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.13);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
  pointer-events: none;
}
/* Tiny triangle pointer */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: white;
  border-left: 1px solid rgba(0,0,0,0.07);
  border-top: 1px solid rgba(0,0,0,0.07);
  rotate: 45deg;
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-inner { display: flex; flex-direction: column; gap: 2px; }

/* Dropdown item */
.dropdown-item {
  display: flex !important; align-items: center; gap: 12px;
  padding: 10px 12px !important;
  border-radius: 12px;
  transition: background 0.2s ease;
  text-decoration: none;
  color: var(--dark) !important;
  font-size: 14px;
}
.dropdown-item:hover {
  background: #f8fafc !important;
  color: var(--primary) !important;
}
.dropdown-item:hover .dd-title { color: var(--primary); }

/* Dropdown icon */
.dd-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.dd-text { display: flex; flex-direction: column; gap: 1px; }
.dd-title { font-size: 14px; font-weight: 700; color: var(--dark); transition: color 0.2s; }
.dd-sub   { font-size: 11.5px; color: var(--light); }

/* ── RIGHT ACTIONS ── */
.navbar-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}

/* Login button — outline style */
.btn-login {
  padding: 9px 22px;
  font-size: 14px; font-weight: 700;
  color: var(--dark) !important;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-login:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(11,79,138,0.05);
}

/* Get Started button — solid blue */
.btn-getstarted {
  padding: 10px 22px;
  font-size: 14px; font-weight: 700;
  color: white !important;
  background: var(--primary);
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(11,79,138,0.3);
}
.btn-getstarted:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}

/* ── HAMBURGER (mobile) ── */
.nav-toggler {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  border: none; background: transparent;
  margin-left: 4px;
}
.nav-toggler span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggler.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggler.open span:nth-child(2) { opacity: 0; }
.nav-toggler.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE DRAWER ── */
@media (max-width: 991px) {
  .navbar-main { padding: 12px 0; }

  .nav-toggler { display: flex; }

  /* .navbar-actions { display:none; } */

  /* Slide-in drawer */
  .navbar-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 84vw);
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 20px 40px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.14);
    transition: right 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 1035;
    overflow-y: auto;
  }
  .navbar-links.open { right: 0; }

  .nav-item { width: 100%; }

  .nav-link {
    width: 100%; padding: 13px 16px;
    border-radius: 12px; font-size: 15px;
    justify-content: space-between;
  }

  /* Mobile dropdown — show as accordion */
  .has-dropdown .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    box-shadow: none; border: none;
    padding: 4px 0 4px 12px;
    pointer-events: auto;
    display: none;
    border-left: 2px solid #e2e8f0;
    margin: 4px 0 4px 16px;
    border-radius: 0;
    background: transparent;
  }
  .has-dropdown .nav-dropdown::before { display: none; }
  .has-dropdown.mobile-open .nav-dropdown { display: block; }
  .has-dropdown.mobile-open .nav-arrow { transform: rotate(180deg); color: var(--primary); }

  .dropdown-item { padding: 8px 10px !important; border-radius: 10px; }
  .dd-icon { width: 30px; height: 30px; font-size: 13px; }

  /* Mobile CTA buttons inside drawer */
  .mobile-drawer-btns {
    display: flex; flex-direction: column; gap: 10px;
    width: 100%; padding-top: 16px;
    border-top: 1px solid #f1f5f9; margin-top: 8px;
  }
  .mobile-drawer-btns .btn-login,
  .mobile-drawer-btns .btn-getstarted {
    display: block; text-align: center; width: 100%;
    padding: 13px;
  }
  .mobile-drawer-btns .btn-getstarted { background: var(--primary); color: white !important; }
}

/* Keep navbar card full-width on small screens */
@media (max-width: 480px) {
  .navbar-card { border-radius: 16px; padding: 8px 10px 8px 14px; }
}




