:root {
	--bg: #070b0a;
	--panel: #11100d;
	--panel2: #17130e;
	--gold: #d69a2e;
	--gold2: #f0bd5d;
	--cream: #f7f0e4;
	--text: #f8f4ec;
	--muted: #c9c2b6;
	--red: #7d1717;
	--border: rgba(214, 154, 46, .48);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--bg);
	color: var(--text)
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

button {
	font: inherit
}

.container {
	width: min(1180px, 92%);
	margin: auto
}

.topbar {
	background: #050606;
	border-bottom: 1px solid #2a241a;
	font-size: 13px
}

.topbar-inner {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px
}

.top-contact,
.socials {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap
}

.live {
	background: linear-gradient(#a12b21, #65110d);
	padding: 9px 18px;
	border-radius: 4px;
	font-weight: 700
}

.social {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #24334d;
	font-weight: 700
}

header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(8, 10, 9, .96);
	border-bottom: 1px solid rgba(214, 154, 46, .22);
	backdrop-filter: blur(8px)
}

.nav {
	min-height: 83px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px
}

.brand img {
	width: 290px;
	height: 85px;
	object-fit: contain;
	object-position: left center
}

.menu {
	display: flex;
	align-items: center;
	gap: 26px;
	font-size: 14px;
	font-weight: 700
}

.menu a {
	padding: 30px 0;
	position: relative
}

.menu a:hover,
.menu a.active {
	color: var(--gold2)
}

.menu a.active:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 17px;
	height: 2px;
	background: var(--gold)
}

.donate-btn {
	padding: 14px 20px;
	border-radius: 5px;
	background: linear-gradient(135deg, var(--gold2), #b77710);
	color: white;
	font-weight: 800
}

.hamburger {
	display: none;
	background: none;
	border: 0;
	color: white;
	font-size: 28px
}

.hero {
	min-height: 560px;
	background:
		linear-gradient(90deg, rgba(4, 8, 9, .94) 0%, rgba(4, 8, 9, .6) 42%, rgba(4, 8, 9, .1) 68%),
		url('../assets/hero.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border)
}

/* Full banner carousel */
.hero-banner {
	position: relative;
	background: #1a0f08;
	border-bottom: 1px solid var(--border);
}

.banner-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #1a0f08;
}

.banner-track {
	position: relative;
	width: 100%;
}

.banner-slide {
	display: none;
	width: 100%;
}

.banner-slide.active {
	display: block;
	animation: bannerFade 0.6s ease;
}

.banner-slide img {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(78vh, 720px);
	object-fit: cover;
	object-position: center top;
}

@keyframes bannerFade {
	from { opacity: 0.35; }
	to { opacity: 1; }
}

.banner-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(215, 155, 53, 0.6);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.banner-nav.prev { left: 14px; }
.banner-nav.next { right: 14px; }

.banner-nav:hover {
	background: rgba(92, 26, 26, 0.85);
}

.banner-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 3;
}

.banner-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #d79b35;
	background: rgba(255, 255, 255, 0.35);
	padding: 0;
	cursor: pointer;
}

.banner-dots button.active {
	background: #d79b35;
}

.banner-quicklinks {
	background: linear-gradient(180deg, #3a1810 0%, #1f0e09 100%);
	padding: 18px 0 14px;
	border-top: 1px solid rgba(215, 155, 53, 0.35);
}

.quicklink-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.quicklink {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	color: #f5e6c8;
	text-decoration: none;
	padding: 8px 4px;
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease;
}

.quicklink:hover {
	background: rgba(215, 155, 53, 0.12);
	color: #fff;
}

.ql-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(215, 155, 53, 0.7);
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 30% 30%, #6b2a18, #2a100a);
	color: #f0c35a;
	font-size: 1.2rem;
}

.quicklink span:last-child {
	font-size: 0.78rem;
	line-height: 1.3;
	max-width: 120px;
}

.quicklink-tagline {
	margin: 14px 0 0;
	text-align: center;
	color: #e8c878;
	font-family: Georgia, serif;
	font-style: italic;
	letter-spacing: 0.04em;
	font-size: 0.95rem;
}

