/* Bandhan Bank — single theme stylesheet (merged) */

/* ===== fonts.css ===== */
/* Self-hosted fonts — matches Figma Kanit + Poppins exactly */

@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url("../fonts/Kanit-200.woff2") format("woff2");
}

@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 275;
	font-display: swap;
	src: url("../fonts/Kanit-200.woff2") format("woff2");
}

@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Kanit-400.woff2") format("woff2");
}

@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/Kanit-500.woff2") format("woff2");
}

@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/Kanit-600.woff2") format("woff2");
}

@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/Kanit-700.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/Poppins-300.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Poppins-400.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/Poppins-500.woff2") format("woff2");
}


/* ===== variables.css ===== */
:root {
	--bandhan-navy: #002641;
	--bandhan-navy-dark: #041b2f;
	--bandhan-navy-mid: #0a3354;
	--bandhan-navy-deep: #092e4d;
	--bandhan-red: #d02d2a;
	--bandhan-red-dark: #bb2516;
	--bandhan-white: #ffffff;
	--bandhan-off-white: #f5f5f5;
	--bandhan-text-dark: #002641;
	--bandhan-text-muted: #3d3d3d;
	--bandhan-yellow: #ffbe00;
	--bandhan-sky: #f0f8ff;
	--bandhan-sky-light: #e6f0f9;
	--bandhan-leading-panel: #eaf4ff;
	--bandhan-impact-panel: #daeeff;
	--bandhan-cream: #fdf8eb;
	--bandhan-font-heading: "Kanit", system-ui, sans-serif;
	--bandhan-font-body: "Poppins", system-ui, sans-serif;

	/* Global typography — Figma */
	--bandhan-heading-font-weight: 275;
	--bandhan-heading-font-size: 3.5rem;
	--bandhan-heading-line-height: 3.225rem;
	--bandhan-heading-letter-spacing: 0.01em;

	--bandhan-body-font-weight: 300;
	--bandhan-body-font-size: 1.25rem;
	--bandhan-body-line-height: 1.875rem;
	--bandhan-body-letter-spacing: 0;

	--bandhan-cta-font-size: 12px;
	--bandhan-cta-font-weight: 400;
	--bandhan-cta-line-height: 1;
	--bandhan-cta-letter-spacing: 0.02em;

	--bandhan-button-font-weight: var(--bandhan-cta-font-weight);
	--bandhan-button-font-size: var(--bandhan-cta-font-size);
	--bandhan-button-line-height: var(--bandhan-cta-line-height);
	--bandhan-button-letter-spacing: var(--bandhan-cta-letter-spacing);

	--bandhan-header-nav-font-weight: 400;
	--bandhan-header-nav-font-size: 14px;
	--bandhan-header-nav-line-height: 1;
	--bandhan-header-nav-letter-spacing: 0;
	--bandhan-banner-height: 600px;
	--bandhan-header-height: 100px;
	--bandhan-container-max: 1720px;
	--bandhan-section-padding-x: 1.5rem;
	--bandhan-section-gap: 2rem;

	/* Homepage hero — Figma Final Homepage (1920 × 812) */
	--hero-figma-width: 1920px;
	--hero-figma-height: 812px;
	--hero-bg-color: #d7ecff;
	--hero-map-top: 11px;
	--hero-content-top: 253px;
	--hero-content-bottom: 50px;
	--hero-headline-max: 54.1875rem;
	--hero-headline-gap: 2.5rem;
	--hero-logo-bar-height: 100px;
	--hero-logo-bar-max: 1000px;

	/* Homepage — Figma section rhythm (80px / 100px at desktop) */
	--bandhan-home-section-y: 5rem;
}

@media (min-width: 768px) {
	:root {
		--bandhan-section-padding-x: 2.5rem;
		--bandhan-section-gap: 2.5rem;
	}
}

@media (min-width: 1200px) {
	:root {
		--bandhan-section-padding-x: 80px;
		--bandhan-section-gap: 62px;
		--bandhan-home-section-y: 6.25rem;
	}
}

/* Shared homepage section container — matches Figma 100px side padding */
.bandhan-container {
	width: 100%;
	max-width: var(--bandhan-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--bandhan-section-padding-x);
	padding-right: var(--bandhan-section-padding-x);
}


/* ===== typography.css ===== */
/**
 * Typography — Kanit (headings/UI) + Poppins (body).
 * Global Figma tokens; overrides Bootstrap defaults.
 */

:root {
	--bs-font-sans-serif: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
	--bs-body-font-family: var(--bandhan-font-body);
	--bs-body-font-weight: var(--bandhan-body-font-weight);
	--bs-body-font-size: var(--bandhan-body-font-size);
	--bs-body-line-height: var(--bandhan-body-line-height);
	--bs-font-monospace: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

body {
	font-family: var(--bandhan-font-body);
	font-weight: var(--bandhan-body-font-weight);
	font-size: var(--bandhan-body-font-size);
	line-height: var(--bandhan-body-line-height);
	letter-spacing: var(--bandhan-body-letter-spacing);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h3, h4, h5, h6,
.h1, .h3, .h4, .h5, .h6 {
	font-family: var(--bandhan-font-heading);
	font-weight: var(--bandhan-heading-font-weight);
	font-size: var(--bandhan-heading-font-size);
	line-height: var(--bandhan-heading-line-height);
	letter-spacing: var(--bandhan-heading-letter-spacing);
	font-synthesis: none;
}

h2,
.site-main h2,
.entry-content h2,
[class*="section"] h2,
.h2 {
	font-family: var(--bandhan-font-heading) !important;
	font-weight: var(--bandhan-heading-font-weight) !important;
	font-size: 40px !important;
	line-height: var(--bandhan-heading-line-height) !important;
	letter-spacing: var(--bandhan-heading-letter-spacing) !important;
	font-synthesis: none;
}

/* Shared split-title pattern across sections. */
[class$="__title-prefix"] {
	font-weight: 300 !important;
}

[class$="__title-emphasis"] {
	font-weight: 700 !important;
}

@media (max-width: 1199.98px) {
	h2,
	.site-main h2,
	.entry-content h2,
	[class*="section"] h2,
	.h2 {
		font-size: 42px !important;
		line-height: 1.2 !important;
	}
}

@media (max-width: 767.98px) {
	h2,
	.site-main h2,
	.entry-content h2,
	[class*="section"] h2,
	.h2 {
		font-size: 32px !important;
		line-height: 1.2 !important;
	}
}

p:not(.wwai-hero__breadcrumb):not(.wwai-hero__title):not(.bod-member-hero__designation),
.site-main p:not(.wwai-hero__breadcrumb):not(.wwai-hero__title):not(.bod-member-hero__designation),
.entry-content p,
[class*="section"] p:not(.wwai-hero__breadcrumb):not(.wwai-hero__title):not(.bod-member-hero__designation) {
	font-family: var(--bandhan-font-body);
	font-weight: var(--bandhan-body-font-weight);
	font-size: 15px !important;
	line-height: 24px !important;
	letter-spacing: var(--bandhan-body-letter-spacing);
}

.site-main li,
.entry-content li,
[class*="section"] li {
	font-family: var(--bandhan-font-body);
	font-weight: var(--bandhan-body-font-weight);
	font-size: 15px !important;
	line-height: 24px !important;
	letter-spacing: var(--bandhan-body-letter-spacing);
}

button,
input[type="button"],
input[type="reset"] {
	font-family: var(--bandhan-font-heading);
	font-synthesis: none;
}

.navbar,
.dropdown-menu,
.nav-link,
.dropdown-item {
	font-family: var(--bandhan-font-heading);
	font-synthesis: none;
}

.site-header .btn-header-cta,
.site-header .navbar-nav > .nav-item > .nav-link {
	font-synthesis: none;
	font-size: var(--bandhan-header-nav-font-size) !important;
	font-weight: var(--bandhan-header-nav-font-weight) !important;
	line-height: var(--bandhan-header-nav-line-height) !important;
	letter-spacing: var(--bandhan-header-nav-letter-spacing) !important;
}

/* Global banner height (single source for all page heroes/banners). */
.wwai-hero,
.wwai-hero__inner,
.contact-hero,
.contact-hero__inner,
.contact-hero__content,
.bbd-hero,
.bbd-hero__inner,
.si-hero,
.si-hero__inner {
	height: var(--bandhan-banner-height) !important;
	min-height: var(--bandhan-banner-height) !important;
}


/* ===== cta.css ===== */
/**
 * Global CTA typography — single source for action buttons site-wide.
 */

.btn,
.btn-hero-cta,
[class$="__cta"],
.resource-links__button,
.blogs-card__btn,
.bod-card__profile-btn,
.ir-announcements__cta,
.contact-us-form__submit,
.contact-us-form .wpcf7-submit.contact-us-form__submit,
.career-form__submit,
.site-footer__newsletter-submit,
.rr-reports__card-btn,
input[type="submit"],
.wp-block-button__link {
	font-family: var(--bandhan-font-heading);
	font-size: var(--bandhan-cta-font-size);
	font-weight: var(--bandhan-cta-font-weight);
	line-height: var(--bandhan-cta-line-height);
	letter-spacing: var(--bandhan-cta-letter-spacing);
	text-transform: uppercase;
	font-synthesis: none;
}


/* ===== slider-nav.css ===== */
/**
 * Shared slider navigation — Figma prev/next icons (60px navy circle).
 */

.bandhan-slider-nav {
	display: inline-flex;
	/* flex: 0 0 auto; */
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}


.fwc-team__card-media img{
    width:100%;
}

.bandhan-slider-nav:hover:not(:disabled):not(.swiper-button-disabled),
.bandhan-slider-nav:focus-visible:not(:disabled):not(.swiper-button-disabled) {
	/* transform: scale(1.03); */
}

.bandhan-slider-nav:disabled,
.bandhan-slider-nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.bandhan-slider-nav img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.bandhan-slider-nav--light img {
	width: 40px !important;
	height: 40px !important;
}

.bandhan-slider-nav-group {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

/* Our Story */
.our-story__viewport > .bandhan-slider-nav {
	/* margin-top: 0.375rem; */
}

/* News Room */
.news-room__slider > .bandhan-slider-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
}

.news-room__slider > .bandhan-slider-nav--prev {
	left: -0.25rem;
}

.news-room__slider > .bandhan-slider-nav--next {
	right: -0.25rem;
}

/* Social Impact stories */
.si-stories__intro-block .bandhan-slider-nav-group {
	margin-top: 1.25rem;
}

/* BBD leadership */
.bbd-leadership__intro .bandhan-slider-nav-group {
	flex-shrink: 0;
	gap: 0rem;
	margin-top: 0.25rem;
}

/* Who We Are Impact story */
.wwai-story__timeline > .bandhan-slider-nav {
	position: relative;
	z-index: 2;
}

@media (max-width: 767.98px) {
	.bandhan-slider-nav {
		width: 52px;
		height: 52px;
	}

	.our-story__viewport > .bandhan-slider-nav {
		margin-top: 0.5rem;
	}

	.news-room__slider > .bandhan-slider-nav {
		display: none;
	}
}


/* ===== cards.css ===== */
.bandhan-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-bottom: 6px solid var(--bandhan-navy);
	border-radius: 50px 50px 0 0;
	background-color: var(--bandhan-white);
}

.bandhan-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bandhan-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bandhan-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 auto;
	width: 100%;
}

.bandhan-card__title {
	color: var(--bandhan-navy);
	font-family: var(--bandhan-font-heading);
	font-synthesis: none;
}

.bandhan-card__text {
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
}

.bandhan-card__bar {
	width: 100%;
	margin-top: auto;
	border-radius: 0;
	background-color: transparent;
	flex-shrink: 0;
	height: 0;
}

.bandhan-card--gradient {
	border: none;
	border-bottom: 6px solid var(--bandhan-navy);
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	box-shadow: none;
}

.bandhan-card--gradient .bandhan-card__title,
.bandhan-card--gradient .bandhan-card__text {
	color: var(--bandhan-white);
}

@media (max-width: 767.98px) {
	.bandhan-card {
		border-radius: 30px 30px 0 0;
	}
}


/* ===== hero.css ===== */
/**
 * Homepage hero — Figma Final Homepage (1920 × 812).
 */

/* Legacy map hero — hidden, not deleted */
.site-main--home > .hero-section {
	display: none !important;
}

.home-hero-banner {
	position: relative;
	overflow: visible;
	min-height: clamp(28rem, 42vw, 36.25rem);
	margin-bottom: calc(var(--hero-logo-bar-height, 100px) / 2);
	color: var(--bandhan-white);
	background-color: #1a1a1a;
}

.home-hero-banner__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.home-hero-banner__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-hero-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.28) 36%,
		rgba(0, 0, 0, 0.08) 62%,
		rgba(0, 0, 0, 0) 82%
	);
	pointer-events: none;
}

.home-hero-banner__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: clamp(28rem, 42vw, 36.25rem);
	padding-top: clamp(4rem, 8vw, 6rem);
	padding-bottom: clamp(5.5rem, 9vw, 7.5rem);
	box-sizing: border-box;
}

.home-hero-banner__content {
	position: relative;
	z-index: 1;
	max-width: min(36rem, 48%);
}

.home-hero-banner__title {
	margin: 0 0 1.75rem;
	font-family: var(--bandhan-font-heading);
	font-size: 40px;
	line-height: 1.22;
	letter-spacing: 0.01em;
	color: var(--bandhan-white);
	font-synthesis: none;
}

.home-hero-banner__title-line {
	display: block;
}

.home-hero-banner__title-prefix {
	font-weight: 400;
}

.home-hero-banner__title-emphasis {
	font-weight: 700;
}

.home-hero-banner__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.6rem;
	border-radius: 999px;
	background-color: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
}

.home-hero-banner__cta:hover,
.home-hero-banner__cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.home-hero-banner__cta:hover,
.home-hero-banner__cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.home-hero-banner__logo-bar-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	transform: translateY(50%);
	padding: 0 1rem;
	pointer-events: none;
}

.home-hero-banner__logo-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	width: min(100%, 56rem);
	min-height: var(--hero-logo-bar-height, 4.5rem);
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	background: var(--bandhan-white);
	box-shadow: 0 10px 30px rgba(4, 27, 47, 0.12);
	pointer-events: auto;
}

.home-hero-banner__logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-hero-banner__logo-item a {
	display: flex;
	align-items: center;
}

.home-hero-banner__logo-item img {
	display: block;
	height: clamp(1.5rem, 2.5vw, 2.25rem);
	width: auto;
	max-width: 7.5rem;
	object-fit: contain;
}

.home-hero-banner__logo-divider {
	display: inline-block;
	width: 1px;
	height: 1.75rem;
	background: rgba(4, 27, 47, 0.15);
}

