/*================================================
	Kendrapara Urban Co-operative Bank
	Site-wide additions (services, tabs, tables,
	director grid, stats, FAQ, gallery, scroll-top)
=================================================*/

/*----- Section shell ------*/
.section {
	padding: 5rem 0;
}

.section-alt {
	background: #eef6ff;
}

.section-heading {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-heading h2 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--brand-blue-dark);
	font-family: 'Raleway', sans-serif;
	position: relative;
	display: inline-block;
	padding-bottom: 1rem;
}

.section-heading h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 6rem;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-soft));
}

.section-heading p {
	margin-top: 1rem;
	color: var(--brand-muted);
	font-size: 1.6rem;
}

/*----- Services grid ------*/
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
}

.services-grid .service-card:last-child:nth-child(3n + 1) {
	grid-column: 2;
}

.service-card {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.75), rgba(235, 244, 255, 0.55));
	border-radius: 1.2rem;
	padding: 2.6rem 2.2rem;
	box-shadow: 0 8px 32px rgba(11, 61, 103, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(235, 244, 255, 0.7));
	box-shadow: 0 16px 40px rgba(11, 61, 103, 0.18);
}

.service-card .service-icon {
	width: 5.6rem;
	height: 5.6rem;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
	color: #fff;
	box-shadow: 0 6px 16px rgba(11, 61, 103, 0.25);
}

.service-card .service-card-head {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	margin-bottom: 1.4rem;
}

.service-card h3 {
	font-size: 1.9rem;
	color: var(--brand-blue-dark);
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

.service-card p {
	font-size: 1.45rem;
	color: var(--brand-muted);
	line-height: 1.6;
}

/*----- News & Announcements ------*/
.news-announcements .notice-list {
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 6px 20px rgba(11, 61, 103, 0.07);
	overflow: hidden;
}

.news-announcements .notice-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.4rem 2rem;
	border-bottom: 1px solid #eef1f5;
	font-size: 1.45rem;
	color: var(--brand-text);
}

.news-announcements .notice-list li:last-child {
	border-bottom: none;
}

.news-announcements .notice-list li a.notice-link {
	flex-shrink: 0;
	font-weight: 600;
	color: #fff;
	background: var(--brand-blue);
	padding: 0.5rem 1.4rem;
	border-radius: 999px;
	font-size: 1.3rem;
	transition: background 0.2s ease;
}

.news-announcements .notice-list li a.notice-link:hover {
	background: var(--brand-blue-dark);
}

/*----- President's message ------*/
.president-message {
	background: #fff;
}

.president-message .msg-wrap {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
	border: 1px solid #e8edf3;
	border-radius: 1.4rem;
	padding: 3.5rem;
	box-shadow: 0 10px 30px rgba(11, 61, 103, 0.08);
	position: relative;
}

.president-message .msg-wrap::before {
	content: "\201C";
	font-family: Georgia, serif;
	font-size: 8rem;
	color: var(--brand-gold-soft);
	position: absolute;
	top: 0.5rem;
	left: 2rem;
	line-height: 1;
	opacity: 0.6;
}

.president-message h2 {
	text-align: center;
	font-size: 2.6rem;
	color: var(--brand-blue-dark);
	margin-bottom: 2rem;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
}

.president-message p {
	font-size: 1.5rem;
	line-height: 1.85;
	color: var(--brand-text);
	margin-bottom: 1.4rem;
}

.president-message .signature {
	margin-top: 2rem;
	text-align: right;
	font-weight: 700;
	color: var(--brand-blue-dark);
	font-size: 1.5rem;
}

.president-message .signature span {
	display: block;
	font-weight: 400;
	color: var(--brand-muted);
	font-size: 1.35rem;
}

/*----- Stat stripe ------*/
.stat-stripe {
	background: linear-gradient(90deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
	padding: 1.6rem 0;
}

.stat-stripe .container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 2rem;
	text-align: center;
}

.stat-stripe .stat-item h3 {
	font-size: 2.6rem;
	color: #fff;
	font-weight: 800;
	font-family: 'Raleway', sans-serif;
}

.stat-stripe .stat-item h3 span {
	color: var(--brand-gold-soft);
}

.stat-stripe .stat-item p {
	color: #d8e6f4;
	font-size: 1.3rem;
	margin-top: 0.2rem;
	letter-spacing: 0.02em;
}

