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

:root {
	/* Sharper, lighter palette */
	--pf-primary: #0E4A78;
	/* brighter navy */
	--pf-accent: #00D6A0;
	/* brighter teal */
	--pf-gold: #FFD166;
	/* warm yellow accent */
	--pf-muted: #6C757D;
	--pf-bg: #F6FBFF;
	/* very light blue */
	--max-width: 1200px;
}

.btn-secondary {
	background-color: var(--pf-accent);
}

.container-max {
	max-width: var(--max-width);
}

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;Arial;
	background: var(--pf-bg);
	color: #0f1724;
}

h1, h2, h3, h4, h5, li, button, cite, .fw-bold {
  font-family: 'Manrope', sans-serif;
}


img {
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}

.navbar {
	background: #ffffff;
  transition: color 0.3s ease;
}

.navbar .navbar-brand .brand {
	font-weight: 800;
	color: var(--pf-primary);
	letter-spacing: -0.4px;
	width: 150px;
}

.navbar .navbar-brand .logo-box {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 800;
	background: linear-gradient(135deg, var(--pf-accent), var(--pf-primary));
}

/* Make dropdown toggles show pointer and widen hit area */
.navbar .nav-link.dropdown-toggle {
	cursor: pointer;
	padding-right: .5rem;
}

/* Accent the active or hovered top-level link */
.navbar .nav-link.active,
.navbar .nav-link:hover {
	color: var(--pf-accent);
	font-weight: 700;
}

/* visual accent for dropdown toggles on hover for better affordance */
.navbar .nav-link.dropdown-toggle:hover {
	color: var(--pf-accent);
	transition: color 160ms ease;
	font-weight: 700;
}

/* ensure dropdowns are above other content (when using reveal animations) */
/* --- Dropdown transitions & hover behavior polish --- */

/* baseline: hide menu with opacity/translate; show via .show class */
.navbar .position-static .dropdown-menu {
	opacity: 0;
	transform: translateY(8px) scale(0.995);
	transform-origin: top center;
	transition: transform 240ms cubic-bezier(.22, .9, .37, 1), opacity 220ms ease;
	pointer-events: none;
	display: block;
	/* keep flow; visibility controlled with opacity/pointer-events */
	will-change: transform, opacity;
  left: 50%;
  top: calc(100% + 8px);
  /*
  transition: color 0.3s ease;
  transform: translateX(-50%) translateY(8px) scale(0.995);
  */
}