@media (max-width: 991px) {
	.home-hero-banner__content {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.home-hero-banner {
		min-height: 24rem;
	}

	.home-hero-banner__inner {
		min-height: 24rem;
		padding-top: 3rem;
		padding-bottom: 5rem;
	}

	.home-hero-banner__title {
		font-size: clamp(1.75rem, 7vw, 2.25rem);
		margin-bottom: 1.25rem;
	}

	.home-hero-banner__logo-bar {
		border-radius: 1.25rem;
		gap: 0.5rem 0.75rem;
	}

	.home-hero-banner__logo-divider {
		display: none;
	}
}

.hero-section {
	position: relative;
	overflow-x: clip;
	overflow-y: visible;
	margin-bottom: calc(var(--hero-logo-bar-height) / 2);
	background-color: var(--hero-bg-color);
}

.hero-section__inner {
	position: relative;
	height: clamp(30rem, 40vw, 36.25rem);
}

.hero-section__layout {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-section__map-col {

	width: 100%;
	max-width: 1010px;
	float: right;
	/* position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	min-width: 0; */
}

.hero-section__map-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-section__map {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transition: filter 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-section__map-stage {
	position: absolute;
	inset: 0;
	overflow: visible;
}

.hero-section__map-highlights {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.hero-map-highlight {
	position: absolute;
	width: clamp(5rem, 14vw, 9.5rem);
	height: clamp(5rem, 14vw, 9.5rem);
	border-radius: 50%;
	opacity: 0;
	transform: translate(-50%, -58%) scale(0.82);
	transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: none;
}

.hero-map-highlight.is-route-active {
	opacity: 0;
	transform: translate(-50%, -58%) scale(1);
	animation: none;
}

.hero-section__map-wrap.is-route-highlight-usa .hero-section__map,
.hero-section__map-wrap.is-route-highlight-uk .hero-section__map,
.hero-section__map-wrap.is-route-highlight-uae .hero-section__map {
	filter: brightness(1.05) saturate(1.08);
}

.hero-section__map-routes,
.hero-section__pins {
	position: absolute;
	pointer-events: none;
}

.hero-section__pins {
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-section__map-routes {
	z-index: 1;
	display: block;
	width: 62%;
	height: auto;
	aspect-ratio: 968 / 240;
	overflow: visible;
	left: 21%;
	top: 24%;
}

.hero-section__pins {
	z-index: 2;
}


/* Route lines — hidden until animated dotted draw (hero-map-routes.svg) */
.hero-map-route {
	fill: none;
	stroke: #002641;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 0 9999;
	stroke-dashoffset: 0;
	shape-rendering: geometricPrecision;
}

.hero-map-pin {
	position: absolute;
	transform: translate(-50%, -100%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-map-pin--usa {
	left: 17.38%;
	top: 39.92%;
}

.hero-map-pin--uk {
	left: 44.42%;
	top: 33.93%;
}

.hero-map-pin--uae {
	left: 55.82%;
	top: 45.91%;
}

.hero-map-pin--india {
	left: 65.12%;
	top: 47.9%;
}

.hero-map-pin__body {
	position: relative;
	display: flex;
	justify-content: center;
	transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-map-pin.is-route-active .hero-map-pin__body {
	transform: scale(1.12);
}

.hero-map-pin__waves {
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 0;
	transform: translateX(-50%);
	pointer-events: none;
	overflow: visible;
}

.hero-map-pin__waves-svg {
	display: block;
	width: clamp(2rem, 2.5vw, 2.75rem);
	height: clamp(2rem, 2.5vw, 2.75rem);
	overflow: visible;
}

.hero-map-pin__ring {
	fill: none;
	stroke: #002641;
	stroke-width: 0.5;
	stroke-opacity: 0.35;
	vector-effect: non-scaling-stroke;
	transform-box: fill-box;
	transform-origin: center;
	animation: hero-map-pin-ring-wave 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.hero-map-pin__ring--1 {
	animation-delay: 0s;
}

.hero-map-pin__ring--2 {
	animation-delay: 0.3s;
}

.hero-map-pin__ring--3 {
	animation-delay: 0.6s;
}

.hero-map-pin__ring--4 {
	animation-delay: 0.9s;
}

@keyframes hero-map-pin-ring-wave {
	0%,
	100% {
		stroke-opacity: 0.35;
		transform: scale(1);
	}

	35% {
		stroke-opacity: 0.72;
		transform: scale(1.06);
	}

	70% {
		stroke-opacity: 0.35;
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-map-pin__ring {
		animation: none;
		stroke-opacity: 0.35;
		transform: none;
	}
}

.hero-map-pin__label {
	position: relative;
	z-index: 1;
	margin-bottom: 0.35rem;
	font-family: var(--bandhan-font-heading);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	color: var(--bandhan-navy);
	white-space: nowrap;
}

.hero-map-pin__icon {
	position: relative;
	z-index: 1;
	display: block;
	width: clamp(1.25rem, 1.6vw, 2rem);
	height: auto;
	object-fit: contain;
	transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-map-pin.is-route-blink .hero-map-pin__icon {
	animation: hero-map-pin-blink 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes hero-map-pin-blink {
	0%,
	100% {
		transform: scale(1);
		filter: brightness(1);
	}

	25%,
	75% {
		transform: scale(1.14);
		filter: brightness(1.15);
	}

	50% {
		transform: scale(0.94);
		filter: brightness(0.92);
	}
}

.hero-map-pin--label-left {
	flex-direction: row;
	align-items: flex-end;
	gap: 0.4rem;
	transform: translate(calc(-1 * clamp(0.625rem, 0.8vw, 1rem)), -100%);
}

.hero-map-pin--label-left .hero-map-pin__label {
	margin-bottom: 0.4rem;
	margin-right: 0;
}

.hero-map-pin--label-right {
	flex-direction: row-reverse;
	align-items: flex-end;
	gap: 0.4rem;
	transform: translate(clamp(0.625rem, 0.8vw, 1rem), -100%);
}

.hero-map-pin--label-right .hero-map-pin__label {
	margin-bottom: 0.4rem;
	margin-left: 0;
}

.hero-section__title {
	margin: 0 0 2.125rem;
	line-height: 1.3214285714;
	color: var(--bandhan-navy);
	font-size: clamp(2rem, 2.5vw + 1rem, 2.5rem);
}

.hero-section__content {
	position: absolute;
	top: 35%;
	left: clamp(2rem, 4.95vw, 8.75rem);
	z-index: 2;
	width: min(34vw, 31.25rem);
}

.hero-section__title-line {
	display: block;
}

.btn.btn-hero-cta {
	background-color: var(--bandhan-red);
	border: none;
	border-radius: 50px;
	color: var(--bandhan-white);
	font-weight: 500;
}

.btn.btn-hero-cta:hover,
.btn.btn-hero-cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.hero-section__logo-bar-wrap {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 3;
	width: 100%;
	max-width: var(--hero-figma-width);
	transform: translate(-50%, 50%);
	/* padding-left: var(--bandhan-section-padding-x); */
	/* padding-right: var(--bandhan-section-padding-x); */
	pointer-events: none;
}

.hero-section__logo-bar {
	pointer-events: auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	align-items: center;
	background-color: var(--bandhan-white);
	border-radius: 40px;
	box-shadow: 8px 9px 30px rgba(0, 0, 0, 0.12);
	height: var(--hero-logo-bar-height);
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2.5rem;
}

.hero-section__logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 50px;
	padding: 0 0.5rem;
}

.hero-section__logo-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.hero-section__logo-item img {
	display: block;
	height: 35px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.hero-section__logo-divider {
	width: 1px;
	height: 87px;
	background-color: #d9d9d9;
	justify-self: center;
}

@media (min-width: 1200px) {
	.hero-section__title {
		font-size: 40px;
		line-height: 50px;
	}
}

@media (max-width: 991.98px) {
	.hero-section {
		margin-bottom: 0;
	}

	.hero-section__inner {
		height: clamp(27rem, 72vw, 34rem);
	}

	.hero-section__map-col {
		position: absolute;
		inset: 0;
		float: none;
		max-width: none;
		width: 100%;
		height: 100%;
	}

	.hero-section__map {
		object-position: center center;
	}

	.hero-section__content {
		top: 20%;
		left: clamp(1.5rem, 7vw, 4rem);
		width: min(72vw, 28rem);
	}

	.hero-section__title {
		margin-bottom: 1.5rem;
		font-size: clamp(2rem, 5vw, 2.875rem);
		line-height: 1.22;
	}

	.hero-section__logo-bar-wrap {
		position: relative;
		left: auto;
		bottom: -70px;
		transform: none;
		margin-top: -2rem;
		padding-bottom: 2rem;
	}

	.hero-section__logo-bar {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		height: auto;
		padding: 1.75rem 1.5rem;
		gap: 1.5rem 2rem;
		border-radius: 30px;
	}

	.hero-section__logo-divider {
		display: none;
	}

	.hero-section__logo-item {
		flex: 0 1 calc(50% - 1rem);
		padding: 0.5rem;
	}

	.hero-map-pin__label {
		font-size: 0.75rem;
		letter-spacing: 0.04em;
	}
}

@media (max-width: 575.98px) {
	.hero-section__inner {
		height: 31rem;
	}

	.hero-section__map {
		object-position: 62% center;
	}

	.hero-section__map-routes,
	.hero-section__pins,
	.hero-section__map-highlights {
		display: none;
	}

	.hero-section__content {
		top: 4.25rem;
		left: 1.25rem;
		width: calc(100% - 2.5rem);
	}

	.hero-section__title {
		max-width: 20rem;
		margin-bottom: 1.25rem;
		font-size: clamp(2rem, 10vw, 2.625rem);
		line-height: 1.18;
	}

	.btn.btn-hero-cta {
		font-size: 12px;
	}

	.hero-section__logo-item {
		flex: 0 1 calc(50% - 1rem);
	}

	.hero-section__logo-bar-wrap {
		margin-top: -1.5rem;
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.hero-section__logo-bar {
		gap: 1rem;
		padding: 1.25rem;
		border-radius: 24px;
	}

	.hero-section__logo-item img {
		height: 34px;
	}
}


/* ===== who-we-are.css ===== */
.who-we-are {
	position: relative;
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	padding-top: calc(var(--hero-logo-bar-height) / 2 + 3rem);
	/* padding-bottom: clamp(8rem, 10vw, 11.5rem); */
	margin-top: calc(var(--hero-logo-bar-height) / -2);
	overflow-x: clip;
	overflow-y: visible;
	z-index: 1;
}

@media (min-width: 992px) {
	.who-we-are {
		padding-top: 7rem;
	}
}

.who-we-are__inner {
	position: relative;
	z-index: 1;
}

.who-we-are__image-wrap {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;	overflow: hidden;
	width: 100%;
	/* margin-bottom: -30px; */
}

.who-we-are__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 640 / 732;
}

.who-we-are__title {
	margin: 0 0 1.75rem;
	padding: 0;
	border: 0;
	font-size: inherit;
	font-weight: normal;
	line-height: inherit;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	line-height: 1.0714285714;
	letter-spacing: 0.56px;
	font-synthesis: none;
}

.who-we-are__content {
	margin-bottom: 2.5rem;
}

.who-we-are__content,
.who-we-are__content p {
	color: var(--bandhan-white);
	margin-bottom: 0;	
}

.who-we-are__content p + p {
	margin-top: 1.875rem;
}

.who-we-are__stats {
	display: grid;
	width: 100%;
	margin-top: 2rem;
}

.who-we-are__stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	padding: 0 1rem;
}

.who-we-are__stat-value {
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0.45rem;
	font-synthesis: none;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.who-we-are__stat-label {
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.15;
}

.who-we-are__stat-label-line {
	display: block;
}

/* .who-we-are__curve {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 185px;
	background-color: var(--bandhan-white);
	border-radius: 100px 100px 0 0;
	z-index: 99;
} */

@media (min-width: 576px) and (max-width: 767.98px) {
	.who-we-are__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem 0;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.who-we-are__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 0;
		margin-top: 2.25rem;
	}

	.who-we-are__stat {
		justify-content: flex-start;
		min-height: 4.5rem;
		padding: 0 1rem;
		border-right: 1px solid rgba(255, 255, 255, 0.25);
	}

	.who-we-are__stat:nth-child(2n) {
		border-right: none;
	}

	.who-we-are__stat:nth-child(odd) {
		padding-left: 0;
	}

	.who-we-are__stat:nth-child(even) {
		padding-right: 0;
	}

	.who-we-are__stat-value {
		font-size: clamp(1.5rem, 3.5vw, 2rem);
		white-space: normal;
	}
}

@media (min-width: 992px) {
	.who-we-are__stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0;
		margin-top: 2.25rem;
	}

	.who-we-are__stat {
		justify-content: flex-start;
		min-height: 4.5rem;
		padding: 0 1.375rem;
		border-right: 1px solid rgba(255, 255, 255, 0.25);
		/* margin-top:20px; */
	}

	.who-we-are__stat:first-child {
		padding-left: 0;
	}

	.who-we-are__stat:last-child {
		padding-right: 0;
		border-right: none;
	}
}

@media (min-width: 1200px) {
	.who-we-are__title {
		font-size: 50px;
		line-height: 60px;
		margin-bottom: 1.0rem;
	}

	.who-we-are__content p + p {
		margin-top: 10px;
	}

	.who-we-are__content {
		margin-bottom: 2.5rem;
	}

	.who-we-are__stat {
		padding: 0 1.625rem;
	}

	.who-we-are__stat:first-child {
		padding-left: 0;
	}

	.who-we-are__stat:last-child {
		padding-right: 0;
	}
}

@media (max-width: 767.98px) {
	.who-we-are {
		padding-top: 4rem;
		/* padding-bottom: 8rem; */
	}

	.who-we-are__image-wrap {
		border-radius: 30px;
	}

	.who-we-are__stat:nth-child(odd) {
		padding-left: 0;
		padding-right: 0.75rem;
	}

	.who-we-are__stat:nth-child(even) {
		padding-left: 0.75rem;
		padding-right: 0;
	}
}

@media (max-width: 575.98px) {
	.who-we-are__stats {
		grid-template-columns: 1fr;
	}

	.who-we-are__stat {
		align-items: center;
		text-align: center;
		padding: 0 0 1.25rem !important;
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		margin-top:20px;
	}

	.who-we-are__stat:last-child {
		border-bottom: none;
		padding-bottom: 0 !important;
	}

	.who-we-are__curve {
		border-radius: 50px 50px 0 0;
		height: 120px;
	}
}


/* ===== our-story.css ===== */
.our-story {
	position: relative;
	background-color: var(--bandhan-white);
	padding-top: clamp(2.25rem, 4vw, 4.5rem);
	padding-bottom: 5rem;
	border-radius: 100px 100px 0 0;
	overflow: hidden;
	z-index: 2;
}

.our-story__inner {
	position: relative;
}

.our-story__header {
	position: relative;
	text-align: center;
	margin-bottom: 3rem;
}

.our-story__cta-wrap {
	flex: 0 0 auto;
}

.our-story__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background-color: var(--bandhan-red);
	border: none;
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.our-story__cta:hover,
.our-story__cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.our-story__title {
	margin: 0 0 1.5rem;
	padding: 0;
	border: 0;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	line-height: 1.0714285714;
	letter-spacing: 0.56px;
	font-synthesis: none;
}

.our-story__intro-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 3vw, 3rem);
	/* max-width: 78rem; */
	margin: 0 auto;
}

.our-story__intro {
	/* flex: 0 1 58rem; */
	max-width: 50rem;
	margin: 0;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
}

.our-story__viewport {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.our-story__stage {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

.our-story__line {
	position: absolute;
	top: 1.875rem;
	left: 0;
	right: 0;
	height: 1px;
	background-color: rgba(0, 38, 65, 0.18);
	pointer-events: none;
	z-index: 1;
}


.our-story__slider {
	overflow: hidden;
}

.our-story__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	will-change: transform;
	transition: transform 0.35s ease-out;
}

.our-story__milestone {
	position: relative;
	flex: 0 0 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 0.625rem;
}

.our-story__year,
.our-story__description,
.our-story__card {
	opacity: 1;
	transform: none;
	transition: none;
}

.our-story__milestone.is-active .our-story__year,
.our-story__milestone.is-active .our-story__description,
.our-story__milestone.is-active .our-story__card {
	opacity: 1;
	transform: none;
	transition: none;
}

.our-story__milestone.is-active .our-story__description {
	transition-delay: 0s;
}

.our-story__milestone.is-active .our-story__card {
	transition-delay: 0s;
}

.our-story.is-sliding-next .our-story__milestone.is-active .our-story__year,
.our-story.is-sliding-next .our-story__milestone.is-active .our-story__description,
.our-story.is-sliding-next .our-story__milestone.is-active .our-story__card,
.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__year,
.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__description,
.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__card,
.our-story.is-sliding-next .our-story__milestone.is-entering .our-story__card-image,
.our-story.is-sliding-prev .our-story__milestone.is-entering .our-story__card-image {
	animation: none;
}

.our-story.is-sliding-next .our-story__milestone.is-active .our-story__description,
.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__description,
.our-story.is-sliding-next .our-story__milestone.is-active .our-story__card,
.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__card {
	animation-delay: 0s;
}

@keyframes our-story-enter-next {
	from {
		opacity: 0.65;
		transform: translateX(12px) translateY(6px) scale(0.99);
	}
	to {
		opacity: 1;
		transform: translateX(0) translateY(0) scale(1);
	}
}

@keyframes our-story-enter-prev {
	from {
		opacity: 0.65;
		transform: translateX(-12px) translateY(6px) scale(0.99);
	}
	to {
		opacity: 1;
		transform: translateX(0) translateY(0) scale(1);
	}
}

@keyframes our-story-image-next {
	from {
		opacity: 1;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes our-story-image-prev {
	from {
		opacity: 1;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.our-story__track,
	.our-story__year,
	.our-story__description,
	.our-story__card {
		transition: none;
	}

	.our-story.is-sliding-next .our-story__milestone.is-active .our-story__year,
	.our-story.is-sliding-next .our-story__milestone.is-active .our-story__description,
	.our-story.is-sliding-next .our-story__milestone.is-active .our-story__card,
	.our-story.is-sliding-next .our-story__milestone.is-entering .our-story__card-image,
	.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__year,
	.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__description,
	.our-story.is-sliding-prev .our-story__milestone.is-active .our-story__card,
	.our-story.is-sliding-prev .our-story__milestone.is-entering .our-story__card-image {
		animation: none;
	}
}

.our-story__marker {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 1.125rem;
}

.our-story__dot {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	position: absolute;
    top: 25px;
	border-radius: 50%;
	background-color: var(--bandhan-red);
	border: none;
	box-shadow:
		0 0 0 5px var(--bandhan-white),
		0 0 0 6px rgba(0, 38, 65, 0.22);
}

.our-story__milestone.is-active .our-story__dot {
	background-color: var(--bandhan-red);
	box-shadow:
		0 0 0 5px var(--bandhan-white),
		0 0 0 6px rgba(0, 38, 65, 0.22);
}

.our-story__year {
	margin: 2.125rem 0 0.625rem;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-heading);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	font-synthesis: none;
}

.our-story__description {
	margin: 0;
	max-width: 15.5rem;
	min-height: 3.125rem;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.25;
}

.our-story__card {
	position: relative;
	width: 100%;
	margin-top: auto;
	padding-top: 0;
	/* padding: 0.75rem; */
}

.our-story__card::before,
.our-story__card::after {
	content: "";
	position: absolute;
	width: 5.625rem;
	height: 4.5rem;
	pointer-events: none;
	z-index: 2;
}

.our-story__card::before {
	top: 0;
	right: 0;
	border-top: 4px solid var(--bandhan-yellow);
	border-right: 4px solid var(--bandhan-yellow);
	border-top-right-radius: 50px;
}

.our-story__card::after {
	bottom: 0;
	left: 0;
	border-bottom: 4px solid var(--bandhan-yellow);
	border-left: 4px solid var(--bandhan-yellow);
	border-bottom-left-radius: 50px;
}

.our-story__card-media {
	position: relative;
	border-radius: 50px;
	overflow: hidden;
	aspect-ratio: 498 / 332;
	background-color: var(--bandhan-white);
	box-shadow: 0 12px 30px rgba(0, 38, 65, 0.08);
}

.our-story__card-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0;
	transform: none !important;
	transition: opacity 0.4s ease-out;
	animation: none !important;
}

.our-story__milestone.is-images-ready .our-story__card-image {
	opacity: 1;
}

@media (min-width: 768px) {
	.our-story {
		margin-top: -6.5rem;
		padding-bottom: 6rem;
	}

	.our-story__header {
		margin-bottom: 4rem;
	}

	.our-story__milestone {
		flex-basis: 50%;
		max-width: 50%;
	}
}

@media (min-width: 992px) {
	/* .our-story__header {
		padding-top: 1rem;
	} */

	.our-story__cta-wrap {
		margin-left: 0;
	}

	.our-story__viewport {
		gap: 0;
	}

	.our-story__milestone {
		flex-basis: 33.3333%;
		max-width: 33.3333%;
	}

	.our-story__year {
		font-size: 35px;
		line-height: 1.2;
	}
}

@media (min-width: 1200px) {
	.our-story__title {
		font-size: 56px;
		line-height: 60px;
		margin-bottom: 1.875rem;
	}

	.our-story__intro {
		font-size: 20px;
		line-height: 30px;
	}

	.our-story__description {
		font-size: 20px;
		line-height: 25px;
		max-width: 17rem;
		min-height: 3.125rem;
	}

	.our-story__card {
		margin-top: auto;
		padding-top: 0;
		/* padding: 0.875rem; */
	}

	.our-story__card-media {
		border-radius: 50px;
	}

	.our-story__card::before {
		border-top-right-radius: 50px;
	}

	.our-story__card::after {
		border-bottom-left-radius: 50px;
	}
}

@media (max-width: 767.98px) {
	.our-story {
		border-radius: 50px 50px 0 0;
	}

	.our-story__intro-row {
		flex-direction: column;
		gap: 1.25rem;
	}

	.our-story__intro {
		max-width: 100%;
		text-align: center;
	}

	.our-story__viewport {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.our-story__stage {
		flex: 1 1 100%;
		order: -1;
	}

	.our-story__viewport > .bandhan-slider-nav {
		width: 44px;
		height: 44px;
		margin-top: 0;
	}

	.our-story__line {
		top: 1.5rem;
	}

	.our-story__card {
		padding: 0 0.5rem 0.5rem;
		padding-top: 0;
	}

	.our-story__card::before,
	.our-story__card::after {
		width: 4rem;
		height: 3rem;
		border-width: 3px;
	}

	.our-story__card-media {
		border-radius: 30px;
	}

	.our-story__card::before {
		border-top-right-radius: 30px;
	}

	.our-story__card::after {
		border-bottom-left-radius: 30px;
	}
}


/* ===== social-impact.css ===== */
.social-impact {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.social-impact__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.social-impact__background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0.8;
}

.social-impact__background-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		var(--bandhan-white) 0%,
		rgba(255, 255, 255, 0) 78.879%
	);
}

.social-impact__inner {
	position: relative;
	z-index: 1;
}

.social-impact__title {
	margin: 0 0 1.75rem;
	padding: 0;
	border: 0;
	text-align: center;
	color: var(--bandhan-navy-mid);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	line-height: 1.0714285714;
	letter-spacing: 0.56px;
	font-synthesis: none;
}

.social-impact__content {
	max-width: 81rem;
	margin: 0 auto 2.5rem;
	text-align: center;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
}

.social-impact__content p {
	margin-bottom: 0;
}

.social-impact__content p + p {
	margin-top: 1.875rem;
}

.social-impact__cta-wrap {
	text-align: center;
	margin-bottom: 3rem;
}

.social-impact__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background-color: var(--bandhan-red-dark);
	border: none;
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.social-impact__cta:hover,
.social-impact__cta:focus {
	background-color: var(--bandhan-red);
	color: var(--bandhan-white);
}

.social-impact__cards {
	/* margin-top: 0; */
}

.social-impact__card {
	/* border: 1px solid var(--bandhan-navy); */
	border-bottom: 6px solid var(--bandhan-navy);
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* .social-impact__card {
	padding-bottom: 0;
} */

.social-impact__card:hover,
.social-impact__card:focus-within {
	border-color: transparent transparent var(--bandhan-navy);
	background-color: var(--bandhan-navy-mid);
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	box-shadow: 0 16px 32px rgba(0, 38, 65, 0.2);
}

.social-impact__card-icon {
	width: 6.25rem;
	height: 6.25rem;
	/* margin-bottom: 1.5rem; */
	color: var(--bandhan-navy);
	transition: color 0.25s ease;
}

.social-impact__card-icon-svg,
.bandhan-inline-icon-svg {
	display: block;
	width: 60px;
	height: 60px;
}

.social-impact__card-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: filter 0.25s ease;
}

.social-impact__card-body {
	/* margin-top: auto; */
	padding-bottom: 50px;
}

.social-impact__card-title {
	margin: 0 0 0.5rem;
	color: var(--bandhan-text-dark);
	font-size: 1.12rem;
	font-weight: 600;
	line-height: 1.25;
}

.social-impact__card:hover .social-impact__card-title,
.social-impact__card:hover .social-impact__card-stat,
.social-impact__card:focus-within .social-impact__card-title,
.social-impact__card:focus-within .social-impact__card-stat {
	color: var(--bandhan-white);
}

.social-impact__card-stat {
	margin: 0;
	/* color: var(--bandhan-text-dark); */
	/* font-size: 1rem; */
	font-weight: 400 !important;
	/* line-height: 1.25; */
}

.social-impact__card:hover .social-impact__card-icon,
.social-impact__card:focus-within .social-impact__card-icon {
	color: var(--bandhan-white);
}

.social-impact__card:hover .social-impact__card-icon img,
.social-impact__card:focus-within .social-impact__card-icon img {
	filter: brightness(0) invert(1);
}

.social-impact__card-bar {
	height: 0;
	transition: opacity 0.25s ease;
}

.social-impact__card:hover .social-impact__card-bar,
.social-impact__card:focus-within .social-impact__card-bar {
	opacity: 1;
}

@media (min-width: 992px) {
	.social-impact {
		padding-top: 6rem;
		padding-bottom: 8rem;
	}

	.social-impact__cta-wrap {
		margin-bottom: 3.75rem;
	}
}

@media (min-width: 1200px) {
	.social-impact__title {
		font-size: 56px;
		line-height: 60px;
		margin-bottom: 1.875rem;
	}

	/* .social-impact__content,
	.social-impact__content {
		font-size: 20px;
		line-height: 30px;
	} */

	.social-impact__content p + p {
		margin-top: 30px;
	}

	.social-impact__card {
		/* min-height: 19.8125rem; */
		padding-top: 1.125rem;
	}

	/* .social-impact__card-title {
		font-size: 30px;
		line-height: 30px;
	} */

	.social-impact__card-stat {
		font-size: 25px;
		line-height: 25px;
	}

	.social-impact__card-bar {
		height: 0;
	}
}

@media (max-width: 767.98px) {
	.social-impact__card-body {
		padding-bottom: 1.75rem;
	}

	.social-impact__cta-wrap {
		margin-bottom: 2rem;
	}
}


/* ===== what-we-do.css ===== */
.what-we-do {
	position: relative;
	background-color: var(--bandhan-sky);
	/* border-top: 2px solid #00a8d6; */
	border-radius: 100px 100px 0 0;
	margin-top: -4rem;
	padding-top: 5rem;
	padding-bottom: 5rem;
	z-index: 2;
}

.what-we-do__inner {
	position: relative;
}

.what-we-do__title {
	margin: 0 0 1.75rem;
	padding: 0;
	border: 0;
	text-align: center;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	line-height: 1.0714285714;
	letter-spacing: 0.56px;
	font-synthesis: none;
}

.what-we-do__intro {
	max-width: 64rem;
	margin: 0 auto 2.5rem;
	text-align: center;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
}

.what-we-do__portfolio-heading {
	margin: 0 0 2.5rem;
	text-align: center;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-heading);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.3px;
	font-synthesis: none;
}

.what-we-do__businesses {
	margin-bottom: 6.5rem;
}

.what-we-do__business {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	padding: 0 1rem;
}

.what-we-do__business--divider {
	position: relative;
}

.what-we-do__business-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3.75rem;
	margin-bottom: 0.5rem;
}

.what-we-do__business-logo img {
	max-width: 8.5rem;
	max-height: 2.75rem;
	width: auto;
	height: auto;
	object-fit: contain;
}

.what-we-do__business-logo a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.what-we-do__business-name {
	margin: 0 0 0.5rem;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.75;
}

.what-we-do__business-description {
	margin: 0;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
}

.what-we-do__closing {
	max-width: 84rem;
	margin: 0 auto 2.5rem;
	text-align: center;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5625;
}

.what-we-do__closing p {
	margin: 0;
}

.what-we-do__closing p + p {
	margin-top: 1rem;
}

.what-we-do__closing strong,
.what-we-do__closing b {
	color: var(--bandhan-text-dark);
	font-weight: 700;
}

.what-we-do__cta-wrap {
	text-align: center;
}

.what-we-do__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background-color: var(--bandhan-red);
	border: none;
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.what-we-do__cta:hover,
.what-we-do__cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

@media (min-width: 992px) {
	.what-we-do {
		margin-top: -5rem;
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.what-we-do__business--divider::after {
		content: "";
		position: absolute;
		top: 0;
		right: -0.75rem;
		width: 0.5px;
		height: 9.75rem;
		background-color: #002641;
	}
}

@media (min-width: 1200px) {
	.what-we-do__title {
		font-size: 56px;
		line-height: 60px;
		margin-bottom: 1.875rem;
	}

	.what-we-do__intro {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 3rem;
	}

	.what-we-do__portfolio-heading {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 3.75rem;
	}

	.what-we-do__business-name,
	.what-we-do__business-description {
		font-size: 14px;
		font-weight: 700;
	}

	/* .what-we-do__business-logo {
		margin-bottom: 2.5rem;
	} */

	/* .what-we-do__closing,
	.what-we-do__closing p {
		font-size: 20px;
		line-height: 25px;
	} */
}

@media (max-width: 767.98px) {
	.what-we-do {
		border-radius: 50px 50px 0 0;
		margin-top: -3rem;
	}

	.what-we-do__businesses {
		margin-bottom: 3.5rem;
	}
}


/* ===== leadership-message.css ===== */
.leadership-message {
	position: relative;
	background: linear-gradient(
		180deg,
		var(--bandhan-navy-mid) 0%,
		var(--bandhan-navy-dark) 48.558%,
		var(--bandhan-navy-deep) 100%
	);
	padding-top: clamp(4rem, 7vw, 6.25rem);
	padding-bottom: clamp(3rem, 5vw, 4.5rem);
	overflow: hidden;
}

.leadership-message__quote {
	margin-top: -40px;
}

.leadership-message__quote p {
	line-height: 1.5 !important;
}

.leadership-message__title {
	color: var(--bandhan-white);
}

.leadership-message__quote-mark img {
	display: block;
	width: 6.5rem;
	height: auto;
}

.leadership-message__quote,
.leadership-message__quote p {
	color: var(--bandhan-white);
}

.leadership-message__attribution {
	margin-top: 2.5rem;
}

.leadership-message__leader-name {
	margin: 0 0 0.5rem;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 1.5rem;
	font-weight: 700 !important;
	line-height: 1.25;
	font-synthesis: none;
}

.leadership-message__leader-role,
.leadership-message__leader-role p {
	margin: 0;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.67 !important;
}

.leadership-message__leader-role p + p {
	margin-top: 0;
	font-style: italic;
}

.leadership-message__media {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.leadership-message__photo-wrap {
	width: 100%;
	max-width: 32.5625rem;
}

.leadership-message__photo {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: center bottom;
}

@media (min-width: 992px) {
	.leadership-message {
		max-height: 700px;
		padding-bottom: 0;
	}

	.leadership-message__media {
		align-self: stretch;
		justify-content: flex-end;
	}

	.leadership-message__photo-wrap {
		max-width: none;
		height: 100%;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
	}

	.leadership-message__photo {
		max-height: 48.0625rem;
		width: auto;
		max-width: 100%;
		margin-left: auto;
	}
}

@media (min-width: 1200px) {
	.leadership-message__quote-mark img {
		width: 10.564375rem;
	}

	.leadership-message__attribution {
		margin-top: 3.75rem;
	}

	.leadership-message__leader-name {
		font-size: 1.875rem !important;
		line-height: 1 !important;
		margin-bottom: 0.75rem;
	}
}

@media (max-width: 991.98px) {
	.leadership-message {
		max-height: none;
		overflow: visible;
		padding-bottom: 0;
	}

	.leadership-message__quote {
		margin-top: 0;
	}

	.leadership-message__quote-mark img {
		width: 4.5rem;
	}

	.leadership-message__media {
		margin-top: 1.5rem;
	}

	.leadership-message__photo-wrap {
		max-width: 20rem;
		margin: 0 auto;
	}
}


/* ===== what-drives-us.css ===== */
.what-drives-us {
	position: relative;
	overflow: hidden;
	padding-top: 5rem;
	padding-bottom: 3rem;
	background-color: var(--bandhan-white);
}

.what-drives-us__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.what-drives-us__background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.what-drives-us__inner {
	position: relative;
	z-index: 1;
}

.what-drives-us__title {
	margin: 0 0 3rem;
	padding: 0;
	border: 0;
	text-align: center;
	color: var(--bandhan-navy);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	line-height: 1.0714285714;
	letter-spacing: 0.56px;
	font-synthesis: none;
}

.what-drives-us .social-impact__cards > [class*="col-"] {
	display: flex;
}

.what-drives-us .social-impact__card {
	width: 100%;
	border-bottom: 6px solid var(--bandhan-navy);
	overflow: hidden;
}

.what-drives-us .social-impact__card-stat {
	padding: 0 30px;
}

@media (min-width: 992px) {
	.what-drives-us {
		padding-top: 6rem;
		padding-bottom: 2rem;
	}

	.what-drives-us__title {
		margin-bottom: 4rem;
	}
}

@media (min-width: 1200px) {
	.what-drives-us__title {
		font-size: 56px;
		line-height: 60px;
		margin-bottom: 4.5rem;
	}

	.what-drives-us .social-impact__card-stat {
		font-size: 15px;
		line-height: 26px;
	}
}

@media (max-width: 767.98px) {
	.what-drives-us .social-impact__card-stat {
		padding: 0 1rem;
	}
}


/* ===== core-values.css ===== */
.core-values {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: var(--bandhan-white);
}

.core-values__title {
	margin: 0 0 0.75rem;
	text-align: center;
	color: var(--bandhan-navy);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.4vw, 3.5rem) !important;
	font-weight: 275 !important;
	line-height: 1.0714285714 !important;
	letter-spacing: 0.01em;
	font-synthesis: none;
}

.core-values__title-prefix {
	font-weight: 275 !important;
}

.core-values__title-emphasis {
	font-weight: 700 !important;
}

.core-values__intro {
	max-width: 44rem;
	margin: 0 auto 2.25rem;
	text-align: center;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: 0.9375rem !important;
	font-weight: 300;
	line-height: 1.6 !important;
}

.core-values__layout {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.core-values__media {
	position: relative;
	flex: 1 1 50%;
	min-height: 280px;
	overflow: hidden;
	border-radius: 0;
}

.core-values__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	object-position: center;
}

.core-values__description-bar {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	min-height: 136px;
	padding: 1.5rem 1.75rem;
	background: linear-gradient(180deg, rgba(4, 27, 47, 0) 0%, rgba(4, 27, 47, 0.88) 55%, rgba(4, 27, 47, 0.96) 100%);
}

.core-values__description-text {
	margin: 0;
	max-width: 46rem;
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--bandhan-white);
}

.core-values__panel {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	padding: 2rem 1.75rem;
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	color: var(--bandhan-white);
}

.core-values__list {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}

.core-values__item-wrap {
	margin: 0;
}

.core-values__item {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	font-family: var(--bandhan-font-heading);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.core-values__item:not(.is-active) {
	opacity: 0.72;
	font-size: clamp(1.125rem, 1.25vw, 1.5rem);
	line-height: 1.25;
}

.core-values__item.is-active {
	opacity: 1;
	font-size: clamp(1.125rem, 1.25vw, 1.5rem);
	line-height: 1.25;
}

.core-values__item-letter {
	flex: 0 0 auto;
	min-width: 2.25rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.75rem, 2.1vw, 2.5rem);
	font-weight: 300;
	line-height: 1;
	transition: font-size 0.2s ease, font-weight 0.2s ease;
}

.core-values__item.is-active .core-values__item-letter {
	font-weight: 600;
}

.core-values__item-separator {
	flex: 0 0 auto;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.125rem, 1.25vw, 1.5rem);
	font-weight: 300;
	line-height: 1;
	opacity: 0.9;
}

.core-values__item-title {
	flex: 1 1 auto;
	font-family: var(--bandhan-font-heading);
	font-size: inherit;
	font-weight: 300;
	line-height: 1.25;
}

.core-values__item.is-active .core-values__item-title {
	font-weight: 600;
}

.core-values__item-arrow {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.core-values__item.is-active .core-values__item-arrow {
	opacity: 1;
	transform: translateX(0);
}

.core-values__item-arrow img {
	display: block;
	width: 100%;
	height: 100%;
	filter: brightness(0) invert(1);
}

@media (min-width: 992px) {
	.core-values__intro {
		margin-bottom: 3rem;
	}

	.core-values__layout {
		flex-direction: row;
		align-items: stretch;
		/* min-height: 544px; */
	}

	.core-values__media {
		/* min-height: 544px; */
		border-top-left-radius: 100px;
	}

	.core-values__image {
		/* min-height: 544px; */
	}

	.core-values__panel {
		border-top-right-radius: 100px;
		padding: 1.75rem 3.5rem 1.75rem 4rem;
	}

	.core-values__description-bar {
		padding: 2rem 2.5rem;
	}

	.core-values__description-text {
		font-size: 1.25rem;
	}
}

@media (max-width: 991.98px) {
	.core-values {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.core-values__media {
		border-top-left-radius: 60px;
		border-top-right-radius: 60px;
	}

	.core-values__panel {
		border-bottom-left-radius: 2rem;
		border-bottom-right-radius: 2rem;
	}
}

@media (max-width: 767.98px) {
	.core-values__media,
	.core-values__image {
		min-height: 220px;
	}

	.core-values__description-bar {
		min-height: 0;
		padding: 1.25rem 1.25rem;
	}

	.core-values__panel {
		padding: 1.5rem 1.25rem;
	}
}


/* ===== leading-with-purpose.css ===== */
/**
 * Leading with Purpose — Figma desktop block: 1344 × 572px panels.
 * Combined with Built on Trust (614px) = 1186px frame below the title.
 */

.leading-purpose {
	padding: clamp(3rem, 5vw, 5rem) 0 0;
	background-color: var(--bandhan-white);
}

.site-main--home .leading-purpose__inner {
	max-width: calc(84rem + (2 * var(--bandhan-section-padding-x)));
}

.site-main--home .leading-purpose__title {
	/* width: 100%;
	max-width: 84rem; */
	margin: 0 auto clamp(2rem, 3vw, 3rem);
	/* font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-navy) !important;
	text-align: center;
	font-synthesis: none; */
}

.site-main--home .leading-purpose__title-prefix,
.site-main--home .leading-purpose__title-emphasis {
	margin: 0;
	font-family: inherit;
	font-size: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit;
	color: inherit !important;
	font-synthesis: none;
}

.site-main--home .leading-purpose__title-prefix {
	font-weight: 300 !important;
}

.site-main--home .leading-purpose__title-emphasis {
	font-weight: 700 !important;
}

.site-main--home .leading-purpose__leaders {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.2vw, 1rem);
	width: 100%;
	max-width: 84rem;
	margin: 0 auto;
	align-items: stretch;
}

.site-main--home .leading-purpose__leaders > [class*="col-"] {
	width: auto;
	max-width: none;
	padding: 0;
}

.site-main--home .leading-purpose__leader {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	overflow: hidden;
	background-color: var(--bandhan-leading-panel);
	padding: 3.125rem 0 0 2.5rem;
}

.site-main--home .leading-purpose__leader--left {
	border-top-left-radius: 100px;
}

.site-main--home .leading-purpose__leader--right {
	border-top-right-radius: 100px;
}

.leading-purpose__leader-photo {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom right;
}

.site-main--home .leading-purpose__leader-content {
	flex: 0 0 auto;
	padding: 50px 0 0 50px;
}

.site-main--home .leading-purpose__leader-name {
	margin: 0 0 0.75rem;
	font-family: var(--bandhan-font-heading);
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--bandhan-navy) !important;
	font-synthesis: none;
}

.site-main--home .leading-purpose__leader-role {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.site-main--home .leading-purpose__leader-role-line {
	/* margin: 0; */
	/* max-width: 23.75rem; */
	font-family: var(--bandhan-font-heading);
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic !important;
	/* line-height: 1.625 !important; */
	color: #002641 !important;
	font-synthesis: none;
}

.leading-purpose__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: 1.25rem;
	border-radius: 999px;
	background: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.leading-purpose__cta:hover,
.leading-purpose__cta:focus {
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.site-main--home .leading-purpose__leader-media {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	align-self: stretch;
	width: 100%;
	max-width: 19.375rem;
	min-height: 0;
	text-align: right;
}

@media (min-width: 1200px) {
	.leading-purpose {
		padding-top: 5rem;
	}

	.site-main--home .leading-purpose__leader {
		padding: 3.125rem 0 0 2.5rem;
	}

	.site-main--home .leading-purpose__leader-name {
		font-size: 20px !important;
		line-height: 1.25 !important;
	}

	.site-main--home .leading-purpose__leader-role-line {
		font-size: 14px !important;
		line-height: 1.625 !important;
	}
}

@media (max-width: 991.98px) {
	.leading-purpose {
		padding-top: 3rem;
	}

	.site-main--home .leading-purpose__leaders {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.site-main--home .leading-purpose__leader {
		flex-direction: column;
		padding: 2rem 1.5rem 0;
	}

	.site-main--home .leading-purpose__leader--left,
	.site-main--home .leading-purpose__leader--right {
		border-top-left-radius: 60px;
		border-top-right-radius: 60px;
	}

	.site-main--home .leading-purpose__leader-content {
		max-width: 100%;
		/* padding: 0.5rem 0 0; */
	}

	.site-main--home .leading-purpose__leader-media {
		align-self: auto;
		max-width: 100%;
		margin-top: 1.5rem;
	}

	.site-main--home .leading-purpose__leader-photo {
		width: 100%;
		height: auto;
		max-height: none;
		object-position: bottom center;
	}
}


/* ===== built-on-trust.css ===== */
.built-on-trust {
	position: relative;
	padding: clamp(3.5rem, 5vw, 5rem) 0;
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	color: var(--bandhan-white);
	overflow: hidden;
}

.built-on-trust__inner {
	position: relative;
	z-index: 1;
}

.built-on-trust__stat-label{
	font-size:15px !important
}
.site-main--home .built-on-trust__inner {
	max-width: calc(84rem + (2 * var(--bandhan-section-padding-x)));
}

.site-main--home .built-on-trust__inner > .row {
	--bs-gutter-x: clamp(2rem, 4vw, 5rem);
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
}

.built-on-trust__title {
	margin: 0 0 1.5rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.75rem, 2.5vw, 2.75rem);
	line-height: 1.2;
	color: var(--bandhan-white);
	font-synthesis: none;
}

.built-on-trust__title-prefix {
	font-weight: 300;
}

.built-on-trust__title-emphasis {
	font-weight: 700;
}

.built-on-trust__content,
.built-on-trust__content p,
.built-on-trust__content li {
	font-family: var(--bandhan-font-body);
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
}

.built-on-trust__content ul {
	margin: 0.75rem 0;
	padding-left: 1.25rem;
}

.built-on-trust__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
	border-radius: 50px;
	background-color: var(--bandhan-red-dark);
	border: none;
	color: var(--bandhan-white);
	text-decoration: none;
}

.built-on-trust__cta:hover,
.built-on-trust__cta:focus {
	background-color: var(--bandhan-red);
	color: var(--bandhan-white);
}

.built-on-trust__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	/* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.built-on-trust__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: clamp(9rem, 14vw, 12.5rem);
	padding: 1.5rem;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.built-on-trust__stat:nth-child(2n) {
	border-right: 0;
}

.built-on-trust__stat:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.built-on-trust__stat--blank {
	pointer-events: none;
}

.built-on-trust__footnote {
	margin: 1rem 0 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
}

.built-on-trust__stat-icon img {
	display: block;
	width: 70px;
	height: 70px;
	margin: 0 auto 0.75rem;
	filter: brightness(0) invert(1);
}

.built-on-trust__stats .built-on-trust__stat-value {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.25rem, 3.5vw, 3.25rem) !important;
	font-weight: 700 !important;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
	font-synthesis: none;
}

.built-on-trust__stat-label {
	margin: 0.5rem 0 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.4;
	opacity: 0.9;
}

@media (max-width: 575.98px) {
	.built-on-trust__stats {
		grid-template-columns: 1fr;
	}
	.built-on-trust__stat{
		border-right: none;
	}
}

@media (min-width: 1200px) {
	.site-main--home .built-on-trust {
		box-sizing: border-box;
		min-height: 38.375rem;
		padding: 5rem 0;
	}

	.site-main--home .built-on-trust__inner > .row {
		--bs-gutter-x: 5rem;
	}

	.site-main--home .built-on-trust__title {
		margin-bottom: 2rem;
		font-size: 2.75rem;
		line-height: 1.2;
	}

	.site-main--home .built-on-trust__stat {
		min-height: 12.5rem;
		padding: 2rem 1.5rem;
	}

	.site-main--home .built-on-trust__stats .built-on-trust__stat-value {
		font-size: 3.25rem !important;
		line-height: 1.15;
	}
}

@media (max-width: 991.98px) {
	.built-on-trust {
		padding: 3.5rem 0 4.5rem;
	}
}


/* ===== news-room.css ===== */
.news-room {
	--news-room-card-gap: 28px;
	--news-room-card-radius: 20px;
	--news-room-bar-color: var(--bandhan-navy);
	--news-room-card-overlap: clamp(4.5rem, 8vw, 7.25rem);
	--news-room-bg-split: clamp(14rem, 24vw, 21rem);

	position: relative;
	padding: 4rem 0 0;
	background:
		linear-gradient(
			180deg,
			#d7ecff 0%,
			#d7ecff var(--news-room-bg-split),
			var(--bandhan-white) var(--news-room-bg-split),
			var(--bandhan-white) 100%
		);
	overflow: visible;
	z-index: 2;
}

.news-room__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.news-room__background-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transform: rotate(180deg);
	opacity: 0.22;
}

.news-room__bg-ellipse {
	position: absolute;
	width: min(365px, 28vw);
	height: auto;
	opacity: 0.9;
}

.news-room__bg-ellipse--left {
	left: clamp(1rem, 4.8vw, 93px);
	bottom: 8%;
}

.news-room__bg-ellipse--right {
	right: clamp(1rem, 4vw, 60px);
	bottom: 2%;
	width: min(349px, 26vw);
}

.news-room__inner {
	position: relative;
	z-index: 1;
}

.news-room__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	margin-bottom: 2.625rem;
}

.news-room__title {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.75rem, 2.35vw, 2.8125rem);
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark);
}

.news-room__tabs {
	position: relative;
	display: flex;
	gap: 1rem;
	padding-bottom: 0.4rem;
}

.news-room__tabs::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #e2e2e2;
}

.news-room__tab {
	position: relative;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(61, 61, 61, 0.43);
	font-family: var(--bandhan-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.news-room__tab.is-active {
	color: var(--bandhan-text-dark);
}

.news-room__tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.4rem;
	width: 100%;
	height: 3px;
	background-color: var(--bandhan-text-dark);
	z-index: 1;
}

.news-room__slider-wrap {
	position: relative;
	margin-bottom: calc(-1 * var(--news-room-card-overlap));
}

.news-room__slider {
	position: relative;
}

.news-room__viewport {
	overflow: hidden;
	padding: 0 clamp(2rem, 3vw, 3rem) var(--news-room-card-overlap);
}

.news-room__track {
	display: flex;
	gap: var(--news-room-card-gap);
	transition: transform 0.35s ease;
}

.news-room__card {
	display: flex;
	flex: 0 0 calc((100% - (2 * var(--news-room-card-gap))) / 3);
	flex-direction: column;
	min-width: 0;
	border-bottom: 6px solid var(--news-room-bar-color);
}

.news-room__card.is-hidden {
	display: none;
}

.news-room__card-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	background: var(--bandhan-white);
	border: 0;
	border-radius: var(--news-room-card-radius) var(--news-room-card-radius) 0 0;
	box-shadow: none;
	text-decoration: none;
	overflow: hidden;
}

.news-room__card-image-wrap {
	margin: 0.65rem 0.65rem 0;
	overflow: hidden;
	border-radius: var(--news-room-card-radius) var(--news-room-card-radius) 0 0;
}

.news-room__card-image {
	display: block;
	width: 100%;
	aspect-ratio: 505 / 283;
	object-fit: cover;
}

.news-room__card-body {
	flex: 1 1 auto;
	padding: 0.625rem 0.85rem 0.875rem;
}

.news-room__card-date {
	margin: 0 0 0.5rem;
	font-family: var(--bandhan-font-heading) !important;
	font-weight: 400 !important;
	font-size: 0.6875rem !important;
	font-style: italic;
	line-height: 1.45 !important;
	color: var(--bandhan-text-dark);
}

.news-room__card-title {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--bandhan-text-dark);
}

.news-room__card-bar {
	flex-shrink: 0;
	height: 0;
	background-color: var(--news-room-bar-color);
	border-radius: 0 0 1px 1px;
}


@media (max-width: 1199.98px) {
	.news-room__card {
		flex-basis: calc((100% - var(--news-room-card-gap)) / 2);
	}
}

@media (max-width: 767.98px) {
	.news-room {
		--news-room-card-overlap: 1.75rem;
		--news-room-bg-split: 18rem;
		padding: 3.5rem 0 0;
	}

	.news-room__header {
		margin-bottom: 2rem;
	}

	.news-room__viewport {
		padding: 0;
	}

	.news-room__card {
		flex-basis: 100%;
	}

	.news-room__bg-ellipse {
		width: min(220px, 45vw);
	}
}


/* ===== journey-of-progress.css ===== */
.journey-progress {
	position: relative;
	padding: 5.5rem 0 5rem;
	background-color: var(--bandhan-white);
	overflow: hidden;
}

.journey-progress__background {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.journey-progress__background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	/*opacity: 0.32;*/
}

.journey-progress__inner {
	position: relative;
	z-index: 1;
	max-width: 1300px;
	margin: 0 auto;
}

.journey-progress__circle {
	position: absolute;
	z-index: 1;
	width: clamp(180px, 18vw, 260px);
	height: clamp(180px, 18vw, 260px);
	border-radius: 50%;
	overflow: hidden;
}

.journey-progress__circle img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.journey-progress__circle--left {
	top: 3.25rem;
	left: clamp(0.75rem, 3vw, 2.5rem);
}

.journey-progress__circle--right {
	right: clamp(0.75rem, 3vw, 2.5rem);
	bottom: 1.75rem;
}

.journey-progress__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

.journey-progress__title {
	margin: 0 0 1.5rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3vw, 3.45rem);
	line-height: 1.12;
	color: var(--bandhan-text-dark);
}

