/* ============================================================
   SHARED BASE — used by both index-v1.html and index-v2.html
   ============================================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
body {
	font-family: 'Poppins', sans-serif;
	background: #f4f5f7;
	color: #1f2a44
}
/* ── TOPBAR ── */
.topbar {
	background: #1c2d5a;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px 20px;
	font-size: 12px;
	flex-wrap: wrap;
	gap: 6px
}
.topbar-left a {
	color: rgba(255,255,255,.55);
	text-decoration: none;
	margin-right: 14px
}
.topbar-left a:hover {
	color: #fff
}
.topbar-social {
	display: flex;
	gap: 6px;
	align-items: center
}
.topbar-social img {
	width: 16px;
	height: 16px;
	opacity: .7;
	transition: .2s
}
.topbar-social img:hover {
	opacity: 1;
	transform: scale(1.1)
}
/* 1600x900*/
.v2-hero {
	background: linear-gradient(rgba(10, 24, 70, 0.75), rgba(10, 24, 70, 0.85)),  url('https://i.ibb.co/HLf9YVxF/image.png') center center / cover no-repeat !important;
}
.v2-hero-btns {
	flex-wrap: nowrap !important;
	gap: 10px !important;
}
.v2-hero-btns .v2-cta-btn {
	font-size: clamp(11px, 1.1vw, 14px) !important;
	padding: 14px clamp(10px, 1.6vw, 22px) !important;
	white-space: nowrap !important;
}
/* ── HEADER ── */
.header {
	background: #243c84;
	padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 300;
	box-shadow: 0 3px 12px rgba(0,0,0,.25)
}
.logo img {
	height: 52px;
	object-fit: contain
}
.right {
	display: flex;
	align-items: center;
	gap: 16px
}
.phone {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap
}
.donate-btn {
	background: linear-gradient(45deg, #7a1c2e, #c02d3f);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: .25s;
	white-space: nowrap
}
.donate-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(192,45,63,.4)
}
.hamburger {
	display: none;
	font-size: 22px;
	color: #fff;
	cursor: pointer;
	background: none;
	border: none;
	font-family: inherit
}
/* ── DESKTOP NAV ── */
.desktop-nav {
	display: flex;
	align-items: center
}
.nav-list {
	display: flex;
	list-style: none;
	gap: 4px;
	align-items: center
}
.nav-list>li {
	position: relative
}
.nav-list>li>a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 10px;
	border-radius: 4px;
	display: block;
	transition: .2s;
	white-space: nowrap
}
.nav-list>li>a:hover {
	background: rgba(255,255,255,.15)
}



/* ── DROPDOWN (desktop) ── */
.has-dd {
	position: relative
}
.dd-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 28px rgba(0,0,0,.18);
	min-width: 200px;
	z-index: 500;
	padding: 6px 0;
	border: 1px solid rgba(0,0,0,.08)
}
.dd-menu::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 18px;
	width: 12px;
	height: 12px;
	background: #fff;
	transform: rotate(45deg);
	border-top: 1px solid rgba(0,0,0,.08);
	border-left: 1px solid rgba(0,0,0,.08)
}
.dd-menu a {
	display: block;
	padding: 10px 18px;
	color: #1f2a44;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: background .15s
}
.dd-menu a:hover {
	background: #f0f3fb;
	color: #243c84
}
.dd-menu a.dd-family {
	color: #18B1C5;
	font-weight: 600
}
.dd-menu a.dd-family:hover {
	background: #e6f8fb
}
/* ── DROPDOWN HOVER FIX ──
   A transparent pseudo-element bridges the gap between the trigger
   and the menu so the mouse never "leaves" .has-dd while crossing it. */
.has-dd::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 12px; /* must be >= the gap set by top:calc(100% + 8px) on .dd-menu */
	background: transparent;
}
/* Show on hover */
.has-dd:hover .dd-menu {
	display: block
}
/* Keep open while hovering the menu itself */
.dd-menu:hover {
	display: block
}


/* ── MOBILE MENU ── */
.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(28,45,90,.97);
	z-index: 999;
	transition: .3s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	overflow-y: auto
}
.mobile-menu.active {
	left: 0
}
.mobile-header {
	display: flex;
	justify-content: flex-end
}
.mobile-header span {
	font-size: 26px;
	color: #fff;
	cursor: pointer
}
.mobile-nav-list {
	list-style: none;
	text-align: center;
	margin-top: 20px
}
.mobile-nav-list>li {
	margin: 8px 0
}
.mobile-nav-list>li>a {
	color: #fff;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	padding: 8px 18px;
	border-radius: 6px;
	display: inline-block;
	transition: .2s
}
.mobile-nav-list>li>a:hover {
	background: rgba(255,255,255,.15)
}


.mob-dd-btn {
	background: none;
	border: none;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 500;
	cursor: pointer;
	padding: 8px 18px;
	border-radius: 6px;
	transition: .2s;
	width: 100%
}
.mob-dd-btn:hover {
	background: rgba(255,255,255,.15)
}
.mob-dd-list {
	display: none;
	background: rgba(255,255,255,.1);
	border-radius: 8px;
	margin: 4px 20px 8px;
	padding: 6px 0
}
.mob-dd-list.open {
	display: block
}
.mob-dd-list a {
	display: block;
	color: rgba(255,255,255,.85);
	text-decoration: none;
	font-size: 14px;
	padding: 9px 18px;
	transition: .2s;
	border-radius: 4px
}
.mob-dd-list a:hover {
	background: rgba(255,255,255,.12);
	color: #fff
}
.mob-dd-list a.dd-family {
	color: #18B1C5
}


