/*
Theme Name: SMBC Theme
Description: Secure, lightweight starter theme for SMBC India website.
Author: NTT Data
Author URI: https://services.global.ntt/en-in/
Version: 1.0.0
Text Domain: smbc-theme
*/

:root {
	--Tradgreen-50: rgba(227, 255, 241, 1);
	--white-color: rgba(255, 255, 255, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: var(--text-color);
	line-height: 1.5;
	background: var(--white-color);
}

h1 {
	font-size: 3.5em;
}

h2 {
	font-size: 2.5rem;
}

p {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	margin: 0;
	overflow: visible;
	position: fixed;
	left: 1rem;
	top: 1rem;
	width: auto;
	background: var(--white-color);
	color: var(--text-color);
	padding: 0.625rem 0.75rem;
	border-radius: 0.375rem;
	border: 2px solid var(--primary-color);
	z-index: 100000;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--secondary-color);
	outline-offset: 0.125rem;
}

a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* 1. Hide the element initially */
.animate-on-scroll {
	opacity: 0;
	visibility: hidden;
	/* Optional: ensures no layout shift, though visibility:hidden usually suffices */
}

/* 2. When JS adds the Animate.css class, force visibility */
.animate-on-scroll.animate__animated {
	opacity: 1;
	visibility: visible;
	/* Ensure the element stays visible after animation ends */
	animation-fill-mode: both;
}

.primary-bg {
	background-color: var(--primary-color);
}

.secondary-bg {
	background-color: var(--secondary-color);
}

.light-bg {
	background-color: var(--Tradgreen-50);
}



.top-header {
	background: var(--primary-color);
	border-bottom: 2px solid var(--secondary-color);
}


.top-header-menu ul {
	list-style: none;
	display: flex;
	gap: 0.875rem;
	padding: 1rem 0;
	border-top: 1px solid #006a46;
	border-bottom: 1px solid #006a46;
	justify-content: space-around;
	margin-bottom: 1rem;
}

.top-header-menu a {
	color: var(--white-color);
	font-weight: 600;
}

.main-header {
	background-color: var(--primary-color);
	position: relative;
	z-index: 100;
}

.main-header>.container {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

/* .main-header {
	background-color: var(--primary-color);
	position: static;
}

.main-header > .container {
	position: relative;
} */

.site-title {
	font-weight: 700;
	color: var(--text-color);
}

.site-logo img {
	height: auto;
	max-height: 3.5rem;
	width: auto;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.header-button {
	white-space: nowrap;
	padding: 0.625rem 0.875rem;
	border-radius: 0.375rem;
	background: var(--secondary-color);
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
}

.header-button:hover {
	text-decoration: none;
	opacity: 0.95;
}

.menu-toggle {
	border: 0;
	background: transparent;
	padding: 0.5rem;
	border-radius: 0.375rem;
	cursor: pointer;
	color: var(--text-color);
}

.menu-toggle__icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.25rem;
}

.menu-toggle__icon span {
	display: block;
	width: 1.25rem;
	height: 2px;
	background: var(--white-color);
	transition: transform .15s ease, opacity .15s ease;
}

.menu-toggle:not(.collapsed) .menu-toggle__icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle:not(.collapsed) .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle:not(.collapsed) .menu-toggle__icon span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.header-collapse {
	display: none;
	width: 100%;
	background: var(--primary-color);
	flex-direction: column;
}


/* .header-collapse {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: var(--primary-color);
  padding: 1rem 1.5rem;

  flex-direction: column;
  z-index: 1000;
} */

.header-collapse.is-open {
	display: flex;
}

.header-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	/* keep toggle right */
}

.primary-menu {
	width: 100%;
}

.primary-menu a {
	font-weight: normal;
}

.primary-menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem 0;
}

#main-menu>li>a {
	color: var(--white-color);
}