.journey-progress__intro,
.journey-progress__closing {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--bandhan-text-dark);
}

/* .journey-progress__body,
.journey-progress__body p {
	margin: 0 0 1rem;
	color: var(--bandhan-text-muted);
} */

.journey-progress__body p:last-child {
	margin-bottom: 0;
}

.journey-progress__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
	border-radius: 50px;
	background-color: var(--bandhan-red-dark);
	border: none;
	color: var(--bandhan-white);
	text-decoration: none;
}

@media (min-width: 1200px) {
	.journey-progress__circle--left {
		left: 0.5rem;
	}

	.journey-progress__circle--right {
		right: 0.5rem;
		bottom: 1rem;
	}
}

.journey-progress__cta:hover,
.journey-progress__cta:focus {
	background-color: var(--bandhan-red);
	color: var(--bandhan-white);
}

@media (max-width: 991.98px) {
	.journey-progress {
		padding: 3.5rem 0;
	}

	.journey-progress__circle {
		display: none;
	}
}


/* ===== resource-links.css ===== */
.resource-links {
	padding: clamp(3rem, 5vw, 4.25rem) 0 clamp(3rem, 5vw, 4rem);
	background-color: #e3f2ff;
}

.resource-links__grid {
	align-items: stretch;
	justify-content: center;
}

.resource-links__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	padding: 0;
	text-align: center;
}

.resource-links__icon img {
	display: block;
	width: clamp(3.5rem, 4.2vw, 4.75rem);
	height: clamp(3.5rem, 4.2vw, 4.75rem);
	margin: 0 auto 1rem;
	object-fit: contain;
}

.resource-links__title {
	/* min-height: 2.5em; */
	margin: 0 0 1.125rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--bandhan-text-dark);
}

.resource-links__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	border-radius: 50px;
	background-color: var(--bandhan-red-dark);
	border: none;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.resource-links__button:hover,
.resource-links__button:focus {
	background-color: var(--bandhan-red);
	color: var(--bandhan-white);
}

@media (max-width: 767.98px) {
	.resource-links {
		padding-top: 3rem;
	}

	.resource-links__title {
		min-height: auto;
	}
}


/* ===== home-sections.css ===== */
/**
 * Homepage section spacing — single source of truth for .site-main--home.
 * Preserves curve/overlap pairs; normalizes standard section rhythm.
 */

.site-main--home {
	--bandhan-home-section-y: 5rem; /* 80px */
}

@media (min-width: 1200px) {
	.site-main--home {
		--bandhan-home-section-y: 6.25rem; /* 100px */
	}
}

@media (max-width: 767.98px) {
	.site-main--home {
		--bandhan-home-section-y: 3.5rem;
	}
}

.site-main--home > .hero-section {
	margin-bottom: 0;
}

/* Who We Are — curve clearance for Our Story overlap */
.site-main--home > .who-we-are {
	padding-bottom: 100px;
}

.site-main--home .who-we-are__stats {
	margin-top: 2.25rem;
}

@media (min-width: 768px) {
	.site-main--home .who-we-are__stats {
		margin-top: 3.75rem;
	}
}

@media (max-width: 767.98px) {
	.site-main--home > .who-we-are {
		padding-bottom: 8rem;
	}
}

/* Our Story — white curve overlap */
.site-main--home > .our-story {
	margin-top: -4.25rem;
	padding-top: clamp(2.25rem, 4vw, 4.5rem);
	padding-bottom: 5rem;
	border-radius: 100px 100px 0 0;
	overflow: hidden;
}

@media (min-width: 768px) {
	.site-main--home > .our-story {
		margin-top: -6.5rem;
		padding-bottom: 6rem;
	}
}

@media (min-width: 1200px) {
	.site-main--home > .our-story {
		margin-top: -8.5rem;
		padding-top: 4.5rem;
	}
}

@media (max-width: 767.98px) {
	.site-main--home > .our-story {
		margin-top: -4.5rem;
		border-radius: 50px 50px 0 0;
	}
}

/* Social Impact */
.site-main--home > .social-impact {
	padding-top: var(--bandhan-home-section-y);
	padding-bottom: var(--bandhan-home-section-y);
}

@media (min-width: 1200px) {
	.site-main--home > .social-impact {
		padding-top: 6rem;
		padding-bottom: 8rem;
	}
}

/* What We Do — rounded-top overlap */
.site-main--home > .what-we-do {
	margin-top: -4rem;
	padding-top: var(--bandhan-home-section-y);
	padding-bottom: var(--bandhan-home-section-y);
}

@media (min-width: 1200px) {
	.site-main--home > .what-we-do {
		margin-top: -5rem;
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

@media (max-width: 991.98px) {
	.site-main--home > .what-we-do {
		margin-top: -3rem;
	}
}

/* What Drives Us */
.site-main--home > .what-drives-us {
	padding-top: var(--bandhan-home-section-y);
	padding-bottom: 3rem;
}

@media (min-width: 1200px) {
	.site-main--home > .what-drives-us {
		padding-top: 6rem;
		padding-bottom: 2rem;
	}
}

/* Core Values */
.site-main--home > .core-values {
	padding-top: var(--bandhan-home-section-y);
	padding-bottom: var(--bandhan-home-section-y);
}

/* Leading with Purpose + Built on Trust */
.site-main--home > .leading-purpose {
	padding-top: clamp(3rem, 5vw, 5rem);
	padding-bottom: 0;
}

.site-main--home > .built-on-trust {
	padding-top: clamp(3.5rem, 5vw, 5rem);
	padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

@media (min-width: 1200px) {
	.site-main--home > .built-on-trust {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

/* News Room — journey overlap owned here (slider wrap also pulls cards down) */
.site-main--home > .news-room {
	padding-top: 4rem;
	padding-bottom: 0;
	z-index: 2;
}

/* Journey of Progress — overlaps news cards */
.site-main--home > .journey-progress {
	margin-top: calc(-1 * clamp(3.5rem, 6vw, 5.5rem));
	padding-top: clamp(6rem, 10vw, 9rem);
}

@media (max-width: 767.98px) {
	.site-main--home > .news-room {
		padding-top: 3.5rem;
	}

	.site-main--home > .journey-progress {
		margin-top: -1.75rem;
		padding-top: 4.5rem;
	}
}

/* Resource Links */
.site-main--home > .resource-links {
	padding-top: clamp(3rem, 5vw, 4.25rem);
	padding-bottom: clamp(3rem, 5vw, 4rem);
	background-color: #e3f2ff;
}

@media (max-width: 767.98px) {
	.site-main--home > .social-impact,
	.site-main--home > .what-we-do,
	.site-main--home > .what-drives-us,
	.site-main--home > .core-values,
	.site-main--home > .built-on-trust {
		padding-top: var(--bandhan-home-section-y);
		padding-bottom: var(--bandhan-home-section-y);
	}

	.site-main--home > .leading-purpose {
		padding-top: var(--bandhan-home-section-y);
	}

	.site-main--home > .resource-links {
		padding-top: 3rem;
	}
}


/* ===== footer.css ===== */
/* Site footer — Figma */

.site-footer {
	background-color: var(--bandhan-sky-light);
	color: var(--bandhan-white);
}

.site-footer__outer {
	padding-bottom: 0;
}

.site-footer__panel {
	position: relative;
	border-radius: 100px 100px 0 0; /* Figma Rectangle 84 */
	overflow: visible;
}

.site-footer__bg {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, #0a3354 0%, #041b2f 100%);
	pointer-events: none;
	z-index: 0;
}

.site-footer__whatsapp {
	position: absolute;
	top: 0;
	right: clamp(2rem, 5vw, 4.5rem);
	z-index: 3;
	display: block;
	width: 72px;
	height: 72px;
	transform: translateY(-50%);
}

.site-footer__whatsapp img {
	display: block;
	width: 100%;
	height: auto;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 112.5rem; /* ~1800px content feel on 1920 */
	margin: 0 auto;
	padding: clamp(3.25rem, 5.5vw, 4.75rem) clamp(1.75rem, 5vw, 5rem) clamp(1.75rem, 3vw, 2.5rem);
}

.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem 3.5rem;
	margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.site-footer__logo {
	display: block;
	flex: 0 0 auto;
}

.site-footer__logo img {
	display: block;
	width: 100%;
	max-width: 230px;
	height: auto;
	max-height: 75px;
	object-fit: contain;
}

.site-footer__newsletter {
	flex: 0 1 32rem;
	width: 100%;
	max-width: 32rem;
	margin-left: auto;
}

.site-footer__newsletter-title {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading) !important;
	font-size: clamp(1.75rem, 2.8vw, 2.125rem) !important;
	font-weight: 400 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.01em !important;
	color: var(--bandhan-white);
	font-synthesis: none;
}

.site-footer__newsletter-prefix {
	font-weight: 300 !important;
}

.site-footer__newsletter-emphasis {
	font-weight: 700 !important;
}

.site-footer__newsletter-form {
	display: flex;
	align-items: center;
	min-height: 3.0rem;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 999px;
	overflow: hidden;
	background: transparent;
}

.site-footer__newsletter-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 1.5rem;
	border: 0;
	background: transparent;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 0.9375rem !important;
	font-weight: 500;
	line-height: 1.2 !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.site-footer__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.9);
	opacity: 1;
}

.site-footer__newsletter-divider {
	flex-shrink: 0;
	width: 1px;
	height: 2.25rem;
	background-color: rgba(255, 255, 255, 0.85);
}

.site-footer__newsletter-submit {
	flex-shrink: 0;
	padding: 0 1.75rem;
	border: 0;
	background: transparent;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading) !important;
	font-size: var(--bandhan-cta-font-size) !important;
	font-weight: var(--bandhan-cta-font-weight) !important;
	line-height: var(--bandhan-cta-line-height) !important;
	letter-spacing: var(--bandhan-cta-letter-spacing) !important;
	text-transform: uppercase;
	cursor: pointer;
}

.site-footer__divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.28);
}

.site-footer__divider--top {
	margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.site-footer__divider--bottom {
	margin: clamp(2rem, 3.5vw, 2.75rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.4fr);
	gap: 2rem clamp(2rem, 4vw, 4.5rem);
}

.site-footer__column-title {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading) !important;
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: 0.01em !important;
	color: var(--bandhan-white);
	font-synthesis: none;
}

.site-footer__column-title--contact {
	font-size: 1.125rem !important;
}

.site-footer__menu,
.site-footer__contact,
.site-footer__social,
.site-footer .widget_nav_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__menu,
.site-footer .widget_nav_menu ul {
	display: flex;
	flex-direction: column;
	/* gap: 0.7rem; */
}

.site-footer__menu a,
.site-footer .widget_nav_menu a {
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--bandhan-font-body) !important;
	font-size: 0.8375rem !important;
	font-weight: 300 !important;
	line-height: 1.4 !important;
	letter-spacing: 0.01em !important;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus,
.site-footer .widget_nav_menu a:hover,
.site-footer .widget_nav_menu a:focus,
.site-footer__contact a:hover,
.site-footer__contact a:focus {
	color: var(--bandhan-white);
	opacity: 1;
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--bandhan-font-body) !important;
	font-size: 0.9375rem !important;
	font-weight: 300 !important;
	line-height: 1.45 !important;
	letter-spacing: 0.01em !important;
}

.site-footer__contact a {
	color: inherit;
	text-decoration: none;
	font: inherit !important;
}

.site-footer__contact-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-top: 0.2rem;
}

.site-footer__contact-icon--location {
	width: 14px;
	height: 17px;
}

.site-footer__contact-icon img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 16px;
	max-height: 17px;
	object-fit: contain;
}

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	margin-top: 1.5rem;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
	opacity: 0.75;
}

.site-footer__social img {
	display: block;
	width: 18px;
	height: auto;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.site-footer__bottom-left,
.site-footer__bottom-right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.75rem;
}

.site-footer__bottom-right {
	margin-left: auto;
}

.site-footer__copyright,
.site-footer__credit {
	margin: 0;
	font-family: var(--bandhan-font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 300 !important;
	line-height: 1.4 !important;
	color: rgba(255, 255, 255, 0.9);
}

.site-footer__legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.site-footer__legal ul,
.site-footer__legal .widget_nav_menu ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__legal .widget {
	display: contents;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--bandhan-font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 300 !important;
	line-height: 1.4 !important;
	text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus {
	color: var(--bandhan-white);
}

.site-footer__credit-mark {
	font-size: 0.65rem;
	line-height: 1;
	vertical-align: super;
}

.site-footer__scroll-top {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-footer__scroll-top-circle,
.site-footer__scroll-top-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.site-footer__scroll-top-circle {
	width: 48px;
	height: 48px;
}

.site-footer__scroll-top-arrow {
	width: 14px;
	height: 14px;
}

@media (max-width: 1199.98px) {
	.site-footer__panel {
		border-radius: 64px 64px 0 0;
	}

	.site-footer__links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__bottom-right {
		margin-left: 0;
	}
}

@media (max-width: 767.98px) {
	.site-footer__panel {
		border-radius: 40px 40px 0 0;
	}

	.site-footer__whatsapp {
		right: 1rem;
		width: 58px;
		height: 58px;
	}

	.site-footer__inner {
		padding-inline: 1.25rem;
	}

	/* .site-footer__top {
		flex-direction: column;
	} */

	.site-footer__newsletter {
		max-width: none;
		margin-left: 0;
	}

	.site-footer__newsletter-form {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
		padding: 0.75rem;
		border-radius: 1.5rem;
	}

	.site-footer__newsletter-input {
		padding: 0.75rem 1rem;
		text-align: center;
	}

	.site-footer__newsletter-divider {
		width: 100%;
		height: 1px;
	}

	.site-footer__newsletter-submit {
		padding: 0.75rem 1rem;
	}

	.site-footer__links {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.site-footer__bottom,
	.site-footer__bottom-left,
	.site-footer__bottom-right {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* ===== header.css ===== */
.site-header {
	background-color: var(--bandhan-navy);
	position: relative;
	z-index: 1000;
	min-height: var(--bandhan-header-height);
}

.site-header .navbar {
	padding: 0;
	min-height: var(--bandhan-header-height);
	height: var(--bandhan-header-height);
}

.site-header .navbar > .container-fluid {
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--bandhan-header-height);
	min-height: var(--bandhan-header-height);
	max-width: var(--bandhan-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--bandhan-section-padding-x);
	padding-right: var(--bandhan-section-padding-x);
}

.site-header .navbar-brand {
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin-right: clamp(1rem, 2.5vw, 2.5rem);
}

.site-header .navbar-brand img {
	height: 46px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.site-header .navbar-collapse {
	align-items: center;
}

.site-header .navbar-nav {
	align-items: center;
	--bs-nav-link-font-size: var(--bandhan-header-nav-font-size);
	--bs-nav-link-font-weight: var(--bandhan-header-nav-font-weight);
	--bs-nav-link-padding-x: 0;
	--bs-nav-link-padding-y: 0;
	font-size: var(--bandhan-header-nav-font-size);
}

.site-header .navbar-nav > .nav-item {
	flex-shrink: 0;
}

.site-header .navbar-nav > .nav-item > .nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: var(--bandhan-header-nav-font-size) !important;
	font-weight: var(--bandhan-header-nav-font-weight) !important;
	line-height: var(--bandhan-header-nav-line-height) !important;
	letter-spacing: var(--bandhan-header-nav-letter-spacing) !important;
	text-transform: uppercase;
	padding: 0 !important;
	white-space: nowrap;
}

.site-header .navbar-nav > .nav-item > .nav-link:hover,
.site-header .navbar-nav > .nav-item > .nav-link:focus {
	color: var(--bandhan-off-white);
}

.site-header .navbar-nav .dropdown-toggle::after {
	display: none;
}

.site-header .nav-chevron {
	width: 10px;
	height: 6px;
	flex-shrink: 0;
}

.site-header .dropdown-menu {
	background-color: var(--bandhan-navy);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.5rem;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
}

/* Invisible hover bridge so the cursor can reach submenu items without closing. */
@media (min-width: 1200px) {
	.site-header .navbar-nav .dropdown-menu::before {
		content: "";
		position: absolute;
		top: -0.5rem;
		left: 0;
		width: 100%;
		height: 0.5rem;
	}
}

.site-header .dropdown-item {
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: var(--bandhan-header-nav-font-size);
	text-transform: uppercase;
	padding: 0.5rem 1.25rem;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--bandhan-white);
}

.site-header .btn-header-cta {
	background-color: var(--bandhan-red);
	border: none;
	border-radius: 50px;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: var(--bandhan-header-nav-font-size);
	font-weight: var(--bandhan-header-nav-font-weight);
	line-height: var(--bandhan-header-nav-line-height);
	letter-spacing: var(--bandhan-header-nav-letter-spacing);
	height: auto;
	min-height: 0;
	padding: 0.675rem 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	text-transform: uppercase;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header .btn-header-cta:hover,
.site-header .btn-header-cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.site-header .header-actions.is-search-open .btn-header-cta {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(0.5rem);
	width: 0;
	min-width: 0;
	padding-left: 0;
	padding-right: 0;
	margin: 0;
	overflow: hidden;
	border: 0;
}

.site-header .header-search {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.site-header .header-search-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	flex-shrink: 0;
	cursor: pointer;
}

.site-header .header-search-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header .header-search__form {
	display: none;
	align-items: center;
	gap: 0.35rem;
	min-width: min(16rem, 52vw);
	padding: 0.25rem 0.35rem 0.25rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.site-header .header-actions.is-search-open .header-search__form {
	display: inline-flex;
}

.site-header .header-actions.is-search-open .header-search-link {
	display: none;
}

.site-header .header-search__input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	border: 0;
	outline: none;
	background: transparent;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem;
	line-height: 1.3;
	padding: 0.35rem 0;
}

.site-header .header-search__input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.site-header .header-search__input::-webkit-search-decoration,
.site-header .header-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.site-header .header-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.site-header .header-search__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--bandhan-white);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}

.site-header .header-search__close:hover,
.site-header .header-search__close:focus {
	background: rgba(255, 255, 255, 0.22);
}

.site-header .header-search__submit img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.site-header .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.35);
	padding: 0.35rem 0.65rem;
	z-index: 1060;
}

.site-header .navbar-toggler-icon {
	filter: invert(1);
}

.site-header__drawer-close {
	display: none;
}

.site-header__nav-backdrop {
	display: none;
}

@media (max-width: 1199.98px) {
	.site-header {
		position: sticky;
		top: 0;
	}

	.site-header .navbar {
		height: auto;
		min-height: var(--bandhan-header-height);
	}

	.site-header .navbar > .container-fluid {
		position: relative;
		height: auto;
		min-height: var(--bandhan-header-height);
		flex-wrap: nowrap;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	.site-header .navbar-brand {
		position: relative;
		z-index: 1060;
	}

	.site-header .navbar-brand img {
		height: 40px;
		max-width: 160px;
	}

	.site-header .navbar-toggler {
		border-radius: 0.35rem;
		border-width: 1px;
		padding: 0.4rem 0.55rem;
		margin-left: auto;
	}

	.site-header .navbar-toggler:focus {
		box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.2);
	}

	.site-header__nav-backdrop {
		display: block !important;
		position: fixed;
		inset: 0;
		z-index: 1040;
		background: rgba(0, 16, 32, 0.55);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.35s ease, visibility 0.35s ease;
	}

	.site-header__nav-backdrop[hidden] {
		display: block !important;
	}

	body.nav-open .site-header__nav-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* Left → right slide drawer (override Bootstrap collapse height animation) */
	.site-header .navbar-collapse.collapse,
	.site-header .navbar-collapse.collapsing {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(22rem, 86vw);
		height: 100dvh !important;
		max-height: 100dvh !important;
		margin: 0 !important;
		padding: 1.25rem 1.5rem 2rem;
		background-color: var(--bandhan-navy);
		border: 0;
		box-shadow: 12px 0 40px rgba(0, 0, 0, 0.28);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		visibility: visible !important;
		transform: translateX(-105%);
		transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
		z-index: 1050;
		pointer-events: none;
	}

	.site-header .navbar-collapse.show,
	.site-header .navbar-collapse.is-open {
		transform: translateX(0);
		pointer-events: auto;
	}

	.site-header__drawer-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		align-self: flex-end;
		width: 2.5rem;
		height: 2.5rem;
		margin: 0 0 1rem;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.28);
		border-radius: 0.35rem;
		background: transparent;
		color: var(--bandhan-white);
		font-size: 1.5rem;
		line-height: 1;
		cursor: pointer;
	}

	.site-header__drawer-close:hover,
	.site-header__drawer-close:focus {
		background: rgba(255, 255, 255, 0.08);
		color: var(--bandhan-white);
	}

	.site-header .navbar-nav {
		width: 100%;
		align-items: flex-start;
		gap: 0.15rem;
		margin: 0;
	}

	.site-header .navbar-nav > .nav-item {
		width: 100%;
		text-align: left;
	}

	.site-header .navbar-nav > .nav-item > .nav-link {
		justify-content: flex-start;
		width: 100%;
		padding: 0.85rem 0.25rem !important;
	}

	.site-header .navbar-nav .dropdown-menu {
		position: static !important;
		float: none;
		transform: none !important;
		width: 100%;
		margin: 0 0 0.35rem;
		padding: 0.25rem 0 0.5rem 0.75rem;
		border: 0;
		border-radius: 0;
		background-color: rgba(255, 255, 255, 0.04);
		box-shadow: none;
		text-align: left;
	}

	.site-header .dropdown-item {
		padding: 0.55rem 0.75rem;
		font-size: 0.8125rem;
		letter-spacing: 0.02em;
	}

	.site-header .header-actions {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center !important;
		gap: 1rem !important;
		width: 100%;
		margin-top: auto;
		margin-left: 0 !important;
		padding-top: 1.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-header .header-search {
		margin-left: auto;
	}

	.site-header .header-actions.is-search-open .header-search {
		flex: 1 1 100%;
		margin-left: 0;
	}

	.site-header .header-actions.is-search-open .header-search__form {
		width: 100%;
		min-width: 0;
	}

	.site-header .btn-header-cta {
		width: auto;
		max-width: 100%;
		min-width: 11rem;
		padding: 0.7rem 1.75rem;
		text-align: center;
	}

	.site-header .header-search-link {
		width: 24px;
		height: 24px;
	}

	body.nav-open {
		overflow: hidden;
	}
}