.hero-content {
	width: min(560px, 100%);
	padding: 58px 0
}

.script {
	font-family: Georgia, serif;
	font-style: italic;
	color: var(--gold2);
	font-size: 28px
}

h1 {
	font-family: Georgia, serif;
	text-transform: uppercase;
	font-size: 52px;
	line-height: 1.02;
	margin: 8px 0 18px
}

h1 span {
	color: var(--gold2)
}

.hero p {
	font-size: 18px;
	line-height: 1.7;
	color: #eee;
	max-width: 440px
}

.actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 25px 0
}

.btn {
	padding: 14px 23px;
	border-radius: 5px;
	border: 1px solid var(--gold);
	font-weight: 800
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold2), #aa6e13)
}

.btn-outline {
	background: rgba(0, 0, 0, .35)
}

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 30px
}

.feature {
	text-align: center;
	border-right: 1px solid rgba(214, 154, 46, .25);
	padding: 5px
}

.feature:last-child {
	border: 0
}

.feature-icon {
	width: 52px;
	height: 52px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	margin: 0 auto 8px;
	display: grid;
	place-items: center;
	color: var(--gold2);
	font-size: 25px
}

.feature small {
	line-height: 1.35;
	display: block
}

.section {
	padding: 36px 0
}

.dark-panel {
	background: linear-gradient(180deg, #17110c, #0d0b09);
	border: 1px solid var(--border);
	border-radius: 17px;
	padding: 20px
}

.section-title {
	text-align: center;
	font-family: Georgia, serif;
	font-size: 28px;
	color: #f6dfb6;
	margin: 0 0 22px;
	text-transform: uppercase
}

.tour-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr .58fr;
	gap: 18px
}

.main-tour {
	position: relative;
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
	min-height: 335px;
	background: #0d0a07
}

.main-tour img,
.main-tour .tour-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 335px
}

.main-tour .tour-video {
	position: absolute;
	inset: 0;
	background: #000;
	z-index: 2
}

.main-tour.playing .play,
.main-tour.playing .overlay,
.main-tour.playing #mainTourPoster {
	display: none
}

.main-tour .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 35%, rgba(0, 0, 0, .88));
	display: flex;
	align-items: flex-end;
	padding: 25px;
	pointer-events: none;
	z-index: 1
}

.play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 3px solid white;
	background: rgba(0, 0, 0, .38);
	display: grid;
	place-items: center;
	font-size: 32px;
	color: #fff;
	cursor: pointer;
	z-index: 3
}

.play:disabled {
	opacity: .45;
	cursor: not-allowed
}

.thumbs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}

.thumb {
	border: 1px solid var(--border);
	border-radius: 9px;
	overflow: hidden;
	background: #17120d;
	padding: 0;
	color: inherit;
	font: inherit;
	text-align: inherit;
	cursor: pointer;
	width: 100%;
	display: block
}

