body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #ffffff;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.center {
  text-align: center;
}

.section {
  padding: 80px 0;
}

.light {
  background: #f5f7fa;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.franchise-hero {
  background: linear-gradient(135deg,#0d5a87,#186e99);
  color: #fff;
  padding: 100px 0;
}

.hero-sub {
  font-size: 18px;
  margin: 20px 0 30px;
}

.btn-primary {
  background: #ff6b00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  font-weight: 600;
}

.btn-secondary {
  background: #fff;
  color: #186e99;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
  font-weight: 600;
}

.large-btn {
  padding: 18px 36px;
  font-size: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.finance-table {
  width: 100%;
  border-collapse: collapse;
}

.finance-table th,
.finance-table td {
  padding: 15px;
  border: 1px solid #ddd;
}

.finance-table th {
  background: #186e99;
  color: #fff;
}

.trust-section {
  background: #0d5a87;
  color: #fff;
  padding: 80px 0;
}

.trust-highlight {
  font-weight: bold;
  margin-top: 20px;
}

.movement-section {
  padding: 80px 0;
  background: #f5f7fa;
}

.apply-section {
  padding: 80px 0;
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin: 40px 0;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
/* ================= NAVBAR ================= */

.navbar {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* ================= NAV LINKS ================= */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #1e3a8a;
}

/* ================= DROPDOWN (GLOBAL) ================= */

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: none;
  padding: 10px 0;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #374151;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #1e3a8a;
}

/* ================= CTA BUTTON ================= */

.nav-cta {
  background: #1e3a8a;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #0f172a;
}
/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #ffffff;
}

/* Global list styling */
.footer .global-list li {
  font-size: 14px;
  color: #94a3b8;
}

/* Bottom copyright */

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}