.primary-menu ul>li .submenu-toggle {
	color: transparent;
	margin-left: 0.5rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.primary-menu ul>li .submenu-toggle::before {
	content: '';
	display: block;
	width: 0.75rem;
	height: 0.75rem;
	background-image: url('assets/icons/chevron.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(0deg);
	transition: transform .15s ease;
}

.primary-menu ul>li .submenu-toggle span {
	display: none;
}

.primary-menu .menu-item-has-children {
	position: static;
}

.primary-menu .sub-menu {
	display: none;
	position: static;
	border: 0;
	box-shadow: none;
	padding: 0.5rem 0 0 1rem;
}

.primary-menu .menu-item-has-children.is-submenu-open>.sub-menu {
	display: block;
}

.primary-menu .menu-item-has-children.is-submenu-open>.submenu-toggle::before {
	transform: rotate(180deg);
}

.sub-menu a {
	display: inline-block;
	color: var(--white-color);
	font-weight: normal;
	padding: .25rem .5rem;
}

@media (min-width:1025px) {
	#top-header-menu {
		border-top: none;
		border-bottom: none;
		margin-bottom: 0;
	}

	.main-header {
		background-color: var(--white-color);
		box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
	}

	.main-header>.container {
		padding: 0.75rem 0;
	}

	.menu-toggle {
		display: none;
	}

	.header-nav {
		flex-direction: row;
		align-items: center;
	}

	.header-collapse {
		display: flex !important;
		position: static;
		width: auto;
		padding: 0;
		background: transparent;
		flex-direction: row;
		align-items: center;
	}

	.primary-menu ul {
		flex-direction: row;
		gap: 1.125rem;
		padding: 0;
	}

	#main-menu>li>a {
		color: var(--text-color);
	}
	.primary-menu ul>li .submenu-toggle::before {
		background-image: url(assets/icons/chevron-dark.png);
	}
	.primary-menu .menu-item-has-children {
		position: relative;
	}

	.primary-menu .sub-menu {
		position: absolute;
		right: 0;
		top: 51px;
		min-width: 18rem;
		background: var(--white-color);
		border: 1px solid #d3d3d3;
		border-radius: 0.375rem;
		padding: 0.5rem 0;
		box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
		z-index: 1000;
	}

	.sub-menu a {
		display: block;
		color: var(--text-color);
		font-weight: normal;
		padding: .25rem .5rem;
	}

	#main-menu>li.current-menu-ancestor>a,
	#main-menu>li.current-menu-item>a {
		color: var(--primary-color);
		font-weight: bold;
	}

	#main-menu .sub-menu li.current-menu-item>a {
		color: var(--primary-color);
		font-weight: bold;
	}
	.primary-menu ul>li.current-menu-ancestor .submenu-toggle::before {
		background-image: url(assets/icons/chevron-active.png);
	}
	.header-actions {
		padding-left: 1.125rem;
	}
}

.top-footer {
	border-top: 1px solid #D4D4D8;
}

.top-footer .top-footer-text {
	color: var(--primary-color);
	font-size: 1.125rem;
	font-weight: 600;
}