button.thumb:hover,
button.thumb.active {
	border-color: var(--gold2, #c9a227);
	box-shadow: 0 0 0 1px var(--gold2, #c9a227)
}

.thumb img {
	height: 120px;
	width: 100%;
	object-fit: cover;
	display: block
}

.thumb p {
	margin: 0;
	padding: 10px 6px;
	text-align: center;
	font-size: 12px;
	color: #f5efe6
}

.baba-side img {
	height: 100%;
	min-height: 335px;
	width: 100%;
	object-fit: cover;
	border-radius: 9px;
	border: 1px solid var(--border)
}

.info-wrap {
	background: var(--cream);
	color: #241b12;
	border-radius: 14px;
	padding: 22px
}

.info-grid {
	display: grid;
	grid-template-columns: 1.35fr .7fr .85fr;
	gap: 20px;
	align-items: start;
}

.info-grid > * {
	min-width: 0;
}

.heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px
}

.heading-row h2 {
	font-family: Georgia, serif;
	margin: 0;
	font-size: 24px;
	text-transform: uppercase
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	align-items: stretch;
}

.news-grid .card {
	background: #fffaf1;
	border: 1px solid #e1d7c5;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
}

.news-grid .card img {
	height: 126px;
	width: 100%;
	object-fit: cover;
	display: block;
	flex: 0 0 126px;
	background: #efe6d6;
}

.news-grid .card-body {
	padding: 14px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

.news-grid .card h3 {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.8em;
	word-break: break-word;
}

.news-grid .card p {
	font-size: 12px;
	line-height: 1.5;
	color: #51473b;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	flex: 1 1 auto;
	word-break: break-word;
}

.news-grid .card small {
	font-size: 12px;
	line-height: 1.5;
	color: #51473b;
	margin-top: auto;
	display: block;
}

.card {
	background: #fffaf1;
	border: 1px solid #e1d7c5;
	border-radius: 8px;
	overflow: hidden
}

.card img {
	height: 126px;
	width: 100%;
	object-fit: cover
}

.card-body {
	padding: 14px
}

.card h3 {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 10px
}

.card p,
.card small {
	font-size: 12px;
	line-height: 1.5;
	color: #51473b
}

.programs,
.festivals {
	background: #f3e8d8;
	padding: 16px;
	border-radius: 8px;
	min-width: 0;
	overflow: hidden;
}

.programs h2,
.festivals h2 {
	margin-top: 0;
	font-size: 1.15rem;
	line-height: 1.3;
}

.programs .row,
.festivals .row {
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid #d9cbb8;
	font-size: 13px;
	margin: 0;
	width: 100%;
	min-width: 0;
}

.programs .row {
	display: grid;
	grid-template-columns: 30px 78px minmax(0, 1fr);
	align-items: center;
}

.programs .row img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	display: block;
}

.programs .row .program-time {
	color: #5c1a1a;
	font-weight: 600;
	font-size: 11px;
	line-height: 1.25;
	word-break: break-word;
}

.programs .row .program-title {
	font-weight: 600;
	line-height: 1.35;
	min-width: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
}

.festivals .row {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: start;
}

.festivals .date {
	width: 48px;
	background: #651818;
	color: white;
	border-radius: 5px;
	padding: 6px 4px;
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
	font-size: 12px;
	box-sizing: border-box;
}

.festivals .festival-info {
	min-width: 0;
	text-align: left;
	line-height: 1.35;
}

.festivals .festival-info b {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-weight: 700;
	word-break: break-word;
}

.festivals .festival-info small {
	display: block;
	margin-top: 2px;
	color: #5a4a3a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.date {
	background: #651818;
	color: white;
	border-radius: 5px;
	padding: 6px;
	text-align: center;
	min-width: 48px;
	font-weight: 700
}

.donation-grid {
	display: grid;
	grid-template-columns: .8fr 1.05fr 1.45fr;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden
}

.donation-box {
	padding: 22px;
	background: linear-gradient(180deg, #17140f, #0e100e);
	border-right: 1px solid var(--border)
}

.donation-box:last-child {
	border-right: 0
}

.donation-box h3 {
	text-align: center;
	color: var(--gold2);
	font-family: Georgia, serif;
	text-transform: uppercase;
	margin-top: 0
}

.donation-box .razorpay-donate {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #f8f4ec;
}

.donation-box .razorpay-donate h3 {
	margin-bottom: 0.5rem;
}

.donation-box .razorpay-donate > p,
.donation-box .razorpay-donate__form label {
	color: #e8e1d7;
	text-align: left;
}

.donation-box .razorpay-donate__form label {
	display: block;
	margin: 0.55rem 0 0.3rem;
}

.donation-box .razorpay-donate__form > input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	font-size: 0.95rem;
	color: #1a1510;
	background: #fff;
	margin-bottom: 0.15rem;
}

.donation-box .razorpay-donate__row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
}

.donation-box .razorpay-donate__row input {
	flex: 1 1 120px;
	min-width: 100px;
	max-width: 180px;
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	font-size: 1rem;
	color: #1a1510;
	background: #fff;
}