/*----- DICGC section ------*/
.dicgc-section .dicgc-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 1.4rem;
	padding: 3rem;
	box-shadow: 0 6px 24px rgba(11, 61, 103, 0.08);
	flex-wrap: wrap;
	text-align: center;
}

.dicgc-logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin: 1.2rem 0;
}

.dicgc-logo-container .dicgc-logo {
	height: 9rem;
	width: auto;
}

.dicgc-logo-container .dicgc-barcode {
	height: 11rem;
	width: auto;
}

.dicgc-section h3 {
	font-size: 2rem;
	color: var(--brand-blue-dark);
	margin-bottom: 0.6rem;
	font-family: 'Raleway', sans-serif;
}

.dicgc-section p {
	font-size: 1.5rem;
	color: var(--brand-muted);
}

.dicgc-section a {
	color: var(--brand-blue);
	font-weight: 600;
}

/*----- RBI consumer awareness banners ------*/
.rbi-banners {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.rbi-banners .rbi-banner {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 1.2rem;
	padding: 2.4rem 2rem;
	text-align: center;
	box-shadow: 0 6px 20px rgba(11, 61, 103, 0.07);
}

.rbi-banners .rbi-icon {
	font-size: 3.2rem;
	margin-bottom: 1rem;
	display: block;
}

.rbi-banners h4 {
	color: var(--brand-blue-dark);
	font-size: 1.6rem;
	margin-bottom: 0.6rem;
	font-family: 'Raleway', sans-serif;
}

.rbi-banners p {
	font-size: 1.35rem;
	color: var(--brand-muted);
}

/*----- FAQ accordion ------*/
.faq-list {
	max-width: 860px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 0.9rem;
	margin-bottom: 1.2rem;
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.6rem 2rem;
	font-weight: 600;
	color: var(--brand-blue-dark);
	font-size: 1.55rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Raleway', sans-serif;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-size: 2.2rem;
	color: var(--brand-blue);
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item .faq-answer {
	padding: 0 2rem 1.8rem;
	color: var(--brand-muted);
	font-size: 1.45rem;
	line-height: 1.7;
}

/*----- Page hero (inner pages) ------*/
.inner-hero {
	position: relative;
}

.inner-hero img {
	width: 100%;
	height: 56rem;
	object-fit: cover;
	display: block;
}

.inner-hero img[src*="URBAN_BANK_building.jpg"] {
	filter: sepia(0.4) hue-rotate(175deg) saturate(2.2);
}

.inner-hero .inner-hero-caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.inner-hero .inner-hero-caption h1 {
	color: #fff;
	font-size: 3.6rem;
	font-weight: 800;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
	font-family: 'Raleway', sans-serif;
}

.inner-hero .inner-hero-caption p {
	color: var(--brand-gold-soft);
	font-size: 1.6rem;
	margin-top: 0.6rem;
}

.inner-hero.glow-caption .inner-hero-caption h1,
.inner-hero.glow-caption .inner-hero-caption p {
	color: #eaf6ff;
	text-shadow: 0 0 8px #4fc3f7, 0 0 20px #29b6f6, 0 0 36px #0288d1;
}

.breadcrumb-bar {
	background: #eef6ff;
	border-bottom: 1px solid #e0eaf5;
	padding: 1rem 0;
}

.breadcrumb-bar .container {
	font-size: 1.35rem;
	color: var(--brand-muted);
	text-align: center;
}

.breadcrumb-bar a {
	color: var(--brand-blue);
	font-weight: 600;
}

/*----- Tabs (History/Mission/Vision) ------*/
.tabs-wrap {
	max-width: 980px;
	margin: 0 auto;
}

.tab-nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.tab-nav button {
	background: #fff;
	border: 2px solid var(--brand-blue);
	color: var(--brand-blue);
	font-weight: 700;
	font-size: 1.4rem;
	padding: 0.9rem 2.2rem;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: 'Raleway', sans-serif;
}

.tab-nav button.active,
.tab-nav button:hover {
	background: var(--brand-blue);
	color: #fff;
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.tab-panel p {
	font-size: 1.5rem;
	line-height: 1.85;
	color: var(--brand-text);
	margin-bottom: 1.4rem;
}

.tab-panel h3 {
	font-size: 2.2rem;
	color: var(--brand-blue-dark);
	font-weight: 700;
	margin-bottom: 1.4rem;
	font-family: 'Raleway', sans-serif;
}

/*----- Bank data tables (rates, financials) ------*/
.bank-table-wrap {
	overflow-x: auto;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 6px 24px rgba(11, 61, 103, 0.08);
	margin-bottom: 3rem;
}

table.bank-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.4rem;
	min-width: 560px;
}

table.bank-table caption {
	text-align: left;
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--brand-blue-dark);
	padding: 1.8rem 2rem 0.6rem;
	font-family: 'Raleway', sans-serif;
}

table.bank-table th {
	background: var(--brand-blue-dark);
	color: #fff;
	text-align: left;
	padding: 1.1rem 1.6rem;
	font-weight: 600;
	font-size: 1.35rem;
}

table.bank-table td {
	padding: 1rem 1.6rem;
	border-bottom: 1px solid #eef1f5;
	color: var(--brand-text);
}

table.bank-table tr.table-subhead td {
	background: #f6f9fc;
	font-weight: 700;
	color: var(--brand-blue-dark);
}

table.bank-table tbody tr:hover {
	background: #f9fbfd;
}

table.bank-table td.num, table.bank-table th.num {
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.rate-note {
	max-width: 900px;
	margin: 0 auto 3rem;
	background: #fffbea;
	border: 1px solid #f2e2a4;
	border-radius: 0.9rem;
	padding: 1.6rem 2rem;
	font-size: 1.4rem;
	color: #7a5c00;
}

.rate-note ul {
	margin: 0.6rem 0 0 1.6rem;
	padding: 0;
}

.rate-note li {
	margin-bottom: 0.4rem;
}

/*----- Director / management grid ------*/
.director-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.4rem;
}

.director-card {
	background: #fff;
	border-radius: 1.4rem;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(11, 61, 103, 0.07);
	text-align: center;
	border: 1px solid #eef1f5;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.director-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(11, 61, 103, 0.14);
	border-color: #e2ecf6;
}

.director-card .director-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, #eef6ff, #dbe9f7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-blue);
	font-size: 3.6rem;
	overflow: hidden;
}