/* when Bootstrap adds .show to dropdown parent/menu, make visible */
.navbar .dropdown.show>.dropdown-menu,
.dropdown-menu.show {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* small tweak so dropdown buttons match CTA style inside menu */
.navbar .position-static .dropdown-menu .cta-primary {
	padding: 0.4rem 0.8rem;
	font-weight: 700;
  color: #fff;
}

/* megamenu specific */
.navbar .dropdown .mega-menu {
	min-width: 680px;
	max-width: 960px;
	box-shadow: 0 18px 50px rgba(14, 74, 120, 0.12);
	background: linear-gradient(180deg, #ffffff, #fbfdff);
	border: none;
}

/* image inside mega menu */
.navbar .dropdown .mega-menu .mega-image {
	max-height: 160px;
	object-fit: cover;
	width: 100%;
	display: block;
	margin: 0 auto;
	box-shadow: 0 10px 28px rgba(10, 61, 98, 0.06);
}

/* refine dropdown items look */
.navbar .dropdown .dropdown-menu .dropdown-item {
	padding: 8px 10px;
	border-radius: 0px;
	color: #0f1724;
}

.navbar .dropdown .mega-menu .dropdown-item {
	padding: 8px 0px;
}

.navbar .dropdown .dropdown-menu .dropdown-item:hover,
.navbar .dropdown .dropdown-menu .dropdown-item:focus {
	background: rgba(14, 74, 120, 0.06);
	color: var(--pf-primary);
}

.navbar .dropdown .mega-menu .dropdown-item:hover {
	background-color: transparent;
}


/* HERO */
.hero {
	padding: 84px 0;
	/* background: linear-gradient(180deg, rgba(14, 74, 120, 0.02), rgba(0, 214, 160, 0.02)); */
	background-color: var(--pf-primary);
}

.hero-left {
	padding-right: 2rem;
	color: #fff;
}

.hero-img {
	border-radius: 14px;
	box-shadow: 0 14px 40px rgba(14, 74, 120, 0.08);
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* FEATURES */
.feature-card {
	border-radius: 12px;
	background: white;
	padding: 22px;
	box-shadow: 0 6px 20px rgba(14, 74, 120, 0.04);
	height: 100%;
}

.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(14, 74, 120, 0.06);
}

.feature-title {
	margin-top: 10px;
	font-weight: 700;
}

/* COUNTERS */
.counter-card {
	background: white;
	padding: 26px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(14, 74, 120, 0.06);
}

/* FLAGS */
.flag-pill {
	font-size: 18px;
	background: rgba(14, 74, 120, 0.04);
	padding: 8px 12px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* CTA */
.cta-primary {
	background: linear-gradient(90deg, var(--pf-primary), var(--pf-primary));
	color: #fff !important;
	border-radius: 10px;
	font-weight: 700;
}

.cta-primary:hover {
	background: linear-gradient(90deg, var(--pf-accent), var(--pf-accent));
	color: #fff !important;
}

.cta-secondary {
	border-radius: 10px;
}

.btn-outline-primary {
	border-color: var(--pf-primary);
	color: var(--pf-primary);
	background: rgba(255, 255, 255, 0.06);
}

.btn-outline-primary:hover {
	background-color: var(--pf-primary);
	color: #fff;
  border: none;
}

.partner-logo {
	max-height: 44px;
	filter: grayscale(0%);
	opacity: 1;
}

/* Testimonials */
.testimonial {
	background: white;
	padding: 22px;
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(14, 74, 120, 0.06);
}

.testimonial cite {
	display: block;
	margin-top: 12px;
	color: var(--pf-primary);
	font-weight: 700;
	font-style: normal;
}

/* Animations */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: all 700ms cubic-bezier(.22, .9, .37, 1);
}

.reveal.inview {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: 120ms;
}

.reveal-delay-2 {
	transition-delay: 240ms;
}

.reveal-delay-3 {
	transition-delay: 360ms;
}

.icon-sm {
	width: 28px;
	height: 28px;
}

.icon-md {
	width: 40px;
	height: 40px;
}

/* CTA panel with background image and frosted content */
.cta-panel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 42px 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 220px;

	/* background image (Nigeria-focused Unsplash) + subtle color fallback */
	background-color: #0e4a78;
	/* fallback */
	background-image:
		linear-gradient(180deg, rgba(4, 15, 25, 0.48), rgba(4, 15, 25, 0.48)),
		url("https://images.unsplash.com/photo-1542223616-1a29a1a7a0b6?auto=format&fit=crop&w=1600&q=80&fm=webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(14, 74, 120, 0.12);
}

/* inner content sits above overlay */
.cta-content {
	position: relative;
	z-index: 2;
	max-width: 820px;
}

/* light frosted panel behind buttons for contrast on small screens */
.cta-panel .lead {
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 1rem;
	font-weight: 500;
}

/* accent stripe — thin decorative bar on the left (desktop) */
.cta-accent {
	position: absolute;
	left: -22px;
	top: 0;
	bottom: 0;
	width: 220px;
	background: linear-gradient(180deg, rgba(0, 214, 160, 0.95), rgba(255, 209, 102, 0.9));
	transform: skewX(-12deg);
	filter: blur(0.2px);
	opacity: 0.95;
	z-index: 1;
	pointer-events: none;
}

/* button contrast tweaks so primary stands out on the dark background */
.cta-panel .cta-primary {
	box-shadow: 0 8px 20px rgba(10, 61, 98, 0.18);
}

.cta-panel .btn-outline-secondary {
	border-color: var(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.06);
}

/* Footer styles (paste into your existing <style>) */
.footer-wrap {
	background: #07122a;
	/* deep blue */
	color: #cde7f8;
	padding: 56px 0;
	font-size: 15px;
	line-height: 1.5;
}

.footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.footer-logo {}

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

.footer-legal {
	color: rgba(234, 246, 255, 0.95);
	margin-top: 6px;
	font-size: 14px;
	max-width: 420px;
}

.footer-nav h6,
.footer-resources h6,
.footer-contact h6 {
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	margin: 8px 0;
}

.footer-list a {
	color: #eaf6ff;
	text-decoration: none;
}

.footer-contact .support {
	color: rgba(234, 246, 255, 0.95);
	font-size: 15px;
	margin-bottom: 10px;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: white;
	text-decoration: none;
}

/* lower bar */
.footer-lower {
	background: #07122a;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 18px 0;
	margin-top: 22px;
}

.footer-lower-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	color: rgba(234, 246, 255, 0.9);
}

.footer-utility {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.footer-utility a {
	color: rgba(234, 246, 255, 0.9);
	text-decoration: none;
	font-size: 14px;
}

.compliance-badges {
	display: flex;
	gap: 10px;
	align-items: center;
}

.compliance-badges img {
	height: 34px;
	display: inline-block;
}

/* copyright */
.copyright {
	font-size: 13px;
	color: rgba(234, 246, 255, 0.75);
}