.mobile-bottom {
	text-align: center;
	padding-bottom: 20px;
	padding-top: 16px
}
.mobile-phone {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 14px
}
.mob-social {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
	list-style: none
}
.mob-social img {
	width: 20px;
	opacity: .8;
	transition: .2s
}
.mob-social img:hover {
	opacity: 1;
	transform: scale(1.1)
}
/* ── CONTAINER ── */
.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px
}
/* ── SECTION LABELS / HEADINGS ── */
.section-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #c02d3f;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px
}
.section-label::after {
	content: '';
	width: 28px;
	height: 2px;
	background: #c02d3f;
	opacity: .5;
	border-radius: 1px
}
.section-h {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 800;
	color: #1f2a44;
	line-height: 1.1;
	margin-bottom: 10px
}
.section-h em {
	font-style: normal;
	color: #c02d3f
}
.section-p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	max-width: 440px
}
/* ── PROGRAM CARDS ── */
.cards-wrap {
	background: #f4f5f7;
	padding: 40px 20px
}
.cards.four-col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}
.card {
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 5px 12px rgba(0,0,0,.08);
	transition: .3s
}
.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0,0,0,.15)
}
.card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 12px
}
.card h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px
}
.card h4 .blue {
	color: #243c84
}
.card h4 .red {
	color: #c02d3f
}
.card h4 .family-teal {
	color: #18B1C5
}
.card p {
	font-size: 13px;
	color: #555;
	margin-bottom: 12px
}
.btn {
	padding: 9px 18px;
	border: none;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	transition: .25s
}
.btn.red-btn {
	background: linear-gradient(45deg, #7a1c2e, #c02d3f)
}
.btn.blue-btn {
	background: #243c84
}
.btn.btn-family {
	background: linear-gradient(135deg, #18B1C5, #0e8fa3)
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,.18)
}
.family-teal {
	color: #18B1C5
}
/* ── DIGNITY STRIP ── */
.dignity-strip {
	background: #243c84;
	padding: 52px 20px
}
.dignity-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1140px;
	margin: 0 auto
}
.dignity-item {
	text-align: center;
	padding: 0 10px
}
.dignity-icon {
	font-size: 38px;
	margin-bottom: 14px
}
.dignity-item h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px
}
.dignity-item p {
	font-size: 13px;
	color: rgba(255,255,255,.72);
	line-height: 1.65
}
/* ── HOW IT WORKS / SPLIT ── */
.split-section {
	background: #fff;
	padding: 72px 20px
}
.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
	max-width: 1140px;
	margin: 0 auto
}
.steps {
	display: flex;
	flex-direction: column;
	margin-top: 32px
}
.step {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid #e8eaf0
}
.step:last-child {
	border-bottom: none
}
.step-n {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #243c84;
	background: #eef0f8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	color: #243c84;
	flex-shrink: 0
}
.step-b strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #1f2a44;
	margin-bottom: 3px
}
.step-b p {
	font-size: 13px;
	color: #666;
	line-height: 1.6
}
/* ── SPLIT CARD ── */
.split-card {
	background: #1f2a44;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,.18)
}
.split-head {
	padding: 22px 26px;
	background: #1c2d5a;
	border-bottom: 1px solid rgba(255,255,255,.08);
	display: flex;
	justify-content: space-between;
	align-items: center
}
.split-head h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff
}
.split-total {
	background: linear-gradient(45deg, #7a1c2e, #c02d3f);
	color: #fff;
	padding: 5px 16px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 800
}
.split-rows {
	padding: 4px 0
}
.split-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 26px;
	border-bottom: 1px solid rgba(255,255,255,.06)
}
.split-row:last-child {
	border-bottom: none
}
.split-thumb {
	width: 44px;
	height: 44px;
	border-radius: 9px;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid rgba(255,255,255,.1)
}
.split-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.85)
}
.split-info {
	flex: 1
}
.split-info strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 2px
}
.split-info span {
	font-size: 11px;
	color: rgba(255,255,255,.38)
}
.split-bar {
	height: 3px;
	background: rgba(255,255,255,.08);
	border-radius: 2px;
	margin-top: 5px
}
.split-bar-fill {
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, #243c84, #c02d3f);
	transition: width .4s
}
.split-amt {
	font-size: 22px;
	font-weight: 800;
	color: #f0c040;
	min-width: 46px;
	text-align: right;
	cursor: pointer;
	font-family: 'Poppins', sans-serif
}
.split-amt:hover {
	color: #fff
}
.split-amt.family-teal {
	color: #18B1C5
}
.split-amt.family-teal:hover {
	color: #fff
}
.split-foot {
	padding: 20px 26px;
	background: rgba(0,0,0,.2)
}
.btn-donate {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 9px;
	background: linear-gradient(45deg, #7a1c2e, #c02d3f);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .2s;
	text-transform: uppercase
}
.btn-donate:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(192,45,63,.4)
}
.split-note {
	font-size: 11px;
	color: rgba(255,255,255,.3);
	text-align: center;
	margin-top: 10px
}
/* ── PRICING CARDS (shared community cards) ── */
.pricing-section {
	background: #f4f5f7;
	padding: 72px 20px
}
.price-row.four-col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 48px;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto
}
.pc {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 5px 16px rgba(0,0,0,.08);
	transition: .3s;
	cursor: pointer
}
.pc:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 32px rgba(0,0,0,.14)
}
.pc-img {
	height: 160px;
	overflow: hidden;
	position: relative
}
.pc-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.78);
	transition: .4s
}
.pc:hover .pc-img img {
	transform: scale(1.06);
	filter: brightness(.9)
}
.pc-img-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(31,42,68,.55) 0%, transparent 55%)
}
.pc-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 10px;
	border-radius: 100px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff
}
.pc-tag.blue {
	background: #243c84
}
.pc-tag.red {
	background: linear-gradient(45deg, #7a1c2e, #c02d3f)
}
.pc-tag.teal {
	background: linear-gradient(135deg, #18B1C5, #0e8fa3)
}
.pc-body {
	padding: 16px
}
.pc-body h4 {
	font-size: 15px;
	font-weight: 700;
	color: #1f2a44;
	margin-bottom: 4px
}
.pc-body .pc-desc {
	font-size: 12px;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.5
}
.pc-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 12px
}
.pc-price .amt {
	font-size: 26px;
	font-weight: 800;
	color: #243c84
}
.pc-price .per {
	font-size: 12px;
	color: #888
}
.btn-pc {
	width: 100%;
	padding: 10px 20px;
	border-radius: 6px;
	border: none;
	background: #243c84;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .2s;
	display: block;
	text-align: center;
	text-decoration: none
}
.btn-pc:hover {
	background: #c02d3f
}
/* ── DIRECT SPONSORSHIP ── */
.direct-section {
	background: #1f2a44;
	padding: 72px 20px;
	position: relative;
	overflow: hidden
}
.direct-section::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(36,60,132,.2) 0%, transparent 65%);
	pointer-events: none
}
.direct-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}
.direct-left .section-label {
	color: #f0c040
}
.direct-left .section-label::after {
	background: #f0c040
}
.direct-left .section-h {
	color: #fff
}
.direct-left .section-h em {
	color: #f0c040
}
.direct-left .section-p {
	color: rgba(255,255,255,.55);
	margin-bottom: 24px
}
.direct-badges {
	display: flex;
	flex-direction: column;
	gap: 12px
}
.db {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 12px;
	padding: 16px 18px;
	transition: .2s
}
.db:hover {
	border-color: rgba(240,192,64,.3)
}
.db-icon {
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 2px
}
.db-text strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 3px
}
.db-text p {
	font-size: 12px;
	color: rgba(255,255,255,.45);
	line-height: 1.6
}
.db.gold {
	border-color: rgba(240,192,64,.25);
	background: rgba(240,192,64,.06)
}
.db.teal-badge {
	border-color: rgba(8,153,166,.35)!important;
	background: rgba(8,153,166,.08)!important
}
.db.teal-badge:hover {
	border-color: rgba(14,201,201,.55)!important
}
.sponsor-form-box {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	padding: 32px
}
.sponsor-form-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px
}
.sponsor-form-box .sub {
	font-size: 13px;
	color: rgba(255,255,255,.4);
	margin-bottom: 24px
}
.fg {
	margin-bottom: 16px
}
.fg label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,.4);
	margin-bottom: 6px
}
.fg input, .fg select {
	width: 100%;
	background: rgba(255,255,255,.07);
	border: 1.5px solid rgba(255,255,255,.12);
	color: #fff;
	padding: 11px 14px;
	border-radius: 9px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	outline: none;
	transition: .2s
}
.fg input::placeholder {
color:rgba(255,255,255,.25)
}
.fg input:focus, .fg select:focus {
	border-color: #c02d3f
}
.fg select option {
	background: #1f2a44;
	color: #fff
}
.fg-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}
.check-row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 18px
}
.check-row input[type=checkbox] {
	width: 15px;
	height: 15px;
	accent-color: #c02d3f;
	margin-top: 3px;
	flex-shrink: 0
}
.check-row label {
	font-size: 12px;
	color: rgba(255,255,255,.45);
	line-height: 1.55;
	cursor: pointer
}
.btn-sponsor {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 9px;
	background: linear-gradient(45deg, #7a1c2e, #c02d3f);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(192,45,63,.4);
	transition: .2s
}
.btn-sponsor:hover {
	transform: translateY(-2px)
}
/* ── ABOUT ── */
.about-section {
	background: #f4f5f7;
	padding: 80px 20px
}
.founder-block {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 0;
	background: #1f2a44;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 48px;
	box-shadow: 0 12px 40px rgba(0,0,0,.14)
}
.founder-left {
	background: linear-gradient(135deg, #243c84, #1f2a44);
	padding: 48px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,.08)
}
.founder-photo {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #243c84;
	margin-bottom: 18px;
	box-shadow: 0 4px 20px rgba(36,60,132,.4)
}
.founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top
}
.founder-left h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 5px
}
.founder-title {
	font-size: 11px;
	color: rgba(255,255,255,.4);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 14px
}
.founder-detail {
	font-size: 12px;
	color: rgba(255,255,255,.28);
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,.1);
	line-height: 1.6
}
.founder-right {
	padding: 48px 44px
}
.founder-heading {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.2
}
.founder-body {
	font-size: 14px;
	color: rgba(255,255,255,.55);
	line-height: 1.75;
	margin-bottom: 14px
}
.teal-em {
	color: #f0c040;
	font-style: normal;
	font-weight: 600
}
.founder-quote {
	margin-top: 24px;
	padding: 16px 20px;
	background: rgba(36,60,132,.2);
	border: 1px solid rgba(36,60,132,.4);
	border-radius: 10px
}
.founder-quote p {
	font-size: 14px;
	color: #f0c040;
	font-style: italic;
	line-height: 1.65
}
.founder-quote span {
	font-size: 12px;
	color: rgba(255,255,255,.3);
	margin-top: 6px;
	display: block
}
.pillars-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px
}
.pillar {
	background: #fff;
	border: 1.5px solid #dce8ee;
	border-radius: 14px;
	padding: 28px 24px;
	box-shadow: 0 2px 10px rgba(0,0,0,.06)
}
.pillar-icon {
	font-size: 30px;
	margin-bottom: 12px
}
.pillar-icon img {
	height: 69px;
	object-fit: contain;
	margin: 0 auto;
	display: block
}
.pillar h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1f2a44;
	margin-bottom: 8px
}
.pillar p {
	font-size: 13px;
	color: #666;
	line-height: 1.65
}
/* ── FAQ ── */
.faq-section {
	background: #fff;
	padding: 80px 20px
}
.faq-group {
	margin-bottom: 36px
}
.faq-group-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #243c84;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e8eaf0
}
.faq-item {
	border-bottom: 1px solid #e8eaf0
}
.faq-item:last-child {
	border-bottom: none
}
.faq-q {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 16px 0;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1f2a44;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	transition: color .2s
}
.faq-q:hover {
	color: #c02d3f
}
.faq-arrow {
	font-size: 11px;
	color: #999;
	flex-shrink: 0
}
.faq-a {
	font-size: 13px;
	color: #555;
	line-height: 1.7;
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease, padding .3s ease;
	padding: 0
}
.faq-a.open {
	max-height: 400px;
	padding: 0 0 16px
}
/* ── FOOTER ── */
footer {
	background: #1c2d5a
}
.footer-top {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 44px;
	padding: 52px 20px 40px;
	border-bottom: 1px solid rgba(255,255,255,.08)
}
.footer-brand .ft-logo img {
	height: 44px;
	object-fit: contain
}
.footer-brand p {
	font-size: 12px;
	color: rgba(255,255,255,.4);
	line-height: 1.7;
	margin-top: 12px;
	max-width: 230px
}
.footer-social-row {
	display: flex;
	gap: 8px;
	margin-top: 16px
}
.footer-social-row img {
	width: 18px;
	height: 18px;
	opacity: .65;
	transition: .2s
}
.footer-social-row img:hover {
	opacity: 1;
	transform: scale(1.1)
}
.footer-col h5 {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,.28);
	margin-bottom: 12px
}
.footer-col a {
	display: block;
	color: rgba(255,255,255,.48);
	font-size: 13px;
	text-decoration: none;
	margin-bottom: 8px;
	transition: .2s
}
.footer-col a:hover {
	color: #f0c040
}
.footer-bottom {
	max-width: 1140px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px
}
.footer-bottom p {
	font-size: 11px;
	color: rgba(255,255,255,.25)
}
.footer-bottom a {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	text-decoration: none;
	margin-left: 16px
}
.footer-bottom a:hover {
	color: #f0c040
}
.btt {
	position: fixed;
	bottom: 22px;
	right: 22px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(45deg, #7a1c2e, #c02d3f);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(192,45,63,.45);
	z-index: 200;
	transition: .2s
}
.btt:hover {
	transform: translateY(-3px)
}
/* ── REVEAL ── */
.rv {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .55s ease, transform .55s ease
}
.rv.in {
	opacity: 1;
	transform: translateY(0)
}
.d1 {
	transition-delay: .1s
}
.d2 {
	transition-delay: .2s
}
.d3 {
	transition-delay: .3s
}

/* ── SHARED RESPONSIVE ── */
@media(max-width:1100px) {
.cards.four-col, .price-row.four-col {
	grid-template-columns: repeat(2, 1fr)
}
}

@media(max-width:900px) {
.dignity-inner, .pillars-grid {
	grid-template-columns: 1fr
}
.split-layout, .direct-inner {
	grid-template-columns: 1fr
}
.footer-top {
	grid-template-columns: 1fr 1fr;
	gap: 28px
}
.founder-block {
	grid-template-columns: 1fr
}
.founder-left {
	border-right: none;
	border-bottom: 1px solid rgba(255,255,255,.08)
}
}

@media(max-width:768px) {
.desktop-nav {
	display: none
}
.hamburger {
	display: block
}
.phone {
	display: none
}
.fg-row {
	grid-template-columns: 1fr
}
}

@media(max-width:600px) {
.cards.four-col, .price-row.four-col {
	grid-template-columns: 1fr
}
}

@media(max-width:540px) {
.footer-top {
	grid-template-columns: 1fr
}
.footer-bottom {
	flex-direction: column;
	text-align: center
}
}
/* ============================================================
   V1-SPECIFIC STYLES  (index-v1.html)
   All classes prefixed v1-
   Theme: white backgrounds, navy blue accents, large CTAs
   ============================================================ */

/* ── V1 HERO eyebrow pill ── */
.v1-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 100px;
	padding: 6px 18px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.9);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 22px
}
/* ── V1 HERO — text left, image right ── */
.v1-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	background: linear-gradient(105deg, #0d1f4e 0%, #1a3580 45%, #243c84 100%);
	overflow: hidden;
	padding: 64px 20px
}
/* subtle radial glow */
.v1-hero::before {
	content: '';
	position: absolute;
	left: -120px;
	top: -120px;
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
	pointer-events: none
}
.v1-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	width: 100%
}
.v1-hero-text h1 {
	font-size: clamp(28px, 3.8vw, 50px);
	font-weight: 800;
	color: #fff;
	line-height: 1.12;
	margin-bottom: 18px;
	letter-spacing: -.5px
}
.v1-hero-text h1 em {
	font-style: normal;
	color: #f0c040
}
.v1-hero-text p {
	font-size: 15px;
	color: rgba(255,255,255,.72);
	line-height: 1.75;
	margin-bottom: 36px;
	max-width: 460px
}
/* Three large CTA buttons stacked */
.v1-hero-btns {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 380px
}
.v1-cta-btn {
	display: block;
	padding: 17px 28px;
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	transition: all .25s;
	border: 2px solid transparent;
	cursor: pointer;
	width: 100%
}
/* White button — primary */
.v1-cta-btn.primary {
	background: #fff;
	color: #1a3580;
	border-color: #fff;
	box-shadow: 0 6px 20px rgba(0,0,0,.2)
}
.v1-cta-btn.primary:hover {
	background: #f0c040;
	border-color: #f0c040;
	color: #1c2d5a;
	transform: translateY(-2px)
}
/* Outlined button */
.v1-cta-btn.secondary {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.55)
}
.v1-cta-btn.secondary:hover {
	background: rgba(255,255,255,.14);
	border-color: #fff;
	transform: translateY(-2px)
}
/* Gold accent button */
.v1-cta-btn.accent {
	background: #f0c040;
	color: #1c2d5a;
	border-color: #f0c040;
	box-shadow: 0 6px 20px rgba(240,192,64,.3)
}
.v1-cta-btn.accent:hover {
	background: #fff;
	border-color: #fff;
	transform: translateY(-2px)
}
/* Hero right image */
.v1-hero-img {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0,0,0,.4);
	height: 380px
}
.v1-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