.director-card .director-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.4s ease;
}

.director-card:hover .director-photo img {
	transform: scale(1.06);
}

.director-card .director-photo::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 45%;
	background: linear-gradient(180deg, rgba(11, 61, 103, 0) 0%, rgba(11, 61, 103, 0.32) 100%);
	pointer-events: none;
}

.director-card .director-info {
	position: relative;
	padding: 1.6rem 1.2rem 1.8rem;
}

.director-card .director-info::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 3.2rem;
	height: 3px;
	border-radius: 2px;
	background: var(--brand-gold);
}

.director-card h4 {
	font-size: 1.32rem;
	line-height: 1.3;
	color: var(--brand-blue-dark);
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	margin-top: 0.4rem;
}

.director-card p {
	font-size: 1.2rem;
	color: var(--brand-muted);
	margin-top: 0.3rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.director-card.president .director-photo,
.director-card.vp .director-photo,
.director-card.ceo .director-photo {
	background: linear-gradient(135deg, var(--brand-gold-soft), var(--brand-gold));
	color: var(--brand-blue-dark);
}

.director-card.president .director-info::before,
.director-card.vp .director-info::before,
.director-card.ceo .director-info::before {
	background: var(--brand-blue);
}

.director-card.president,
.director-card.vp,
.director-card.ceo {
	border-color: var(--brand-gold-soft);
}

/*----- Placeholder image block (for missing assets) ------*/
.img-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #eef6ff 0%, #dbe9f7 100%);
	border: 1px dashed #b9cfe6;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--brand-blue);
	gap: 0.6rem;
}

.img-placeholder .ph-icon {
	font-size: 3.2rem;
}

.img-placeholder span.ph-label {
	font-size: 1.3rem;
	color: var(--brand-muted);
}