@media (max-width: 575.98px) {
	.site-header .navbar > .container-fluid {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.site-header .navbar-brand img {
		height: 36px;
		max-width: 140px;
	}

	.site-header .navbar-collapse.collapse,
	.site-header .navbar-collapse.collapsing {
		width: min(20rem, 90vw);
		padding: 1rem 1.25rem 1.75rem;
	}

	.site-header .navbar-nav > .nav-item > .nav-link {
		padding: 0.75rem 0.15rem !important;
		font-size: 0.8125rem !important;
	}

	.site-header .btn-header-cta {
		min-width: 9.5rem;
		padding: 0.65rem 1.5rem;
	}
}

@media (min-width: 1200px) {
	.site-header .navbar-collapse {
		flex: 1 1 auto;
		min-width: 0;
	}

	.site-header .navbar-nav {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: center;
		gap: clamp(0.625rem, 1vw, 1.25rem);
	}

	.site-header .header-actions {
		flex-shrink: 0;
		gap: 0.875rem !important;
	}

	.site-header .navbar-brand {
		flex-shrink: 0;
	}

	.site-header .navbar-nav .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
		pointer-events: none;
		z-index: 1050;
	}

	.site-header .navbar-nav .dropdown:hover > .dropdown-menu,
	.site-header .navbar-nav .dropdown:focus-within > .dropdown-menu,
	.site-header .navbar-nav .dropdown-menu.show {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.site-header .navbar-nav .dropdown-item {
		pointer-events: auto;
		cursor: pointer;
	}
}


/* ===== home-animations.css ===== */
/**
 * Page scroll reveals, parallax, and micro-interactions.
 */

body.page-home,
body.page-fwc {
	scroll-behavior: smooth;
}

[data-page-animate].bandhan-animate-init .bandhan-reveal {
	transition:
		opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
		filter 1.05s cubic-bezier(0.16, 1, 0.3, 1),
		clip-path 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal.is-visible {
	transition-delay: var(--bandhan-delay, 0ms);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal:not(.is-visible) {
	opacity: 0;
	transform: var(--bandhan-reveal-transform, translate3d(0, 2rem, 0));
	transition-delay: 0ms;
}

[data-page-animate].bandhan-animate-init .bandhan-reveal.is-visible {
	opacity: 1;
	transform: var(--bandhan-reveal-visible-transform, none);
	filter: none;
	clip-path: inset(0 0 0 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--fade-up:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 2rem, 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--blur-up:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 2.25rem, 0);
	filter: blur(8px);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--zoom-in:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 1.75rem, 0) scale(0.92);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--clip-up:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 0, 0);
	clip-path: inset(100% 0 0 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--slide-left:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(-2.5rem, 0, 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--slide-right:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(2.5rem, 0, 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--fade-in:not(.is-visible) {
	--bandhan-reveal-transform: none;
	opacity: 0;
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--title-prefix:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 1.5rem, 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--title-emphasis:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 2rem, 0);
}

[data-page-animate].bandhan-animate-init .bandhan-reveal--hero-line:not(.is-visible) {
	--bandhan-reveal-transform: translate3d(0, 2.5rem, 0);
}

@media (prefers-reduced-motion: reduce) {
	body.page-home,
	body.page-fwc {
		scroll-behavior: auto;
	}

	[data-page-animate].bandhan-animate-init .bandhan-reveal {
		transition-duration: 0.01ms !important;
	}
}

@media (prefers-reduced-motion: no-preference) {
	[data-page-animate].bandhan-animate-init .bandhan-reveal--hero-cta,
	[data-page-animate].bandhan-animate-init .bandhan-reveal--hero-logo {
		transition-duration: 1s;
	}

	[data-page-animate].bandhan-animate-init .hero-section__map-wrap {
		transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
	}

	[data-page-animate].bandhan-animate-init .hero-section__map-wrap.is-visible {
		transform: none;
		animation: bandhan-hero-map-float 7s ease-in-out 1.2s infinite;
	}

	[data-page-animate].bandhan-animate-init .hero-section__map-wrap.bandhan-reveal.is-visible {
		transform: none !important;
	}

	@keyframes bandhan-hero-map-float {
		0%,
		100% {
			transform: translate3d(0, 0, 0);
		}

		50% {
			transform: translate3d(0, -0.45rem, 0);
		}
	}

	[data-page-animate].bandhan-animate-init .hero-map-pin.bandhan-reveal {
		transition:
			opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
	}

	[data-page-animate].bandhan-animate-init .hero-map-pin.hero-map-pin--animate-in {
		animation: bandhan-hero-pin-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	@keyframes bandhan-hero-pin-in {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

	[data-page-animate].bandhan-animate-init .social-impact__background-image {
		transform: scale(1.08);
		transition: transform 14s cubic-bezier(0.22, 1, 0.36, 1);
	}

	[data-page-animate].bandhan-animate-init .social-impact.is-section-active .social-impact__background-image {
		transform: scale(1);
	}

	[data-page-animate].bandhan-animate-init .our-story__timeline,
	[data-page-animate].bandhan-animate-init .who-we-are__curve {
		transition:
			opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
	}

	[data-page-animate].bandhan-animate-init .our-story__timeline {
		opacity: 0;
		transform: translate3d(0, 2rem, 0);
	}

	[data-page-animate].bandhan-animate-init .who-we-are__curve {
		transform: translate3d(0, 100%, 0);
	}

	[data-page-animate].bandhan-animate-init .our-story.is-section-active .our-story__timeline {
		opacity: 1;
		transform: none;
		transition-delay: 180ms;
	}

	[data-page-animate].bandhan-animate-init .our-story:not(.is-section-active) .our-story__timeline {
		opacity: 0;
		transform: translate3d(0, 2rem, 0);
		transition-delay: 0ms;
	}

	[data-page-animate].bandhan-animate-init .hero-section__map {
		animation: none;
	}

	[data-page-animate].bandhan-animate-init .wwai-hero__bg {
		animation: bandhan-hero-bg-zoom 16s cubic-bezier(0.22, 1, 0.36, 1) forwards;
		transform-origin: center center;
	}

	@keyframes bandhan-hero-bg-zoom {
		from {
			transform: scale(1.1);
		}

		to {
			transform: scale(1);
		}
	}

	[data-page-animate].bandhan-animate-init .wwai-hero__overlay {
		animation: bandhan-hero-overlay-in 1.4s ease 0.2s both;
	}

	@keyframes bandhan-hero-overlay-in {
		from {
			opacity: 0.45;
		}

		to {
			opacity: 1;
		}
	}

	@media (max-width: 991.98px) {
		[data-page-animate].bandhan-animate-init .hero-section__map {
			animation: none;
		}
	}

	[data-page-animate] [data-bandhan-parallax] {
		/* transform: translate3d(0, var(--bandhan-parallax-y, 0), 0); */
		/* will-change: transform; */
	}

	[data-page-animate] .leadership-message__photo[data-bandhan-parallax] {
		/* transform: translate3d(-50%, var(--bandhan-parallax-y, 0), 0); */
	}

	[data-page-animate].bandhan-animate-init .bandhan-reveal.is-visible .built-on-trust__stat-icon img,
	[data-page-animate].bandhan-animate-init .bandhan-reveal.is-visible .who-we-are__stat-value {
		animation: bandhan-stat-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
		animation-delay: calc(var(--bandhan-delay, 0ms) + 120ms);
	}

	@keyframes bandhan-stat-pop {
		from {
			opacity: 0;
			transform: scale(0.82) translate3d(0, 0.75rem, 0);
		}

		to {
			opacity: 1;
			transform: scale(1) translate3d(0, 0, 0);
		}
	}

	[data-page-animate] .bandhan-counter-pop {
		animation: bandhan-counter-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	@keyframes bandhan-counter-pop {
		0% {
			transform: scale(1);
		}

		45% {
			transform: scale(1.12);
		}

		100% {
			transform: scale(1);
		}
	}

	[data-page-animate].bandhan-animate-init section.is-section-active {
		--bandhan-section-glow: 1;
	}

	[data-page-animate] [class*='__card']:not(.swiper-slide):not([class*='fwc-team__card']):not([class*='news-room__card']):not([class*='our-story__card']),
	[data-page-animate] .resource-links__item,
	[data-page-animate] .what-we-do__business,
	[data-page-animate] .core-values__item,
	[data-page-animate] .leading-purpose__leader,
	[data-page-animate] .journey-of-progress__item {
		transition:
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			box-shadow 0.4s ease,
			border-color 0.4s ease;
	}

	[data-page-animate] .social-impact__card:hover,
	[data-page-animate] [class*='__card']:not(.swiper-slide):not([class*='fwc-team__card']):not([class*='news-room__card']):not([class*='our-story__card']):hover,
	[data-page-animate] .resource-links__item:hover,
	[data-page-animate] .what-we-do__business:hover,
	[data-page-animate] .core-values__item:hover,
	[data-page-animate] .journey-of-progress__item:hover {
		transform: translateY(-0.5rem);
	}

	/* Built on Trust stats + News Room + Our Story: no hover motion */
	[data-page-animate] .built-on-trust__stat,
	[data-page-animate] .built-on-trust__stat:hover,
	[data-page-animate] .news-room [class*='news-room__card'],
	[data-page-animate] .news-room [class*='news-room__card']:hover,
	[data-page-animate] .our-story:not(.is-sliding) .our-story__card,
	[data-page-animate] .our-story:not(.is-sliding) .our-story__card:hover,
	[data-page-animate] .our-story:not(.is-sliding) .our-story__card-image,
	[data-page-animate] .our-story:not(.is-sliding) .our-story__card-image:hover {
		transform: none !important;
		transition: none !important;
		box-shadow: none !important;
	}

	[data-page-animate] .leading-purpose__leader:hover .leading-purpose__leader-photo {
		transform: none;
	}

	[data-page-animate] .leading-purpose__leader-photo {
		transition: none;
	}

	[data-page-animate] .btn-hero-cta,
	[data-page-animate] .built-on-trust__cta,
	[data-page-animate] .our-story__cta,
	[data-page-animate] .social-impact__cta,
	[data-page-animate] .what-we-do__cta,
	[data-page-animate] .journey-progress__cta {
		position: relative;
		overflow: hidden;
		transition:
			transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
			box-shadow 0.35s ease,
			background-color 0.35s ease;
	}

	[data-page-animate] .btn-hero-cta::after,
	[data-page-animate] .built-on-trust__cta::after,
	[data-page-animate] .our-story__cta::after,
	[data-page-animate] .social-impact__cta::after,
	[data-page-animate] .what-we-do__cta::after,
	[data-page-animate] .journey-progress__cta::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(
			105deg,
			transparent 35%,
			rgba(255, 255, 255, 0.28) 50%,
			transparent 65%
		);
		transform: translateX(-120%);
		transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
		pointer-events: none;
	}

	[data-page-animate] .btn-hero-cta:hover,
	[data-page-animate] .built-on-trust__cta:hover,
	[data-page-animate] .our-story__cta:hover,
	[data-page-animate] .social-impact__cta:hover,
	[data-page-animate] .what-we-do__cta:hover,
	[data-page-animate] .journey-progress__cta:hover {
		transform: translateY(-3px);
	}

	[data-page-animate] .btn-hero-cta:hover {
		box-shadow: 0 14px 32px rgba(208, 45, 42, 0.38);
	}

	[data-page-animate] .built-on-trust__cta:hover,
	[data-page-animate] .our-story__cta:hover,
	[data-page-animate] .social-impact__cta:hover,
	[data-page-animate] .what-we-do__cta:hover,
	[data-page-animate] .journey-progress__cta:hover {
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	}

	[data-page-animate] .btn-hero-cta:hover::after,
	[data-page-animate] .built-on-trust__cta:hover::after,
	[data-page-animate] .our-story__cta:hover::after,
	[data-page-animate] .social-impact__cta:hover::after,
	[data-page-animate] .what-we-do__cta:hover::after,
	[data-page-animate] .journey-progress__cta:hover::after {
		transform: translateX(120%);
	}

	[data-page-animate].bandhan-animate-init .who-we-are.is-section-active .who-we-are__curve {
		transform: translate3d(0, 0, 0);
	}

	[data-page-animate].bandhan-animate-init .who-we-are:not(.is-section-active) .who-we-are__curve {
		transform: translate3d(0, 100%, 0);
	}

	[data-page-animate].bandhan-animate-init .social-impact__background-image,
	[data-page-animate].bandhan-animate-init .our-story__timeline,
	[data-page-animate].bandhan-animate-init .hero-section__map-wrap.is-visible {
		will-change: transform, opacity;
	}
}


/* ===== page-hero.css ===== */
/**
 * Global inner-page banner hero — shared wwai-hero pattern.
 * Used on Impact with Integrity, Growth with Intent, Future with Clarity, IR, etc.
 */

.wwai-hero,
.wwai-hero__inner,
.contact-hero,
.contact-hero__inner,
.contact-hero__content,
.bbd-hero,
.bbd-hero__inner {
	height: var(--bandhan-banner-height) !important;
	min-height: var(--bandhan-banner-height) !important;
}

.wwai-hero {
	position: relative;
	color: var(--bandhan-off-white, #f5f5f5);
	overflow: hidden;
}

.wwai-hero__media {
	position: absolute;
	inset: 0;
}

.wwai-hero__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.wwai-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		-87deg,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0.72) 100%
	);
}

.wwai-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 3.0625rem;
	padding-bottom: clamp(3rem, 8vw, 5.5rem);
	box-sizing: border-box;
}

.wwai-hero__top {
	flex: 0 0 auto;
}

.wwai-hero__bottom {
	flex: 0 0 auto;
	margin-top: clamp(4rem, 12vw, 18.6875rem);
}

/* .wwai-hero__breadcrumb {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.775rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
} */

/* .wwai-hero__breadcrumb .bandhan-breadcrumb__link,
.wwai-hero__breadcrumb .bandhan-breadcrumb__current,
.wwai-hero__breadcrumb .bandhan-breadcrumb__sep {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
} */

.wwai-hero__breadcrumb .bandhan-breadcrumb__link {
	text-decoration: none;
	opacity: 0.92;
	transition: opacity 0.2s ease;
}

.wwai-hero__breadcrumb .bandhan-breadcrumb__link:hover,
.wwai-hero__breadcrumb .bandhan-breadcrumb__link:focus {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* Shared clickable breadcrumb links across hero variants */
.bandhan-breadcrumb .bandhan-breadcrumb__link,
.bandhan-breadcrumb .bandhan-breadcrumb__current,
.bandhan-breadcrumb .bandhan-breadcrumb__sep,
.contact-hero__breadcrumb .bandhan-breadcrumb__link,
.contact-hero__breadcrumb .bandhan-breadcrumb__current,
.contact-hero__breadcrumb .bandhan-breadcrumb__sep,
.si-hero__breadcrumb .bandhan-breadcrumb__link,
.si-hero__breadcrumb .bandhan-breadcrumb__current,
.si-hero__breadcrumb .bandhan-breadcrumb__sep,
.bbd-hero__breadcrumb .bandhan-breadcrumb__link,
.bbd-hero__breadcrumb .bandhan-breadcrumb__current,
.bbd-hero__breadcrumb .bandhan-breadcrumb__sep,
.bod-member-hero__breadcrumb .bandhan-breadcrumb__link,
.bod-member-hero__breadcrumb .bandhan-breadcrumb__current,
.bod-member-hero__breadcrumb .bandhan-breadcrumb__sep,
.privacy-policy-hero__breadcrumb .bandhan-breadcrumb__link,
.privacy-policy-hero__breadcrumb .bandhan-breadcrumb__current,
.privacy-policy-hero__breadcrumb .bandhan-breadcrumb__sep {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}

.bandhan-breadcrumb .bandhan-breadcrumb__link,
.contact-hero__breadcrumb .bandhan-breadcrumb__link,
.si-hero__breadcrumb .bandhan-breadcrumb__link,
.bbd-hero__breadcrumb .bandhan-breadcrumb__link,
.bod-member-hero__breadcrumb .bandhan-breadcrumb__link,
.privacy-policy-hero__breadcrumb .bandhan-breadcrumb__link {
	text-decoration: none;
	opacity: 0.92;
	transition: opacity 0.2s ease;
}

.bandhan-breadcrumb .bandhan-breadcrumb__link:hover,
.bandhan-breadcrumb .bandhan-breadcrumb__link:focus,
.contact-hero__breadcrumb .bandhan-breadcrumb__link:hover,
.contact-hero__breadcrumb .bandhan-breadcrumb__link:focus,
.si-hero__breadcrumb .bandhan-breadcrumb__link:hover,
.si-hero__breadcrumb .bandhan-breadcrumb__link:focus,
.bbd-hero__breadcrumb .bandhan-breadcrumb__link:hover,
.bbd-hero__breadcrumb .bandhan-breadcrumb__link:focus,
.bod-member-hero__breadcrumb .bandhan-breadcrumb__link:hover,
.bod-member-hero__breadcrumb .bandhan-breadcrumb__link:focus,
.privacy-policy-hero__breadcrumb .bandhan-breadcrumb__link:hover,
.privacy-policy-hero__breadcrumb .bandhan-breadcrumb__link:focus {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.wwai-hero__title {
	margin: 0;
	max-width: 54.1875rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.25rem, 4.5vw, 2.5rem);
	line-height: 1.32;
	letter-spacing: 0.01em;
	color: var(--bandhan-off-white, #f5f5f5);
	font-synthesis: none;
}

.wwai-hero__title-prefix {
	font-weight: 300 !important;
}

.wwai-hero__title-emphasis {
	font-weight: 700 !important;
}

@media (max-width: 991.98px) {
	.wwai-hero__inner {
		padding-top: 2rem;
		padding-bottom: clamp(2.5rem, 8vw, 4rem);
	}
}

@media (max-width: 767.98px) {
	.wwai-hero__overlay {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.65) 100%
		);
	}
}


/* ===== who-we-are-impact.css ===== */
/* Who We Are — Impact with Integrity page */

.wwai-hero {
	position: relative;
	color: var(--bandhan-off-white, #f5f5f5);
	overflow: hidden;
}

.wwai-hero__media {
	position: absolute;
	inset: 0;
}

.wwai-hero__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.wwai-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		-87deg,
		rgba(0, 0, 0, 0) 1%,
		rgba(0, 0, 0, 0.72) 100%
	);
}

.wwai-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 3.0625rem;
	padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.wwai-hero__top {
	flex: 0 0 auto;
}

.wwai-hero__bottom {
	flex: 0 0 auto;
	margin-top: clamp(4rem, 12vw, 18.6875rem);
}

.wwai-hero__breadcrumb {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.775rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.wwai-hero__title {
	margin: 0;
	max-width: 54.1875rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.25rem, 4.5vw, 2.5rem);
	line-height: 1.32;
	letter-spacing: 0.01em;
	color: var(--bandhan-off-white, #f5f5f5);
	font-synthesis: none;
}

.wwai-hero__title-prefix {
	font-weight: 300 !important;
}

.wwai-hero__title-emphasis {
	font-weight: 700 !important;
}

.wwai-intro {
	padding: clamp(3rem, 6vw, 6.25rem) 0;
	background: var(--bandhan-white);
}

.wwai-intro__content{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

/* .wwai-intro__content {
	max-width: 80.4375rem;
	margin: 0 auto;
	text-align: center;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	font-weight: var(--bandhan-body-font-weight);
	line-height: var(--bandhan-body-line-height);
	letter-spacing: var(--bandhan-body-letter-spacing);
}

.wwai-intro__content p {
	margin: 0;
	font-family: inherit;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	color: inherit;
}

.wwai-intro__content p + p {
	margin-top: 1.875rem;
} */

@media (min-width: 1200px) {
	.wwai-intro {
		padding: 5.25rem 0 4.25rem;
	}

	/* .wwai-intro__content {
		font-size: 1.25rem;
		line-height: 1.875rem;
	} */
}

.wwai-story {
	padding: 0;
	background: var(--bandhan-white);
}

.wwai-story__panel {
	width: 100%;
	background: linear-gradient(180deg, #0a3354 0%, #041b2f 52%, #092e4d 100%);
	border-radius: 100px 100px 0 0;
	color: var(--bandhan-white);
	overflow: hidden;
	--wwai-story-tabs-breakout: calc(
		var(--bandhan-section-padding-x) + max(0px, (100vw - var(--bandhan-container-max)) / 2)
	);
}

.wwai-story__inner {
	padding-top: clamp(3rem, 5vw, 5.5rem);
	padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
	overflow: visible;
	padding-right: 0;
}

.wwai-story__header {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
	text-align: center;
}

.wwai-story__title {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1.07;
	letter-spacing: 0.01em;
	color: var(--bandhan-white);
}

.wwai-story__title-prefix {
	font-weight: 300;
}

.wwai-story__title-emphasis {
	font-weight: 700;
}

.wwai-story__intro {
	margin: 0 auto;
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.82);
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.2vw, 1.25rem);
	font-weight: 300;
	line-height: 1.5;
}

.wwai-story__layout {
	--bs-gutter-x: var(--bandhan-section-gap);
	align-items: center;
	overflow: visible;
	margin-bottom: 60px;
}

.wwai-story__visual {
	position: relative;
	overflow: visible;
	min-height: 28rem;
	/* padding:0; */
}

.wwai-story__watermark {
	position: absolute;
	top: 0;
	left: clamp(0.25rem, 1.5vw, 1rem);
	z-index: 0;
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(9rem, 16vw, 14rem) !important;
	font-weight: 700 !important;
	line-height: 0.82;
	letter-spacing: -0.04em;
	color: rgba(143, 169, 188, 0.42);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}

.wwai-story__watermark.is-compact {
	font-size: clamp(7rem, 12vw, 10rem) !important;
	letter-spacing: -0.03em;
}

.wwai-story__visual-panel {
	display: none;
	position: relative;
	z-index: 1;
}

.wwai-story__visual-panel.is-active {
	display: block;
}

.wwai-story__image-wrap {
	position: relative;
	z-index: 1;
	margin-top: clamp(3.25rem, 6vw, 4.75rem);
	/* margin-left: clamp(1.75rem, 4vw, 3.5rem); */
	padding: 0.625rem 0.625rem 0 0;
}

.wwai-story__image-wrap::before,
.wwai-story__image-wrap::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 2;
}

.wwai-story__image-wrap::before {
	bottom: 0;
	left: 0;
	width: 42%;
	height: 42%;
	border-bottom: 4px solid var(--bandhan-yellow);
	border-left: 4px solid var(--bandhan-yellow);
	border-radius: 0 0 0 50px;
}

.wwai-story__image-wrap::after {
	top: 6px;
	right: 9px;
	width: 42%;
	height: 42%;
	border-top: 6px solid var(--bandhan-yellow);
	border-right: 6px solid var(--bandhan-yellow);
	border-radius: 0 50px 0 0;
}

.wwai-story__image {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	border-radius: 50px;
	object-fit: cover;
	aspect-ratio: 775 / 517;
	background: var(--bandhan-white);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.wwai-story__copy {
	padding:0;
	/* max-width: none; */
}

.wwai-story__era-panel {
	display: none;
}

.wwai-story__era-panel.is-active {
	display: block;
}

.wwai-story__era-heading {
	margin: 0 0 0.75rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3vw, 3.75rem);
	font-weight: 600;
	line-height: 1;
	color: var(--bandhan-white);
}

.wwai-story__era-tagline {
	margin: 0 0 1.25rem;
	font-family: var(--bandhan-font-body);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--bandhan-white);
}

.wwai-story__era-description {
	display: block !important;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--bandhan-font-body);
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.65;
}

.wwai-story__era-tabs {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: clamp(2rem, 2.8vw, 3.25rem);
	padding-top: 4rem;
	padding-right: 20px !important;
	overflow: visible;
}

.wwai-story__era-tab {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto clamp(1.75rem, 2.2vw, 2.75rem);
	align-items: center;
	column-gap: clamp(0.625rem, 1vw, 0.875rem);
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(143, 169, 188, 0.72);
	font-family: var(--bandhan-font-heading);
	line-height: 1.1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	text-align: right;
	cursor: pointer;
	transition: color 0.2s ease;
}

.wwai-story__era-tab-label {
	grid-column: 2;
	white-space: nowrap;
	font-size: clamp(1rem, 0.85vw + 0.65rem, 1.025rem) !important;
	font-weight: 500 !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	text-transform: none !important;
	transition: font-size 0.25s ease, font-weight 0.25s ease, color 0.2s ease;
}

.wwai-story__era-tab-line {
	grid-column: 3;
	align-self: center;
	width: 100%;
	height: 2px;
	background: rgba(143, 169, 188, 0.55);
}

.wwai-story__era-tab.is-active {
	color: var(--bandhan-yellow);
}

.wwai-story__era-tab.is-active .wwai-story__era-tab-label {
	font-size: 22px !important;
	font-weight: 700 !important;
}

.wwai-story__era-tab.is-active .wwai-story__era-tab-line {
	background: var(--bandhan-yellow);
}

.wwai-story__era-tab:hover,
.wwai-story__era-tab:focus-visible {
	color: rgba(255, 255, 255, 0.88);
}

.wwai-story__era-tab.is-active:hover,
.wwai-story__era-tab.is-active:focus-visible {
	color: var(--bandhan-yellow);
}

.wwai-story__timeline {
	--wwai-story-nav-size: 60px;
	--wwai-story-year-dot-size: 30px;
	display: grid;
	grid-template-columns: var(--wwai-story-nav-size) minmax(0, 1fr) var(--wwai-story-nav-size);
	column-gap: 0;
	align-items: start;
	position: relative;
	/* margin-top: clamp(2.5rem, 4vw, 3.5rem); */
}

.wwai-story__timeline::before {
	content: "";
	position: absolute;
	top: calc(var(--wwai-story-nav-size) / 2);
	left: calc(var(--wwai-story-nav-size) / 2);
	right: calc(var(--wwai-story-nav-size) / 2);
	height: 1px;
	background: rgba(255, 255, 255, 0.5);
	pointer-events: none;
	z-index: 0;
}

.wwai-story__timeline-viewport {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding-top: calc(var(--wwai-story-nav-size) / 2 - var(--wwai-story-year-dot-size) / 2);
}

.wwai-story__timeline-line {
	display: none;
}

.wwai-story__timeline-track {
	display: flex;
	gap: 0;
	width: 100%;
	transition: transform 0.35s ease;
}

.wwai-story__timeline-track.is-fit {
	justify-content: space-between;
}

.wwai-story__year {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--bandhan-font-heading);
	text-transform: none !important;
	cursor: pointer;
}

.wwai-story__timeline-track.is-fit .wwai-story__year {
	flex: 1 1 0;
}

.wwai-story__year-marker {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	width: 100%;
}

.wwai-story__year-dot {
	position: relative;
	display: block;
	width: var(--wwai-story-year-dot-size);
	height: var(--wwai-story-year-dot-size);
	border-radius: 50%;
	background: var(--bandhan-white);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.wwai-story__year-dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	transform: translate(-50%, -50%);
}

.wwai-story__year.is-active .wwai-story__year-dot::after {
	width: 12px;
	height: 12px;
	background: var(--bandhan-red);
}

.wwai-story__year-label {
	font-family: var(--bandhan-font-heading);
	font-size: clamp(0.875rem, 1vw, 1rem) !important;
	font-weight: 500 !important;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.72);
}

.wwai-story__year.is-active .wwai-story__year-label {
	font-size: clamp(1rem, 1.15vw, 1.125rem) !important;
	font-weight: 600 !important;
	color: var(--bandhan-white);
}


.wwai-impact__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: clamp(520px, 45vw, 53.9375rem);
}

.wwai-impact__content {
	background: var(--bandhan-impact-panel);
	color: var(--bandhan-text-dark);
}

.wwai-impact__content-inner {
	max-width: none;
	margin: 0;
	padding: clamp(3.5rem, 5.7vw, 5.6875rem) clamp(2rem, 5vw, 6.375rem);
}

.wwai-impact__title {
	margin: 0 0 2.1875rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1.07;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark);
}

.wwai-impact__intro {
	margin: 0;
	max-width: 49.25rem;
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.5;
	color: var(--bandhan-text-dark);
}

.wwai-impact__intro + .wwai-impact__intro {
	margin-top: 1.875rem;
}

.wwai-impact__intro:last-of-type {
	margin-bottom: 2.125rem;
}

.wwai-impact__highlights-title {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--bandhan-text-dark);
}

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

.wwai-impact__highlights-list li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--bandhan-text-dark);
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.5;
}

.wwai-impact__highlights-list li + li {
	margin-top: 0;
}

.wwai-impact__highlights-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6875rem;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--bandhan-text-dark);
}

.wwai-impact__media {
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

.wwai-impact__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(520px, 45vw, 53.9375rem);
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1199.98px) {
	.wwai-story__panel {
		border-radius: 60px 60px 0 0;
	}

	.wwai-story__copy,
	.wwai-story__era-tabs {
		padding-top: 0;
	}

	.wwai-story__era-tabs {
		padding-right: 0 !important;
		padding-top: 2rem;
	}

	.wwai-story__era-tab-label {
		font-size: clamp(0.9375rem, 3vw, 1.025rem) !important;
	}

	.wwai-story__era-tab.is-active .wwai-story__era-tab-label {
		font-size: clamp(1.375rem, 4.5vw, 1.875rem) !important;
	}

	.wwai-story__era-tab {
		grid-template-columns: minmax(0, 1fr) auto clamp(1.5rem, 6vw, 2.25rem);
		text-align: right;
	}

	.wwai-impact__content-inner {
		padding: clamp(2.5rem, 6vw, 3.5rem) var(--bandhan-section-padding-x);
	}

	.wwai-impact__layout {
		grid-template-columns: 1fr;
	}

	.wwai-impact__media {
		min-height: 22rem;
	}
}

@media (max-width: 991.98px) {
	.wwai-hero__inner {
		padding-top: 2rem;
		padding-bottom: clamp(2.5rem, 8vw, 4rem);
	}
}

@media (max-width: 767.98px) {
	.wwai-hero__overlay {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.65) 100%
		);
	}

	.wwai-story__panel {
		border-radius: 32px 32px 0 0;
	}

	.wwai-story__visual {
		min-height: 0;
	}

	.wwai-story__watermark {
		font-size: clamp(5.5rem, 22vw, 7.5rem) !important;
	}

	.wwai-story__watermark.is-compact {
		font-size: clamp(4.5rem, 18vw, 6rem) !important;
	}

	.wwai-story__era-tabs {
		padding-right: 0 !important;
		gap: 1.5rem;
	}

	.wwai-story__era-tab {
		grid-template-columns: minmax(0, 1fr) auto clamp(1.25rem, 8vw, 2rem);
	}

	.wwai-story__timeline {
		--wwai-story-nav-size: 52px;
		--wwai-story-year-dot-size: 24px;
	}

	.wwai-story__year-dot {
		width: var(--wwai-story-year-dot-size);
		height: var(--wwai-story-year-dot-size);
	}

	.wwai-story__year-label {
		font-size: 0.8125rem !important;
	}

	.wwai-story__year.is-active .wwai-story__year-label {
		font-size: 0.9375rem !important;
	}
}


/* ===== growth-with-intent.css ===== */
/* Who We Are — Growth With Intent page */

.gwi-story {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 5vw, 6.25rem) 0;
	background: var(--bandhan-white);
}

.gwi-story__background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 38%;
	z-index: 0;
	pointer-events: none;
}

.gwi-story__background-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right center;
	opacity: 1;
}

.gwi-story__inner {
	position: relative;
	z-index: 1;
}

.gwi-story__image-wrap {
	border-radius: 3.125rem;
	overflow: hidden;
	max-width: 38.6875rem;
}

.gwi-story__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 619 / 700;
}

.gwi-story__title {
	margin: 0 0 1.875rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark) !important;
	font-weight: 275 !important;
}

.gwi-story__title-emphasis {
	color: var(--bandhan-text-dark) !important;
}

.gwi-story__content {
	margin-bottom: 0;
}

/* Who We Are stat classes on light GWI background */
.gwi-story .who-we-are__stat-value,
.gwi-story .who-we-are__stat-label {
	color: var(--bandhan-text-dark);
	max-width: 100%;

}


.gwi-story .who-we-are__stat {
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 0;
	padding-right: 0.875rem;
	padding-left: 0.875rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 1.5rem;
	border-right-color: rgba(0, 38, 65, 0.2);

}



.gwi-story .who-we-are__stat-label {
	overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
	.gwi-story__title {
		font-size: 3.5rem !important;
		line-height: 3.75rem !important;
		margin-bottom: 1.875rem;
	}

	.gwi-story .who-we-are__stat {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}

@media (max-width: 991.98px) {
	.gwi-story__background {
		left: 20%;
		opacity: 0.65;
	}
}

@media (max-width: 767.98px) {
	.gwi-story__background {
		left: 0;
		opacity: 0.35;
	}

	.gwi-story__image-wrap {
		border-radius: 2rem;
	}

	.gwi-story .who-we-are__stat {
		border-bottom-color: rgba(0, 38, 65, 0.2);
	}
}

.gwi-vision__layout,
.gwi-belief__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: clamp(420px, 30vw, 36.25rem);
}

.gwi-belief__layout {
	min-height: clamp(28rem, 42vw, 36.25rem);
}

.gwi-vision__content,
.gwi-belief__content {
	background: var(--bandhan-impact-panel);
	color: var(--bandhan-text-dark);
}

.gwi-belief__content {
	display: flex;
	align-items: center;
}

.gwi-vision__content-inner,
.gwi-belief__content-inner {
	padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 6.375rem);
}

.gwi-belief__content-inner {
	width: 100%;
	max-width: 42.5rem;
}

.gwi-vision__title,
.gwi-belief__title {
	margin: 0 0 2rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1.07;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark);
}

.gwi-belief__title {
	margin-bottom: 1.875rem;
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	line-height: 1.07 !important;
}

.gwi-vision__body,
.gwi-vision__body p {
	margin: 0;
	color: var(--bandhan-text-dark);
}

.gwi-vision__body p + p {
	margin-top: 1.875rem;
}

.gwi-vision__media,
.gwi-belief__media {
	position: relative;
	overflow: hidden;
}

.gwi-vision__image,
.gwi-belief__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gwi-vision__image {
	min-height: clamp(420px, 30vw, 36.25rem);
}

.gwi-belief__image {
	min-height: clamp(28rem, 42vw, 36.25rem);
}

.gwi-belief__intro {
	margin-bottom: 1.5rem;
	color: var(--bandhan-text-muted);
}

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

.gwi-belief__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--bandhan-text-muted);
}

.gwi-belief__item::before {
	content: "→";
	flex: 0 0 auto;
	font: inherit;
	color: inherit;
}

.gwi-belief__item + .gwi-belief__item {
	margin-top: 1rem;
}

.gwi-belief__item-text {
	flex: 1 1 auto;
	min-width: 0;
}

.gwi-drives {
	position: relative;
	overflow: hidden;
	padding-top: clamp(4.5rem, 7vw, 6.25rem);
	padding-bottom: clamp(4.5rem, 7vw, 6.25rem);
	background-color: var(--bandhan-white);
}

.gwi-drives__background-image {
	opacity: 1;
	object-fit: cover;
	object-position: center;
}

.gwi-drives__title {
	margin-bottom: clamp(2.5rem, 4vw, 4.5rem);
}

.gwi-drives__cards {
	--bs-gutter-x: 2rem;
}

.gwi-drives .what-drives-us__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	position: relative;
	overflow: hidden;
	background-color: var(--bandhan-white);
	border: 1px solid rgba(0, 38, 65, 0.2);
	border-bottom: 6px solid var(--bandhan-navy);
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gwi-drives .what-drives-us__card .what-drives-us__card-title,
.gwi-drives .what-drives-us__card .gwi-drives__card-title {
	color: var(--bandhan-text-dark);
	transition: color 0.25s ease;
}

.gwi-drives .what-drives-us__card .what-drives-us__card-description,
.gwi-drives .what-drives-us__card .gwi-drives__card-description {
	color: var(--bandhan-text-dark);
	transition: color 0.25s ease;
}

.gwi-drives .what-drives-us__card .what-drives-us__card-icon {
	color: var(--bandhan-navy);
	transition: color 0.25s ease;
}

.gwi-drives .what-drives-us__card .what-drives-us__card-icon .bandhan-inline-icon-svg,
.gwi-drives .what-drives-us__card .what-drives-us__card-icon img {
	width: 4rem;
	height: 4rem;
}

.gwi-drives .what-drives-us__card .what-drives-us__card-icon img {
	object-fit: contain;
	transition: filter 0.25s ease;
}

.gwi-drives .what-drives-us__card:hover,
.gwi-drives .what-drives-us__card:focus-within {
	background-color: var(--bandhan-navy);
	background: var(--bandhan-navy);
	border-color: transparent;
	border-bottom-color: var(--bandhan-navy);
	box-shadow: none;
}

.gwi-drives .what-drives-us__card:hover .what-drives-us__card-title,
.gwi-drives .what-drives-us__card:hover .what-drives-us__card-description,
.gwi-drives .what-drives-us__card:hover .gwi-drives__card-title,
.gwi-drives .what-drives-us__card:hover .gwi-drives__card-description,
.gwi-drives .what-drives-us__card:focus-within .what-drives-us__card-title,
.gwi-drives .what-drives-us__card:focus-within .what-drives-us__card-description,
.gwi-drives .what-drives-us__card:focus-within .gwi-drives__card-title,
.gwi-drives .what-drives-us__card:focus-within .gwi-drives__card-description {
	color: var(--bandhan-white);
}

.gwi-drives .what-drives-us__card:hover .what-drives-us__card-icon,
.gwi-drives .what-drives-us__card:focus-within .what-drives-us__card-icon {
	color: var(--bandhan-white);
}

.gwi-drives .what-drives-us__card:hover .what-drives-us__card-icon img,
.gwi-drives .what-drives-us__card:focus-within .what-drives-us__card-icon img {
	filter: brightness(0) invert(1);
}

/* Purpose card — match homepage active/navy treatment */
.gwi-drives .what-drives-us__card.gwi-drives__card--gradient,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient {
	border-color: transparent;
	border-bottom-color: var(--bandhan-navy);
	background-color: var(--bandhan-navy-mid);
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	box-shadow: 0 16px 32px rgba(0, 38, 65, 0.2);
}

.gwi-drives .what-drives-us__card.gwi-drives__card--gradient .what-drives-us__card-title,
.gwi-drives .what-drives-us__card.gwi-drives__card--gradient .gwi-drives__card-title,
.gwi-drives .what-drives-us__card.gwi-drives__card--gradient .what-drives-us__card-description,
.gwi-drives .what-drives-us__card.gwi-drives__card--gradient .gwi-drives__card-description,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient .what-drives-us__card-title,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient .gwi-drives__card-title,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient .what-drives-us__card-description,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient .gwi-drives__card-description {
	color: var(--bandhan-white);
}

.gwi-drives .what-drives-us__card.gwi-drives__card--gradient .what-drives-us__card-icon,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient .what-drives-us__card-icon {
	color: var(--bandhan-white);
}

.gwi-drives .what-drives-us__card.gwi-drives__card--gradient .what-drives-us__card-icon img,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient .what-drives-us__card-icon img {
	filter: brightness(0) invert(1);
}

.gwi-drives .what-drives-us__card.gwi-drives__card--gradient:hover,
.gwi-drives .what-drives-us__card.gwi-drives__card--gradient:focus-within,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient:hover,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient:focus-within {
	background-color: var(--bandhan-navy-mid);
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	border-color: transparent;
	border-bottom-color: var(--bandhan-navy);
	box-shadow: 0 16px 32px rgba(0, 38, 65, 0.2);
}

.gwi-drives .what-drives-us__card.gwi-drives__card--gradient:hover .what-drives-us__card-icon img,
.gwi-drives .what-drives-us__card.gwi-drives__card--gradient:focus-within .what-drives-us__card-icon img,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient:hover .what-drives-us__card-icon img,
.gwi-drives .what-drives-us__card.what-drives-us__card--gradient:focus-within .what-drives-us__card-icon img {
	filter: brightness(0) invert(1);
}