@media(max-width:900px) {
.v1-hero-inner {
	grid-template-columns: 1fr
}
.v1-hero-img {
	display: none
}
.v1-hero-btns {
	flex-direction: column;
	max-width: 100%
}
}
/* ── V1 SPONSORSHIP PRICING ── */
.v1-pricing {
	background: #fff;
	padding: 80px 20px
}
.v1-pricing-inner {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center
}
.v1-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
	text-align: left
}
.v1-pcard {
	background: #fff;
	border: 2px solid #e0e8f4;
	border-radius: 18px;
	padding: 36px 30px;
	transition: .3s;
	position: relative;
	overflow: hidden
}
/* top colour bar */
.v1-pcard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: #243c84;
	border-radius: 0
}
.v1-pcard:hover {
	border-color: #243c84;
	transform: translateY(-7px);
	box-shadow: 0 18px 44px rgba(36,60,132,.14)
}
.v1-pcard.featured {
	border-color: #243c84;
	box-shadow: 0 10px 36px rgba(36,60,132,.2)
}
.v1-pcard.featured::before {
	background: linear-gradient(90deg, #243c84, #1a56b0)
}
.v1-pcard-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #243c84;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 100px
}
.v1-pcard h3 {
	font-size: 21px;
	font-weight: 800;
	color: #1f2a44;
	margin-bottom: 6px
}
.v1-price {
	font-size: 44px;
	font-weight: 800;
	color: #243c84;
	margin: 18px 0 4px;
	line-height: 1
}
.v1-price span {
	font-size: 17px;
	font-weight: 500;
	color: #888
}
.v1-price-label {
	font-size: 13px;
	color: #888;
	margin-bottom: 22px
}
.v1-pcard ul {
	list-style: none;
	margin-bottom: 28px
}
.v1-pcard ul li {
	font-size: 13px;
	color: #555;
	padding: 8px 0;
	border-bottom: 1px solid #eef0f6;
	display: flex;
	align-items: center;
	gap: 9px
}
.v1-pcard ul li:last-child {
	border-bottom: none
}
.v1-pcard ul li::before {
	content: '✓';
	color: #243c84;
	font-weight: 800;
	flex-shrink: 0
}
.v1-btn-donate-now {
	display: block;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 9px;
	background: #243c84;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .2s;
	text-align: center;
	text-decoration: none
}
.v1-btn-donate-now:hover {
	background: #1a56b0;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(36,60,132,.3)
}
.v1-btn-donate-now.featured-btn {
	background: linear-gradient(135deg, #243c84, #1a56b0)
}
.v1-btn-donate-now.featured-btn:hover {
	background: #0d1f4e
}

@media(max-width:900px) {
.v1-pricing-grid {
	grid-template-columns: 1fr
}
}
/* ── V1 SERVICE AREA ── */
.v1-service-area {
	background: #f4f5f7;
	padding: 80px 20px
}
.v1-service-inner {
	max-width: 1140px;
	margin: 0 auto
}
.v1-sa-sub {
	text-align: center;
	font-size: 14px;
	color: #666;
	max-width: 560px;
	margin: 0 auto 52px
}
.v1-sa-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center
}
.v1-sa-img {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(0,0,0,.12)
}
.v1-sa-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block
}
.v1-sa-points {
	display: flex;
	flex-direction: column;
	gap: 24px
}
/* Each point is a prominent card with a left navy border */
.v1-sa-point {
	background: #fff;
	border: 2px solid #e0e8f4;
	border-left: 6px solid #243c84;
	border-radius: 14px;
	padding: 28px 26px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	box-shadow: 0 4px 18px rgba(0,0,0,.06);
	transition: .3s
}
.v1-sa-point:hover {
	box-shadow: 0 10px 32px rgba(36,60,132,.14);
	transform: translateX(5px);
	border-color: #243c84
}
.v1-sa-point-icon {
	font-size: 30px;
	flex-shrink: 0;
	margin-top: 2px
}
.v1-sa-point-text strong {
	display: block;
	font-size: 17px;
	font-weight: 800;
	color: #1f2a44;
	margin-bottom: 6px
}
.v1-sa-point-text p {
	font-size: 13px;
	color: #666;
	line-height: 1.65
}