.donation-box .razorpay-donate__btn {
	padding: 0.65rem 1.35rem;
	border: none;
	border-radius: 6px;
	background: var(--gold2, #c9a227);
	color: #1a1510;
	font-weight: 700;
	cursor: pointer;
}

.donation-box .razorpay-donate__btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.donation-box .razorpay-donate__status {
	min-height: 1.25rem;
	margin: 0.75rem 0 0;
	text-align: center;
	font-size: 0.95rem;
	color: #e8e1d7;
}

.donation-box .razorpay-donate__status.is-error {
	color: #ffb4b4;
}

.donation-box .razorpay-donate__status.is-success {
	color: #b8e6c4;
}

.donation-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin: 1.25rem 0;
}

.qr {
	width: 170px;
	margin: 12px auto
}

.bank-lines {
	line-height: 1.9;
	color: #e8e1d7
}

.bank-lines b {
	color: var(--gold2)
}

.connect {
	display: grid;
	grid-template-columns: 1fr 170px;
	align-items: center;
	gap: 18px
}

.connect img {
	height: 220px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px
}

footer {
	border-top: 1px solid rgba(214, 154, 46, .25);
	padding: 28px 0 15px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(4, 1fr);
	gap: 24px
}

footer h4 {
	color: var(--gold2);
	margin: 0 0 12px
}

footer a,
footer p {
	font-size: 13px;
	line-height: 1.8;
	color: #ddd
}

.copyright {
	border-top: 1px solid #28241d;
	margin-top: 20px;
	padding-top: 15px;
	text-align: center;
	color: #aaa;
	font-size: 12px
}

.visitor-stat {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 18px auto 4px;
	padding: 12px 18px 12px 12px;
	border-radius: 999px;
	border: 1px solid rgba(214, 154, 46, .42);
	background:
		radial-gradient(120% 140% at 0% 50%, rgba(214, 154, 46, .18), transparent 55%),
		linear-gradient(180deg, #1a1510 0%, #0e0c09 100%);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, .35) inset,
		0 10px 24px rgba(0, 0, 0, .35);
	animation: visitor-stat-in .7s ease both
}

.visitor-stat__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #1a1006;
	font-size: 17px;
	background: linear-gradient(145deg, #f0bd5d, #d69a2e 55%, #a87318);
	box-shadow:
		0 0 0 3px rgba(214, 154, 46, .18),
		0 6px 14px rgba(166, 115, 24, .35);
	animation: visitor-icon-pulse 2.8s ease-in-out infinite
}

.visitor-stat__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	text-align: left
}

.visitor-stat__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #c9b896
}

.visitor-stat__digits {
	display: inline-flex;
	align-items: center;
	gap: 3px
}

.visitor-stat__digit {
	min-width: 1.35em;
	padding: 3px 5px;
	border-radius: 5px;
	font-family: "Courier New", Courier, monospace;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff8e8;
	background: linear-gradient(180deg, #2a2218, #15110d);
	border: 1px solid rgba(240, 189, 93, .35);
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .35);
	animation: visitor-digit-pop .55s ease both
}

.visitor-stat__digit:nth-child(1) { animation-delay: .05s }
.visitor-stat__digit:nth-child(2) { animation-delay: .1s }
.visitor-stat__digit:nth-child(3) { animation-delay: .15s }
.visitor-stat__digit:nth-child(4) { animation-delay: .2s }
.visitor-stat__digit:nth-child(5) { animation-delay: .25s }
.visitor-stat__digit:nth-child(6) { animation-delay: .3s }
.visitor-stat__digit:nth-child(7) { animation-delay: .35s }
.visitor-stat__digit:nth-child(8) { animation-delay: .4s }
.visitor-stat__digit:nth-child(9) { animation-delay: .45s }

.visitor-stat__sep {
	color: var(--gold2);
	font-size: 16px;
	font-weight: 700;
	padding: 0 1px;
	opacity: .85
}

@keyframes visitor-stat-in {
	from {
		opacity: 0;
		transform: translateY(10px) scale(.96)
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1)
	}
}