/*----- Digital banking sub-pages ------*/
.subpage-nav {
	display: flex;
	justify-content: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

.subpage-nav a {
	background: #fff;
	border: 1px solid #dbe6f0;
	color: var(--brand-blue-dark);
	font-weight: 600;
	font-size: 1.35rem;
	padding: 0.9rem 1.8rem;
	border-radius: 999px;
	transition: all 0.2s ease;
}

.subpage-nav a.active,
.subpage-nav a:hover {
	background: var(--brand-blue);
	border-color: var(--brand-blue);
	color: #fff;
}

.content-block {
	max-width: 900px;
	margin: 0 auto;
}

.content-block img.feature-img {
	width: 100%;
	border-radius: 1rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 10px 30px rgba(11, 61, 103, 0.1);
}

.content-block-media {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
	margin-bottom: 1.4rem;
}

.content-block-img {
	flex: 0 0 300px;
	width: 300px;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(11, 61, 103, 0.15);
}

.content-block-text {
	flex: 1;
	min-width: 0;
}

@media screen and (max-width: 767px) {
	.content-block-media {
		flex-direction: column;
		gap: 1.6rem;
	}

	.content-block-img {
		flex: none;
		width: 100%;
	}
}

.content-block h2 {
	font-size: 2.4rem;
	color: var(--brand-blue-dark);
	font-weight: 700;
	margin-bottom: 1.4rem;
	font-family: 'Raleway', sans-serif;
}

.content-block p {
	font-size: 1.5rem;
	line-height: 1.85;
	color: var(--brand-text);
	margin-bottom: 1.4rem;
}

.content-block ul.feature-list {
	list-style: none;
	margin: 0 0 1.4rem;
	padding: 0;
}

.content-block ul.feature-list li {
	position: relative;
	padding-left: 2.4rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: var(--brand-text);
	line-height: 1.6;
}

.content-block ul.feature-list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	width: 1.7rem;
	height: 1.7rem;
	background: var(--brand-blue);
	color: #fff;
	border-radius: 50%;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*----- Branches page ------*/
.branch-hero-img {
	width: 100%;
	max-height: 42rem;
	object-fit: cover;
	border-radius: 1rem;
	margin-bottom: 3.5rem;
	box-shadow: 0 10px 30px rgba(11, 61, 103, 0.1);
}

.branch-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
}

.branch-card {
	background: #fff;
	border-radius: 1.1rem;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(11, 61, 103, 0.08);
	border: 1px solid #eef1f5;
}

.branch-card .branch-photo {
	width: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #eef6ff, #dbe9f7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-blue);
	font-size: 3rem;
	overflow: hidden;
}

.branch-card .branch-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.branch-card .branch-body {
	padding: 1.8rem 2rem 2.2rem;
}

.branch-card h3 {
	font-size: 1.75rem;
	color: var(--brand-blue-dark);
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: 'Raleway', sans-serif;
}

.branch-card .branch-meta {
	font-size: 1.4rem;
	color: var(--brand-muted);
	margin-bottom: 0.6rem;
	display: flex;
	gap: 0.8rem;
	line-height: 1.5;
}

.branch-card-center .branch-body {
	text-align: center;
}

.branch-card-center .branch-meta {
	justify-content: center;
}

.branch-card .branch-meta svg {
	flex-shrink: 0;
	margin-top: 0.3rem;
	color: var(--brand-blue);
}

.branch-card.branch-ho {
	border: 2px solid var(--brand-gold);
	grid-column: span 3;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
}

.branch-card.branch-ho .branch-photo {
	aspect-ratio: auto;
}

.branch-card .ho-tag {
	display: inline-block;
	background: var(--brand-gold);
	color: var(--brand-blue-dark);
	font-size: 1.1rem;
	font-weight: 700;
	padding: 0.25rem 0.9rem;
	border-radius: 999px;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/*----- Gallery page ------*/
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.gallery-grid .gallery-item {
	aspect-ratio: 4 / 3;
	border-radius: 1rem;
	overflow: hidden;
}

.gallery-grid .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-grid .gallery-item:hover img {
	transform: scale(1.06);
}

.rbi-slider img {
	cursor: zoom-in;
	transition: opacity 0.2s ease;
}

.rbi-slider a:hover img {
	opacity: 0.9;
}

/*----- Contact page ------*/
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: stretch;
}

.contact-card {
	background: #fff;
	border-radius: 1.2rem;
	padding: 3rem;
	box-shadow: 0 6px 24px rgba(11, 61, 103, 0.08);
	border: 1px solid #eef1f5;
}

.contact-card h3 {
	font-size: 2rem;
	color: var(--brand-blue-dark);
	font-weight: 700;
	margin-bottom: 1.8rem;
	font-family: 'Raleway', sans-serif;
}

.contact-card .contact-row {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 1.6rem;
	font-size: 1.45rem;
	color: var(--brand-text);
	line-height: 1.6;
}

.contact-card .contact-row svg {
	flex-shrink: 0;
	margin-top: 0.3rem;
	color: var(--brand-blue);
}

.contact-card .contact-row a {
	color: var(--brand-text);
}

.contact-card .contact-row a:hover {
	color: var(--brand-blue);
}