@media(max-width:900px) {
.v1-sa-layout {
	grid-template-columns: 1fr
}
}
/* ============================================================
   V2-SPECIFIC STYLES  (index-v2.html)
   All classes prefixed v2-  |  body.v2 for overrides
   Theme: blue-only (no red/maroon/teal), white backgrounds
   ============================================================ */

/* ── V2 GLOBAL COLOUR OVERRIDES via body.v2 ──
   These override the shared red/teal classes wherever body.v2 is set */
body.v2 .section-h em {
	color: #243c84
}
body.v2 .section-label {
	color: #243c84
}
body.v2 .section-label::after {
	background: #243c84
}
body.v2 .faq-q:hover {
	color: #1a56b0
}
body.v2 .step-n {
	border-color: #243c84;
	color: #243c84;
	background: #e8f0fe
}
body.v2 .cp-dot {
	border-color: #243c84;
	background: #e8f0fe
}
body.v2 .btt {
	background: #243c84
}
/* ── V2 HERO — full-width centered, bold blue gradient ── */
.v2-hero {
	background: linear-gradient(140deg, #0a1a46 0%, #1a3580 45%, #2b4da8 100%);
	padding: 90px 20px 80px;
	position: relative;
	overflow: hidden;
	text-align: center
}
.v2-hero::before {
	content: '';
	position: absolute;
	right: -180px;
	top: -180px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 65%);
	pointer-events: none
}
.v2-hero::after {
	content: '';
	position: absolute;
	left: -100px;
	bottom: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(26,86,176,.25) 0%, transparent 65%);
	pointer-events: none
}
.v2-hero-inner {
	max-width: 860px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}