.top-footer-row {
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.top-footer-links li {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.top-footer-links li a {
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.top-footer-links {
		flex-direction: row;
	}

	.top-footer-links li:not(:last-child)::after {
		content: "|";
		margin-left: 1rem;
		margin-right: 1rem;
		color: #D4D4D8;
		position: relative;
		top: -1px;
	}
}

.site-footer {
	background-color: var(--primary-color);
	border-top: 5px solid var(--secondary-color);
}

.site-footer {
	color: var(--white-color);
}

.site-footer .footer-col h3 {
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px dashed var(--Tradgreen-50);
}

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

.site-footer .footer-col ul li {
	margin-bottom: 0.5rem;
}

.site-footer a {
	color: var(--white-color);
}

.site-footer a:hover {
	text-decoration: underline;
}

.footer-menu-two-col {
	column-count: 2;
	column-gap: 30px;
	list-style: none;
	padding: 0;
}

.footer-menu-two-col li {
	break-inside: avoid;
}


.scroll-to-top {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	border-radius: 50%;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	padding: 0.75rem;
	cursor: pointer;
	height: 3rem;
	width: 3rem;
	display: none;
	align-items: center;
	justify-content: center;
	border: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.scroll-to-top.is-visible {
	display: flex;
}

.home-hero {
	background: linear-gradient(180deg, rgba(227, 255, 241, 1) 0%, rgba(196, 215, 0, .3) 100%);
}

.home-hero-slider {
	width: 100%;
	aspect-ratio: 3 / 2;
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
}

.home-hero-slides {
	position: absolute;
	inset: 0;
}

.home-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 400ms ease;
}

.home-hero-slide.is-active {
	opacity: 1;
}

.home-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-hero-bullets {
	position: absolute;
	left: 50%;
	bottom: 0.75rem;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}

.home-hero-bullet {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	background: rgba(255, 255, 255, 0.5);
	padding: 0;
	cursor: pointer;
}

.home-hero-bullet.is-active {
	background: rgba(0, 0, 0, 0.55);
	border-color: rgba(0, 0, 0, 0.55);
}

body.smbc-redirect-modal-open {
	overflow: hidden;
}

.smbc-redirect-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.smbc-redirect-modal.is-open {
	display: flex;
}

.smbc-redirect-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.smbc-redirect-modal__dialog {
	position: relative;
	background: #fff;
	color: #000;
	width: min(560px, calc(100% - 2rem));
	margin: 0;
	border-radius: 0.5rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	padding: 1.25rem 1.25rem 1rem;
}

.smbc-redirect-modal__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.smbc-redirect-modal__title {
	margin: 0 2rem 0.75rem 0;
	font-size: 1.125rem;
	font-weight: 700;
}

.smbc-redirect-modal__body p {
	margin: 0 0 1rem;
}

.smbc-redirect-modal__actions {
	display: flex;
	gap: 0.75rem;
	justify-content: flex-end;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 0.75rem;
}

.smbc-redirect-modal__btn {
	border: 1px solid rgba(0, 0, 0, 0.35);
	background: #fff;
	color: #000;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	cursor: pointer;
}

.smbc-redirect-modal__btn--continue {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

@media (max-width: 575px) {
	.smbc-redirect-modal__dialog {
		padding: 1rem 1rem 0.875rem;
	}

	.smbc-redirect-modal__actions {
		flex-direction: column;
		align-items: stretch;
	}
}


.page-hero h2 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.home-hero h1,
.page-hero h1 {
	color: var(--primary-color);
	padding-left: 1rem;
	border-left: 5px solid var(--secondary-color);
	line-height: 1;
	margin-bottom: 2rem;
}

.home-hero p {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.home-hero img {
	border-radius: 0.5rem;
}

.page-hero {
	background-color: var(--Tradgreen-50);
}

@media (min-width:1025px) {
	.home-hero h1 {
		margin-bottom: 1rem;
	}

	.home-hero p {
		margin-bottom: 0;
	}
}

.about-section {
	color: var(--white-color);
}

.about-section h2 {
	margin-bottom: 2.5rem;
}

.about-section .single-branch {
	background-color: rgba(255, 255, 255, .1);
	padding: 1rem;
	border-radius: 0.5rem;
	transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.about-section .single-branch:hover {
	background-color: rgba(255, 255, 255, .3);
	box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
}

.single-branch h3 {
	margin-bottom: 0.5rem;
	color: var(--secondary-color);
}

.single-branch p {
	margin-bottom: 0;
}

.about-section .branches {
	margin-bottom: 2rem;
}

@media (min-width:1025px) {
	.about-section .branches {
		margin-bottom: 0;
	}
}

.custom-section h2 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.latest-rates {
	background-color: var(--Tradgreen-50);
}

.smbc-rates-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.smbc-rates-list li {
	min-width: 0;
}

@media (min-width:768px) {
	.smbc-rates-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width:992px) {
	.smbc-rates-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.smbc-rates-list li a {
	display: flex;
	padding: 1rem;
	font-weight: 600;
	background-color: var(--white-color);
	width: 100%;
	gap: 1rem;
	align-items: center;
	transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.smbc-rates-list li a:hover {
	border-radius: 1rem;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
}

.smbc-rates-list li a span {
	height: 3rem;
	width: 3rem;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #FEF2F2;

}

.smbc-rates-list li a span img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.smbc-branches {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.smbc-branches .smbc-branch {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 1rem;
	border-radius: 0.5rem;
	background-color: #F3F4F6;
	border: 2px solid transparent;
	transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.smbc-branches .smbc-branch:hover {
	border-radius: 1rem;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
	background-color: #fcfcfc;
	border-color: var(--secondary-color);
}

.smbc-branches .smbc-branch .smbc-branch-title {
	font-size: 2rem;
}

.smbc-branches .smbc-branch .smbc-branch-label {
	display: block;
	color: #6B7280;
	margin-bottom: 0.5rem;
}

.smbc-branches .smbc-branch .smbc-branch-value {
	display: block;
	color: var(--text-color);
	font-weight: 600;
	margin-bottom: 1rem;
}

.smbc-branches .smbc-branch .smbc-branch-map {
	display: block;
	text-align: center;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.5rem;
	border-color: var(--secondary-color);
}

@media (min-width:768px) {
	.smbc-branches .smbc-branch {
		flex: 0 0 calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}
}

@media (min-width:992px) {
	.smbc-branches .smbc-branch {
		flex: 0 0 calc((100% - 32px) / 3);
		max-width: calc((100% - 32px) / 3);
	}
}

.group-info h2 {
	margin-bottom: 1.5rem;
	color: var(--white-color);
}

.group-info p {
	margin-bottom: 1.5rem;
	color: var(--white-color);
}

.group-info a {
	color: var(--secondary-color);
	text-decoration: underline;
	font-size: 1.5rem;
	position: relative;
}

.group-info a:after {

	width: 1.25rem;
	height: 1.25rem;
	background-image: url(assets/icons/new_tab.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: -1.75rem;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
	.group-info a:after {
		content: "";
	}
}

.further-info {
	background-color: var(--Tradgreen-50);
}

.further-info a {
	color: var(--primary-color);
	text-decoration: underline;
	font-size: 1.5rem;
	position: relative;
}

.smbc-accordion-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 1.5rem;
}


.back-to-home {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 600;
}

.smbc-accordion-toggle {
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #fafafa;
}

.accordion-outer .smbc-accordion-toggle:last-child {
	margin-bottom: 0;
}

.smbc-accordion-toggle:hover,
.smbc-accordion-toggle:focus,
.smbc-accordion-toggle:active {
	text-decoration: none;
	color: var(--primary-color);
	background-color: var(--Tradgreen-50);
}

.smbc-accordion-toggle.is-open {
	margin-bottom: 0;
	border-bottom: 0;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
}

.smbc-accordion-toggle.is-open+.smbc-accordion-content {
	border-color: var(--primary-color);
}

.smbc-accordion-content {
	padding: 1.5rem;
	padding-bottom: 0;
}

.smbc-section-heading {
	font-weight: 600;
	margin-bottom: 1rem;
}

.feedback-form {
	background: #fff;
	border-radius: 12px;
	padding: 0;
	border: 1px solid #e3e3e3;
	overflow: hidden;
}

.form-header {
	background: var(--primary-color);
	color: var(--white-color);
	padding: 1.5rem 2rem;
}

.form-header h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.form-header p {
	margin: 5px 0 0;
	font-size: 14px;
}

.feedback-form .container-fluid {
	padding: 30px;
}

.feedback-form .form-group {
	margin-bottom: 1.5rem;
}

.feedback-form .form-label {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.feedback-form .form-label .step {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.feedback-form .form-label .hr-line {
	display: block;
	height: 1px;
	background-color: #d8d8d8;
	flex: 1;
}

.req {
	color: #e53935;
	margin-left: 3px;
}

.form-control,
.form-select {
	height: 46px;
	border-radius: 8px;
	border: 1px solid #dcdcdc;
}

textarea.form-control {
	min-height: 140px;
}

.mandatory-note {
	font-size: 14px;
	color: #6c757d;
	margin-top: 10px;
}

.btn {
	width: 100%;
	height: 46px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.btn-reset {
	background: #f5f5f5;
	border: 1px solid #d5d5d5;
}

.btn-submit {
	background: #c4d600;
	border: none;
	color: #000;
}

.btn-submit:hover {
	background: #b5c700;
}

@media (max-width:768px) {

	.feedback-form .container-fluid {
		padding: 20px;
	}

	.action-row .text-end {
		text-align: left !important;
	}

}

.gift-city .page-hero {
	min-height: 50vh;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	position: relative;
	overflow: hidden;
}

/* The Gradient Overlay */
.gift-city .page-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(0deg, var(--Tradgreen-50, #E3FFF1), var(--Tradgreen-50, #E3FFF1)),
		linear-gradient(360deg, rgba(196, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);

	opacity: 0.8;

	z-index: 1;
}

.gift-city .page-hero .container {
	position: relative;
	z-index: 2;
}


.gift-city .about-gift-city {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.gift-city .about-gift-city.custom-section h2 {
	line-height: 1;
	border-bottom: 1px dotted var(--primary-color);
	padding-bottom: 0.5rem;
	margin-bottom: 0.75rem;
}

.gift-city .about-gift-city .is-layout-flex {
	align-items: center !important;
}

.gift-city .about-gift-city .quick-links {
	background-color: var(--white-color);
	color: var(--primary-color);
	padding: 1.5rem;
	border-radius: 0.5rem;
}

.gift-city .about-gift-city .quick-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gift-city .about-gift-city .quick-links ul ul {
	list-style: disc;
	margin-left: 2rem;
}

.gift-city .smbc-branches {
	display: block;
}

.gift-city .smbc-branches .smbc-branch {
	background-color: transparent;
	border: 0;
	border-radius: none;
}

.gift-city .smbc-branches .smbc-branch:hover {
	background-color: transparent;
	box-shadow: none;
	border-radius: none;
}

.gift-city .smbc-branches .smbc-branch .smbc-branch-value br {
	display: none;
}

.gift-city .smbc-branches .smbc-branch .smbc-branch-map {
	display: inline-block;
	min-width: 20rem;
}

@media (min-width:992px) {
	.gift-city .smbc-branches .smbc-branch {
		max-width: inherit;
	}
}

.smbc-policy-list li,
.smbc-file-list li {
	margin: 0;
	margin-bottom: 1rem;
	display: flex;
	border-bottom: none;
}

.smbc-policy-list li {
	margin-bottom: 0;
}

.smbc-file-list li a,
.smbc-policy-list li a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.smbc-file-list li .smbc-pdf-icon,
.smbc-policy-list li .smbc-pdf-icon {
	width: 1.25rem;
	height: 1.25rem;

}

.smbc-file-list li .smbc-pdf-icon img,
.smbc-policy-list li .smbc-pdf-icon img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

/* Grid layout */
/* Base grid */
.smbc-rates-grid {
  display: grid;
  gap: 20px;
}

/* Desktop default */
.smbc-rates-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* If only 1 category */
.smbc-cols-1 {
  grid-template-columns: 1fr;
}

/* If 2 categories */
.smbc-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* If 3 or more */
.smbc-cols-3,
.smbc-cols-4,
.smbc-cols-5 {
  grid-template-columns: repeat(3, 1fr);
}

/* Category card */
.smbc-rate-card {
  background: #e9f3ef;
  padding: 20px;
  border-radius: 10px;
}

/* Category title */
.smbc-rate-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b3d2e;
}

/* File list container */
.smbc-rate-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each file box */
.smbc-rate-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* Hover effect */
.smbc-rate-item:hover {
  background: #f5f5f5;
}

/* Icon */
.smbc-pdf-icon img {
  width: 20px;
  height: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  .smbc-rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .smbc-rates-grid {
    grid-template-columns: 1fr;
  }
}