.map-embed {
	border-radius: 1.2rem;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(11, 61, 103, 0.08);
	border: 1px solid #eef1f5;
	min-height: 100%;
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	display: block;
}

/*----- Scroll to top ------*/
.scroll-top-btn {
	position: fixed;
	right: 2.4rem;
	bottom: 2.4rem;
	width: 4.6rem;
	height: 4.6rem;
	border-radius: 50%;
	background: var(--brand-blue-dark);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s ease;
	z-index: 500;
	border: none;
}

.scroll-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top-btn:hover {
	background: var(--brand-blue);
}

/*----- Nav dropdown (About / Digital Banking) ------*/
.menu-list .sub-menu {
	background: #fff;
	border-radius: 0.8rem;
	overflow: hidden;
	min-width: 21rem;
	box-shadow: 0 12px 28px rgba(11, 61, 103, 0.18);
	padding: 0.6rem 0;
}

.menu-list .sub-menu li {
	padding: 0;
}

.menu-list .sub-menu li a {
	display: block;
	padding: 1rem 1.6rem;
	font-size: 1.35rem;
	color: var(--brand-text);
	border-radius: 0;
}

.menu-list .sub-menu li a:hover {
	background: #eef6ff;
	color: var(--brand-blue-dark);
}

/*----- Footer quick links / contact (bank-specific) ------*/
.footer-first-section .container {
	padding-top: 4.2rem;
	padding-bottom: 3rem;
}

.footer-first-section .box-wrap p {
	color: #d8e6f4;
	font-size: 1.4rem;
	line-height: 1.75;
}

.footer-first-section .box-wrap ul li a {
	color: #d8e6f4;
	font-size: 1.4rem;
}

.footer-first-section .box-wrap ul li a:hover {
	color: var(--brand-gold-soft);
}