.v2-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 100px;
	padding: 7px 20px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.88);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 26px
}
.v2-hero-inner h1 {
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 800;
	color: #fff;
	line-height: 1.08;
	margin-bottom: 20px;
	letter-spacing: -.5px
}
.v2-hero-inner h1 em {
	font-style: normal;
	color: #a8c4e8
}
.v2-hero-inner p {
	font-size: 16px;
	color: rgba(255,255,255,.68);
	line-height: 1.75;
	max-width: 600px;
	margin: 0 auto 44px
}
.v2-hero-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap
}
.v2-cta-btn {
	padding: 16px 30px;
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	transition: all .25s;
	border: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap
}
.v2-cta-btn.primary {
	background: #fff;
	color: #1a3580;
	border-color: #fff;
	box-shadow: 0 6px 20px rgba(0,0,0,.2)
}
.v2-cta-btn.primary:hover {
	background: #e8f0fe;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0,0,0,.22)
}
.v2-cta-btn.outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.5)
}
.v2-cta-btn.outline:hover {
	background: rgba(255,255,255,.12);
	border-color: #fff;
	transform: translateY(-3px)
}

@media(max-width:600px) {
.v2-hero-btns {
	flex-direction: column;
	align-items: center
}
.v2-cta-btn {
	width: 100%;
	max-width: 340px
}
}
/* ── V2 OUR COMMUNITIES — 4 col, no descriptions ── */
.v2-communities {
	background: #f4f5f7;
	padding: 72px 20px
}
.v2-communities-inner {
	max-width: 1140px;
	margin: 0 auto
}
.v2-comm-sub {
	text-align: center;
	font-size: 14px;
	color: #666;
	margin-bottom: 40px
}
.v2-comm-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px
}
.v2-comm-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0,0,0,.08);
	transition: .3s;
	text-align: center
}
.v2-comm-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 34px rgba(36,60,132,.15)
}
.v2-comm-card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block
}
.v2-comm-card-body {
	padding: 18px 16px 20px
}
.v2-comm-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: #1f2a44;
	margin-bottom: 14px
}
.v2-comm-card h4 .blue {
	color: #243c84
}
.v2-comm-card h4 .accent {
	color: #1a56b0
}
.v2-comm-btn {
	display: inline-block;
	padding: 10px 22px;
	border: none;
	border-radius: 7px;
	background: #243c84;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .2s;
	text-decoration: none
}
.v2-comm-btn:hover {
	background: #1a56b0;
	transform: translateY(-2px)
}

