.bap {
	--bap-border: var(--border, #d8dde3);
	--bap-bg-alt: var(--bg-light, #f4f6f8);
	--bap-radius: 10px;
	--bap-shadow: 0 2px 10px rgba(26, 60, 101, 0.08);
}

.bap-section {
	padding: var(--space-3) 0;
}

.bap-section--alt {
	background: var(--bap-bg-alt);
}

.bap-section-heading {
	text-align: center;
	color: var(--color-primary, #1a3c65);
	margin: 0 0 var(--space-5, 48px);
}

.bap-eyebrow {
	display: inline-block;
	font-size: var(--eyebrow-fs, 14px);
	font-weight: var(--fw-bold, 700);
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-1, 8px);
}

.bap-eyebrow--light {
	color: var(--color-accent);
}


.bap-hero {
	padding: var(--space-3) 0;
}

.bap-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-5, 48px);
	align-items: center;
}

.bap-hero-title {
	font-size: var(--fs-h1, 40px);
	line-height: 1.2;
	font-weight: var(--fw-extrabold, 800);
	color: var(--color-primary);
	margin: 0 0 var(--space-3, 18px);
}

.bap-text-accent {
	color: var(--color-accent);
}

.bap-hero-desc {
	color: var(--text-muted);
	font-size: var(--fs-base, 15.5px);
	line-height: 1.7;
	max-width: 520px;
	margin: 0 0 var(--space-4, 30px);
}

.bap-hero-actions {
	display: flex;
	gap: var(--space-2, 14px);
	flex-wrap: wrap;
}

.bap-hero-media {
   position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background: #1a3c65; */
    border-radius: 0;
	padding-top: 30px;
}

.bap-stats {
	background: var(--color-primary, #1a3c65);
	border-bottom: 1px solid var(--bap-border);
}

.bap-stats-row {
	display: flex;
	flex-wrap: wrap;
	padding: var(--space-2, 14px) 0;
	background: var(--color-primary, #1a3c65);
}

.bap-stat {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 1;
	/* min-width: 160px; */
}

.bap-stat-icon svg {
	width: 30px;
	height: 30px;
	color: var(--color-accent, #f4a300);
}

.bap-stat strong {
	display: block;
	font-size: 16px;
	font-weight: var(--fw-bold, 700);
	color: var(--white);
}

.bap-stat span {
	font-size: 14px;
	color: var(--white);
}


.bap-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-5, 56px);
	align-items: center;
}

.bap-intro-content h2 {
	font-size: var(--fs-h3, 27px);
	font-weight: var(--fw-bold, 700);
	color: var(--color-primary, #1a3c65);
}

.bap-intro-content p {
	font-size: 16px;
	color: var(--text-muted);
	margin: 0 0 var(--space-2, 14px);
}

.bap-intro-media{
    display: flex;
    justify-content: center;
    align-items: center;
	 transform: translateX(-50px);
	position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: none;
    box-shadow: none;
}
.bap-intro-media img {
	 display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}
.bap-intro-media::after {
     content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(to right,
            #fff 0%,
            rgba(255,255,255,0) 12%,
            rgba(255,255,255,0) 88%,
            #fff 100%
        ),
        linear-gradient(to bottom,
            #fff 0%,
            rgba(255,255,255,0) 10%,
            rgba(255,255,255,0) 90%,
            #fff 100%
        );
}

.bap-card-grid {
	display: grid;
	gap: var(--space-3, 22px);
}

.bap-card-grid--6 {
	grid-template-columns: repeat(3, 1fr);
}

.bap-card {
	background: var(--white, #ffffff);
	border: 1px solid var(--bap-border);
	border-radius: var(--bap-radius);
	box-shadow: var(--bap-shadow);
	padding: var(--space-4, 26px) var(--space-3, 22px);
	text-align: center;
}

.bap-card-icon svg {
	width: 36px;
	height: 36px;
	color: var(--color-accent, #f4a300);
	margin-bottom: 12px;
}

.bap-card h3 {
	font-size: 18px;
	font-weight: var(--fw-bold, 700);
	color: var(--color-primary, #1a3c65);
	margin: 0 0 8px;
}

.bap-card p {
	font-size: 16px;
	color: var(--text-muted);
	margin: 0;
}

.bap-product-card {
	text-align: center;
}

.bap-product-image {
	border-radius: var(--bap-radius);
	overflow: hidden;
	background: var(--bap-bg-alt);
	margin-bottom: 12px;
	aspect-ratio: 4 / 3;
}

.bap-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bap-product-card h3 {
	font-size: 16px;
	font-weight: var(--fw-bold, 700);
	color: var(--color-primary, #1a3c65);
	margin: 0 0 4px;
}

.bap-explore-link {
	font-size: 14px;
	font-weight: var(--fw-semibold, 600);
	color: var(--color-accent, #f4a300);
}

.bap-explore-link:hover {
	text-decoration: underline;
}

/* =========================================================
   PARTNER TYPES
   ========================================================= */
.bap-partner-types {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 20px;
	justify-items: start;
}

.bap-partner-type {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: var(--text-muted);
}

.bap-partner-type-icon svg {
	width: 26px;
	height: 26px;
	color: var(--color-accent, #f4a300);
	flex-shrink: 0;
}

.bap-timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	position: relative;
}

.bap-timeline::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 10%;
	right: 10%;
	height: 0;
	border-top: 2px dotted var(--bap-border);
	z-index: 0;
}

.bap-timeline-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.bap-timeline-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--color-primary, #1a3c65);
	color: var(--white, #ffffff);
	font-weight: var(--fw-bold, 700);
	font-size: 15px;
	margin-bottom: 14px;
}

.bap-timeline-num.is-active {
	background: var(--color-accent, #f4a300);
}

.bap-timeline-step h4 {
	
	color: var(--color-primary, #1a3c65);
	margin: 0 0 6px;
}

.bap-timeline-step p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.5;
	margin: 0 auto;
	max-width: 180px;
}

/* =========================================================
   TWO-COLUMN INFO & CHECKLIST
   ========================================================= */
.bap-two-col-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.bap-info-card {
	background: var(--white, #ffffff);
	border: 1px solid var(--bap-border);
	border-radius: var(--bap-radius);
	box-shadow: var(--bap-shadow);
	padding: var(--space-2, 28px);
}

.bap-info-card h3 {
	padding-bottom: 6px;
	color: var(--color-primary, #1a3c65);
	
}

.bap-info-card p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0 0 14px;
}

.bap-india-map {
	width: 100%;
	max-width: 220px;
	margin: 0 0 16px;
}

.bap-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.bap-check-list li {
	position: relative;
	padding-left: 24px;
	font-size: 16px;
	color: var(--text-dark);
}

.bap-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-accent, #f4a300);
	font-weight: var(--fw-bold, 700);
}

@media (max-width: 991px) {
	.bap-hero-grid,
	.bap-intro-grid,
	.bap-two-col-grid {
		grid-template-columns: 1fr;
	}

	.bap-intro-media {
		order: -1;
	}

	.bap-card-grid--6 {
		grid-template-columns: repeat(2, 1fr);
	}

	.bap-partner-types {
		grid-template-columns: repeat(2, 1fr);
	}

	.bap-timeline {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 32px;
	}

	.bap-timeline::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.bap-hero-title {
		font-size: 30px;
	}
}

@media (max-width: 620px) {
	.bap-card-grid--6,
	.bap-partner-types,
	.bap-timeline {
		grid-template-columns: 1fr;
	}

	.bap-stats-row,
	.bap-trust-row {
		justify-content: flex-start;
	}
}