.gwi-drives .what-drives-us__card:hover .gwi-drives__card-bar,
.gwi-drives .what-drives-us__card:focus-within .gwi-drives__card-bar {
	background-color: var(--bandhan-navy);
}

.gwi-drives__card {
	min-height: 22.5rem;
	padding: 2.5rem 2rem 1.25rem;
	border-radius: 50px 50px 0 0;
}

.gwi-drives__card-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.25rem;
}

.gwi-drives__card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 1 auto;
	width: 100%;
}

.gwi-drives__card-title {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--bandhan-text-dark);
}

.gwi-drives__card-description {
	max-width: none;
	margin: 0;
	color: var(--bandhan-text-dark);
	font-size: 12px !important;
	font-weight: var(--bandhan-body-font-weight) !important;
	line-height: 1.8 !important;
}

.gwi-drives__card-description--prism {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.gwi-drives__prism-line {
	display: block;
	font-size: 16px !important;
	line-height: 1.375 !important;
}

.gwi-drives__prism-line strong {
	font-weight: 600;
	color: inherit;
}

.gwi-drives .what-drives-us__card-bar,
.gwi-drives__card-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	margin: 0;
	background-color: transparent;
	flex-shrink: 0;
	transition: background-color 0.25s ease;
}

@media (min-width: 1200px) {
	.gwi-drives__title {
		margin-bottom: 4.5rem;
		font-size: 3.5rem !important;
		line-height: 3.75rem !important;
	}

	.gwi-drives__cards {
		--bs-gutter-x: 2.5625rem;
	}

	.gwi-drives__card {
		min-height: 23.75rem;
		padding: 2.5rem 2rem 1.25rem;
	}

	.gwi-drives__card-title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.gwi-drives__card-description,
	.gwi-drives__prism-line {
		font-size: 12px !important;
		line-height: 1.8 !important;
	}
}

@media (min-width: 1200px) {
	.gwi-belief__title {
		font-size: 3.5rem !important;
		line-height: 3.75rem !important;
		margin-bottom: 1.875rem;
	}

	.gwi-belief__content-inner {
		padding-left: clamp(3rem, 5vw, 6.375rem);
		padding-right: clamp(3rem, 5vw, 6.375rem);
	}
}

@media (max-width: 1199.98px) {
	.gwi-drives__card {
		min-height: 21rem;
		padding: 2rem 1.5rem 1.125rem;
	}

	.gwi-drives__card-icon {
		width: 3.5rem;
		height: 3.5rem;
		margin-bottom: 1rem;
	}

	.gwi-drives .what-drives-us__card .what-drives-us__card-icon .bandhan-inline-icon-svg,
	.gwi-drives .what-drives-us__card .what-drives-us__card-icon img {
		width: 3.5rem;
		height: 3.5rem;
	}

	.gwi-drives__card-title {
		font-size: 1.375rem;
		margin-bottom: 0.75rem;
	}

	.gwi-drives__card-description,
	.gwi-drives__prism-line {
		font-size: 15px !important;
		line-height: 1.45 !important;
	}
}

@media (max-width: 1199.98px) {
	.gwi-vision__layout,
	.gwi-belief__layout {
		grid-template-columns: 1fr;
	}

	.gwi-belief__layout {
		display: flex;
		flex-direction: column-reverse;
	}

	.gwi-belief__content {
		align-items: flex-start;
	}

	.gwi-belief__content-inner {
		max-width: none;
	}

	.gwi-vision__image,
	.gwi-belief__image {
		min-height: 22rem;
	}
}


/* ===== future-with-clarity.css ===== */
/* Who We Are — Future with Clarity page */

.fwc-leadership .leadership-message__title-prefix {
	font-weight: 300 !important;
}

.fwc-leadership .leadership-message__title-emphasis {
	font-weight: 700 !important;
}

/* .fwc-leadership .leadership-message__body {
	position: relative;
	padding-top: 4.5rem;
} */
/* 
.fwc-leadership .leadership-message__quote-mark {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	pointer-events: none;
} */

.fwc-leadership .leadership-message__quote-mark img {
	width: clamp(5rem, 8vw, 10.564375rem);
	/* height: auto; */
	/* opacity: 1; */
}

/* .fwc-leadership .leadership-message__quote,
.fwc-leadership .leadership-message__quote p {
	position: relative;
	z-index: 1;
	max-width: 44.5rem;
	font-size: var(--bandhan-body-font-size) !important;
	font-weight: var(--bandhan-body-font-weight) !important;
	line-height: var(--bandhan-body-line-height) !important;
}

.fwc-leadership .leadership-message__quote p + p {
	margin-top: 1.875rem;
} */

.fwc-leadership .leadership-message__attribution {
	margin-top: clamp(2.5rem, 4vw, 3.75rem);
}

.fwc-leadership .leadership-message__leader-name {
	font-size: 20px !important;
	line-height: 1 !important;
	margin-bottom: 0.75rem;
}

/* .fwc-leadership .leadership-message__leader-role p {
	font-size: 1.125rem !important;
	line-height: 1.67 !important;
}

.fwc-leadership .leadership-message__leader-role p + p {
	font-style: italic;
} */

/* .fwc-leadership .leadership-message__media {
	display: flex;
	justify-content: center;
}

.fwc-leadership .leadership-message__photo-wrap {
	position: relative;
	width: min(100%, 32.5625rem);
	margin-inline: auto;
	aspect-ratio: 521 / 769;
	overflow: hidden;
	line-height: 0;
}

.fwc-leadership .leadership-message__photo {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: auto;
	height: 118%;
	max-width: none;
	max-height: none;
	margin: 0;
	transform: translate3d(-50%, 0, 0);
	object-fit: contain;
	object-position: bottom center;
} */

@media (min-width: 992px) {
	/* .fwc-leadership.leadership-message {
		padding-top: 6.25rem;
	} */

	/* .fwc-leadership .leadership-message__layout {
		display: grid;
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		align-items: end;
		column-gap: 3.75rem;
		row-gap: 0;
		margin-inline: 0;
	}

	.fwc-leadership .leadership-message__layout > [class*="col-"] {
		width: 100%;
		max-width: 100%;
		padding-inline: 0;
	} */

	/* .fwc-leadership .leadership-message__content {
		padding-top: 0;
		padding-bottom: 6.25rem;
	} */

	/* .fwc-leadership .leadership-message__media {
		align-self: end;
		justify-content: flex-end;
		margin-top: 0;
	}

	.fwc-leadership .leadership-message__photo-wrap {
		width: min(100%, 32.5625rem);
		max-height: 48.0625rem;
		height: auto;
		margin-left: auto;
		margin-right: 0;
	} */
}

@media (max-width: 991.98px) {
	/* .fwc-leadership .leadership-message__body {
		padding-top: 3.5rem;
	} */

	/* .fwc-leadership .leadership-message__photo-wrap {
		width: min(100%, 20rem);
	} */
}

.fwc-team {
	padding: clamp(4rem, 7vw, 6.25rem) 0;
	background: var(--bandhan-white);
}

.fwc-team__layout {
	display: grid;
	grid-template-columns: minmax(11rem, 29.8125rem) minmax(0, 1fr) minmax(0, 1fr);
	column-gap: clamp(2rem, 5.5vw, 6.5625rem);
	row-gap: clamp(3rem, 5vw, 5.9375rem);
	align-items: start;
}

.fwc-team__title {
	grid-column: 1;
	grid-row: 1 / 3;
	align-self: start;
	margin: 0;
	max-width: 29.8125rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark) !important;
	font-weight: 275 !important;
}

.fwc-team__title-prefix {
	font-weight: 300 !important;
}

.fwc-team__title-emphasis {
	font-weight: 700 !important;
	color: var(--bandhan-text-dark) !important;
}

.fwc-team__grid {
	display: contents;
}

.fwc-team__card:nth-child(1) {
	grid-column: 2;
	grid-row: 1;
}

.fwc-team__card:nth-child(2) {
	grid-column: 3;
	grid-row: 1;
}

.fwc-team__card:nth-child(3) {
	grid-column: 2;
	grid-row: 2;
}

.fwc-team__card:nth-child(4) {
	grid-column: 3;
	grid-row: 2;
}

.fwc-team__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.fwc-team__card-visual {
	display: flex;
	flex-direction: column;
	/*height: clamp(18rem, 24.8vw, 29.875rem);*/
	background: var(--bandhan-impact-panel);
	border-bottom: 6px solid var(--bandhan-navy);
	border-radius: 3.125rem 3.125rem 0 0;
	overflow: hidden;
}

.fwc-team__card-media {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    min-height: 0;
    padding: 1.5rem 0 0 0.75rem;
    overflow: hidden;
}

/*.fwc-team__card-photo {*/
/*	display: none;*/
/*}*/

.fwc-team__card-bar {
	flex-shrink: 0;
	width: 100%;
	height: 0;
	background: transparent;
}

.fwc-team__card-content {
	padding: 1.125rem 0 0;
}

.fwc-team__card-role{
	font-family: var(--bandhan-font-heading) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.67 !important;
	font-style: italic !important;
}

.fwc-team__card-name {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: 20px;
	font-weight: 700 !important;
	line-height: 1;
	color: var(--bandhan-text-dark);
}

.fwc-team__card-role {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 400 !important;
	line-height: 1.67;
	color: var(--bandhan-text-dark);
}

@media (min-width: 1200px) {
	.fwc-team__title {
		font-size: 3.5rem !important;
		line-height: 3.75rem !important;
	}
}

@media (max-width: 991.98px) {
	.fwc-team__layout {
		grid-template-columns: 1fr 1fr;
		column-gap: 1.5rem;
		row-gap: 2.5rem;
	}

	.fwc-team__title {
		grid-column: 1 / -1;
		grid-row: 1;
		max-width: none;
		margin-bottom: 0.5rem;
	}

	.fwc-team__card:nth-child(1) {
		grid-column: 1;
		grid-row: 2;
	}

	.fwc-team__card:nth-child(2) {
		grid-column: 2;
		grid-row: 2;
	}

	.fwc-team__card:nth-child(3) {
		grid-column: 1;
		grid-row: 3;
	}

	.fwc-team__card:nth-child(4) {
		grid-column: 2;
		grid-row: 3;
	}
}

@media (max-width: 767.98px) {
	.fwc-team__layout {
		grid-template-columns: 1fr;
	}

	.fwc-team__card:nth-child(n) {
		grid-column: 1;
	}

	.fwc-team__card:nth-child(1) {
		grid-row: 2;
	}

	.fwc-team__card:nth-child(2) {
		grid-row: 3;
	}

	.fwc-team__card:nth-child(3) {
		grid-row: 4;
	}

	.fwc-team__card:nth-child(4) {
		grid-row: 5;
	}

	.fwc-team__card-visual {
		/*height: 20rem;*/
		border-radius: 2.5rem 2.5rem 0 0;
	}

	.fwc-team__card-media {
		padding-top: 1.25rem;
	}

	.fwc-team__card-content {
		padding-top: 1.5rem;
	}

	.fwc-team__card-name {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}
}


/* ===== our-promoter.css ===== */
/* Who We Are — Our Promoter page */

.promoter-trusts {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 4vw, 3rem) 0 0;
	background: var(--bandhan-white);
}

.promoter-trusts__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.promoter-trusts__background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 1;
}

.promoter-trusts__inner {
	position: relative;
	z-index: 1;
}

.promoter-trust {
	padding: clamp(1.25rem, 2.5vw, 2rem) 0;
}

.promoter-trust:not(.promoter-trust--highlight) {
	padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.promoter-trust--highlight {
	background: var(--bandhan-impact-panel);
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
	padding: clamp(3rem, 6vw, 5rem) 0;
	box-sizing: border-box;
}

.promoter-trust__container {
	max-width: 56rem;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	text-align: center;
}

.promoter-trust__icon {
	display: flex;
	justify-content: center;
	margin-bottom: 2.875rem;
}

.promoter-trust__icon img {
	display: block;
	width: 7.1875rem;
	height: 7.1875rem;
	object-fit: contain;
}

/* .promoter-trust__title {
	margin: 0 0 1.875rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	font-weight: 300;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark);
	font-synthesis: none;
} */

.promoter-trust__title-prefix {
	font-weight: 300 !important;
}

.promoter-trust__title-emphasis {
	font-weight: 700 !important;
}

/* .promoter-trust__content,
.promoter-trust__content p {
	margin: 0;
	color: var(--bandhan-text-muted);
	font-size: 16px !important;
	font-weight: var(--bandhan-body-font-weight);
	line-height: 1.5 !important;
}

.promoter-trust__content p + p {
	margin-top: 1rem;
} */

@media (min-width: 1200px) {
	.promoter-trusts {
		padding-top: 3rem;
	}

	.promoter-trust:not(.promoter-trust--highlight) {
		padding-top: 1.5rem;
		padding-bottom: 4.5rem;
	}

	.promoter-trust__container {
		max-width: 56rem;
		padding-left: 0;
		padding-right: 0;
	}

	.promoter-trust__title {
		font-size: 3.5rem !important;
		line-height: 3.75rem !important;
		margin-bottom: 1.875rem;
	}

	/* .promoter-trust__content,
	.promoter-trust__content p {
		font-size: 16px !important;
		line-height: 1.5 !important;
	} */

	.promoter-trust__icon {
		margin-bottom: 2.875rem;
	}
}

@media (max-width: 767.98px) {
	.promoter-trust__icon {
		margin-bottom: 2rem;
	}

	.promoter-trust__icon img {
		width: 7rem;
		height: 7rem;
	}

	/* .promoter-trust__title {
		margin-bottom: 1.25rem;
	}

	.promoter-trust__content,
	.promoter-trust__content p {
		font-size: 15px;
		line-height: 1.45;
	} */
}


/* ===== what-we-do-page.css ===== */
/* What We Do page */

.site-main--wwd .wwd-companies {
	padding: 4rem 0 5rem;
	background: var(--bandhan-white);
}

.site-main--wwd .wwd-companies__panel {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	max-width: 84rem;
	margin: 0 auto;
	border-radius: 50px;
	overflow: hidden;
	background-color: var(--bandhan-navy) !important;
}

.site-main--wwd .wwd-companies__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem;
}
.wwd-companies__title{
	color:#fff !important;

}
.wwd-companies__content p{
	color: #fff !important;
}
/* .site-main--wwd .wwd-companies__title,
.site-main--wwd .wwd-companies__title-prefix,
.site-main--wwd .wwd-companies__title-emphasis {
	margin: 0 0 1.875rem;
	font-family: var(--bandhan-font-heading);
	font-size: 3rem !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-white) !important;
	font-synthesis: none;
} */

/* .site-main--wwd .wwd-companies__title-prefix {
	font-weight: 300 !important;
}

.site-main--wwd .wwd-companies__title-emphasis {
	font-weight: 700 !important;
}

.site-main--wwd .wwd-companies__content,
.site-main--wwd .wwd-companies__content p {
	margin: 0;
	color: var(--bandhan-white) !important;
	font-size: 16px !important;
	font-weight: var(--bandhan-body-font-weight) !important;
	line-height: 1.5 !important;
} */

/* .site-main--wwd .wwd-companies__content p + p {
	margin-top: 1rem;
} */

.site-main--wwd .wwd-companies__media {
	position: relative;
	min-height: clamp(18rem, 32vw, 41.8125rem);
}

.site-main--wwd .wwd-companies__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(18rem, 32vw, 41.8125rem);
	border-radius: 0 !important;
	object-fit: cover;
	object-position: center;
}

.site-main--wwd .wwd-structure {
	position: relative;
	overflow: hidden;
	padding: 4rem 0 5rem;
	background: var(--bandhan-white);
}

.site-main--wwd .wwd-structure__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.site-main--wwd .wwd-structure__background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 1;
}

.site-main--wwd .wwd-structure__inner {
	position: relative;
	z-index: 1;
}

.site-main--wwd .wwd-structure__header {
	max-width: 50rem;
	margin: 0 auto 3rem;
	text-align: center;
}

/* .site-main--wwd .wwd-structure__title,
.site-main--wwd .wwd-structure__title-prefix,
.site-main--wwd .wwd-structure__title-emphasis {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: 3rem !important;
	font-weight: 300;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark) !important;
	font-synthesis: none;
} */

/* .site-main--wwd .wwd-structure__title-prefix {
	font-weight: 300 !important;
}

.site-main--wwd .wwd-structure__title-emphasis {
	font-weight: 700 !important;
}

.site-main--wwd .wwd-structure__subtitle {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 16px !important;
	font-weight: var(--bandhan-body-font-weight) !important;
	line-height: 1.5 !important;
	color: var(--bandhan-text-muted) !important;
} */

.site-main--wwd .wwd-structure__chart {
	position: relative;
	max-width: 75rem;
	margin: 0 auto;
	padding: 0;
}

.site-main--wwd .wwd-structure__diagram {
	position: relative;
	width: 100%;
}

.site-main--wwd .wwd-structure__connectors {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.site-main--wwd .wwd-structure__connector-lines {
	fill: none;
	stroke: #9aa8b3;
	stroke-width: 1.5;
	stroke-dasharray: 5 5;
}

.site-main--wwd .wwd-structure__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: repeat(3, auto);
	column-gap: clamp(0.5rem, 1.5vw, 1rem);
	row-gap: clamp(2.75rem, 4.5vw, 4rem);
	align-items: center;
	padding-top: 1.25rem;
}

.site-main--wwd .wwd-structure__slot {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-main--wwd .wwd-structure__slot--root {
	grid-column: 3 / 11;
	grid-row: 1;
}

.site-main--wwd .wwd-structure__slot--holdings {
	grid-column: 1 / 7;
	grid-row: 2;
}

.site-main--wwd .wwd-structure__slot--tech {
	grid-column: 7 / 13;
	grid-row: 2;
}

.site-main--wwd .wwd-structure__leaves {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	min-width: 0;
	grid-row: 3;
}

.site-main--wwd .wwd-structure__leaves--holdings {
	grid-column: 1 / 7;
}

.site-main--wwd .wwd-structure__leaves--tech {
	grid-column: 7 / 13;
}

.site-main--wwd .wwd-structure__leaves .wwd-structure__slot {
	flex: 0 0 auto;
	grid-column: auto;
	grid-row: auto;
	width: auto;
}
	
.site-main--wwd .wwd-structure__slot--bank,
.site-main--wwd .wwd-structure__slot--mf,
.site-main--wwd .wwd-structure__slot--life,
.site-main--wwd .wwd-structure__slot--usa,
.site-main--wwd .wwd-structure__slot--uk,
.site-main--wwd .wwd-structure__slot--uae {
	grid-column: auto;
	grid-row: auto;
}

.site-main--wwd .wwd-structure__leaf-shell {
	position: relative;
	box-sizing: border-box;
	width: 10.0rem;
	padding: 0.5rem;
	border: 1.5px solid var(--bandhan-red);
	border-radius: 50px;
	background: transparent;
}

.site-main--wwd .wwd-structure__leaf-arc,
.site-main--wwd .wwd-structure__leaf-arc--top,
.site-main--wwd .wwd-structure__leaf-arc--bottom {
	display: none;
}

.site-main--wwd .wwd-structure__root-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 33.625rem;
	margin: 0 auto;
}

.site-main--wwd .wwd-structure__root-frame {
	box-sizing: border-box;
	width: 100%;
	padding: 0.5rem;
	border: 1.5px solid var(--bandhan-red);
	border-radius: 999px;
	background: var(--bandhan-white);
}

.site-main--wwd .wwd-structure__root-mark {
	position: relative;
	z-index: 3;
	width: 3rem;
	height: 3rem;
	margin-bottom: -1.75rem;
	object-fit: contain;
	background: var(--bandhan-white);
	border-radius: 50%;
	padding: 0.3rem;
	box-shadow: none;
}

.site-main--wwd .wwd-structure__node {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* min-height: 4.5rem; */
	/* padding: 1rem 1.5rem; */
	background: var(--bandhan-white);
	border: 1.5px solid var(--bandhan-red);
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 38, 65, 0.08);
	text-align: center;
	color: inherit;
	text-decoration: none;
	transition: none;
}

.site-main--wwd .wwd-structure__node--root {
	width: 100%;
	max-width: none;
	min-height: 4.875rem;
	margin: 0;
	padding: 1.35rem 2rem 1.125rem;
	background: var(--bandhan-navy);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
}

.site-main--wwd .wwd-structure__node--root .wwd-structure__node-label {
	color: var(--bandhan-white);
	font-weight: 500;
}

.site-main--wwd .wwd-structure__mid-shell {
	box-sizing: border-box;
	width: 100%;
	max-width: 22rem;
	padding: 0.5rem;
	border: 1.5px solid var(--bandhan-red);
	border-radius: 50px;
	background: transparent;
}

.site-main--wwd .wwd-structure__node--mid {
	width: 100%;
	max-width: none;
	min-height: 4.75rem;
	border: 0;
	border-radius: 50px;
	padding: 1rem 1.75rem;
	background: var(--bandhan-white);
	box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.25);
}

.site-main--wwd .wwd-structure__node--leaf {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	/* height: auto;
	min-height: 0; */
	padding: 5px;
	border: 0;
	border-radius: 50px;
	background: var(--bandhan-white);
	box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.25);
	overflow: visible;
}

.site-main--wwd .wwd-structure__node--leaf::before,
.site-main--wwd .wwd-structure__node--leaf::after {
	content: none;
	display: none;
}

.site-main--wwd .wwd-structure__node-brand {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: 100%;
	max-width: 100%;
	position: relative;
	z-index: 1;
}

.site-main--wwd .wwd-structure__node--mid .wwd-structure__node-brand {
	flex-direction: row;
	gap: 0.65rem;
}

.site-main--wwd .wwd-structure__node-logo {
	display: block;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	max-width: 8.5rem;
	/* max-height: 2.65rem; */
	width: auto;
	height: auto;
	margin: 0;
	object-fit: contain;
}

.site-main--wwd .wwd-structure__node--mid .wwd-structure__node-logo {
	/* max-width: 11rem; */
	/* max-height: 2.5rem; */
}

.site-main--wwd .wwd-structure__node--leaf .wwd-structure__node-logo {
	width: 100%;
	max-width: 100px;
	height:40px;

}

.site-main--wwd .wwd-structure__node-label {
	position: relative;
	z-index: 1;
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--bandhan-text-dark);
}

.site-main--wwd .wwd-structure__node--root .wwd-structure__node-label {
	font-size: 1.125rem;
	line-height: 1.4;
}

.site-main--wwd .wwd-structure__node--leaf .wwd-structure__node-label {
	display: none;
}

.site-main--wwd .wwd-purpose {
	position: relative;
	background: var(--bandhan-white);
}

.site-main--wwd .wwd-purpose__headline-wrap {
	background: var(--bandhan-white);
	padding: clamp(2.5rem, 4vw, 3.875rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 3.5vw, 3.25rem);
}

.site-main--wwd .wwd-purpose__headline {
	/* margin: 0 auto; */
	/* padding: 0; */
	/* max-width: 56rem; */
	/* text-align: center; */
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.25rem, 4.2rem, 5.25rem) !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
	letter-spacing: 0.01em;
	color: transparent !important;
	-webkit-text-stroke: 1px rgba(0, 38, 65, 0.32);
	text-stroke: 1px rgba(0, 38, 65, 0.32);
	paint-order: stroke fill;
	font-synthesis: none;
}

@supports not ((-webkit-text-stroke: 1px #000) or (text-stroke: 1px #000)) {
	.site-main--wwd .wwd-purpose__headline {
		color: rgba(0, 38, 65, 0.28) !important;
	}
}

.site-main--wwd .wwd-purpose__body {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
	background: linear-gradient(
		180deg,
		var(--bandhan-white) 0%,
		var(--bandhan-white) 38%,
		#e3f2ff 38%,
		#e3f2ff 100%
	);
}

/* .site-main--wwd .wwd-purpose__inner {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
} */

.site-main--wwd .wwd-purpose__panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 65rem;
	margin: 0 auto;
	box-sizing: border-box;
	min-height: clamp(18rem, 28vw, 24.25rem);
	padding: clamp(3rem, 5vw, 5rem) clamp(1.75rem, 5vw, 5rem);
	background: var(--bandhan-navy);
	border-radius: 50px;
	overflow: hidden;
}

.site-main--wwd .wwd-purpose__panel-pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.site-main--wwd .wwd-purpose__panel-pattern img {
	/* display: block;
	width: 118%;
	height: 118%;
	max-width: none;
	margin: -9% 0 0 -9%;
	object-fit: cover;
	object-position: center;
	opacity: 0.55;
	mix-blend-mode: screen; */
	padding:40px;
	width: 100%;
}

.site-main--wwd .wwd-purpose__panel-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 52rem;
	margin: 0 auto;
	text-align: center;
}

/* .site-main--wwd .wwd-purpose__title,
.site-main--wwd .wwd-purpose__title-prefix,
.site-main--wwd .wwd-purpose__title-emphasis {
	margin: 0 0 1.5rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.75rem, 3.2vw, 2.75rem) !important;
	line-height: 1.15 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-white) !important;
	font-synthesis: none;
} */

.site-main--wwd .wwd-purpose__title-prefix {
	font-weight: 300 !important;
}

.site-main--wwd .wwd-purpose__title-emphasis {
	font-weight: 700 !important;
}

.site-main--wwd .wwd-purpose__content {
	width:100%;
	max-width:650px;
	margin:0 auto;
	/* margin: 0 auto;
	max-width: 46rem;
	font-family: var(--bandhan-font-body);
	font-size: 1rem !important;
	font-weight: 300 !important;
	line-height: 1.55 !important; */
	color: rgba(255, 255, 255, 0.95) !important;
}

@media (min-width: 1200px) {
	/* .site-main--wwd .wwd-companies__content,
	.site-main--wwd .wwd-companies__content p {
		font-size: 16px !important;
		line-height: 1.5 !important;
	} */

	.site-main--wwd .wwd-structure__node-label {
		font-size: 1.125rem;
	}

	.site-main--wwd .wwd-structure__node--root .wwd-structure__node-label {
		font-size: 1.25rem;
	}

	.site-main--wwd .wwd-purpose__headline-wrap {
		/* padding: 3.875rem 0 3.25rem; */
	}

	.site-main--wwd .wwd-purpose__headline {
		/* font-size: 4.356rem !important;
		line-height: 1.08 !important; */
	}

	/* .site-main--wwd .wwd-purpose__body {
		padding: 2.5rem 0 5.5rem;
	} */

	/* .site-main--wwd .wwd-purpose__panel {
		min-height: 24.25rem;
		padding: 5rem 4rem;
		border-radius: 100px;
	} */

	.site-main--wwd .wwd-purpose__title,
	.site-main--wwd .wwd-purpose__title-prefix,
	.site-main--wwd .wwd-purpose__title-emphasis {
		font-size: 2.225rem !important;
		/* line-height: 1.15 !important; */
		/* margin-bottom: 1.75rem; */
		color: var(--bandhan-white) !important;
	}

	/* .site-main--wwd .wwd-purpose__content {
		font-size: 1rem !important;
		line-height: 1.55 !important;
	} */
}

@media (max-width: 991.98px) {
	.site-main--wwd .wwd-companies__panel {
		grid-template-columns: 1fr;
		border-radius: 2.5rem;
	}

	.site-main--wwd .wwd-companies__copy {
		padding: 3rem;
	}

	.site-main--wwd .wwd-companies__media,
	.site-main--wwd .wwd-companies__image {
		min-height: 16rem;
	}

	.site-main--wwd .wwd-structure__connectors {
		display: none;
	}

	.site-main--wwd .wwd-structure__grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 1.25rem;
	}

	.site-main--wwd .wwd-structure__slot--root {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.site-main--wwd .wwd-structure__slot--holdings,
	.site-main--wwd .wwd-structure__slot--tech,
	.site-main--wwd .wwd-structure__leaves,
	.site-main--wwd .wwd-structure__leaves--holdings,
	.site-main--wwd .wwd-structure__leaves--tech,
	.site-main--wwd .wwd-structure__slot--bank,
	.site-main--wwd .wwd-structure__slot--mf,
	.site-main--wwd .wwd-structure__slot--life,
	.site-main--wwd .wwd-structure__slot--usa,
	.site-main--wwd .wwd-structure__slot--uk,
	.site-main--wwd .wwd-structure__slot--uae {
		grid-column: auto;
		grid-row: auto;
	}

	.site-main--wwd .wwd-structure__slot--holdings,
	.site-main--wwd .wwd-structure__slot--tech,
	.site-main--wwd .wwd-structure__leaves {
		grid-column: 1 / -1;
	}

	.site-main--wwd .wwd-structure__leaves {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.site-main--wwd .wwd-structure__node,
	.site-main--wwd .wwd-structure__node--root,
	.site-main--wwd .wwd-structure__node--mid {
		border-radius: 50px;
		max-width: none;
	}

	.site-main--wwd .wwd-structure__mid-shell {
		max-width: none;
		border-radius: 50px;
	}

	.site-main--wwd .wwd-structure__node--leaf {
		max-width: none;
		height: auto;
		min-height: 0;
	}

	.site-main--wwd .wwd-structure__diagram {
		padding-bottom: 0;
	}

	.site-main--wwd .wwd-structure__chart {
		padding-bottom: 0;
	}
}

@media (max-width: 767.98px) {
	.site-main--wwd .wwd-companies__panel {
		border-radius: 2rem;
	}

	.site-main--wwd .wwd-companies__title,
	.site-main--wwd .wwd-companies__title-prefix,
	.site-main--wwd .wwd-companies__title-emphasis {
		margin-bottom: 1.25rem;
	}

	/* .site-main--wwd .wwd-companies__content,
	.site-main--wwd .wwd-companies__content p {
		font-size: 15px !important;
		line-height: 1.45 !important;
	} */

	.site-main--wwd .wwd-structure__title,
	.site-main--wwd .wwd-structure__title-prefix,
	.site-main--wwd .wwd-structure__title-emphasis {
		font-size: 2rem !important;
	}

	.site-main--wwd .wwd-structure__node-label {
		font-size: 0.9375rem;
	}

	.site-main--wwd .wwd-purpose__headline-wrap {
		padding: 2rem 1rem 1.5rem;
	}

	.site-main--wwd .wwd-purpose__headline {
		font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
		-webkit-text-stroke-width: 1px;
		text-stroke-width: 1px;
	}

	.site-main--wwd .wwd-purpose__body {
		padding: 1.25rem 0 3rem;
		background: linear-gradient(
			180deg,
			var(--bandhan-white) 0%,
			var(--bandhan-white) 32%,
			#e3f2ff 32%,
			#e3f2ff 100%
		);
	}

	.site-main--wwd .wwd-purpose__panel {
		border-radius: 2.5rem;
		padding: 2.5rem 1.5rem;
		min-height: auto;
	}

	.site-main--wwd .wwd-purpose__panel-pattern img {
	    display:none;
		/* width: 140%;
		height: 140%;
		margin: -20% 0 0 -20%; */
	}

	.site-main--wwd .wwd-purpose__title,
	.site-main--wwd .wwd-purpose__title-prefix,
	.site-main--wwd .wwd-purpose__title-emphasis {
		font-size: 1.75rem !important;
		margin-bottom: 1.25rem;
		color:#fff;
		margin:0;
		line-height:30px;
	}

	/* .site-main--wwd .wwd-purpose__content {
		font-size: 0.9375rem !important;
		line-height: 1.5 !important;
	} */
}


/* ===== social-impact-page.css ===== */
/* Social Impact page */

.site-main--social-impact {
	--si-curve-overlap: clamp(4rem, 6vw, 6.25rem);
	--si-hero-philosophy-overlap: clamp(2rem, 3.5vw, 3.5rem);
	margin-bottom: 0;
	background: #e7edf4;
}

.si-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: var(--bandhan-white);
}

.si-hero__media {
	position: absolute;
	inset: 0;
}

.si-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.si-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.48) 0%,
		rgba(0, 0, 0, 0.28) 45%,
		rgba(0, 0, 0, 0.12) 100%
	);
}

.si-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 3.0625rem;
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	box-sizing: border-box;
}

.si-hero__top {
	flex: 0 0 auto;
}

.si-hero__body {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
}

.si-hero__title-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	min-height: clamp(12rem, 24vw, 18rem);
}