@media(max-width:1100px) {
.v2-comm-grid {
	grid-template-columns: repeat(2, 1fr)
}
}

@media(max-width:600px) {
.v2-comm-grid {
	grid-template-columns: 1fr
}
}
/* ── V2 SPONSORSHIP PRICING — blue cards ── */
.v2-pricing {
	background: #fff;
	padding: 80px 20px
}
.v2-pricing-inner {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center
}
.v2-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
	text-align: left
}
.v2-pcard {
	background: #f0f5ff;
	border: 2px solid #c8d8f5;
	border-radius: 18px;
	padding: 36px 30px;
	transition: .3s;
	position: relative;
	overflow: hidden
}
.v2-pcard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: #243c84
}
.v2-pcard:hover {
	border-color: #243c84;
	transform: translateY(-7px);
	box-shadow: 0 18px 44px rgba(36,60,132,.14)
}
.v2-pcard.featured {
	border-color: #243c84;
	background: #e8f0fe;
	box-shadow: 0 10px 36px rgba(36,60,132,.2)
}
.v2-pcard.featured::before {
	background: linear-gradient(90deg, #0d1f4e, #243c84)
}
.v2-pcard-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #243c84;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 100px
}
.v2-pcard h3 {
	font-size: 21px;
	font-weight: 800;
	color: #1f2a44;
	margin-bottom: 6px
}
.v2-price {
	font-size: 44px;
	font-weight: 800;
	color: #243c84;
	margin: 18px 0 4px;
	line-height: 1
}
.v2-price span {
	font-size: 17px;
	font-weight: 500;
	color: #888
}
.v2-price-label {
	font-size: 13px;
	color: #888;
	margin-bottom: 22px
}
.v2-pcard ul {
	list-style: none;
	margin-bottom: 28px
}
.v2-pcard ul li {
	font-size: 13px;
	color: #444;
	padding: 8px 0;
	border-bottom: 1px solid #c8d8f5;
	display: flex;
	align-items: center;
	gap: 9px
}
.v2-pcard ul li:last-child {
	border-bottom: none
}
.v2-pcard ul li::before {
	content: '✓';
	color: #243c84;
	font-weight: 800;
	flex-shrink: 0
}
.v2-pcard-btn {
	display: block;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 9px;
	background: #243c84;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .2s;
	text-align: center;
	text-decoration: none
}
.v2-pcard-btn:hover {
	background: #1a56b0;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(36,60,132,.3)
}