.footer-first-section .box-wrap .contact-row {
	display: flex;
	gap: 0.9rem;
	color: #d8e6f4;
	font-size: 1.35rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.footer-first-section .box-wrap .contact-row a {
	color: #d8e6f4;
}

.footer-first-section .box-wrap .contact-row a:hover {
	color: var(--brand-gold-soft);
}

.footer-last-section .container p {
	color: #d8e6f4;
	font-size: 1.35rem;
}

/*=================================================
	Responsive
=================================================*/
@media screen and (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-grid .service-card:last-child:nth-child(3n + 1) {
		grid-column: auto;
	}

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

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

	.branch-card.branch-ho {
		grid-column: span 2;
	}

	.rbi-banners {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media screen and (max-width: 767px) {
	.main-header .container {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.logo-wrap {
		margin-bottom: 0;
		gap: 0.8rem;
	}

	.logo-wrap img {
		height: 56px;
	}

	.brand-block h1 {
		font-size: 1.5rem;
	}

	.nav-wrap {
		display: flex;
		align-items: center;
	}

	#bar, #close {
		font-size: 24px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.director-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem;
	}

	.branch-grid {
		grid-template-columns: 1fr;
	}

	.branch-card.branch-ho {
		grid-column: span 1;
		grid-template-columns: 1fr;
	}

	.rbi-banners {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.stat-stripe .container {
		gap: 2.5rem 4rem;
	}

	.section-heading h2 {
		font-size: 2.4rem;
	}

	.president-message .msg-wrap {
		padding: 2.2rem 1.6rem;
	}

	.inner-hero .inner-hero-caption h1 {
		font-size: 2.6rem;
	}

	table.bank-table {
		font-size: 1.25rem;
	}
}

@media screen and (max-width: 550px) {
	.inner-hero img {
		height: 26rem;
	}
}

/*----- Accessibility widget ------*/
.a11y-widget {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
	display: inline-flex;
}

.a11y-toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	color: #fff;
	font-size: 1.3rem;
	line-height: 1;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	padding: 0.5rem 1.2rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

.a11y-toggle-btn:hover,
.a11y-toggle-btn[aria-expanded="true"] {
	background: rgba(255, 255, 255, 0.15);
}

.a11y-toggle-btn i {
	font-size: 1.5rem;
	line-height: 1;
}

.a11y-panel {
	position: absolute;
	top: calc(100% + 0.6rem);
	right: 0;
	background: #fff;
	color: var(--brand-text);
	border-radius: 0.8rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	padding: 1.2rem;
	width: 220px;
	z-index: 1200;
}

.a11y-panel-group {
	margin-bottom: 1rem;
}

.a11y-panel-group:last-child {
	margin-bottom: 0;
}

.a11y-panel-label {
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--brand-muted);
	margin-bottom: 0.5rem;
}

.a11y-panel-row {
	display: flex;
	gap: 0.5rem;
}

.a11y-panel-row button {
	flex: 1;
	background: var(--brand-bg);
	border: 1px solid #dbe3ea;
	border-radius: 0.4rem;
	padding: 0.5rem 0;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--brand-blue-dark);
	cursor: pointer;
}

.a11y-panel-row button:hover {
	background: var(--brand-blue-dark);
	color: #fff;
}

.a11y-panel-toggle {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.3rem;
	color: var(--brand-text);
	cursor: pointer;
}

.a11y-panel-toggle input {
	width: 1.6rem;
	height: 1.6rem;
	cursor: pointer;
}

/* Font-size steps applied to <html> */
html.a11y-font-sm {
	font-size: 56%;
}

html.a11y-font-md {
	font-size: 62.5%;
}

html.a11y-font-lg {
	font-size: 72%;
}

html.a11y-font-xl {
	font-size: 82%;
}

/* High contrast theme */
html.a11y-high-contrast body {
	background: #000;
	color: #fff;
}

html.a11y-high-contrast .site-header,
html.a11y-high-contrast .section,
html.a11y-high-contrast .section-alt,
html.a11y-high-contrast .service-card,
html.a11y-high-contrast .a11y-panel {
	background: #000 !important;
	color: #fff !important;
}

html.a11y-high-contrast a {
	color: #ffe600 !important;
}

html.a11y-high-contrast .nav-desktop li a,
html.a11y-high-contrast .brand-block h1,
html.a11y-high-contrast .brand-block p,
html.a11y-high-contrast .section-heading h2,
html.a11y-high-contrast .section-heading p {
	color: #fff !important;
}

html.a11y-high-contrast img {
	filter: grayscale(100%) contrast(120%);
}

/* Dark theme */
html.a11y-dark-theme body {
	background: #12181f;
	color: #dbe3ea;
}

html.a11y-dark-theme .site-header {
	background: linear-gradient(90deg, #10161d 0%, #161f29 100%) !important;
	border-bottom-color: #232d38;
}

html.a11y-dark-theme .section,
html.a11y-dark-theme .service-card,
html.a11y-dark-theme .a11y-panel {
	background: #1a222c;
	color: #dbe3ea;
}

html.a11y-dark-theme .section-alt {
	background: #10161d;
}

html.a11y-dark-theme a {
	color: #7fb8ea;
}

html.a11y-dark-theme .nav-desktop li a,
html.a11y-dark-theme .brand-block h1,
html.a11y-dark-theme .section-heading h2 {
	color: #eef3f8;
}

html.a11y-dark-theme .brand-block p,
html.a11y-dark-theme .section-heading p {
	color: #9fb0c0;
}

html.a11y-dark-theme .a11y-panel-label,
html.a11y-dark-theme .a11y-panel-toggle span {
	color: #9fb0c0;
}

html.a11y-dark-theme .a11y-panel-row button {
	background: #232d38;
	border-color: #2f3b48;
	color: #dbe3ea;
}

/*----- Domain migration notice (index only) ------*/
.domain-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(11, 61, 103, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	padding: 1.5rem;
}

.domain-modal-overlay.hidden {
	display: none;
}

.domain-modal {
	position: relative;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	max-width: 480px;
	width: 100%;
	padding: 2.4rem 2.2rem;
	border-top: 4px solid var(--brand-gold);
}

.domain-modal h3 {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin: 0 0 1rem;
	font-size: 2rem;
	color: var(--brand-blue-dark);
	font-weight: 700;
	padding-right: 1.5rem;
}

.domain-modal-icon {
	color: var(--brand-gold);
	font-size: 1.8rem;
	flex-shrink: 0;
}

.domain-modal p {
	margin: 0 0 1rem;
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--brand-text);
}

.domain-modal p:last-child {
	margin-bottom: 0;
}

.domain-modal p strong {
	color: var(--brand-blue-dark);
}

.domain-modal-close {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	background: transparent;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	color: var(--brand-muted);
	cursor: pointer;
	padding: 0.3rem;
}

.domain-modal-close:hover {
	color: var(--brand-blue-dark);
}

@media screen and (max-width: 550px) {
	.domain-modal {
		padding: 2rem 1.6rem;
	}

	.domain-modal h3 {
		font-size: 1.8rem;
	}
}