.si-hero__breadcrumb {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.si-hero__title {
	margin: 0;
	max-width: 54.1875rem;
	text-align: left;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: 0.01em;
	color: var(--bandhan-white);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
	font-synthesis: none;
}

.si-hero__title-prefix {
	font-weight: 300;
}

.si-hero__title-emphasis {
	font-weight: 700;
}

.si-philosophy,
.si-impacts {
	background: linear-gradient(180deg, #0a3354 0%, #041b2f 100%);
	color: var(--bandhan-white);
}

.si-philosophy {
	position: relative;
	z-index: 2;
	margin-top: calc(-1 * var(--si-hero-philosophy-overlap));
	padding: calc(clamp(4rem, 6.5vw, 6.25rem) + var(--si-hero-philosophy-overlap)) 0 calc(clamp(3.5rem, 5.5vw, 5rem) + var(--si-curve-overlap));
}

.si-philosophy .bandhan-container {
	display: flex;
	flex-direction: column;
	/* min-height: clamp(36rem, 50vw, 60.125rem); */
}

.si-philosophy__title,
.si-impacts__title,
.si-stories__title,
.si-gallery__title {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	text-align: center;
	line-height: 1.07;
	letter-spacing: 0.01em;
	color: inherit;
	font-synthesis: none;
}

.si-philosophy__title {
	margin-bottom: 1.875rem;
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem) !important;
	font-weight: var(--bandhan-heading-font-weight) !important;
	line-height: 1.07 !important;
	color: var(--bandhan-white) !important;
}

.si-philosophy__title-prefix {
	font-weight: 300;
}

.si-philosophy__title-emphasis {
	font-weight: 700;
}

.si-impacts__title {
	margin: 0 0 1.875rem;
	text-align: center;
	font-family: var(--bandhan-font-heading) !important;
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem) !important;
	font-weight: var(--bandhan-heading-font-weight) !important;
	line-height: 1.07 !important;
	color: var(--bandhan-white) !important;
}

.si-gallery__title {
	font-size: clamp(2.35rem, 3.7vw, 4rem);
}

.si-stories__title {
	text-align: left;
	font-family: var(--bandhan-font-heading) !important;
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem) !important;
	font-weight: var(--bandhan-heading-font-weight) !important;
	line-height: 1.07 !important;
	color: var(--bandhan-navy) !important;
}

.si-stories__title-emphasis {
	color: var(--bandhan-navy);
}

.si-philosophy__content {
	max-width: 80.4375rem;
	margin: 0 auto 3.75rem;
	text-align: center;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size) !important;
	font-weight: var(--bandhan-body-font-weight) !important;
	line-height: var(--bandhan-body-line-height) !important;
	color: var(--bandhan-white) !important;
}

.si-philosophy__content p,
.si-philosophy__content li {
	color: var(--bandhan-white) !important;
}

.si-philosophy__content p {
	margin: 0;
}

.si-philosophy__content p + p,
.si-philosophy__content p + ul {
	margin-top: 1.875rem;
}

.si-philosophy__list,
.si-philosophy__content ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.si-philosophy__list li,
.si-philosophy__content ul li {
	position: relative;
	padding-left: 1.25rem;
}

.si-philosophy__list li::before,
.si-philosophy__content ul li::before {
	content: '-';
	position: absolute;
	left: 0;
}

.si-philosophy__list li + li,
.si-philosophy__content ul li + li {
	margin-top: 0.35rem;
}

.si-philosophy__content ul + p,
.si-philosophy__content p + ul {
	margin-top: 1.875rem;
}

.si-philosophy__points {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	/* margin-top: auto; */
	/* padding-top: clamp(2rem, 3.5vw, 3.75rem); */
}

.si-philosophy__point {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* justify-content: flex-start;
	max-width: 19.1875rem;
	min-height: 13.1875rem;
	margin-inline: auto;
	padding: 1.5rem 1.25rem 1rem;
	text-align: center; */
}

.si-philosophy__point:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: clamp(8rem, 11vw, 10rem);
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-50%);
}

.si-philosophy__point-icon {
	width: 3.5rem;
	height: 3.5rem;
	object-fit: contain;
	margin: 0 auto 1.125rem;
	filter: brightness(0) invert(1);
}

.si-philosophy__point-heading,
.si-philosophy__point h3 {
	margin: 0 0 0.5rem;
	font-family: var(--bandhan-font-heading);
	font-size: 18px;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: 0 !important;
	color: var(--bandhan-white) !important;
}

/* .si-philosophy__point-subheading,
.si-philosophy__point p {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size) !important;
	font-weight: 300 !important;
	line-height: var(--bandhan-body-line-height) !important;
	letter-spacing: var(--bandhan-body-letter-spacing);
	color: var(--bandhan-white) !important;
} */

.si-stories,
.si-gallery {
	padding: clamp(3rem, 5vw, 5rem) 0;
}

.si-stories {
	--si-story-card-radius: 20px;
	--si-story-card-gap: 28px;
	--si-story-bar-color: var(--bandhan-navy);
	background: var(--bandhan-white);
}

.si-programs {
	position: relative;
	z-index: 3;
	margin-top: calc(-1 * var(--si-curve-overlap));
	margin-bottom: 0;
	padding: calc(var(--si-curve-overlap) + clamp(2.5rem, 4vw, 3.75rem)) 0 0;
	background: #F0F8FF;
	border-radius: 100px 100px 0 0;
}

.si-programs .bandhan-container {
	padding-bottom: 0;
}

.si-programs__panel {
	margin-bottom: 0;
	padding-bottom: 0;
}

.si-programs__mosaic:last-child {
	margin-bottom: 0;
}

/* .si-programs__panel {
	max-width: 84rem;
	margin: 0 auto;
	padding: clamp(2.5rem, 4vw, 3.75rem) clamp(1.5rem, 3vw, 3rem);
	background: var(--bandhan-white);
	border-radius: clamp(2rem, 3vw, 3.125rem);
} */

.si-programs__header {
	max-width: 84rem;
	margin: 0 auto clamp(2rem, 3vw, 2.75rem);
	text-align: center;
}

.si-programs__title {
	margin: 0 0 0.9rem;
	color: var(--bandhan-navy);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	font-weight: var(--bandhan-heading-font-weight);
}

.si-programs__title-prefix {
	font-weight: 300;
}

.si-programs__title-emphasis {
	font-weight: 600;
}

.si-programs__intro,
.si-gallery__intro {
	margin: 0 auto;
	max-width: 56rem;
	text-align: center;
	font-size: var(--bandhan-body-font-size);
	font-family: var(--bandhan-font-body);
	font-weight: 300;
	line-height: 1.5;
	color: var(--bandhan-navy-mid);
}

.si-programs__mosaic {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(18rem, auto));
	align-content: start;
	margin: 0;
	overflow: hidden;
	border-radius: clamp(1.75rem, 2.5vw, 2.5rem);
	background: var(--bandhan-white);
}

.si-programs__mosaic.si-programs__mosaic--single {
	grid-template-rows: auto;
}

.si-programs__mosaic.si-programs__mosaic--single .si-programs__cell {
	min-height: clamp(16rem, 22vw, 20rem);
}

.si-programs__mosaic + .si-programs__mosaic {
	/* margin-top: 1.25rem; */
}

.si-programs + .si-impacts {
	margin-top: 0;
	border-top: 0;
	padding-top: clamp(1.75rem, 2.5vw, 2.25rem);
}

.si-programs__cell {
	min-height: clamp(18rem, 24vw, 22.5rem);
}

.si-programs__cell--text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: clamp(1.75rem, 2.8vw, 3rem);
	background: #DAEEFF;
}

/* .si-programs__cell--text-alt {
	background: #edf4fa;
} */

.si-programs__cell-title {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.5rem, 2.2vw, 2.125rem);
	line-height: 1.18;
	font-weight: 600;
	color: var(--bandhan-navy);
}

.si-programs__impact {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0 0 1rem;
}

.si-programs__impact-value {
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.75rem, 2.4vw, 2.5rem);
	font-weight: 600;
	line-height: 1.1;
	color: var(--bandhan-red, #e31c23);
}

.si-programs__impact-label {
	font-family: var(--bandhan-font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--bandhan-navy);
}

.si-programs__cell-text {
	margin: 0;
	font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
	line-height: 1.65;
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-weight: 300;
}

.si-programs__cell--media {
	position: relative;
	min-height: clamp(18rem, 24vw, 22.5rem);
	background: #d9e7f2;
}

.si-programs__cell--media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center;
}

.si-impacts {
	position: relative;
	z-index: 2;
	margin-top: 0;
	padding: clamp(1.75rem, 2.5vw, 2.25rem) 0;
	overflow: hidden;
}

.si-impacts__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.si-impacts__header {
	width: 100%;
	margin-bottom: 0;
}

.si-impacts .who-we-are__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	max-width: 52rem;
	margin: 0 auto;
	justify-items: stretch;
}

.si-impacts .who-we-are__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	min-height: 4.25rem;
	padding: 0 clamp(0.75rem, 1.5vw, 1.25rem);
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.si-impacts .who-we-are__stat:last-child {
	border-right: none;
}

.si-impacts .who-we-are__stat-value {
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 auto 0.625rem;
	font-synthesis: none;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	text-align: center;
}

.si-impacts .who-we-are__stat-label {
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2;
	width: 100%;
	text-align: center;
}

.si-impacts .who-we-are__stat-label-line {
	display: block;
	text-align: center;
}

@media (min-width: 1200px) {
	.si-impacts .who-we-are__stat:first-child {
		padding-left: 0;
	}

	.si-impacts .who-we-are__stat:last-child {
		padding-right: 0;
	}
}

@media (max-width: 991.98px) {
	.si-impacts .who-we-are__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: 40rem;
	}
}

.si-stories__grid {
	display: grid;
	grid-template-columns: minmax(0, 22.5rem) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.75rem);
	align-items: start;
}

.si-stories__intro-block {
	max-width: 26.5rem;
}

.si-stories__intro {
	margin: 1rem 0 0;
	max-width: 22.5rem;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	font-weight: var(--bandhan-body-font-weight);
	line-height: var(--bandhan-body-line-height);
	color: var(--bandhan-text-muted);
}

.si-stories__intro-block .bandhan-slider-nav-group {
	margin-top: 1.75rem;
}

.si-stories__slider {
	width: 100%;
	overflow: visible;
}

.si-stories__cards {
	display: flex;
}

.si-story-card.swiper-slide {
	height: auto;
}

.si-story-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	border-bottom: 6px solid var(--si-story-bar-color);
}

.si-story-card__shell {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	overflow: hidden;
	background: var(--bandhan-white);
	border-radius: var(--si-story-card-radius) var(--si-story-card-radius) 0 0;
}

.si-story-card__media-wrap {
	position: relative;
	margin: 0.65rem 0.65rem 0;
	overflow: hidden;
	border-radius: var(--si-story-card-radius) var(--si-story-card-radius) 0 0;
}

.si-story-card__media-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.22);
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.si-story-card__media-wrap:has(.si-story-card__play)::after {
	opacity: 1;
}

.si-story-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 505 / 283;
	object-fit: cover;
}

.si-story-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background: var(--bandhan-white);
	color: var(--bandhan-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.si-story-card__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 0.2rem;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
	border-left: 0.85rem solid currentColor;
}

.si-story-card__play:hover,
.si-story-card__play:focus {
	background: var(--bandhan-white);
	color: var(--bandhan-navy-mid);
}

.si-story-card__body {
	flex: 1 1 auto;
	padding: 0.625rem 0.85rem 0.875rem;
}

.si-story-card__title {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
}

.si-story-card__title a {
	color: var(--bandhan-text-dark);
	text-decoration: none;
}

.si-story-card__title a:hover,
.si-story-card__title a:focus {
	color: var(--bandhan-navy-mid);
}

.si-story-card__bar {
	flex-shrink: 0;
	height: 0;
	background-color: var(--si-story-bar-color);
}

.si-gallery__grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.si-gallery__item {
	margin: 0;
	border-radius: 2rem;
	overflow: hidden;
	position: relative;
}

.si-gallery__item img {
	width: 100%;
	height: 17rem;
	object-fit: cover;
}

.si-gallery__item::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 4px solid #f2bc1a;
	border-radius: 2rem;
	opacity: 0.9;
	pointer-events: none;
}

.si-gallery__album {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.si-gallery__album-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1.25rem 1.15rem 1.1rem;
	background: linear-gradient(180deg, rgba(0, 38, 65, 0) 0%, rgba(0, 38, 65, 0.82) 100%);
	color: #fff;
}

.si-gallery__album-title {
	font-family: var(--bandhan-font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.25;
}

.si-gallery__album-count {
	font-size: 0.9rem;
	opacity: 0.92;
}

body.si-gallery-modal-open {
	overflow: hidden;
}

.si-gallery-modal[hidden] {
	display: none !important;
}

.si-gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.si-gallery-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 20, 40, 0.72);
}

.si-gallery-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(1100px, 100%);
	max-height: min(90vh, 900px);
	overflow: auto;
	border-radius: 1.25rem;
	background: #fff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.si-gallery-modal__header {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	background: #fff;
	border-bottom: 1px solid rgba(0, 38, 65, 0.12);
}

.si-gallery-modal__title {
	margin: 0;
	color: var(--bandhan-navy);
	font-family: var(--bandhan-font-heading);
	font-size: 1.35rem;
	font-weight: 600;
}

.si-gallery-modal__count {
	margin: 0.2rem 0 0;
	color: var(--bandhan-text-muted, #5b6b7c);
	font-size: 0.95rem;
}

.si-gallery-modal__close {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 38, 65, 0.08);
	color: var(--bandhan-navy);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.si-gallery-modal__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	padding: 1.1rem 1.25rem 1.35rem;
}

.si-gallery-modal__item {
	margin: 0;
	border-radius: 0.85rem;
	overflow: hidden;
	background: #edf2f7;
}

.si-gallery-modal__item img {
	display: block;
	width: 100%;
	height: 11rem;
	object-fit: cover;
}

@media (max-width: 1199.98px) {
	.si-philosophy .bandhan-container {
		min-height: 0;
	}

	.si-philosophy__points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.si-philosophy__point::after {
		display: none;
	}

	.si-philosophy__point:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.25);
	}

	.si-philosophy__point:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	}

	.si-philosophy__point:nth-child(even) {
		border-right: 0;
	}

	.si-stories__grid {
		grid-template-columns: 1fr;
	}

	.si-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.si-gallery-modal__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.site-main--social-impact {
		--si-curve-overlap: 2.5rem;
		--si-hero-philosophy-overlap: 1.5rem;
	}

	.si-philosophy__point {
		border-right: 0;
		border-bottom: 0;
		max-width: none;
	}

	.si-philosophy__point:nth-child(odd),
	.si-philosophy__point:nth-child(-n + 2) {
		border-right: 0;
		border-bottom: 0;
	}

	.si-programs {
		border-radius: 3.125rem 3.125rem 0 0;
	}

	.si-hero__inner {
		padding-top: 2rem;
		padding-bottom: 1.5rem;
	}

	.si-hero__body {
		display: flex;
		flex-direction: column;
	}

	.si-hero__title-wrap {
		align-items: flex-start;
		justify-content: flex-start;
		height: auto;
		min-height: 0;
	}

	.si-hero__overlay {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.55) 100%
		);
	}

	/* .si-programs__panel {
		padding: 2rem 1.25rem;
		border-radius: 2rem;
	} */

	.si-programs__mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		border-radius: 1.75rem;
	}

	.si-programs__cell {
		min-height: auto;
	}

	.si-programs__cell--media {
		min-height: clamp(14rem, 55vw, 18rem);
	}

	.si-gallery__grid,
	.si-philosophy__points {
		grid-template-columns: 1fr;
	}

	.si-philosophy__point {
		border-right: 0;
	}

	.si-impacts {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.si-impacts .who-we-are__stats {
		grid-template-columns: 1fr;
	}

	.si-impacts .who-we-are__stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		padding: 0 0 1rem;
	}

	.si-impacts .who-we-are__stat:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
}


/* ===== bandhan-bank-detail.css ===== */
/* Bandhan Bank Detail page */

.site-main--bbd {
	padding: 0;
	margin-bottom: 0;
	max-width: none;
	width: 100%;
}

.bbd-hero {
	position: relative;
	color: var(--bandhan-white);
	overflow: hidden;
}

.bbd-hero__media {
	position: absolute;
	inset: 0;
}

.bbd-hero__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bbd-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.35) 45%,
		rgba(0, 0, 0, 0.15) 100%
	);
}

.bbd-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 3.0625rem;
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	box-sizing: border-box;
}

.bbd-hero__top {
	flex: 0 0 auto;
}

.bbd-hero__body {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
}

.bbd-hero__title-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	min-height: clamp(12rem, 24vw, 18rem);
	padding-right: clamp(0rem, 12vw, 20rem);
	box-sizing: border-box;
}

.bbd-hero__breadcrumb {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9) !important;
}

.site-main--bbd .bbd-hero__title {
	margin: 0;
	max-width: 54.1875rem;
	text-align: left;
	font-family: var(--bandhan-font-heading) !important;
	font-size: clamp(2.25rem, 4.5vw, 3.5rem) !important;
	font-weight: 700 !important;
	line-height: 1.3214285714 !important;
	letter-spacing: 0.01em !important;
	color: var(--bandhan-white) !important;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
	font-synthesis: none;
}

.site-main--bbd .bbd-hero__title-prefix {
	font-weight: 300 !important;
}

.site-main--bbd .bbd-hero__title-emphasis {
	font-weight: 700 !important;
}

.bbd-hero__visit {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 17.875rem;
	max-width: 100%;
}

.bbd-hero__visit-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	width: 100%;
	margin: 0 0 0.625rem;
	font-family: var(--bandhan-font-heading);
	font-size: var(--bandhan-cta-font-size);
	font-weight: var(--bandhan-cta-font-weight);
	line-height: var(--bandhan-cta-line-height);
	letter-spacing: var(--bandhan-cta-letter-spacing);
	text-align: center;
	text-decoration: none;
	color: var(--bandhan-white);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	transition: opacity 0.2s ease;
}

.bbd-hero__visit-link:hover,
.bbd-hero__visit-link:focus-visible {
	opacity: 0.85;
}

.bbd-hero__visit-link-icon {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
}

.bbd-hero__visit-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 7rem;
	padding: 0.875rem 1.25rem;
	border-radius: 0.5rem;
	background: var(--bandhan-white);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bbd-hero__visit-card:hover,
.bbd-hero__visit-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.bbd-hero__visit-card-logo {
	display: block;
	width: 100%;
	max-width: 15.3125rem;
	height: auto;
}

/* About — Figma spacing & typography */
.site-main--bbd .bbd-about {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 8vw, 6.5rem) 0 0;
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
}

.site-main--bbd .bbd-about__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.site-main--bbd .bbd-about__pattern img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0.45;
}

.site-main--bbd .bbd-about__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: clamp(12rem, 20vw, 22rem);
	text-align: center;
}

.site-main--bbd .bbd-about__title,
.site-main--bbd .bbd-about__content,
.bbd-about .who-we-are__stats {
	width: 100%;
}

.site-main--bbd .bbd-about__content {
	max-width: 80.4375rem;
	margin: 0 auto 0;
	color: var(--bandhan-white) !important;
}

.site-main--bbd .bbd-about__title {
	margin: 0 auto 1.875rem;
	color: var(--bandhan-white) !important;
}
/* 
.site-main--bbd .bbd-about__title-prefix,
.site-main--bbd .bbd-about__title-emphasis {
	margin: 0;
	font-family: inherit;
	font-size: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit;
	color: inherit !important;
	font-synthesis: none;
}

.site-main--bbd .bbd-about__title-prefix {
	font-weight: 300 !important;
}

.site-main--bbd .bbd-about__title-emphasis {
	font-weight: 700 !important;
} */

/* .site-main--bbd .bbd-about__content {
	margin: 0 auto 3.75rem;
	max-width: 80.4375rem;
	font-family: var(--bandhan-font-body) !important;
	font-size: 1.25rem !important;
	font-weight: 300 !important;
	line-height: 1.875rem !important;
	letter-spacing: 0 !important;
	color: var(--bandhan-white) !important;
} */

/* About stats — reuse homepage Who We Are stat classes (5 columns on this page). */
.bbd-about .who-we-are__stats {
	margin-top: 3.75rem;
}

.bbd-about .who-we-are__stat {
	align-items: center;
	text-align: center;
}

@media (min-width: 768px) {
	.bbd-about .who-we-are__stats {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.bbd-about .who-we-are__stat {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

.site-main--bbd .bbd-about__curve {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	line-height: 0;
	pointer-events: none;
}

.site-main--bbd .bbd-about__curve img {
	display: block;
	width: 100%;
	height: auto;
}

/* Products — Figma 824:1935 */
.site-main--bbd .bbd-products {
	position: relative;
	z-index: 3;
	margin-top: calc(-1 * clamp(10rem, 18vw, 20rem));
	/* padding: clamp(4rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 7.5rem); */
	background: var(--bandhan-white);
}

.site-main--bbd .bbd-products__header {
	margin-bottom: 50px;
	text-align: center;
}

.site-main--bbd .bbd-products__list {
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 6.9vw, 6.9375rem);
}

.site-main--bbd .bbd-products__panel {
	position: relative;
}

.site-main--bbd .bbd-products__panel-layout {
	position: relative;
	min-height: clamp(18rem, 24.34vw, 28.3125rem);
}

.site-main--bbd .bbd-products__panel-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 47.5%;
	height: 100%;
	overflow: hidden;
	border-radius: 3.125rem;
	background: var(--bandhan-sky);
	z-index: 99;
}

.site-main--bbd .bbd-products__panel--reverse .bbd-products__panel-media {
	right: 0;
	left: auto;
}

.site-main--bbd .bbd-products__panel-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.site-main--bbd .bbd-products__panel-copy {
	position: absolute;
	top: 3.5625rem;
	right: 0;
	left: calc(47.5% + 3.66%);
	max-width: 44.125rem;
	padding-right: 0.5rem;
}

.site-main--bbd .bbd-products__panel--reverse .bbd-products__panel-copy {
	right: calc(47.5% + 3.66%);
	left: 0;
	padding-right: 0;
	padding-left: 0.5rem;
}

.site-main--bbd .bbd-products__panel-title {
	margin: 0 0 0.875rem;
	font-family: var(--bandhan-font-heading);
	font-size: 22px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	color: var(--bandhan-navy) !important;
}

.site-main--bbd .bbd-products__panel-tagline {
	margin: 0 0 0.875rem;
	font-family: var(--bandhan-font-body);
	font-size: 16px !important;
	font-style: italic;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	color: var(--bandhan-navy) !important;
}

/* .site-main--bbd .bbd-products__panel-description {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem !important;
	font-weight: 300 !important;
	line-height: 1.5 !important;
	color: var(--bandhan-text-muted) !important;
} */

.site-main--bbd .bbd-products__cards {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 43.55%;
	display: flex;
	align-items: stretch;
	/* height: 13.875rem; */
}

.site-main--bbd .bbd-products__panel--reverse .bbd-products__cards {
	right: 43.55%;
	left: 0;
}

.site-main--bbd .bbd-products__card {
	position: relative;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1.25rem 1rem;
	color: var(--bandhan-white) !important;
	text-align: center;
	text-decoration: none;
	border-radius: 3.125rem 3.125rem 0 0;
}

.site-main--bbd .bbd-products__panel:not(.bbd-products__panel--reverse) .bbd-products__card--1 {
	z-index: 3;
	flex-basis: 40.47%;
	background: #002641;
}

.site-main--bbd .bbd-products__panel:not(.bbd-products__panel--reverse) .bbd-products__card--2 {
	z-index: 2;
	flex-basis: 40.89%;
	margin-left: -10.51%;
	background: #024472;
}

.site-main--bbd .bbd-products__panel:not(.bbd-products__panel--reverse) .bbd-products__card--3 {
	z-index: 1;
	flex-basis: 43.46%;
	margin-left: -14.32%;
	background: #076eb5;
}

.site-main--bbd .bbd-products__panel--reverse .bbd-products__card--1 {
	z-index: 3;
	flex-basis: 34.6%;
	background: #076eb5;
}

.site-main--bbd .bbd-products__panel--reverse .bbd-products__card--2 {
	z-index: 2;
	flex-basis: 41.71%;
	margin-left: -8.81%;
	background: #024472;
}

.site-main--bbd .bbd-products__panel--reverse .bbd-products__card--3 {
	z-index: 1;
	flex-basis: 50.87%;
	margin-left: -14.52%;
	background: #002641;
}

.site-main--bbd .bbd-products__card-icon {
	display: block;
	width: auto;
	max-width: 4.625rem;
	height: 3.8125rem;
	object-fit: contain;
}

.site-main--bbd .bbd-products__card-label {
	font-family: var(--bandhan-font-heading);
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--bandhan-white) !important;
}

/* Leadership */
.bbd-leadership {
	padding: clamp(4rem, 5vw, 6.25rem) 0;
	background: var(--bandhan-white);
}

.bbd-leadership__intro {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bbd-leadership__header {
	flex: 1 1 auto;
	max-width: 44.8125rem;
	margin-bottom: 0;
}

.bbd-leadership__title {
	margin: 0 0 1rem;
	color: var(--bandhan-text-dark);
}

.bbd-leadership__subtitle {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.5;
	color: var(--bandhan-text-muted);
}

.bbd-leadership__swiper {
	overflow: hidden;
}

.bbd-leadership__swiper .swiper-slide {
	height: auto;
}

.bbd-leadership__swiper--static .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 3.875rem);
}

.bbd-leadership .fwc-team__card {
	height: 100%;
}

/* Beyond Banking */
.site-main--bbd .bbd-beyond {
	padding: clamp(4rem, 5vw, 6.25rem) 0 clamp(5rem, 9vw, 5.0rem);
	background: var(--bandhan-cream);
}

.site-main--bbd .bbd-beyond__header {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.site-main--bbd .bbd-beyond__title,
.site-main--bbd .bbd-beyond__title-prefix,
.site-main--bbd .bbd-beyond__title-emphasis {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-navy) !important;
	font-synthesis: none;
}

.site-main--bbd .bbd-beyond__title-prefix {
	font-weight: 300 !important;
}

.site-main--bbd .bbd-beyond__title-emphasis {
	font-weight: 700 !important;
}

.site-main--bbd .bbd-beyond__subtitle {
	margin: 0 auto;
	max-width: 52.75rem;
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
	font-weight: 300 !important;
	line-height: 1.5 !important;
	color: var(--bandhan-text-muted) !important;
}

.site-main--bbd .bbd-beyond__stats {
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(0.9375rem, 1.4vw, 1.25rem) !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	text-align: center;
	color: var(--bandhan-navy) !important;
}

.site-main--bbd .bbd-beyond__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 2rem);
	align-items: start;
}

.site-main--bbd .bbd-beyond__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

.site-main--bbd .bbd-beyond__item-media {
	width: min(100%, 13.5rem);
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
}

.site-main--bbd .bbd-beyond__item-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}

.site-main--bbd .bbd-beyond__item-title {
	margin: 1.25rem 0 0;
	font-family: var(--bandhan-font-heading);
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	line-height: 1.15 !important;
	color: var(--bandhan-navy) !important;
}

.site-main--bbd .bbd-beyond__cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.site-main--bbd .bbd-beyond__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 12.5rem;
	padding: 0.75rem 1.75rem;
	border: 0;
	border-radius: 50px;
	background-color: var(--bandhan-red);
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: 0.75rem !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease;
}