@media(max-width:900px) {
.v2-pricing-grid {
	grid-template-columns: 1fr
}
}
/* ── V2 HOW IT WORKS — centered, 4 large step cards ── */
.v2-how {
	background: #f4f5f7;
	padding: 88px 20px
}
.v2-how-inner {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center
}
.v2-how-sub {
	font-size: 14px;
	color: #666;
	margin-bottom: 56px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto
}
.v2-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative
}
.v2-step-card {
	background: #fff;
	border-radius: 18px;
	padding: 40px 24px 36px;
	box-shadow: 0 4px 20px rgba(0,0,0,.07);
	text-align: center;
	border: 2px solid transparent;
	transition: .3s;
	position: relative
}
.v2-step-card:hover {
	border-color: #243c84;
	transform: translateY(-7px);
	box-shadow: 0 16px 40px rgba(36,60,132,.13)
}
/* arrow connector between cards */
.v2-step-card:not(:last-child)::after {
	content: '→';
	position: absolute;
	right: -18px;
	top: 46px;
	font-size: 22px;
	color: #243c84;
	font-weight: 800;
	z-index: 2
}
.v2-step-num {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #243c84;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px
}
.v2-step-icon {
	font-size: 30px;
	margin-bottom: 14px
}
.v2-step-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: #1f2a44;
	margin-bottom: 10px
}
.v2-step-card p {
	font-size: 13px;
	color: #666;
	line-height: 1.65
}

@media(max-width:1000px) {
.v2-steps-grid {
	grid-template-columns: repeat(2, 1fr)
}
.v2-step-card::after {
	display: none!important
}
}

@media(max-width:600px) {
.v2-steps-grid {
	grid-template-columns: 1fr
}
}
/* ── V2 SPONSOR FORM — white, centered, full-width ── */
.v2-form-section {
	background: #fff;
	padding: 80px 20px
}
.v2-form-inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center
}
.v2-form-sub {
	font-size: 14px;
	color: #666;
	margin-bottom: 40px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto
}
.v2-form-box {
	background: #f0f5ff;
	border: 2px solid #c8d8f5;
	border-radius: 20px;
	padding: 44px;
	text-align: left
}
.v2-fg {
	margin-bottom: 18px
}
.v2-fg label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #243c84;
	margin-bottom: 7px
}
.v2-fg input, .v2-fg select {
	width: 100%;
	background: #fff;
	border: 2px solid #c8d8f5;
	color: #1f2a44;
	padding: 13px 16px;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	outline: none;
	transition: .2s
}
.v2-fg input::placeholder {
color:#aab
}
.v2-fg input:focus, .v2-fg select:focus {
	border-color: #243c84;
	box-shadow: 0 0 0 3px rgba(36,60,132,.1)
}
.v2-fg-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}
.v2-check-row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 22px
}
.v2-check-row input[type=checkbox] {
	width: 16px;
	height: 16px;
	accent-color: #243c84;
	margin-top: 4px;
	flex-shrink: 0
}
.v2-check-row label {
	font-size: 13px;
	color: #555;
	line-height: 1.55;
	cursor: pointer
}
.v2-btn-submit {
	width: 100%;
	padding: 16px;
	border: none;
	border-radius: 10px;
	background: #243c84;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	transition: .2s;
	box-shadow: 0 6px 20px rgba(36,60,132,.28)
}
.v2-btn-submit:hover {
	background: #1a56b0;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(36,60,132,.35)
}

@media(max-width:700px) {
.v2-fg-row {
	grid-template-columns: 1fr
}
}
/* ── V2 SERVICE AREA — single full-width image + 2 cards ── */
.v2-service {
	background: #f4f5f7;
	padding: 80px 20px
}
.v2-service-inner {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center
}
.v2-sa-img-full {
	width: 100%;
	height: 340px;
	object-fit: cover;
	border-radius: 18px;
	display: block;
	margin: 0 auto 52px;
	box-shadow: 0 10px 36px rgba(0,0,0,.12)
}
.v2-sa-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 820px;
	margin: 0 auto
}
.v2-sa-point {
	background: #fff;
	border: 2px solid #c8d8f5;
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
	transition: .3s;
	border-top: 5px solid #243c84
}
.v2-sa-point:hover {
	border-color: #243c84;
	box-shadow: 0 10px 32px rgba(36,60,132,.14);
	transform: translateY(-5px)
}
.v2-sa-point-icon {
	font-size: 36px;
	margin-bottom: 14px;
	display: block
}
.v2-sa-point strong {
	display: block;
	font-size: 16px;
	font-weight: 800;
	color: #1f2a44;
	margin-bottom: 8px
}
.v2-sa-point p {
	font-size: 13px;
	color: #666;
	line-height: 1.65
}