@keyframes visitor-digit-pop {
	from {
		opacity: 0;
		transform: translateY(6px)
	}
	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes visitor-icon-pulse {
	0%, 100% {
		box-shadow:
			0 0 0 3px rgba(214, 154, 46, .18),
			0 6px 14px rgba(166, 115, 24, .35)
	}
	50% {
		box-shadow:
			0 0 0 6px rgba(214, 154, 46, .12),
			0 8px 18px rgba(166, 115, 24, .45)
	}
}

@media (prefers-reduced-motion: reduce) {
	.visitor-stat,
	.visitor-stat__digit,
	.visitor-stat__icon {
		animation: none
	}
}

@media (max-width: 520px) {
	.visitor-stat {
		gap: 10px;
		padding: 10px 14px 10px 10px
	}

	.visitor-stat__icon {
		width: 38px;
		height: 38px;
		font-size: 15px
	}

	.visitor-stat__digit {
		min-width: 1.2em;
		padding: 2px 4px;
		font-size: 15px
	}
}

@media(max-width:980px) {
	.menu {
		position: fixed;
		left: 0;
		right: 0;
		top: 125px;
		background: #0a0c0b;
		display: none;
		flex-direction: column;
		gap: 0;
		padding: 15px 6%;
		border-top: 1px solid #30281d
	}

	.menu.open {
		display: flex
	}

	.menu a {
		width: 100%;
		padding: 14px 0
	}

	.menu a.active:after {
		display: none
	}

	.hamburger {
		display: block
	}

	.nav>.donate-btn {
		display: none
	}

	.tour-grid {
		grid-template-columns: 1fr
	}

	.baba-side {
		display: none
	}

	.info-grid {
		grid-template-columns: 1fr
	}

	.donation-grid {
		grid-template-columns: 1fr
	}

	.donation-box {
		border-right: 0;
		border-bottom: 1px solid var(--border)
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:650px) {

	.top-contact span:nth-child(n+2),
	.socials {
		display: none
	}

	.brand img {
		width: 235px;
		height: 74px
	}

	.menu {
		top: 116px
	}

	.hero {
		min-height: 640px;
		background-position: 60% center
	}

	.banner-slide img {
		max-height: 420px;
	}

	.quicklink-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.banner-nav {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}

	h1 {
		font-size: 39px
	}

	.script {
		font-size: 22px
	}

	.features {
		grid-template-columns: repeat(2, 1fr)
	}

	.feature:nth-child(2) {
		border-right: 0
	}

	.news-grid {
		grid-template-columns: 1fr
	}

	.thumbs {
		grid-template-columns: repeat(2, 1fr)
	}

	.connect {
		grid-template-columns: 1fr
	}

	.connect img {
		height: 180px
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.section-title {
		font-size: 22px
	}
}

/* MAIN WRAPPER */
.seva-section {
	width: 100%;

	background: #0c0d0b;
	border: 1px solid #4c371b;
	border-radius: 6px;

}

.seva-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* ITEM */
.seva-item {
	min-height: 145px;
	padding: 18px 12px;
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	text-align: center;

	transition: 0.3s ease;
}

/* Vertical divider */
.seva-item:not(:last-child)::after {
	content: "";
	position: absolute;

	right: 0;
	top: 20px;

	width: 1px;
	height: 100px;

	background: linear-gradient(transparent,
			#6b4b22,
			transparent);
}

.seva-item:hover {
	background: #14120e;
}

/* ICON CIRCLE */
.icon-circle {
	width: 43px;
	height: 43px;

	border: 1px solid #a87528;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 8px;

	color: #d69b38;

	transition: .3s;
}

.seva-item:hover .icon-circle {
	background: #a87528;
	color: #111;
	transform: translateY(-3px);
}

.icon-circle svg {
	width: 25px;
	height: 25px;

	stroke: currentColor;
	fill: none;

	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* TITLE */
.seva-item h3 {
	color: #e5a53d;

	font-size: 12px;
	line-height: 1.2;

	margin: 0 0 5px;

	font-weight: 600;
}

/* TEXT */
.seva-item p {
	margin: 0;

	color: #eeeeea;

	font-size: 11px;
	line-height: 1.45;
}

/* TABLET */
@media(max-width:700px) {

	.seva-section {
		margin: 20px;
	}

	.seva-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.seva-item {
		border-bottom: 1px solid #3b2d1a;
	}

	.seva-item:nth-child(2)::after {
		display: none;
	}
}

/* MOBILE */
@media(max-width:420px) {

	.banner-slide img {
		max-height: 240px;
	}

	.quicklink-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.quicklink span:last-child {
		font-size: 0.72rem;
		max-width: none;
	}

	.seva-container {
		grid-template-columns: 1fr;
	}

	.seva-item {
		min-height: auto;
		padding: 20px;
	}

	.seva-item::after {
		display: none !important;
	}
}

.program-btn {
	width: 100%;
	max-width: 100%;
	height: 42px;
	padding: 0 16px;
	margin-top: 12px;
	box-sizing: border-box;

	display: inline-flex;
	align-items: center;
	justify-content: space-between;

	background: linear-gradient(180deg,
			#741915 0%,
			#59100d 55%,
			#3d0c0a 100%);

	border: 1px solid #8d3028;
	border-radius: 6px;

	color: #fff;
	text-decoration: none;

	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .15),
		0 2px 4px rgba(0, 0, 0, .25);

	transition: all .25s ease;
}

.program-btn .arrow {
	font-size: 19px;
	font-weight: 400;
	margin-left: 15px;
	line-height: 1;
}

.program-btn:hover {
	background: linear-gradient(180deg,
			#8d211b,
			#681510,
			#480d0a);

	transform: translateY(-2px);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .18),
		0 5px 12px rgba(0, 0, 0, .35);
}

.program-btn:active {
	transform: translateY(0);
}

footer i {
	color: var(--gold2);
}

.socials i {
	color: var(--gold2);
}

/* Right Center Popup */
.right-popup {
	position: fixed;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 270px;
	background: url('../assets/popup.png') center / cover no-repeat;

	border-right: 0;
	border-radius: 15px 0 0 15px;
	padding: 25px 20px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
	z-index: 9999;
	background-size: contain;
	height: 230px;
}

/* Close Button */
.popup-close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background: #d99a22;
	color: #fff;
	font-size: 18px;
	cursor: pointer;

}

/* Image */
.right-popup img {
	width: 100%;
	display: block;
	border-radius: 10px;
}

.right-popup h3 {
	margin: 15px 0 8px;
	text-align: center;
	color: #8b5700;
}

.right-popup p {
	margin: 0;
	text-align: center;
	line-height: 1.6;
	color: #555;
}

/* Mobile */
@media(max-width: 600px) {
	.right-popup {
		width: 270px;
	}
}

/* Payment verification blocking overlay */
body.rzp-verify-lock {
	overflow: hidden !important;
}

.rzp-verify-overlay {
	position: fixed;
	inset: 0;
	z-index: 200000;
	background: rgba(10, 8, 6, 0.78);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	pointer-events: all;
	cursor: wait;
	user-select: none;
	-webkit-user-select: none;
}

.rzp-verify-overlay[hidden] {
	display: none !important;
}

.rzp-verify-overlay__card {
	width: min(420px, 100%);
	background: #fffdf8;
	border: 1px solid rgba(215, 155, 53, 0.45);
	border-radius: 14px;
	padding: 1.6rem 1.35rem 1.4rem;
	text-align: center;
	color: #3a2f24;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.rzp-verify-overlay__card h3 {
	margin: 0.85rem 0 0.4rem;
	font-family: Georgia, serif;
	font-size: 1.2rem;
	color: #5c1a1a;
}

.rzp-verify-overlay__card p {
	margin: 0 0 1.1rem;
	line-height: 1.5;
	font-size: 0.95rem;
	color: #4a3f34;
}

.rzp-verify-overlay__spinner {
	width: 46px;
	height: 46px;
	margin: 0 auto;
	border: 4px solid #efe2c8;
	border-top-color: #5c1a1a;
	border-radius: 50%;
	animation: rzp-verify-spin 0.85s linear infinite;
}

.rzp-verify-overlay__track {
	width: 100%;
	height: 12px;
	background: #efe6d6;
	border-radius: 999px;
	overflow: hidden;
}

.rzp-verify-overlay__bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #5c1a1a, #c9a227);
	border-radius: 999px;
	transition: width 0.18s linear;
}

.rzp-verify-overlay__pct {
	margin-top: 0.55rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: #5c1a1a;
}

@keyframes rzp-verify-spin {
	to { transform: rotate(360deg); }
}