.site-main--bbd .bbd-beyond__cta:hover,
.site-main--bbd .bbd-beyond__cta:focus {
	background-color: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

@media (max-width: 1199.98px) {
	.site-main--bbd .bbd-products__panel-layout {
		display: flex;
		flex-direction: column;
		min-height: 0;
		gap: 1.5rem;
	}

	.site-main--bbd .bbd-products__panel-media {
		position: relative;
		width: 100%;
		height: auto;
		aspect-ratio: 817 / 453;
	}

	.site-main--bbd .bbd-products__panel--reverse .bbd-products__panel-media {
		order: -1;
	}

	.site-main--bbd .bbd-products__panel-copy {
		position: relative;
		top: auto;
		right: auto;
		left: auto;
		max-width: none;
		padding: 0;
	}

	.site-main--bbd .bbd-products__panel--reverse .bbd-products__panel-copy {
		right: auto;
		padding: 0;
	}

	.site-main--bbd .bbd-products__cards {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		flex-direction: row;
		flex-wrap: wrap;
		height: auto;
	}

	.site-main--bbd .bbd-products__panel--reverse .bbd-products__cards {
		right: auto;
	}

	.site-main--bbd .bbd-products__card,
	.site-main--bbd .bbd-products__panel:not(.bbd-products__panel--reverse) .bbd-products__card--1,
	.site-main--bbd .bbd-products__panel:not(.bbd-products__panel--reverse) .bbd-products__card--2,
	.site-main--bbd .bbd-products__panel:not(.bbd-products__panel--reverse) .bbd-products__card--3,
	.site-main--bbd .bbd-products__panel--reverse .bbd-products__card--1,
	.site-main--bbd .bbd-products__panel--reverse .bbd-products__card--2,
	.site-main--bbd .bbd-products__panel--reverse .bbd-products__card--3 {
		flex: 1 1 calc(33.333% - 0.75rem);
		margin-left: 0;
		min-height: 10rem;
		border-radius: 1.5rem 1.5rem 0 0;
	}

	.bbd-leadership__swiper--static .swiper-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bbd-leadership__intro {
		flex-direction: column;
	}

	.site-main--bbd .bbd-beyond__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.bbd-hero__inner {
		padding-bottom: 1.5rem;
	}

	.bbd-hero__body {
		display: flex;
		flex-direction: column;
	}

	.bbd-hero__title-wrap {
		align-items: flex-start;
		justify-content: flex-start;
		height: auto;
		min-height: 0;
		padding-right: 0;
	}

	.site-main--bbd .bbd-hero__title {
		margin: 0;
		text-align: left;
	}

	.bbd-hero__visit {
		position: static;
		width: min(100%, 17.875rem);
		margin-top: clamp(1.5rem, 6vw, 2.5rem);
	}

	.site-main--bbd .bbd-beyond__grid {
		grid-template-columns: 1fr;
	}

	.bbd-leadership__swiper--static .swiper-wrapper {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1200px) {
	.site-main--bbd .bbd-hero__title {
		font-size: 3.5rem !important;
		line-height: 4.625rem !important;
	}

	.site-main--bbd .bbd-about {
		padding-top: 6.5rem;
	}
/* 
	.site-main--bbd .bbd-about__title {
		font-size: 3.5rem !important;
		line-height: 3.75rem !important;
		margin-bottom: 1.875rem;
	} */

	/* .site-main--bbd .bbd-about__content {
		font-size: 1.25rem !important;
		line-height: 1.875rem !important;
		margin-bottom: 3.75rem;
	} */

	.site-main--bbd .bbd-about__inner {
		padding-bottom: 22rem;
	}

	/* .site-main--bbd .bbd-products__title,
	.site-main--bbd .bbd-products__title-prefix,
	.site-main--bbd .bbd-products__title-emphasis,
	.site-main--bbd .bbd-leadership__title,
	.site-main--bbd .bbd-beyond__title,
	.site-main--bbd .bbd-beyond__title-prefix,
	.site-main--bbd .bbd-beyond__title-emphasis {
		font-size: 3.5rem !important;
	}

	.site-main--bbd .bbd-products__panel-layout {
		min-height: 28.3125rem;
	} */
}


/* ===== contact-us.css ===== */
/**
 * Contact Us page — Figma 825:3078
 */

.contact-hero {
	position: relative;
	overflow: hidden;
	background: #daeeff;
}

.contact-hero__map {
	position: absolute;
	top: 48%;
	left: 48%;
	z-index: 1;
	width: min(92vw, 80.75rem);
	height: auto;
	transform: translate(-42%, -50%);
	pointer-events: none;
	user-select: none;
}

.contact-hero__inner {
	position: relative;
	z-index: 2;
}

.contact-hero__content {
	position: relative;
	max-width: 54.1875rem;
}

.contact-hero__breadcrumb {
	position: absolute;
	top: 3.125rem;
	left: 0;
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(0, 38, 65, 0.42);
}

.contact-hero__title {
	position: absolute;
	top: 14.125rem;
	left: 0;
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.5rem, 4.5vw, 3.5rem);
	line-height: 1.3214285714;
	color: var(--bandhan-navy);
}

/* Contact form — Figma spacing */
.contact-form-section {
	padding: clamp(4rem, 7.25vw, 7.25rem) 0 clamp(4rem, 8vw, 6.5rem);
	background: var(--bandhan-white);
	padding-bottom:0;
}

.contact-form-section__layout {
	display: grid;
	grid-template-columns: minmax(0, 48.9375rem) minmax(0, 53.3125rem);
	gap: clamp(2.5rem, 5.25vw, 5.25rem);
	align-items: stretch;
}

.contact-form-section__content {
	max-width: 48.9375rem;
}

/* .contact-form-section__title {
	margin: 0 0 1.875rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1.0714285714;
	color: var(--bandhan-navy);
} */

.contact-form-section__subtitle {
	/* margin: 0 0 3.4375rem;
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.5; */
	color: #3d3d3d;
}

.contact-form-section__form {
	max-width: 48.9375rem;
}

.contact-form-section__notice {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 1rem;
	color: var(--bandhan-text-muted);
}

.contact-form-section__media {
	min-height: 100%;
}

.contact-form-section__image {
	display: block;
	width: 100%;
	height: 100%;
	/* min-height: 50.1875rem; */
	border-radius: 6.25rem  6.25rem 0 0;
	object-fit: cover;
	object-position: center;
}

/* Contact Form 7 */
.contact-us-form {
	margin: 0;
}

.contact-us-form .wpcf7-form {
	margin: 0;
}

.contact-us-form .wpcf7-form p {
	margin: 0;
}

.contact-us-form__fields {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.contact-us-form__field {
	margin: 0;
}

.contact-us-form__label,
.contact-us-form .contact-us-form__label {
	display: block;
	margin: 0 0 0.5625rem;
	font-family: var(--bandhan-font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 2.3333333333;
	color: var(--bandhan-navy);
}

.contact-us-form__input,
.contact-us-form__textarea,
.contact-us-form .wpcf7-form-control:not(.wpcf7-submit) {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0 0 0.8125rem;
	border: 0;
	border-bottom: 1px solid rgba(0, 38, 65, 0.2);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-family: var(--bandhan-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1111111111;
	color: var(--bandhan-navy);
}

.contact-us-form__textarea,
.contact-us-form textarea.contact-us-form__textarea {
	height: calc(1.1111111111em + 0.8125rem);
	min-height: 0;
	max-height: calc(1.1111111111em + 0.8125rem);
	padding-bottom: 0.8125rem;
	overflow: hidden;
	resize: none;
}

.contact-us-form__input:focus,
.contact-us-form__textarea:focus,
.contact-us-form .wpcf7-form-control:not(.wpcf7-submit):focus {
	outline: none;
	border-bottom-color: var(--bandhan-navy);
}

.contact-us-form__input::placeholder,
.contact-us-form__textarea::placeholder {
	color: rgba(0, 38, 65, 0.55);
}

.contact-us-form__submit-wrap {
	margin: 2.875rem 0 0;
}

.contact-us-form__submit,
.contact-us-form .wpcf7-submit.contact-us-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 6.875rem;
	margin: 0;
	border: 0;
	border-radius: 3.125rem;
	background: #d02d2a;
	color: var(--bandhan-white);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.contact-us-form__submit:hover,
.contact-us-form .wpcf7-submit.contact-us-form__submit:hover {
	opacity: 0.9;
}

.contact-us-form .wpcf7-spinner {
	margin-left: 0.75rem;
}

.contact-us-form .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-size: 0.875rem;
	color: #d02d2a;
}

.contact-us-form .wpcf7-response-output {
	margin: 1.25rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.9375rem;
}

/* Office locations — Figma */
.contact-offices {
	position: relative;
	padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
	background: #daeeff;
	overflow: hidden;
}

.contact-offices__inner {
	position: relative;
	z-index: 1;
}

.contact-offices__layout {
	display: grid;
	grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: start;
	padding-right: clamp(0rem, 8vw, 10rem);
}

.contact-offices__intro {
	max-width: 22rem;
}

.contact-offices__title {
	margin: 0 0 0.75rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--bandhan-navy);
	font-synthesis: none;
}

.contact-offices__title-prefix {
	font-weight: 300 !important;
}

.contact-offices__title-emphasis {
	font-weight: 700 !important;
}

.contact-offices__subtitle {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 1.125rem !important;
	font-weight: 300;
	line-height: 1.5 !important;
	color: #3d3d3d;
}

.contact-offices__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: stretch;
}

.contact-offices__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-bottom: 1.25rem;
	border-bottom: 6px solid var(--bandhan-navy);
}

.contact-offices__card-title {
	margin: 0 0 0.85rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.35rem, 1.8vw, 1.875rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--bandhan-navy);
}

.contact-offices__card-company {
	margin: 0 0 0.85rem;
	font-family: var(--bandhan-font-body);
	font-size: 1rem !important;
	font-weight: 500 !important;
	font-style: italic;
	line-height: 1.5 !important;
	color: #6b7280;
}

.contact-offices__card-address {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.9375rem !important;
	font-weight: 300;
	line-height: 1.55 !important;
	color: #3d3d3d;
}

.contact-offices__card-line {
	display: block;
}

.contact-offices__card-bar {
	display: none;
}

.contact-offices__map {
	position: absolute;
	right: 0;
	top: 0;
	/* z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(48vw, 32rem);
	aspect-ratio: 1;
	pointer-events: none;
	transform: translateY(-50%); */
}

/* .contact-offices__map::before {
	content: "";
	position: absolute;
	inset: 8% 0 8% 18%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	pointer-events: none;
} */

/* .contact-offices__map-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 72%;
	height: auto;
	opacity: 0.14;
	object-fit: contain;
} */

@media (max-width: 1199.98px) {
	.contact-form-section__layout {
		grid-template-columns: 1fr;
	}

	.contact-form-section__media {
		max-width: 40rem;
	}

	.contact-form-section__image {
		border-radius: 3rem 3rem 0 0;
	}

	.contact-offices__layout {
		grid-template-columns: 1fr;
		padding-right: 0;
	}

	.contact-offices__intro {
		max-width: none;
	}

	.contact-offices__map {
		right: -4rem;
		width: min(55vw, 18rem);
		opacity: 0.9;
	}
}

@media (max-width: 767.98px) {
	.contact-hero__map {
		left: 62%;
		width: 115vw;
		opacity: 0.9;
	}

	.contact-hero__breadcrumb {
		top: 1.5rem;
	}

	.contact-hero__title {
		top: auto;
		bottom: 2rem;
		max-width: 12rem;
	}

	.contact-offices__grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1200px) {
	.contact-hero__title {
		font-size: 3.5rem;
	}

	.contact-form-section__title,
	.contact-offices__title {
		font-size: 3.5rem;
	}
}


/* ===== career-page.css ===== */
/* Career page */

.site-main--career {
	background: #eef2f7;
}

.career-intro {
	position: relative;
	padding: clamp(3rem, 5.5vw, 5rem) 0;
	background-color: var(--bandhan-white);
	overflow: hidden;
}

.career-intro__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.career-intro__background-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.career-intro__inner {
	position: relative;
	z-index: 1;
}

.career-intro__text {
	margin: 0 auto;
	max-width: 58rem;
	text-align: center;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 300;
	line-height: 1.45;
	color: var(--bandhan-text-dark);
}

.career-life {
	position: relative;
	z-index: 1;
	margin-top: 0;
	padding: clamp(3rem, 5.5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5rem);
	background: linear-gradient(180deg, var(--bandhan-navy-mid) 0%, var(--bandhan-navy-dark) 100%);
	color: var(--bandhan-white);
	border-radius: 3.125rem 3.125rem 0 0;
	overflow: hidden;
}

.career-life__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: inherit;
}

.career-life__background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0.2;
	pointer-events: none;
}

.career-life__inner {
	position: relative;
	z-index: 1;
}

.career-life__title {
	margin: 0;
	text-align: center;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	line-height: 1.15;
	letter-spacing: 0.01em;
	color: var(--bandhan-white);
	font-synthesis: none;
}

.career-life__title-prefix {
	font-weight: 300 !important;
	color: var(--bandhan-white);
}

.career-life__title-emphasis {
	font-weight: 700 !important;
	color: var(--bandhan-white);
}

.career-life__description {
	margin: 1.25rem auto 2.5rem;
	max-width: 52rem;
	text-align: center;
	font-family: var(--bandhan-font-body);
	font-size: 1.125rem !important;
	font-weight: 300;
	line-height: 1.7 !important;
	color: rgba(255, 255, 255, 0.92);
}

.career-life__slider {
	position: relative;
	padding-bottom: 0.2rem;
	min-height: 14rem;
}

.career-life__slide {
	overflow: hidden;
	border-radius: 1.5rem 1.5rem 0.75rem 0.75rem;
	background: rgba(255, 255, 255, 0.08);
}

.career-life__slide img {
	display: block;
	width: 100%;
	height: clamp(16rem, 36vw, 33rem);
	object-fit: cover;
}

.career-life__controls {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
	z-index: 4;
}

.career-life__pagination {
	display: none;
}

/* Start Your Journey form — Figma */
.career-form-section {
	background: #ffffff;
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.career-form-section__title {
	margin: 0;
	text-align: center;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.2vw, 3.5rem);
	line-height: 1.1;
	letter-spacing: 0.01em;
	font-synthesis: none;
}

.career-form-section__title-prefix {
	font-weight: 300 !important;
	color: #3d3d3d;
}

.career-form-section__title-emphasis {
	font-weight: 700 !important;
	color: var(--bandhan-navy);
}

.career-form-section__intro {
	margin: 0.75rem auto 2.75rem;
	max-width: 52rem;
	text-align: center;
	font-family: var(--bandhan-font-body);
	font-size: 1rem !important;
	font-weight: 300;
	line-height: 1.55 !important;
	color: #5a6573;
}

.career-form-section__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: stretch;
}

.career-form-section__form-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	background: transparent;
}

.career-form-section__form .wpcf7,
.career-form-section__form .wpcf7-form {
	margin: 0;
}

.career-form-section__form .wpcf7-form p,
.career-form-section__form .wpcf7-form div {
	margin: 0;
}

.career-form-section br {
	display: none !important;
}

.career-form-section__form .wpcf7-form-control-wrap {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.15;
}

.career-form__fields {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.career-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0 !important;
	padding: 0 !important;
}

.career-form__label,
.career-form-section .career-form__label {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	font-family: var(--bandhan-font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2 !important;
	color: var(--bandhan-navy);
}

.career-form__input,
.career-form-section .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file),
.career-form-section input[type="text"],
.career-form-section input[type="email"],
.career-form-section input[type="tel"] {
	display: block;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 0 0.7rem !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(0, 38, 65, 0.28) !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none;
	appearance: none;
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem !important;
	font-weight: 400;
	line-height: 1.15 !important;
	color: var(--bandhan-navy);
}

.career-form-section .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):focus,
.career-form-section input[type="text"]:focus,
.career-form-section input[type="email"]:focus,
.career-form-section input[type="tel"]:focus {
	border-bottom-color: var(--bandhan-navy) !important;
}

.career-form-section input::placeholder {
	color: rgba(0, 38, 65, 0.45);
	opacity: 1;
}

.career-form-section input:-webkit-autofill,
.career-form-section input:-webkit-autofill:hover,
.career-form-section input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--bandhan-navy);
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset;
	transition: background-color 9999s ease-in-out 0s;
	border-bottom: 1px solid rgba(0, 38, 65, 0.28) !important;
}

.career-form__field--file .career-form__file-row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 1.15em;
	padding: 0 0 0.7rem;
	border-bottom: 1px solid rgba(0, 38, 65, 0.28);
}

.career-form__file-placeholder {
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.15;
	color: rgba(0, 38, 65, 0.45);
}

.career-form__file-placeholder.has-file {
	color: var(--bandhan-navy);
}

.career-form__browse {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--bandhan-navy);
	pointer-events: none;
}

.career-form__browse-text {
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.career-form__browse-icon {
	flex-shrink: 0;
	display: block;
	width: 16px;
	height: 16px;
}

.career-form__field--file .wpcf7-form-control-wrap {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.career-form__field--file .wpcf7-file,
.career-form-section input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0 !important;
	opacity: 0;
	cursor: pointer;
}

.career-form__submit-wrap {
	margin-top: 2rem;
}

.career-form__submit,
.career-form-section .wpcf7-submit.career-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 7.5rem;
	padding: 0.8rem 1.75rem;
	border: 0;
	border-radius: 999px;
	background: #d02d2a;
	color: #fff;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.career-form__submit:hover,
.career-form-section .wpcf7-submit.career-form__submit:hover {
	opacity: 0.92;
	background: #d02d2a;
}

.career-form-section .wpcf7-spinner {
	margin-left: 0.6rem;
}

.career-form-section .wpcf7-not-valid-tip {
	margin-top: 0.25rem;
	font-size: 0.8125rem;
	color: #d02d2a;
}

.career-form-section .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0;
	border: 0;
	font-size: 0.9rem;
	color: #3a4555;
}

.career-form-section__media {
	overflow: hidden;
	border-radius: 3.125rem;
	min-height: 100%;
	background: #e8eef3;
	align-self: stretch;
}

.career-form-section__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 28rem;
	object-fit: cover;
	object-position: center;
}

.career-form-section__notice {
	margin: 0;
	font-size: 0.95rem;
	color: var(--bandhan-text-muted);
}

@media (max-width: 1023.98px) {
	.career-form-section__layout {
		grid-template-columns: 1fr;
	}

	.career-form-section__media {
		max-height: 28rem;
		border-radius: 2rem;
	}

	.career-form-section__image {
		min-height: 22rem;
	}

	.career-life__controls {
		position: static;
		justify-content: center;
		margin-top: 1rem;
	}
}

@media (max-width: 767.98px) {
	.career-life {
		border-radius: 2rem 2rem 0 0;
		padding: 2.5rem 0 3rem;
	}

	.career-intro__text {
		font-size: 1.125rem;
	}

	.career-life__description {
		font-size: 1rem !important;
		margin-bottom: 1.75rem;
	}

	.career-form-section__title {
		font-size: 2.1rem;
	}

	.career-form-section__media {
		border-radius: 1.5rem;
	}

	.career-form__fields {
		gap: 1.35rem;
	}
}


/* ===== news-page.css ===== */
/* News page */

.site-main--news {
	margin-bottom: 0;
	background: #eef2f7;
}

.news-listing {
	padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
}

.news-listing__title {
	margin: 0;
	text-align: center;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.2vw, 3.6rem);
	line-height: 1.08;
}

.news-listing__title-prefix {
	color: var(--bandhan-text-dark);
}

.news-listing__title-emphasis {
	color: var(--bandhan-navy);
}

.news-listing__intro {
	margin: 0.75rem auto 2rem;
	max-width: 62rem;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.45;
	color: var(--bandhan-text-muted);
}

.news-listing__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem;
}

.news-listing__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--bandhan-white);
	border: 1px solid #e2e2e2;
	border-bottom: 6px solid var(--bandhan-navy);
	border-radius: 1.25rem 1.25rem 0 0;
	overflow: hidden;
}

.news-listing__card-media {
	margin: 0.65rem 0.65rem 0;
	overflow: hidden;
	border-radius: 1.25rem 1.25rem 0 0;
}

.news-listing__card-media img {
	display: block;
	width: 100%;
	aspect-ratio: 505 / 283;
	object-fit: cover;
}

.news-listing__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 0.625rem 0.85rem 1rem;
}

.news-listing__card-date {
	margin: 0 0 0.5rem;
	font-family: var(--bandhan-font-heading) !important;
	font-size: 0.6875rem !important;
	font-weight: 400 !important;
	font-style: italic;
	line-height: 1.45 !important;
	color: var(--bandhan-text-dark);
}

.news-listing__card-title {
	margin: 0 0 0.5rem;
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--bandhan-navy);
}

.news-listing__card-excerpt {
	margin: 0 0 1rem;
	flex: 1 1 auto;
	font-family: var(--bandhan-font-body);
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.5;
	color: var(--bandhan-text-muted);
}

.news-listing__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: auto;
	border: 0;
	border-radius: 999px;
	background: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.news-listing__cta:hover,
.news-listing__cta:focus {
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.news-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 2.8rem;
}

.news-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.9rem;
	height: 1.9rem;
	padding: 0 0.45rem;
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 500;
	color: var(--bandhan-navy);
	text-decoration: none;
	border-radius: 999px;
}

.news-pagination__edge {
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1;
	padding: 0 0.65rem;
}

.news-pagination__number.is-active {
	background: #e7edf6;
	font-weight: 700;
}

.news-pagination__link:hover,
.news-pagination__link:focus {
	color: var(--bandhan-red);
}

.news-pagination__link.is-disabled {
	opacity: 0.45;
	pointer-events: none;
}

@media (max-width: 1199.98px) {
	.news-listing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.news-listing__grid {
		grid-template-columns: 1fr;
	}
}


/* ===== blogs-page.css ===== */
/* Blogs page */

.site-main--blogs {
	margin-bottom: 0;
	background: #eef2f7;
}

.blogs-listing {
	padding: clamp(3.2rem, 5.4vw, 5.4rem) 0 clamp(4.2rem, 6vw, 6.4rem);
}

.blogs-listing__title {
	margin: 0;
	text-align: center;
	color: var(--bandhan-text-dark);
}

.blogs-listing__title-emphasis {
	color: var(--bandhan-navy);
}

.blogs-listing__intro {
	margin: 0.75rem auto 2rem;
	max-width: 62rem;
	text-align: center;
	font-size: 1.12rem;
	line-height: 1.45;
	color: var(--bandhan-text-muted);
}

.blogs-listing__tabs-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
	margin-bottom: 2.35rem;
}

.blogs-listing__tabs-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #e2e2e2;
}

.blogs-listing__tab {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin: 0;
	padding: 0 0 1rem;
	border: 0;
	background: transparent;
	text-transform: uppercase;
	font-family: var(--bandhan-font-heading);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: rgba(61, 61, 61, 0.43);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blogs-listing__tab:hover,
.blogs-listing__tab:focus {
	color: var(--bandhan-navy);
}

.blogs-listing__tab.is-active {
	color: var(--bandhan-navy);
	font-weight: 700;
}

.blogs-listing__tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background-color: var(--bandhan-navy);
}

.blogs-listing__results.is-loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.blogs-listing__empty.is-hidden,
.blogs-pagination.is-hidden {
	display: none;
}

.blogs-listing__empty {
	margin: 0;
	padding: 2rem 0 1rem;
	text-align: center;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	color: var(--bandhan-text-muted);
}

.blogs-listing__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2vw, 1.75rem);
	align-items: stretch;
}

.blogs-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--bandhan-white);
	border: 0;
	border-radius: 2rem;
	box-shadow: 0 10px 24px rgba(0, 38, 65, 0.08);
	overflow: hidden;
}

.blogs-card.is-hidden {
	display: none;
}

.blogs-card__media {
	flex-shrink: 0;
	padding: 0.95rem 0.95rem 0;
	/* background: var(--bandhan-white); */
}

.blogs-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 505 / 283;
	object-fit: cover;
	border-radius: 1.35rem 1.35rem 0 0;
}

.blogs-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	/* min-height: 11.5rem; */
	padding: 1.15rem 1.25rem 1.35rem;
	/* background: var(--bandhan-white); */
	/* border-radius: 0 0 2rem 2rem; */
	/* transition: background-color 0.25s ease, color 0.25s ease; */
}

@media (hover: hover) and (pointer: fine) {
	.blogs-card:hover {
		background: var(--bandhan-navy);
	}

	.blogs-card:hover .blogs-card__content {
		background: var(--bandhan-navy);
	}

	.blogs-card:hover .blogs-card__category {
		color: var(--bandhan-white);
	}

	.blogs-card:hover .blogs-card__title {
		color: var(--bandhan-white);
	}
}

.blogs-card .blogs-card__category {
	margin-bottom: 5px;
	font-family: var(--bandhan-font-heading);
	font-size: 0.875rem !important;
	font-style: italic;
	font-weight: 400 !important;
	line-height: 1.45;
	color: var(--bandhan-navy);
	transition: color 0.25s ease;
}

.blogs-card__title {
	margin: 0 0 1.25rem;
	font-family: var(--bandhan-font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: var(--bandhan-navy);
	font-synthesis: none;
	transition: color 0.25s ease;
}

.blogs-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: auto;
	min-height: 2.125rem;
	padding: 0.5rem 1.15rem;
	border-radius: 999px;
	background: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.blogs-card__btn:hover,
.blogs-card__btn:focus {
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.blogs-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 3rem;
}

.blogs-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.9rem;
	height: 1.9rem;
	padding: 0 0.45rem;
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 500;
	color: var(--bandhan-navy);
	text-decoration: none;
	border-radius: 999px;
}

.blogs-pagination__edge {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	padding: 0 0.65rem;
}

.blogs-pagination__arrow {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
}

.blogs-pagination__number.is-active {
	background: #e7edf6;
	font-weight: 700;
}

.blogs-pagination__link:hover,
.blogs-pagination__link:focus {
	color: var(--bandhan-red);
}

.blogs-pagination__link.is-disabled {
	opacity: 0.45;
	pointer-events: none;
}

@media (max-width: 1199.98px) {
	.blogs-listing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.blogs-listing__grid {
		grid-template-columns: 1fr;
	}

	.blogs-pagination__edge {
		font-size: 0.95rem;
	}

	.blogs-pagination__arrow {
		font-size: 1.05rem;
	}
}


/* ===== blog-single.css ===== */
/* Single blog page — Figma Blog detail */

.site-main--blog-single {
	--blog-panel-overlap: clamp(2rem, 4vw, 3.125rem); /* 50px */
	--blog-panel-radius: 50px;
	--blog-media-lift: clamp(10rem, 16vw, 14rem);
	margin-bottom: 0;
	background: var(--bandhan-white);
}

/* Stage wraps navy lead + white curved panel. */
.blog-single-stage {
	position: relative;
}

/* Navy lead — meta, title, intro. */
.blog-single-lead {
	position: relative;
	z-index: 1;
	padding: clamp(1.75rem, 3vw, 2.5rem) 0
		calc(var(--blog-media-lift) - var(--blog-panel-overlap) + clamp(1.5rem, 2.5vw, 2rem));
	background: var(--bandhan-navy);
	color: var(--bandhan-white);
}

.blog-single-lead--no-media {
	padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.blog-single-lead__inner {
	display: flex;
	flex-direction: column;
}

.blog-single-lead__heading {
	max-width: 54.1875rem;
}

.blog-single-lead__meta {
	margin: 0 0 1rem;
	font-family: var(--bandhan-font-heading);
	font-size: 0.875rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.site-main--blog-single .blog-single-lead__title {
	margin: 0;
	max-width: none;
	color: var(--bandhan-white);
}

.site-main--blog-single .blog-single-lead__title-emphasis {
	color: var(--bandhan-white);
}

.blog-single-lead__intro {
	margin: 1rem 0 0;
	max-width: 42rem;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	font-weight: var(--bandhan-body-font-weight);
	line-height: var(--bandhan-body-line-height);
	color: rgba(255, 255, 255, 0.88);
}

/* White curved panel — full width, overlaps navy; image bridges both sections. */
.blog-single-panel {
	position: relative;
	z-index: 2;
	margin-top: calc(-1 * var(--blog-panel-overlap));
	padding: 0 0 clamp(2.5rem, 4vw, 3.5rem);
	background: var(--bandhan-white);
	border-radius: var(--blog-panel-radius) var(--blog-panel-radius) 0 0;
}

.blog-single-panel:not(.blog-single-panel--no-media) {
	padding-top: calc(var(--blog-panel-overlap) + 0.25rem);
}

.blog-single-panel--no-media {
	padding-top: calc(var(--blog-panel-overlap) + clamp(2rem, 3vw, 3rem));
}

.blog-single-panel__media {
	margin-top: -150px;
	/* position: relative;
	z-index: 3; */
	/* margin: calc(-1 * var(--blog-media-lift)) auto clamp(2rem, 3vw, 3rem);
	border-radius: var(--blog-panel-radius);
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(0, 38, 65, 0.14); */
}

.blog-single-panel__media img {
	display: block;
	width: 100%;
	aspect-ratio: 1120 / 667;
	object-fit: cover;
	border-radius:40px;
}

.blog-single-body__content {
	column-count: 2;
	column-gap: clamp(2rem, 4vw, 3.5rem);
	color: var(--bandhan-text-muted);
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	font-weight: var(--bandhan-body-font-weight);
	line-height: var(--bandhan-body-line-height);
}

.blog-single-body__content p {
	margin: 0 0 1.25rem;
	break-inside: avoid;
}

.blog-single-body__content h2,
.blog-single-body__content h3,
.blog-single-body__content h4 {
	break-inside: avoid;
	column-span: all;
	margin: 1.5rem 0 0.75rem;
	font-family: var(--bandhan-font-heading);
	color: var(--bandhan-navy);
}

.blog-single-body__content ul,
.blog-single-body__content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
	break-inside: avoid;
}

.blog-single-related {
	padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(4rem, 6vw, 5rem);
	background: #eef2f7;
}

.blog-single-related__title {
	margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
	color: var(--bandhan-navy);
}

.blog-single-related__title-emphasis {
	color: var(--bandhan-navy);
}

.blog-single-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2vw, 1.75rem);
	align-items: stretch;
}

@media (max-width: 1199.98px) {
	.blog-single-body__content {
		column-count: 1;
	}

	.blog-single-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.site-main--blog-single {
		--blog-panel-radius: 32px;
		--blog-panel-overlap: 1.75rem;
		--blog-media-lift: clamp(7rem, 22vw, 9rem);
	}

	.blog-single-panel__media img {
		aspect-ratio: 16 / 10;
	}

	.blog-single-related__grid {
		grid-template-columns: 1fr;
	}
}


/* ===== investor-relations.css ===== */
/**
 * Investor Relations page — Figma 824:2123
 */

.site-main--investor-relations {
	--ir-curve-overlap: clamp(4rem, 6vw, 6.25rem);
	--ir-contact-panel-max: 82.6875rem;
	--ir-contact-panel-min-height: 18.9375rem;
	--ir-contact-panel-radius: 3.125rem;
	--ir-contact-panel-padding-y: 3.75rem;
	--ir-contact-panel-padding-x: 4.375rem;
	--ir-contact-overlap: calc(var(--ir-contact-panel-min-height) / 2);
}

.ir-hero .wwai-hero__overlay {
	background: linear-gradient(
		-87deg,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.55) 100%
	);
}

.ir-overview {
	padding: clamp(3.5rem, 6.5vw, 6.25rem) 0 clamp(3rem, 5.5vw, 5.5rem);
	background: var(--bandhan-white);
}

.ir-overview__title {
	margin: 0 0 1.875rem;
	color: var(--bandhan-navy);
}

.ir-overview__title-emphasis {
	color: var(--bandhan-navy);
}

.ir-overview__content,
.ir-overview__content p {
	margin: 0 0 1.25rem;
	color: #3d3d3d;
}

.ir-overview__content p:last-child {
	margin-bottom: 0;
}

.ir-overview__media {
	overflow: hidden;
	border-radius: 3.125rem;
}

.ir-overview__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.ir-highlights {
	position: relative;
	z-index: 2;
	padding: clamp(5rem, 7vw, 6.25rem) 0 calc(clamp(5rem, 7vw, 6.25rem) + var(--ir-curve-overlap));
	background: linear-gradient(180deg, #0a3354 0%, #041b2f 100%);
	overflow: hidden;
}

.ir-highlights__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ir-highlights__header {
	width: 100%;
	margin-bottom: 0;
}

.ir-highlights__title {
	margin: 0 0 1.875rem;
	color: var(--bandhan-white);
	text-align: center;
}

.ir-highlights__title-emphasis {
	color: var(--bandhan-white);
}

.ir-highlights__title-divider {
	width: 100%;
	height: 1px;
	margin: 0;
	background: rgba(255, 255, 255, 0.35);
}

/* Stats — reuse global Who We Are stat classes (same as Bandhan Bank Detail about section). */
.ir-highlights .who-we-are__stats {
	width: 100%;
	justify-items: center;
}

.ir-highlights .who-we-are__stat {
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.ir-highlights .who-we-are__stat-value,
.ir-highlights .who-we-are__stat-label {
	width: 100%;
	text-align: center;
}

@media (min-width: 768px) {
	.ir-highlights .who-we-are__stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ir-highlights .who-we-are__stat {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

.ir-announcements {
	position: relative;
	z-index: 3;
	margin-top: calc(-1 * var(--ir-curve-overlap));
	padding: calc(var(--ir-curve-overlap) + clamp(2rem, 3.5vw, 3.125rem)) 0 clamp(3.5rem, 6vw, 5rem);
	background: var(--bandhan-white);
	border-radius: 100px 100px 0 0;
}

.ir-announcements__header {
	margin-bottom: 0;
	max-width: 32.5rem;
}

.ir-announcements__layout {
	display: grid;
	grid-template-columns: minmax(0, 26.5rem) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.75rem);
	align-items: start;
}

.ir-announcements__heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	margin-bottom: 1.25rem;
}

.ir-announcements__title {
	margin: 0 0 1.25rem;
	color: var(--bandhan-navy);
	font-family: var(--bandhan-font-heading);
}

.ir-announcements__title-prefix,
.ir-announcements__title-emphasis {
	display: block;
	color: var(--bandhan-navy);
}

.ir-announcements__subtitle {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	font-weight: var(--bandhan-body-font-weight);
	line-height: var(--bandhan-body-line-height);
	color: var(--bandhan-text-muted);
}

.ir-announcements__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 17.1875rem;
	margin-top: 1.875rem;
	border: 0;
	border-radius: 3.125rem;
	background: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.ir-announcements__cta:hover,
.ir-announcements__cta:focus {
	opacity: 0.9;
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.ir-announcements__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.0625rem;
}

.ir-announcements__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: var(--bandhan-white);
	border: 1px solid #e2e2e2;
	border-bottom: 6px solid var(--bandhan-navy);
	border-radius: 3.125rem 3.125rem 0 0;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.ir-announcements__card-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.ir-announcements__card-image-wrap {
	overflow: hidden;
	border-radius: 3.125rem 3.125rem 0 0;
}

.ir-announcements__card-image {
	display: block;
	width: 100%;
	aspect-ratio: 505 / 283;
	height: auto;
	object-fit: cover;
}

.ir-announcements__card-body {
	flex: 1 1 auto;
	padding: 0.625rem 0.85rem 0.875rem;
}

.ir-announcements__card-description {
	margin: 0;
}

.ir-contact {
	position: relative;
	z-index: 3;
	padding: 0 0 clamp(2.5rem, 4vw, 3.75rem);
	background: transparent;
}

.ir-contact__inner {
	position: relative;
	max-width: 1100px;
	margin-inline: auto;
}

.ir-contact__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
	align-items: center;
	gap: clamp(2rem, 3.5vw, 3.75rem);
	width: 100%;
	/* min-height: var(--ir-contact-panel-min-height); */
	padding: 40px;
	margin-bottom: calc(-1 * var(--ir-contact-overlap));
	border-radius: var(--ir-contact-panel-radius);
	background: var(--bandhan-sky);
	transform: translateY(-50%);
}

.ir-contact__column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.ir-contact__title {
	margin: 0 0 1.25rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	font-weight: var(--bandhan-heading-font-weight);
	line-height: 1.07;
	letter-spacing: 0.01em;
	color: var(--bandhan-navy);
}

.ir-contact__title-prefix,
.ir-contact__title-emphasis {
	display: inline;
	color: var(--bandhan-navy);
}

.ir-contact__title-emphasis {
	font-weight: 600;
}

.ir-contact__subtitle,
.ir-contact__line {
	margin: 0 0 0.875rem;
	font-family: var(--bandhan-font-body);
	font-size: var(--bandhan-body-font-size);
	font-weight: var(--bandhan-body-font-weight);
	line-height: var(--bandhan-body-line-height);
	color: var(--bandhan-text-muted);
}

.ir-contact__subtitle {
	margin-bottom: 0;
}

.ir-contact__line:last-child {
	margin-bottom: 0;
}

.ir-contact__line a {
	color: inherit;
	text-decoration: none;
}

.ir-contact__line a:hover {
	text-decoration: underline;
}

.ir-contact__divider {
	width: 1px;
	align-self: stretch;
	min-height: 9.375rem;
	background: rgba(0, 38, 65, 0.18);
}

.ir-contact__org {
	margin: 0 0 1.25rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.375rem, 2vw, 1.875rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--bandhan-navy);
}