@media(max-width:600px) {
.v2-sa-points {
	grid-template-columns: 1fr
}
}
/* ── V2 ABOUT — white bg, dark text overrides ── */
.v2-about {
	background: #fff;
	padding: 80px 20px
}
.v2-about .founder-block {
	background: #f0f5ff;
	box-shadow: 0 12px 40px rgba(36,60,132,.1)
}
.v2-about .founder-left {
	background: linear-gradient(135deg, #243c84, #1a56b0)
}
.v2-about .founder-heading {
	color: #1f2a44
}
.v2-about .founder-body {
	color: #444
}
.v2-about .founder-quote {
	background: rgba(36,60,132,.07);
	border-color: rgba(36,60,132,.2)
}
.v2-about .founder-quote p {
	color: #243c84
}
.v2-about .founder-quote span {
	color: #666
}
.v2-about .teal-em {
	color: #1a56b0
}



/* ============================================================
   SERVICE AREA — "We Serve Where You Are"
   Append these rules to the bottom of style.css
   ============================================================ */

/* Section wrapper */
.sa-section {
  background: #f4f5f7;
  padding: 80px 20px;
}
.sa-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* Heading block */
.sa-heading-wrap {
  text-align: center;
  margin-bottom: 48px;
}

/* Two-column grid */
.sa-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── LEFT: Map ── */
.sa-map-col {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(36, 60, 132, 0.15);
  border: 2px solid #d0dcf0;
  line-height: 0; /* remove gap under iframe */
}
.sa-map-col iframe {
  width: 100%;
  min-height: 460px;
  height: auto;
  border: 0;
  display: block;
  border-radius: 0; /* outer wrapper handles radius */
}

/* ── RIGHT: Content ── */
.sa-content-col {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(36, 60, 132, 0.09);
  border: 1.5px solid #dde8f8;
}

/* Intro paragraph */
.sa-intro {
  font-size: 14px;
  color: #444;
  line-height: 1.78;
  margin-bottom: 0;
}

/* Divider */
.sa-divider {
  height: 1px;
  background: #dde8f8;
  box-shadow: 0 1px 4px rgba(36, 60, 132, 0.08);
  margin: 24px 0;
}

/* Detail list */
.sa-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sa-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sa-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sa-details li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 3px;
}
.sa-details li p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Warning item — subtle amber tint */
.sa-details li.sa-warning {
  background: #fffbf0;
  border: 1.5px solid #f0d580;
  border-radius: 10px;
  padding: 14px 16px;
}
.sa-details li.sa-warning strong {
  color: #7a5800;
}
.sa-details li.sa-warning p {
  color: #7a5800;
  opacity: 0.8;
}

/* Contact row */
.sa-contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sa-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #f0f5ff;
  border: 1.5px solid #c8d8f5;
  border-radius: 10px;
  padding: 13px 18px;
  transition: all 0.2s;
}
.sa-contact-item:hover {
  background: #243c84;
  border-color: #243c84;
}
.sa-contact-item:hover span {
  color: #fff;
}
.sa-contact-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.sa-contact-item > span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #1f2a44;
  transition: color 0.2s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sa-body {
    grid-template-columns: 1fr;
  }
  .sa-map-col iframe {
    min-height: 320px;
  }
}
@media (max-width: 600px) {
  .sa-contact-row {
    gap: 10px;
  }
}
/* ============================================================
   SPLIT-ROW DONATE BUTTONS
   Per-row Donate button layout — replaces single Continue btn
   ============================================================ */

/* Right-side group inside each donate row: amount + button */
.split-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
  min-width: 100px;
}

/* Amount text in the donate-style row */
.split-row.split-row-donate .split-amt {
  font-size: 20px;
  font-weight: 800;
  color: #f0c040;
  line-height: 1;
  cursor: default; /* not clickable to cycle in this layout */
}

/* Teal override for the Family row amount */
.split-amt.family-teal {
  color: #18B1C5 !important;
}

/* The per-row Donate → button */
.split-donate-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 7px;
  background: linear-gradient(45deg, #7a1c2e, #c02d3f);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(192,45,63,.3);
}
.split-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(192,45,63,.45);
  color: #fff;
}

/* Teal variant for Klean Family row */
.split-donate-btn.split-donate-btn-teal {
  background: linear-gradient(135deg, #18B1C5, #0e8fa3);
  box-shadow: 0 4px 12px rgba(24,177,197,.3);
}
.split-donate-btn.split-donate-btn-teal:hover {
  box-shadow: 0 7px 18px rgba(24,177,197,.45);
}

/* Highlight the family row subtly */
.split-row.family-row {
  background: rgba(24,177,197,.06);
  border-radius: 6px;
}

/* Remove the old large bottom Continue button if it's still present */
.split-section .btn-donate {
  display: none;
}

/* Responsive: stack amount+button side by side on very small screens */
@media (max-width: 480px) {
  .split-row-right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: auto;
  }
  .split-row.split-row-donate .split-amt {
    font-size: 17px;
  }
}