.ir-quick-links {
	padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(4rem, 7vw, 6.875rem);
	background: var(--bandhan-white);
	padding-top: 80px;
}

.ir-quick-links__header {
	margin-bottom: clamp(2rem, 3.5vw, 3.125rem);
	text-align: center;
}

.ir-quick-links__title {
	margin: 0 0 1.25rem;
	color: var(--bandhan-navy);
}

.ir-quick-links__subtitle {
	margin: 0 auto;
	max-width: 32.5rem;
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.5;
	color: #3d3d3d;
}

.ir-quick-links__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9875rem;
}

.ir-quick-links__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* min-height: 5rem; */
	padding: 0.75rem 1.75rem;
	border-radius: 6.25rem;
	background: var(--bandhan-navy);
	font-family: var(--bandhan-font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3333333333;
	color: var(--bandhan-white);
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.ir-quick-links__pill:hover {
	opacity: 0.9;
	color: var(--bandhan-white);
}

.ir-social-impact {
	position: relative;
	z-index: 2;
	overflow: hidden;
	min-height: clamp(28rem, 42vw, 35rem);
	padding: clamp(5rem, 8vw, 7rem) 0 var(--ir-contact-overlap);
	background: #041b2f;
}

.ir-social-impact__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.ir-social-impact__background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ir-social-impact__background-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(4, 27, 47, 0.52) 0%,
		rgba(4, 27, 47, 0.38) 45%,
		rgba(4, 27, 47, 0.62) 100%
	);
}

.ir-social-impact__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 56rem;
}

.ir-social-impact__title {
	margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
	font-weight: var(--bandhan-heading-font-weight);
	line-height: 1.07;
	letter-spacing: 0.01em;
	text-align: center;
}

.ir-social-impact__title-prefix,
.ir-social-impact__title-emphasis {
	color: var(--bandhan-white);
}

.ir-social-impact__content {
	margin: 0 auto clamp(2rem, 3vw, 2.75rem);
	max-width: 56rem;
	text-align: center;
	color: var(--bandhan-white);
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.15vw, 1.125rem);
	font-weight: 300;
	line-height: 1.58;
}

.ir-social-impact__content p {
	margin: 0;
}

.ir-social-impact__content p + p {
	margin-top: 1.25rem;
}

.ir-social-impact__cta-wrap {
	text-align: center;
}

.ir-social-impact__cta {
	/* display: inline-flex; */
	/* align-items: center; */
	/* justify-content: center; */
	/* min-width: 17.1875rem; */
	border-radius: 3.125rem;
	background: #d02d2a;
	color: var(--bandhan-white);
	/* font-family: var(--bandhan-font-body); */
	/* font-size: 0.875rem; */
	/* font-weight: 500; */
	letter-spacing: 0.08em;
	/* text-transform: uppercase; */
	text-decoration: none;
	/* transition: opacity 0.2s ease; */
}

.ir-social-impact__cta:hover {
	opacity: 0.9;
	color: var(--bandhan-white);
}

@media (max-width: 991.98px) {
	.ir-announcements__layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.ir-announcements__header {
		max-width: none;
	}

	.ir-announcements__grid {
		grid-template-columns: 1fr;
	}

	.site-main--investor-relations {
		--ir-contact-panel-min-height: auto;
		--ir-contact-panel-padding-y: clamp(2rem, 4vw, 3.75rem);
		--ir-contact-panel-padding-x: clamp(1.5rem, 4vw, 2.5rem);
		--ir-contact-overlap: clamp(5rem, 18vw, 8rem);
	}

	.ir-contact__panel {
		grid-template-columns: 1fr;
		min-height: 0;
		transform: translateY(-50%);
	}

	.ir-contact__divider {
		width: 100%;
		height: 1px;
		min-height: 1px;
	}
}

@media (max-width: 767.98px) {
	.site-main--investor-relations {
		--ir-curve-overlap: 2.5rem;
		--ir-contact-panel-padding-x: 1.5rem;
		--ir-contact-overlap: clamp(4.5rem, 22vw, 7rem);
	}

	.ir-highlights {
		padding-top: clamp(3.5rem, 8vw, 5rem);
		padding-bottom: calc(clamp(3.5rem, 8vw, 5rem) + var(--ir-curve-overlap));
	}

	.ir-highlights .who-we-are__stats {
		margin-top: 2.5rem;
	}

	.ir-announcements {
		border-radius: 3.125rem 3.125rem 0 0;
	}

	.ir-announcements__cta {
		width: 100%;
	}
}


/* ===== results-reports.css ===== */
/**
 * Results and Reports page — Figma 824:2280
 */

.rr-hero .wwai-hero__overlay {
	background: linear-gradient(
		-87deg,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.55) 100%
	);
}

.rr-reports {
	padding: clamp(3.5rem, 6.9vw, 6.875rem) 0 clamp(4rem, 8vw, 6.5rem);
	background: var(--bandhan-white);
}

.rr-reports__toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	margin-bottom: 2.5625rem;
	/* border-bottom: 1px solid #e2e2e2; */
}

.rr-reports__tabs {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 2.5rem;
	border-bottom: 1px solid #e2e2e2;

}

.rr-reports__tab {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0.875rem 0 1rem;
	border: 0;
	background: transparent;
	font-family: var(--bandhan-font-heading);
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1;
	color: rgba(61, 61, 61, 0.43);
	cursor: pointer;
	transition: color 0.2s ease;
}

.rr-reports__tab::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: var(--bandhan-navy);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.rr-reports__tab.is-active {
	color: var(--bandhan-navy);
}

.rr-reports__tab.is-active::after {
	opacity: 1;
}

.rr-reports__year-filter {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
	padding-bottom: 1rem;
}

.rr-reports__year-label {
	font-family: var(--bandhan-font-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6666666667;
	color: var(--bandhan-navy);
	white-space: nowrap;
}

.rr-reports__year-select-wrap {
	position: relative;
}

.rr-reports__year-select {
	appearance: none;
	min-width: 10.8125rem;
	height: 2.75rem;
	padding: 0 2.75rem 0 1.25rem;
	/* border: 0; */
	border-radius: 6.25rem;
	background: var(--bandhan-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' viewBox='0 0 13 7' fill='none'%3E%3Cpath d='M1 1L6.5 6L12 1' stroke='%23002641' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 1.25rem center / 0.8125rem auto;
	box-shadow: 0 0 0 1px rgba(0, 38, 65, 0.08);
	font-family: var(--bandhan-font-heading);
	font-size: 1.125rem;
	/* font-weight: 500; */
	line-height: 1;
	color: var(--bandhan-navy);
	cursor: pointer;
}

.rr-reports__year-select:focus {
	outline: 2px solid rgba(0, 38, 65, 0.2);
	outline-offset: 2px;
}

.rr-reports__panel {
	display: none;
}

.rr-reports__panel.is-active {
	display: block;
}

.rr-reports__year-heading {
	margin: 0 0 2.5625rem;
	/* font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
	font-weight: 500 !important;
	line-height: 1.0714285714 !important;
	color: var(--bandhan-navy);
	font-synthesis: none; */
}

.rr-reports h2{
	font-weight: 500 !important;
}

.rr-reports__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.9375rem 1.1rem;
}

.rr-reports__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #002641;
	border-bottom: 6px solid var(--bandhan-navy);
	border-radius: 3.125rem 3.125rem 0 0;
	background: var(--bandhan-white);
}

.rr-reports__card.is-hidden {
	display: none;
}

.rr-reports__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.875rem;
	/* min-height: 13.3125rem; */
	padding: 30px 0;
	text-align: center;
}

.rr-reports__card-title {
	margin: 0;
	max-width: 16.5rem;
	font-family: var(--bandhan-font-heading);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--bandhan-navy);
}

.rr-reports__card-bar {
	flex-shrink: 0;
	height: 0;
	background: transparent;
}

.rr-reports__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	border: 0;
	padding:5px 10px 5px 15px;
	border-radius: 3.125rem;
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.rr-reports__card-btn:hover {
	opacity: 0.9;
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.rr-reports__card-btn--disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.rr-reports__card-btn-icon {
	flex-shrink: 0;
	width: 1.5625rem;
	height: 1.5625rem;
}

@media (max-width: 1199.98px) {
	.rr-reports__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rr-reports__toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.rr-reports__year-filter {
		justify-content: space-between;
	}
}

@media (max-width: 767.98px) {
	.rr-reports__tabs {
		gap: 1.25rem;
	}

	.rr-reports__tab {
		font-size: 1.125rem;
		padding-bottom: 0.875rem;
	}

	.rr-reports__year-filter {
		padding-bottom: 0.875rem;
	}

	.rr-reports__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.rr-reports__card-body {
		/* min-height: 11.5rem; */
		padding: 2rem 1.25rem 1.75rem;
		gap: 1.5rem;
	}

	.rr-reports__card-title {
		font-size: 1.375rem;
	}

	.rr-reports__year-heading {
		margin-bottom: 2rem;
	}
}

@media (min-width: 1200px) {
	.rr-reports__year-heading {
		font-size: 3.5rem !important;
	}
}

.pc-policies .rr-reports__card-body {
	padding: 20px 1.25rem;
}

.pc-policies .rr-reports__card-title {
	max-width: none;
	font-size: 18px;
}


/* ===== key-managerial-personnel.css ===== */
.kmp-people {
	padding: clamp(3.5rem, 6.9vw, 6.875rem) 0 clamp(4rem, 8vw, 6.5rem);
	background: var(--bandhan-white);
}

.kmp-people__list {
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
	max-width: 65.625rem;
	margin: 0 auto;
}

.kmp-person {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3.2vw, 2.75rem);
	overflow: hidden;
	border: 0;
	border-radius: 1.5rem;
	background: var(--bandhan-white);
	box-shadow: 0 12px 30px rgba(0, 38, 65, 0.1);
}

.kmp-person--has-photo {
	flex-direction: row;
	align-items: flex-start;
	gap: 1.5rem;
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.kmp-person__visual {
	flex: 0 0 13.75rem;
	width: 13.75rem;
	height: 16.5rem;
	display: flex;
	flex-direction: column;
	background: var(--bandhan-impact-panel);
	overflow: hidden;
	border-radius: 0;
}

.kmp-person__media {
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.kmp-person__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.kmp-person__bar {
	display: none;
}

.kmp-person__content {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0;
}

.kmp-person__role {
	margin: 0 0 0.35rem;
	font-family: var(--bandhan-font-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--bandhan-red-dark);
}

.kmp-person__name {
	margin: 0 0 1.25rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.5rem, 2.2vw, 1.875rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--bandhan-navy);
}

.kmp-person__bio p {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.15vw, 1.25rem);
	font-weight: var(--bandhan-body-font-weight);
	line-height: 1.5;
	color: #3d3d3d;
}

.kmp-person__bio p + p {
	margin-top: 1.25rem;
}

@media (max-width: 767.98px) {
	.kmp-person--has-photo {
		flex-direction: column;
	}

	.kmp-person__visual {
		width: 13.75rem;
		flex-basis: 13.75rem;
		height: 16.5rem;
		max-width: 13.75rem;
	}

	.kmp-person__media {
		min-height: 0;
		height: 100%;
	}

	.kmp-person__name {
		margin-bottom: 1rem;
	}
}


/* ===== board-of-directors.css ===== */
/* Who We Are — Board of Directors page */

.bod-hero .wwai-hero__overlay {
	background: linear-gradient(
		-87deg,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.55) 100%
	);
}

.bod-intro {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 6vw, 6.25rem) 0;
	background: var(--bandhan-white);
}

.bod-intro__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.bod-intro__pattern img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	opacity: 1;
}

.bod-intro__inner {
	position: relative;
	z-index: 1;
}

.bod-intro__content {
	width: 100%;
	max-width: 56.25rem;
	margin: 0 auto;
	text-align: center;
	color: var(--bandhan-text-muted);
}

.bod-intro__content p {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.15vw, 1.25rem);
	font-weight: var(--bandhan-body-font-weight);
	line-height: 1.5;
}

.bod-intro__content p + p {
	margin-top: 1.875rem;
}

.bod-list {
	padding: 0 0 clamp(4rem, 7vw, 6.25rem);
	background: var(--bandhan-white);
}

.bod-list__inner {
	position: relative;
	text-align: center;
}

.bod-list__title {
	margin: 0 0 1.25rem;
	color: var(--bandhan-navy);
}

.bod-list__subtitle,
.bod-list__subtitle p {
	margin: 0 auto;
	max-width: 52.75rem;
	color: var(--bandhan-text-muted);
}

.bod-list__subtitle {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bod-list__subtitle p {
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.15vw, 1.25rem);
	font-weight: var(--bandhan-body-font-weight);
	line-height: 1.5;
}

.bod-list__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 1.7vw, 1.875rem);
	align-items: stretch;
	text-align: left;
}

.bod-card {
	border-radius: 0;
	overflow: visible;
	border: 0;
	background: var(--bandhan-white);
	box-shadow: none;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.bod-card__visual {
	display: flex;
	flex-direction: column;
	height: clamp(18rem, 24.8vw, 29.875rem);
	background: var(--bandhan-impact-panel);
	border-bottom: 6px solid var(--bandhan-navy);
	border-radius: 3.125rem 3.125rem 0 0;
	overflow: hidden;
}

.bod-card__media {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.bod-card__media img,
.bod-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.bod-card__bar {
	flex-shrink: 0;
	width: 100%;
	height: 0;
}

.bod-card__content {
	padding: 1.125rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1 1 auto;
}

.bod-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.bod-card__name-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.bod-card__name {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	font-family: var(--bandhan-font-heading);
	font-size: 20px;
	font-weight: 700 !important;
	line-height: 1;
	letter-spacing: 0;
	color: var(--bandhan-text-dark);
}

.bod-card__designation {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	line-height: 1.67 !important;
	color: var(--bandhan-text-dark);
}

.bod-card__linkedin {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--bandhan-navy);
	color: var(--bandhan-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.bod-card__linkedin-mark {
	font-family: var(--bandhan-font-body);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	text-transform: lowercase;
}

.bod-card__linkedin:hover,
.bod-card__linkedin:focus {
	background: var(--bandhan-navy-mid);
	color: var(--bandhan-white);
}

.bod-card__profile-btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
}

.bod-card__profile-btn:hover,
.bod-card__profile-btn:focus {
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

@media (min-width: 1200px) {
	.bod-intro {
		padding: 5.0rem 0;
	}

	.bod-intro__content p,
	.bod-list__subtitle p {
		font-size: 1.25rem;
		line-height: 1.875rem;
	}
}

@media (max-width: 1199.98px) {
	.bod-list__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bod-card__visual {
		height: clamp(16rem, 34vw, 24rem);
	}

	.bod-list__title {
		font-size: clamp(2rem, 4.5vw, 2.75rem);
	}
}

@media (max-width: 767.98px) {
	.bod-list__grid {
		grid-template-columns: 1fr;
	}

	.bod-card__visual {
		height: clamp(18rem, 72vw, 24rem);
	}

	.bod-card__media {
		padding-top: 1.25rem;
	}

	.bod-card__name {
		font-size: 1.5rem;
	}

	.bod-card__name-row {
		margin-bottom: 0.75rem;
	}
}


/* ===== board-member-single.css ===== */
/* Single Board Member page — Figma detail layout */

.site-main--board-member {
	margin-bottom: 0;
	background: var(--bandhan-white);
	overflow: visible;
}

.bod-member-profile {
	position: relative;
	overflow: visible;
	background: var(--bandhan-white);
	--bod-member-hero-height: clamp(34rem, 40.1vw, 48.1875rem);
	--bod-member-photo-overlap: clamp(5.5rem, 8vw, 7.875rem);
}

.bod-member-hero {
	position: relative;
	z-index: 1;
	/* min-height: var(--bod-member-hero-height); */
	color: var(--bandhan-white);
	/* overflow: visible; */
	background: linear-gradient(
		180deg,
		var(--bandhan-navy-mid) 0%,
		var(--bandhan-navy-dark) 52%,
		var(--bandhan-navy-deep) 100%
	);
}

.bod-member-hero__inner {
	display: flex;
	flex-direction: column;
	/* min-height: var(--bod-member-hero-height); */
	padding-top: 3.0625rem;
	padding-bottom: 0;
}

.bod-member-hero__top {
	flex: 0 0 auto;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.bod-member-hero__layout {
	display: grid;
	flex: 1;
	grid-template-columns: minmax(0, 1fr) clamp(16rem, 25.1vw, 30.125rem);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: end;
}

.bod-member-hero__content {
	width: min(100%, 44rem);
	max-width: 100%;
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.bod-member-hero__breadcrumb {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 0.775rem;
	font-weight: 400;
	line-height: 1.4;
	/* letter-spacing: 0.08em; */
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.bod-member-hero__title {
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.8rem, 2.0vw, 3.5rem) !important;
	font-weight: 500 !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-white);
	font-synthesis: none;
}

.bod-member-hero__designations {
	margin-top: 0.75rem;
}

.bod-member-hero__designation,
.bod-member-hero__designation--primary,
.bod-member-hero__designation--secondary {
	margin: 0;
	font-family: var(--bandhan-font-body) !important;
	font-size: 0.8rem;
	font-style: italic !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.01em !important;
	color: rgba(255, 255, 255, 0.95) !important;
	font-synthesis: style;
}

.bod-member-hero__designation + .bod-member-hero__designation {
	margin-top: 0.2rem;
}

.bod-member-hero__intro {
	margin-top: 1.25rem;
	max-width: 38rem;
}

.bod-member-hero__intro p {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: clamp(1rem, 1.15vw, 1.25rem) !important;
	font-weight: 300 !important;
	line-height: 1.5 !important;
	color: rgba(255, 255, 255, 0.95);
}

.bod-member-hero__photo {
	position: relative;
	z-index: 3;
	align-self: end;
	/*margin-bottom: calc(-1 * var(--bod-member-photo-overlap));*/
	pointer-events: none;
}

.bod-member-hero__photo-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 44.4375rem;
	object-fit: contain;
	object-position: bottom center;
}

.bod-member-content {
	position: relative;
	z-index: 2;
	padding: 80px 0 0 0;
	background: var(--bandhan-white);
}

.bod-member-content--photo-overlap {
	min-height: clamp(10rem, 18vw, 16rem);
	/* padding-top: var(--bod-member-photo-overlap); */
}

.bod-member-content__inner {
	/* width: min(100%, calc(100% - clamp(18rem, 28vw, 34rem)));
	max-width: 56rem; */
}

.bod-member-content__body,
.bod-member-content__body p,
.bod-member-content__body li {
	/* font-family: var(--bandhan-font-body);
	font-size: 1.25rem !important;
	font-weight: 300 !important;
	line-height: 1.875rem !important;
	color: var(--bandhan-text-dark); */
}

.bod-member-content__body p {
	/* margin: 0 0 1.875rem; */
}

.bod-member-content__body p:last-child {
	/* margin-bottom: 0; */
}

.bod-member-content__body h3 {
	margin: 1.5rem 0 0.75rem;
	font-family: var(--bandhan-font-heading);
	font-weight: 500;
	color: var(--bandhan-text-dark);
}

.bod-member-content__body ul,
.bod-member-content__body ol {
	margin: 0 0 1.875rem 1.2rem;
	padding: 0;
}

.bod-member-awards {
	padding: clamp(1rem, 2vw, 2rem) 0 clamp(4.5rem, 7vw, 7rem);
	background: var(--bandhan-white);
}

.bod-member-awards__title {
	margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2rem, 3.4vw, 3.5rem) !important;
	font-weight: 300 !important;
	line-height: 1.07 !important;
	letter-spacing: 0.01em;
	color: var(--bandhan-text-dark);
	font-synthesis: none;
}

.bod-member-awards__title-emphasis {
	font-weight: 700 !important;
	color: var(--bandhan-navy);
}

.bod-member-awards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.6rem, 2.5vw, 2.25rem);
}

.bod-member-award-card {
	position: relative;
	display: grid;
	min-height: 12.5rem;
	padding: 1.5rem 1rem 1.25rem;
	overflow: hidden;
	place-items: center;
	text-align: center;
	background: transparent;
	border-radius: 0;
}

.bod-member-award-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("../images/bod-award-laurel.png") center / contain no-repeat;
	pointer-events: none;
}

.bod-member-award-card__inner {
	/* position: relative;
	z-index: 1;
	max-width: 17rem; */
}

.bod-member-award-card__title {
	margin: 0 0 0.45rem;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.35rem, 1.4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.18;
	color: var(--bandhan-navy);
}

.bod-member-award-card__description {
	margin: 0;
	font-family: var(--bandhan-font-body);
	font-size: 1.25rem !important;
	font-weight: 300 !important;
	line-height: 1.5 !important;
	color: var(--bandhan-text-muted);
}

@media (min-width: 1200px) {
	.bod-member-hero__layout {
		grid-template-columns: minmax(0, 1fr) 30.125rem;
	}
}

@media (max-width: 991.98px) {
	.bod-member-profile {
		--bod-member-hero-height: auto;
		--bod-member-photo-overlap: 0;
	}

	.bod-member-hero {
		min-height: 0;
	}

	.bod-member-hero__inner {
		min-height: 0;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.bod-member-hero__top {
		margin-bottom: 1.25rem;
	}

	.bod-member-hero__layout {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.bod-member-hero__photo {
		order: -1;
		justify-self: center;
		width: min(100%, 14rem);
		margin: 0 auto 1.5rem;
		pointer-events: auto;
	}

	.bod-member-hero__photo-image {
		max-height: none;
		object-position: center;
	}

	.bod-member-hero__content {
		order: 1;
		width: 100%;
		max-width: none;
		padding-bottom: 0;
	}

	.bod-member-hero__breadcrumb {
		margin: 0;
	}

	.bod-member-content__inner {
		width: 100%;
		max-width: none;
	}

	.bod-member-content {
		padding-top: 2.5rem;
	}

	.bod-member-content--photo-overlap {
		min-height: 0;
		padding-top: 0;
	}

	.bod-member-awards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.bod-member-hero__inner {
		padding-top: 1.5rem;
		padding-bottom: 1.75rem;
	}

	.bod-member-hero__photo {
		width: min(100%, 12.5rem);
		margin-bottom: 1.25rem;
	}

	.bod-member-awards__grid {
		grid-template-columns: 1fr;
	}

	.bod-member-award-card__description {
		font-size: 1.0625rem !important;
	}
}


/* ===== style.css (theme extras) ===== */
/* Base overrides — component styles live in /assets/css/ */

h1, h2, h3, h4, h5, h6 {
	color: var(--bandhan-text-dark);
}

.page-home .site-main {
	padding: 0;
	margin-bottom: 0;
	overflow: visible;
}

body.page-home {
	background-color: var(--hero-bg-color);
	overflow-x: clip;
}

.page-home .widget-area,
.page-home .content-area {
	display: none;
}

/* Privacy Policy page */
.site-main--privacy-policy {
	background: var(--bandhan-white);
}

.privacy-policy-hero {
	position: relative;
	overflow: hidden;
	color: var(--bandhan-white);
	background:
		linear-gradient(110deg, rgba(0, 38, 65, 0.88) 0%, rgba(0, 38, 65, 0.62) 44%, rgba(0, 38, 65, 0.26) 100%),
		radial-gradient(circle at 72% 45%, rgba(218, 238, 255, 0.36), transparent 14rem),
		linear-gradient(135deg, #08314f 0%, #0a5d76 48%, #10324a 100%);
}

.privacy-policy-hero__media {
	position: absolute;
	inset: 0;
}

.privacy-policy-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.privacy-policy-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 38, 65, 0.82) 0%,
		rgba(0, 38, 65, 0.58) 43%,
		rgba(0, 38, 65, 0.08) 100%
	);
}

.privacy-policy-hero__inner {
	position: relative;
	z-index: 1;
	min-height: clamp(24rem, 42.25vw, 50.6875rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: clamp(5rem, 8vw, 8.5rem);
	padding-bottom: clamp(4rem, 9vw, 9.5rem);
}

.privacy-policy-hero__breadcrumb {
	margin: 0 0 clamp(3.25rem, 9vw, 10.25rem);
	font-family: var(--bandhan-font-body);
	font-size: 0.875rem !important;
	font-weight: 400;
	line-height: 1.4 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

/* Clickable breadcrumb links (site-wide) */
.bandhan-breadcrumb .bandhan-breadcrumb__link,
.bandhan-breadcrumb .bandhan-breadcrumb__current,
.bandhan-breadcrumb .bandhan-breadcrumb__text,
.bandhan-breadcrumb .bandhan-breadcrumb__sep {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}

.bandhan-breadcrumb .bandhan-breadcrumb__link {
	text-decoration: none;
	opacity: 0.92;
	transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.bandhan-breadcrumb .bandhan-breadcrumb__link:hover,
.bandhan-breadcrumb .bandhan-breadcrumb__link:focus {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.privacy-policy-hero__title {
	max-width: 54rem;
	margin: 0;
	font-family: var(--bandhan-font-heading);
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: 0.01em;
	color: var(--bandhan-white);
}

.privacy-policy-content {
	padding: clamp(2rem, 4.4vw, 4.25rem) 0 clamp(4rem, 7vw, 6.75rem);
}

.privacy-policy-content__inner {
	max-width: 65.625rem;
}

.privacy-policy-content__article {
	margin: 0;
}

.privacy-policy-content__body {
	color: #3d3d3d;
}

.privacy-policy-content__body > *:first-child {
	margin-top: 0;
}

.privacy-policy-content__body > *:last-child {
	margin-bottom: 0;
}

.privacy-policy-content__body h2,
.privacy-policy-content__body h3,
.privacy-policy-content__body h4 {
	margin: 2.125rem 0 0.75rem;
	color: var(--bandhan-navy);
}

.privacy-policy-content__body h2:first-child,
.privacy-policy-content__body h3:first-child,
.privacy-policy-content__body h4:first-child {
	margin-top: 0;
}

.privacy-policy-content__body h2 {
	font-size: clamp(1.5rem, 2.2vw, 1.875rem) !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
}

.privacy-policy-content__body h3 {
	font-family: var(--bandhan-font-heading);
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 600;
	line-height: 1.25;
}

.privacy-policy-content__body p,
.privacy-policy-content__body li {
	font-size: 0.9375rem !important;
	line-height: 1.65 !important;
}

.privacy-policy-content__body p,
.privacy-policy-content__body ul,
.privacy-policy-content__body ol {
	margin-bottom: 0.875rem;
}

.privacy-policy-content__body ul,
.privacy-policy-content__body ol {
	padding-left: 1.5rem;
}

.privacy-policy-content__body a {
	color: var(--bandhan-red);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.privacy-policy-content__body a:hover,
.privacy-policy-content__body a:focus {
	color: var(--bandhan-red-dark);
}

@media (max-width: 767.98px) {
	.privacy-policy-hero__inner {
		min-height: 22rem;
		padding-bottom: 3.5rem;
	}

	.privacy-policy-hero__breadcrumb {
		margin-bottom: 4rem;
	}

	/* Global: center banner H1 on mobile */
	.wwai-hero__inner {
		justify-content: center;
		text-align: center;
	}

	.wwai-hero__top,
	.wwai-hero__bottom {
		width: 100%;
	}

	.wwai-hero__bottom {
		margin-top: clamp(2rem, 8vw, 4rem);
	}

	.wwai-hero__title,
	.wwai-hero h1,
	.contact-hero__title,
	.contact-hero h1,
	.si-hero__title,
	.si-hero h1,
	.bbd-hero__title,
	.bbd-hero h1,
	.bod-member-hero__title,
	.bod-member-hero h1,
	.privacy-policy-hero__title,
	.privacy-policy-hero h1,
	.si-hero__title-wrap,
	.bbd-hero__title-wrap,
	.contact-hero__content,
	[class*="-hero"] h1[class*="__title"] {
		text-align: center !important;
	}

	.si-hero__title-wrap,
	.bbd-hero__title-wrap {
		align-items: center !important;
		justify-content: center !important;
	}

	.contact-hero__title {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		max-width: min(100%, 20rem);
	}
}

/* Homepage curve between Who We Are and Our Story — owned by home-sections.css */

/* Global CTA sizing — padding and min-height (extends assets/css/cta.css). */
.btn,
.btn-hero-cta,
[class$="__cta"],
.resource-links__button,
.blogs-card__btn,
.bod-card__profile-btn,
.ir-announcements__cta,
.contact-us-form__submit,
.contact-us-form .wpcf7-submit.contact-us-form__submit,
.career-form__submit,
.site-footer__newsletter-submit,
.rr-reports__card-btn,
input[type="submit"],
.wp-block-button__link {
	font-size: 12px;
	padding: 12px 15px;
	min-height: unset;
}


/* ===== HTML feedback overrides (v2.13.6) ===== */
.core-values__description-bar,
.core-values__description-text {
	display: none !important;
}

.core-values__image {
	transition: opacity 0.2s ease;
}

.core-values__image.is-fading {
	opacity: 0.35;
}

.site-main--home .leading-purpose__leader-media {
	max-width: 17.5rem;
	height: 100%;
}

.leading-purpose__leader-photo {
	width: 100%;
	max-width: 17.5rem;
	height: 100%;
	max-height: 28rem;
	object-fit: contain;
	object-position: bottom center;
}

.leadership-message__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.75rem;
	padding: 0.7rem 1.6rem;
	border-radius: 999px;
	background: var(--bandhan-red);
	color: var(--bandhan-white);
	text-decoration: none;
	transition: background-color 0.2s ease;
	margin-bottom:40px;
}

.leadership-message__cta:hover,
.leadership-message__cta:focus {
	background: var(--bandhan-red-dark);
	color: var(--bandhan-white);
}

.fwc-team__layout {
	row-gap: 2.5rem;
	align-items: start;
}

.fwc-team__title {
	grid-row: 1 / 4;
}

.fwc-team__card:nth-child(5) {
	grid-column: 2;
	grid-row: 3;
}

.fwc-team__card:nth-child(6) {
	grid-column: 3;
	grid-row: 3;
}

.fwc-team__card-media {
	justify-content: center;
	padding: 1.5rem 0.75rem 0;
}

/*.fwc-team__card-photo {*/
/*	display: none;*/
/*}*/

.news-listing__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin: 0 auto 2rem;
}

.news-listing__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 7.5rem;
	padding: 0.55rem 1.25rem;
	border: 1px solid var(--bandhan-navy);
	border-radius: 999px;
	background: transparent;
	color: var(--bandhan-navy);
	font-family: var(--bandhan-font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.news-listing__tab:hover,
.news-listing__tab:focus,
.news-listing__tab.is-active {
	background: var(--bandhan-navy);
	color: var(--bandhan-white);
}

.news-listing__empty {
	margin: 0;
	text-align: center;
	color: var(--bandhan-text-muted);
}

a.wwd-structure__node {
	color: inherit;
	text-decoration: none;
}

a.wwd-structure__node:hover .wwd-structure__node-label,
a.wwd-structure__node:focus .wwd-structure__node-label {
	text-decoration: underline;
}

@media (max-width: 991.98px) {
	.fwc-team__card:nth-child(5) {
		grid-column: 1;
		grid-row: 4;
	}

	.fwc-team__card:nth-child(6) {
		grid-column: 2;
		grid-row: 4;
	}
}

@media (max-width: 767.98px) {
	.fwc-team__card:nth-child(5) {
		grid-column: 1;
		grid-row: 6;
	}

	.fwc-team__card:nth-child(6) {
		grid-column: 1;
		grid-row: 7;
	}
}
