@import url("https://fonts.googleapis.com/css2?family=Allura&family=Montserrat:wght@200;300;400;500;600;700&display=swap");

.allura-regular {
	font-family: "Allura", cursive;
	font-weight: 400;
	font-style: normal;
}

:root {
	--primary: #9c1e21;
	--dark: #333;

	--white-col: #bdcccf;
	--black-col: #242526;

	--bg-glass-col-white: rgba(255, 255, 255, 0.2);
	--bg-glass-col-black: rgba(23, 24, 24, 0.567);

	--first-col: #fae69c;
	--third-col: #fcfee6;
	--fourth-col: #e9eade;

	--bg: #fdfde8;
	--text: #2f2f2f;
	--muted: #666;
	--border: #cacaac;
	--accent: #8b8b6a;

	color: var(--black-col);
	background-color: var(--fourth-col);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", "Segoe UI", system-ui, sans-serif;
	scroll-behavior: smooth;
	scrollbar-width: none;
	--magnifier: 6;
	--gap: 1vmin;
	--transition: 0.5s;
}

*::-webkit-scrollbar {
	display: none;
}

body,
main {
	color: var(--black-col);
	background-color: var(--fourth-col);
	scroll-behavior: smooth;
}


/* h1,
h2,
h3,
h4,
h5,
h6 {
	color: #4a4c70;
	margin-top: 2px;
} */


main>section {
	width: 100%;
	min-height: 90vh;
	height: 100%;
}


main>section:nth-child(odd) {
	background-color: var(--third-col);
}

/* ===========> loading animation start  <===========*/

/* --- Background Split Panels --- */
.loader-wrapper {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.loader-bg-top,
.loader-bg-bottom {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	background: #0f0f0f;
	transition: transform 1.2s cubic-bezier(0.8, 0, 0.1, 1);
}

.loader-bg-top {
	top: 0;
}

.loader-bg-bottom {
	bottom: 0;
}

/* --- Text Animation --- */
.loader-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 5px;
}

.brand-reveal span {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	opacity: 0;
	filter: blur(10px);
	transform: scale(0.5);
	animation: luxuryReveal 1s ease-out forwards;
	animation-delay: var(--d);
}

@keyframes luxuryReveal {
	to {
		opacity: 1;
		filter: blur(0);
		transform: scale(1);
	}
}

/* --- Accent Decorative Line --- */
.loader-accent-line {
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #8b1f1f, transparent);
	margin: 20px auto 0;
	animation: lineExpand 1.5s ease-in-out forwards;
	animation-delay: 0.5s;
}

@keyframes lineExpand {
	to {
		width: 300px;
	}
}

/* --- Exit State: Split Curtain --- */
.loader-finished .loader-bg-top {
	transform: translateY(-100%);
}

.loader-finished .loader-bg-bottom {
	transform: translateY(100%);
}

.loader-finished .loader-content {
	opacity: 0;
	transition: opacity 0.5s ease;
}

/* Hide the body content initially only when loader is active */
body:not(.loader-hidden) .modern-page-system,
body:not(.loader-hidden) .ultra-post-view {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1s ease, transform 1s ease;
}

/* Once loader finishes, fade the website in */
.loader-finished~main,
.loader-finished~#page-content {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* --- Image Reveal --- */
.brand-image img {
	min-width: 300px;
	width: 50%;
	max-width: 80vw;
	opacity: 0;
	filter: blur(15px);
	transform: scale(0.6);
	animation: imageLuxuryReveal 1.2s ease-out forwards;
	animation-delay: 0.4s;
}

.brand-image img {
	filter: blur(15px) drop-shadow(0 0 20px rgba(139, 31, 31, 0.35));
}

@keyframes imageLuxuryReveal {
	to {
		opacity: 1;
		filter: blur(0) drop-shadow(0 0 25px rgba(139, 31, 31, 0.4));
		transform: scale(1);
	}
}



/* ===========> loading animation end  <===========*/

/* ===========> popup animation start  <===========*/

.pop-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.pop-overlay swiper-slide {
	background-color: #ffff;
}

.img-container {
	position: relative;
	max-width: 50%;
	transform: scale(0.7);
	transition: transform 0.4s ease-out;
}

@media screen and (max-width: 550px) {
	.img-container {
		max-width: 90%;
	}
}

.pop-overlay.active {
	display: flex;
}

.pop-overlay.active .img-container {
	transform: scale(1);
}

.pop-image {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-pop {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fff;
	color: #000;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	cursor: pointer;
	font-weight: bold;
}

/* ===========> popup animation end  <===========*/

/* ===========> nav bar start  <===========*/
.top-bar {
	background: var(--fourth-col);
	border-bottom: 1px solid var(--border);
}

.top-container {
	max-width: 1400px;
	margin: auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-logo img {
	height: 65px;
}

/* Contact Info */
.top-info {
	display: flex;
	gap: 32px;
}

.info-item {
	display: flex;
	gap: 10px;
	align-items: center;
}

.info-item strong>a {
	color: var(--dark);
	text-decoration: none;
}

.info-item small {
	color: var(--muted);
	font-size: 12px;
}

.info-item strong {
	font-size: 14px;
	color: var(--dark);
}

/* Donate Button */
.donate-top {
	background: var(--primary);
	color: #fff;
	padding: 10px 22px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
}

/* MAIN NAV */
.main-header {
	background: var(--fourth-col);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 999;
}

.nav-container {
	max-width: 1400px;
	margin: auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Menu */
.nav-menu {
	display: flex;
	gap: 30px;
}

.nav-menu a {
	text-decoration: none;
	color: var(--dark);
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 6px;
}

.nav-menu a.active {
	border-bottom: 2px solid var(--primary);
}

/* Right */
.nav-right {
	display: flex;
	align-items: center;
	gap: 18px;
}

.search-box {
	display: flex;
	align-items: center;
	background: #f5f5f5;
	padding: 6px 10px;
	border-radius: 6px;
}

.search-box input {
	border: none;
	background: none;
	outline: none;
}

.social a {
	text-decoration: none;
	font-weight: 700;
	color: var(--muted);
}

.social img {
	width: 28px;
}

/* MOBILE */
.menu-btn {
	display: none;
	font-size: 26px;
	background: none;
	border: none;
}

.mobile-nav {
	display: none;
	flex-direction: column;
	border-top: 1px solid var(--border);
}

.mobile-nav a {
	padding: 14px 24px;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
	color: var(--dark);
}

.mobile-donate {
	background: var(--primary);
	color: #fff !important;
	font-weight: 700;
	text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

	.top-info,
	.nav-menu,
	.nav-right {
		display: none;
	}

	.menu-btn {
		display: block;
	}

	.mobile-nav.show {
		display: flex;
	}
}

@media (max-width: 600px) {
	.top-logo img {
		width: 100%;
	}

	.top-container {
		padding: 10px 8px;
	}
}


/* Professional Donate Button */
.donate-pro {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 10px 26px;
	border-radius: 999px;

	background: var(--primary);
	/* calm premium red */
	color: #ffffff;

	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;

	box-shadow: 0 6px 16px rgba(230, 57, 70, 0.25);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
	overflow: hidden;
}

@media (max-width: 700px) {
	.donate-pro {
		display: none;

	}

	.top-logo {
		margin: auto;
	}
}

/* Hover lift (professional micro-interaction) */
.donate-pro:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(230, 57, 70, 0.35);
	background: #791416;
}

/* Heart icon subtle pulse */
.donate-pro .heart {
	display: inline-block;
	font-size: 14px;
	animation: pulse 2.5s infinite ease-in-out;
}

/* Soft pulse animation (very subtle) */
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.9;
	}

	50% {
		transform: scale(1.15);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.9;
	}
}

.profile-container {
	position: relative;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-container>button {
	position: relative;
	display: inline-flex;
	align-items: center;
	background: var(--primary);
	color: #ffffff;

	letter-spacing: 1.5px;
	border-radius: 5px;
	cursor: pointer;
	border: 1px solid var(--fourth-col);
	padding: 8px 25px;

	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;

	box-shadow: 0 6px 16px rgba(230, 57, 70, 0.25);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
	overflow: hidden;
}

.profile-container>button::before {
	content: '\f007';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 3px;
}

.profile-container .profile-nav {
	display: none;
	padding: 10px 15px;
	top: 35px;
	border-radius: 10px;
	right: 0px;
	font-size: 15px;
	font-weight: bold;
	position: absolute;
	background-color: white;
	list-style: none;
	flex-direction: column;
	gap: 10px;
}

.profile-container .profile-nav li {
	width: max-content;
	margin: none;
	padding: none;
}

.profile-container .profile-nav li::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 5px;
}

.profile-container .profile-nav li:nth-child(1)::before {
	content: '\f015';
}

.profile-container .profile-nav li:nth-child(2)::before {
	content: '\f0e2';
}

.profile-container .profile-nav li:nth-child(3)::before {
	content: '\f075';
}

.profile-container .profile-nav li:nth-child(4)::before {
	content: '\f044';
}

.profile-container .profile-nav li:nth-child(5)::before {
	content: '\f008';
}

.profile-container .profile-nav li:nth-child(6)::before {
	content: '\f007';
}

.profile-container .profile-nav li:nth-child(7)::before {
	content: '\f2f5';
}

.profile-container:hover .profile-nav {
	display: flex;
}


/* ===========> nav bar end  <===========*/

/* ===========> Hero section start <===========*/
.mySwiper {
	width: 100%;
	height: 90vh;
	min-height: 600px;
}

.mySwiper swiper-slide {
	position: relative;
	overflow: hidden;
}

.mySwiper swiper-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 15%;
	z-index: 1;
}

.mySwiper swiper-slide video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 15%;
	z-index: 1;
}

.mySwiper swiper-slide .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.45) 0%,
			rgba(0, 0, 0, 0.55) 100%);
	z-index: 2;
}


.mySwiper swiper-slide .hero-quote {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 3;

	max-width: 420px;
	text-align: right;
	color: #f5f5f5;

	opacity: 0;
	animation: quoteFadeIn 1.6s ease forwards;
	animation-delay: 0.8s;
}

.mySwiper swiper-slide .hero-quote {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 3;

	max-width: 420px;
	text-align: right;
	color: #f5f5f5;

	opacity: 0;
	animation: quoteFadeIn .8s ease forwards;
	animation-delay: 0.8s;
}

.mySwiper swiper-slide .quote-text {
	font-size: 30px;
	font-style: italic;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.mySwiper swiper-slide .quote-author {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
}

@keyframes quoteFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.mySwiper swiper-slide .hero-quote {
		right: 20px;
		left: 20px;
		bottom: 24px;
		max-width: none;
		text-align: center;
	}
}

/* ===========> Hero section end  <===========*/


/* ===========> All Section  <===========*/

section .img {
	width: 350px;
	height: 400px;
	overflow: hidden;
}

section .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section .background-img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}

section .container {
	position: relative;
	z-index: 2;
}

.container h4 {
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	color: #FDBE33;
}

.container h1 {
	font-size: 45px;
	font-weight: 700;
}

@media screen and (max-width: 550px) {
	.container h4 {
		font-size: 15px;
	}

	.container h1 {
		font-size: 30px;
	}
}

/* ===========> Download section start  <===========*/

.trust-hub {
	padding: 60px 0;
}

.hub-intro {
	max-width: 700px;
	margin-bottom: 50px;
}

.hub-tag {
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
}

.hub-intro h2 {
	font-size: 3rem;
	color: var(--text);
	margin: 10px 0 20px;
}

.hub-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.hub-card {
	background: var(--third-col);
	border-radius: 24px;
	padding: 50px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(0, 0, 0, 0.03);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
}

.hub-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(184, 146, 106, 0.12);
	border-color: #b8926a;
}

.icon-box {
	width: 60px;
	height: 60px;
	background: #fdf6ee;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b8926a;
	margin-bottom: 25px;
}

.icon-box svg {
	width: 30px;
	height: 30px;
}

.hub-card h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.hub-card p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.file-details {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.file-details li {
	font-size: 0.9rem;
	color: #444;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.file-details li i {
	color: #b8926a;
	font-size: 0.8rem;
}

.btn-hub {
	margin-top: auto;
	padding: 14px 28px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: 0.3s;
}

.btn-hub:hover {
	background: #b8926a;
	color: #fff;
}

@media (max-width: 991px) {
	.hub-grid {
		grid-template-columns: 1fr;
	}

	.hub-intro h2 {
		font-size: 2.2rem;
	}

	.hub-card {
		padding: 35px;
	}
}

/* ===========> About me section start  <===========*/
.about {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	padding: 80px 0 20px 0;
	position: relative;
}

.about .img {
	flex: 1;
	min-width: 45%;
	height: 600px;
	position: relative;
}

.about .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.about-tab {
	flex: 1;
	min-width: 50%;
	padding: 60px;
	margin-left: -100px;
	border-radius: 4px;
	z-index: 2;
}

.about-tab h4 {
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.85rem;
	margin-bottom: 10px;
}

.about-tab h1 {
	font-size: 3rem;
	margin-bottom: 40px;
	color: var(--text);
}


.about .nav {
	display: flex;
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--border);
}

.about .nav-item {
	margin-right: 30px;
}

.about .nav-link {
	text-decoration: none;
	color: #999;
	font-weight: 600;
	font-size: 1rem;
	padding-bottom: 15px;
	display: inline-block;
	position: relative;
	transition: 0.3s;
}

.about .nav-link.active {
	color: #222;
}

.about .nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #b8926a;
}

.tab-content {
	line-height: 1.8;
	color: #555;
	font-size: 1.05rem;
	min-height: 250px;
}

.tab-pane {
	display: none;
	animation: fadeIn 0.5s ease;
}

.tab-pane.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 992px) {
	.about {
		flex-direction: column;
	}

	.about-tab h4 {
		margin-top: 20px;
	}

	.about-tab h1 {
		margin-bottom: 20px;
	}

	.about-tab {
		margin-left: 0;
		margin-top: -50px;
		padding: 40px 20px;
		width: 90%;
		margin-inline: auto;
	}

	.about .img {
		max-height: 363px;
		margin: auto;
		min-width: 0%;
	}

	.about .img img {
		mask-image: none;
		border-radius: 4px;
	}
}

/* ===========> Legacy section start  <===========*/
.history {
	padding: 30px 0;
	color: #2d3436;
	line-height: 1.6;
}

.history .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.history h4 {
	font-family: 'Georgia', serif;
	font-style: italic;
	color: var(--primary);
	margin-bottom: 5px;
	font-weight: 400;
}

.history h1 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 60px;
	letter-spacing: -1px;
}

.history-container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.history .img {
	flex: 1;
	position: sticky;
	top: 90px;
}

.history .img img {
	width: 100%;
	border-radius: 4px;
	filter: sepia(20%);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.history .content {
	flex: 1.2;
}

.history .content>p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: #636e72;
}

.history .content div {
	margin-bottom: 40px;
	position: relative;
	padding-left: 30px;
	border-left: 1px solid #dfe6e9;
}

.history .content h3 {
	font-size: 1.6rem;
	margin-bottom: 5px;
	color: #2d3436;
}

blockquote {
	margin-top: 25px;
	padding: 25px;
	background: #fdf2f2;
	border-radius: 12px;
	font-family: 'Georgia', serif;
	font-style: italic;
	font-size: 1.1rem;
	color: #c0392b;
	position: relative;
	border: none;
}

blockquote::before {
	content: "“";
	font-size: 4rem;
	position: absolute;
	top: -10px;
	left: 10px;
	opacity: 0.1;
}

@media (max-width: 850px) {
	.history-container {
		flex-direction: column-reverse;

	}

	.history .img {
		position: relative;
		top: 0;
		margin: auto;
		max-height: 300px;
	}

	.history h1 {
		line-height: 1.2;
		font-size: 2.5rem;
	}
}

/* ===========> Video Show Case section start  <===========*/

.spiritual-journey {
	padding: 60px 0;
	border-top: 1px solid #f3e8d9;
	background-color: var(--third-col);
	overflow: hidden;
}

.spiritual-journey .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.journey-wrapper {
	display: flex;
	align-items: stretch;
	gap: 100px;
}

.video-pillar {
	flex: 0 0 300px;
}

.video-container {
	position: relative;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-overlay-text {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 8px 24px;
	border-radius: 30px;
	color: #fff;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.journey-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.section-badge {
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.8rem;
	margin-bottom: 20px;
}

.journey-content h2 {
	font-size: 3.5rem;
	line-height: 1.1;
	color: var(--text);
	margin-bottom: 40px;
}

.journey-content h2 span {
	color: #b8926a;
	font-weight: 400;
	font-style: italic;
}

.lead {
	font-size: 1.4rem;
	color: #555;
	margin-bottom: 40px;
	line-height: 1.6;
}

.temple-feature {
	margin-bottom: 30px;
	padding-left: 25px;
	border-left: 2px solid #f3ece4;
}

.temple-feature h4 {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 8px;
}

.temple-feature p {
	color: #777;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.journey-wrapper {
		flex-direction: column;
		gap: 60px;
	}

	.video-pillar {
		flex: none;
		width: 100%;
		max-width: 450px;
		margin: 0 auto;
	}
}

/* ===========> Donation section start  <===========*/

section.donation-help {
	position: relative;
	min-height: 90vh;
	display: flex;
	justify-content: center;
	align-items: end;
}

section.donation-help .container {
	padding: 40px 30px;
	width: 100%;
	height: 100%;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	background-color: #2425266a;
}

section.donation-help .container h1,
section.donation-help .container p {
	margin-top: 2px;
	color: #fff;
}

section.donation-help .container>div:first-child {
	max-width: 600px;
}

section.donation-help .container form {
	min-width: 300px;
	max-width: 300px;
	margin-top: 1.3rem;
	display: flex;
	flex-direction: column;
	gap: .8rem;
}

section.donation-help .container form .field {
	color: white;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

section.donation-help .container form .field input {
	outline: none;
	border: 2px solid var(--fourth-col);
	border-radius: 5px;
	padding: 10px 15px;
}

section.donation-help .container form button {
	background-color: var(--fourth-col);
	color: var(--black-col);
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
}

@media screen and (max-width: 720px) {
	section.donation-help .container {
		flex-direction: column;
	}

	section.donation-help #contact-form {
		min-width: 100%;
		max-width: 100%;
	}
}

/* ===========> Donation section end  <===========*/

/* ===========> Page 404 section start  <===========*/
.error-page {
	color: var(--black-col);
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.error-page svg {
	width: 300px;
}

.error-page .message-box {
	font-family: Roboto;
	font-weight: 300;
}

.error-page .message-box h1 {
	font-size: 4em;
	line-height: 46px;
	margin-bottom: 40px;
}

.error-page .message-box p {
	font-weight: bold;
	font-size: 1.3em;
}

.error-page .buttons-con .action-link-wrap {
	margin-top: 40px;
}

.error-page .buttons-con .action-link-wrap a {
	background: var(--bg-glass-col-black);
	padding: 8px 25px;
	border-radius: 4px;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s linear;
	cursor: pointer;
	text-decoration: none;
	margin-right: 10px;
}

.error-page .buttons-con .action-link-wrap a:hover {
	color: #cdc7c7;
}

.error-page #Polygon-1,
#Polygon-2,
#Polygon-3,
#Polygon-4,
#Polygon-4,
#Polygon-5 {
	animation: float 1s infinite ease-in-out alternate;
}

.error-page #Polygon-2 {
	animation-delay: 0.2s;
}

.error-page #Polygon-3 {
	animation-delay: 0.4s;
}

.error-page #Polygon-4 {
	animation-delay: 0.6s;
}

#Polygon-5 {
	animation-delay: 0.8s;
}

@keyframes float {
	100% {
		transform: translateY(20px);
	}
}

@media (max-width: 674px) {
	.error-page {
		flex-direction: column-reverse;
		height: 100%;
		padding: 30px 0;
	}
}

/* ===========> Page 404 section end  <===========*/

/* ===========> Contact Form Section start  <===========*/

.page-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}

.page .content {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.page-content .content-header {
	position: relative;
	width: 100%;
	height: 60vh;
	display: flex;
	align-items: center;
}

.page-content .content-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-content .content-header h1 {
	width: 85%;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	position: absolute;
	left: 30px;
	color: var(--white-col);
}

.page-content h1 {
	width: 85%;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.page-content .content {
	padding: 10px 0 20px 0;
	max-width: 85%;
}

/* .page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	margin-top: 8px;
} */

.page-content ul,
.page-content ol,
.page-content p {
	margin-top: 4px;
}

.page-content ul,
.page-content ol {
	padding-left: 20px;
}

.page-content figure img {
	width: 100%;
	margin-top: 18px;
	margin-bottom: 10px;
	height: 100%;
}

/* ===========> Contact Form Section end  <===========*/

/* ===========> Contact section start  <===========*/

.contact-us {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact-us section {
	width: 66%;
	padding: 30px 0;
}


.contact-us .container {
	background-color: var(--bg);
	border-radius: 5px;
	border: 1px solid var(--border);
	padding: 1.3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact-us .container form {
	margin-top: 1.3rem;
	display: flex;
	flex-direction: column;
	gap: .8rem;
}

.contact-us .container form p {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.contact-us .container form p input,
.contact-us .container form p textarea {
	width: 100%;
	margin-top: 2px;
	outline: none;
	border: 2px solid var(--fourth-col);
	border-radius: 5px;
	padding: 10px 15px;
}

.contact-us .container form p textarea {
	resize: none;
	height: 80px;
}

.contact-us .container form input[type="submit"] {
	background-color: var(--fourth-col);
	color: var(--black-col);
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
	width: 100%;
}

.contact-us .company-info {
	margin-top: 10px;
	background-color: var(--bg-glass-col-white);
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid var(--border);
	display: flex;
	justify-content: start;
	gap: 1.4rem;
	align-items: center;
}

.contact-us .company-info .details div {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	max-width: 400px;
}

.contact-us form .required-field {
	color: rgb(255, 55, 0);
	font-size: 11px;
}


/* ===========> Contact section end  <===========*/

/* ===========> Gallery section start  <===========*/

/* Container & Headers */
.pro-gallery-page {
	padding: 60px 0;
}

.gallery-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.gallery-header {
	text-align: center;
	margin-bottom: 60px;
}

.gallery-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.gallery-subtitle {
	color: #666;
	font-size: 1.1rem;
}

.gallery-masonry-grid {
	column-count: 3;
	column-gap: 25px;
}

@media (max-width: 992px) {
	.gallery-masonry-grid {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.gallery-masonry-grid {
		column-count: 1;
	}
}

.gallery-card {
	break-inside: avoid;
	margin-bottom: 25px;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.img-box {
	position: relative;
	overflow: hidden;
}

.img-box img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.8s ease;
}

.img-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.4s ease;
	padding: 20px;
	text-align: center;
	background: rgba(9, 9, 8, 0.568);
	backdrop-filter: blur(2px);
}

.img-overlay h3 {
	color: #fff;
	font-size: 1.1rem;
	margin-top: 20px;
	font-weight: 600;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.overlay-actions {
	display: flex;
	gap: 15px;
	transform: translateY(20px);
	transition: all 0.4s ease 0.1s;
}

.action-btn {
	width: 45px;
	height: 45px;
	background: var(--dark);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 18px;
	color: #1a1a1a;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.action-btn:hover {
	background: #000;
	color: #fff;
	transform: scale(1.1);
}

.action-btn i {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fourth-col);
}

.action-btn:hover i {
	transform: rotate(15deg);
	transition: transform 0.3s ease;
}

.gallery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover img {
	transform: scale(1.1);
}

.gallery-card:hover .img-overlay {
	opacity: 1;
}

.gallery-card:hover h3,
.gallery-card:hover .overlay-actions {
	transform: translateY(0);
}

.custom-pagination {
	margin-top: 50px;
	text-align: center;
}

.custom-pagination .page-numbers {
	display: inline-block;
	padding: 12px 22px;
	margin: 0 5px;
	background: var(--bg);
	color: #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: 0.3s;
}

.custom-pagination .current,
.custom-pagination .page-numbers:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* ===========> Gallery section end  <===========*/

/* ===========> Blog Form Section start  <===========*/

.modern-blog-page {
	padding: 60px 0;
}

.container {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 25px;
}

.featured-post-row {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 80px;
}

.featured-img-col {
	flex: 1.2;
}

.featured-img-col img {
	width: 100%;
	border-radius: 25px;
	object-fit: cover;
	height: 450px;
}

.featured-content-col {
	flex: 1;
}

.modern-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
}

@media (max-width: 992px) {
	.modern-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-post-row {
		flex-direction: column;
	}
}

.modern-tag {
	display: block;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1.5px;
	color: #888;
	margin-bottom: 12px;
	font-weight: 600;
}

.featured-title {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.grid-title {
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 15px;
}

.modern-excerpt {
	color: #444;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.grid-img-box img {
	width: 100%;
	max-height: 400px;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 20px;
}

/* --- Button Style --- */
.modern-read-now {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #000;
	font-weight: 700;
	font-size: 14px;
	border-bottom: 2px solid transparent;
	transition: 0.3s;
}

.modern-read-now i {
	font-size: 18px;
}

.modern-read-now:hover {
	gap: 12px;
	border-bottom: 2px solid #000;
}

/* ===========> Blog Form Section end  <===========*/

/* ===========> Archive Section start  <===========*/

/* --- Archive Layout --- */
.archive-page-wrapper {
	padding-bottom: 30px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- Banner Header --- */
.archive-banner {
	padding: 50px 0 60px;
	text-align: center;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.archive-subtitle {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: #8b1f1f;
	font-weight: 700;
}

.archive-title {
	font-size: 3rem;
	font-weight: 800;
	margin: 10px 0;
	color: #1a1a1a;
}

.archive-description {
	max-width: 600px;
	margin: 0 auto;
	color: #666;
	line-height: 1.6;
}

/* --- Grid System --- */
.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 40px;
}

.archive-card {
	background: var(--fourth-col);
	border: 1px solid var(--border);
	border-radius: 15px;
	overflow: hidden;
	height: fit-content;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Card Content --- */
.card-thumb img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: 0.5s ease;
}

.archive-card:hover .card-thumb img {
	transform: scale(1.05);
}

.card-body {
	padding: 30px;
}

.card-category a {
	text-decoration: none;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	color: #8b1f1f;
	letter-spacing: 1px;
}

.card-title {
	font-size: 1.5rem;
	margin: 10px 0;
	line-height: 1.3;
}

.card-title a {
	color: #1a1a1a;
	text-decoration: none;
}

.card-meta {
	font-size: 13px;
	color: #888;
	margin-bottom: 15px;
	display: flex;
	gap: 15px;
}

.card-excerpt {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* --- Buttons & Pagination --- */
.btn-read-more {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	color: #1a1a1a;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.3s;
}

.btn-read-more:hover {
	color: #8b1f1f;
	gap: 15px;
}

.archive-pagination {
	margin-top: 60px;
	text-align: center;
}

.archive-pagination .page-numbers {
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	margin: 0 5px;
	border-radius: 50px;
	text-decoration: none;
	color: #1a1a1a;
	font-weight: 600;
	border: 1px solid #eee;
}

.archive-pagination .current {
	background: #8b1f1f;
	color: #fff;
	border-color: #8b1f1f;
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.archive-title {
		font-size: 2rem;
	}
}

/* ===========> Message From Swami  <===========*/

.swami-message {
	padding: 80px 0;
	/* margin: 60px 0; */
	border-top: 1px solid #f3e8d9;
	border-bottom: 1px solid #f3e8d9;
}

.swami-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
}

.swami-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
	align-items: start;
}

.swami-profile {
	position: sticky;
	top: 120px;
	text-align: center;
}

.swami-image-wrapper {
	position: relative;
	display: inline-block;
	padding: 40px;
}

.swami-image-wrapper::before {
	content: "";
	position: absolute;
	inset: 25px;
	border-radius: 50%;
	background: conic-gradient(from 180deg,
			#ff4500,
			#ffd700,
			#fff,
			#ffd700,
			#ff4500);
	filter: blur(30px);
	animation: rotate-divine 8s linear infinite;
	opacity: 0.6;
}

.swami-image-wrapper::after {
	content: "";
	position: absolute;
	inset: 45px;
	border-radius: 50%;
	/* border: 1px solid rgba(255, 255, 255, 0.4); */
	box-shadow:
		0 0 15px #ffd700,
		0 0 30px rgba(255, 69, 0, 0.5),
		inset 0 0 15px #ffd700;
	animation: pulse-halo 3s ease-in-out infinite;
}

.swami-image-wrapper img {
	position: relative;
	z-index: 10;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	object-fit: cover;
	border: 8px solid rgba(255, 255, 255, 0.9);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 215, 0, 0.5);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes rotate-divine {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse-halo {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.8;
		border-width: 1px;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
		border-width: 3px;
		filter: brightness(1.3);
	}
}

.swami-image-wrapper img:hover {
	filter: brightness(1.1);
	transition: filter 0.3s ease;
}


.designation {
	font-size: 0.9rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}


.lead-text {
	font-size: 1.2rem !important;
	color: var(--text) !important;
	font-family: var(--font-serif);
}


/* Mobile Responsiveness */
@media (max-width: 850px) {
	.swami-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.swami-profile {
		position: static;
		border-bottom: 1px solid #f3e8d9;
		padding-bottom: 40px;
	}
}

/* ===========> Footer section start  <===========*/
.premium-footer {
	background: var(--bg);
	color: var(--text);
	padding: 100px 40px 40px;
	font-family: "Inter", system-ui, sans-serif;
	border-top: 1px solid var(--border);
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.footer-brand {
	flex: 1;
	min-width: 300px;
}

.footer-brand h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 24px 0;
	letter-spacing: -0.5px;
	line-height: 1.1;
	text-transform: uppercase;
}

.address-box {
	font-style: normal;
	font-size: 14px;
	line-height: 1.8;
	color: var(--muted);
	border-left: 2px solid var(--accent);
	padding-left: 20px;
}

.footer-links-area {
	flex: 2;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 40px;
}

.link-group h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	color: var(--accent);
}

.link-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.link-group li {
	margin-bottom: 12px;
}

.link-group a {
	text-decoration: none;
	color: var(--text);
	font-size: 15px;
	font-weight: 500;
	transition: color 0.2s;
}

.link-group a:hover {
	color: var(--accent);
}

.contact-strip {
	width: 100%;
	margin-top: 10px;
	padding: 30px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.contact-item {
	display: flex;
	flex-direction: column;
}

.contact-item label {
	font-size: 10px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 5px;
	letter-spacing: 1px;
}

.contact-item a,
.contact-item span {
	font-weight: 600;
	text-decoration: none;
	color: var(--text);
	font-size: 15px;
}

/* SOCIAL ICONS */
.social-icons {
	display: flex;
	gap: 15px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--text);
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--text);
	color: var(--bg);
	border-color: var(--text);
}

.social-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* BOTTOM LEGAL */
.footer-legal {
	margin-top: 40px;
	display: flex;
	padding: 0px 10px;
	justify-content: space-between;
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.footer-legal a {
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
}

@media (max-width: 900px) {
	.contact-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.footer-legal {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}

/* ===========> Event overlay banner stating   <===========*/

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	backdrop-filter: blur(5px);
}


#healthCampModal {
	display: none;
}

.modal-content {
	background: #fffdf9;
	width: 80%;
	max-width: 500px;
	padding: 30px 20px;
	border-radius: 20px;
	position: relative;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
	color: #888;
}

.announcement-tag {
	color: #d4af37;
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 12px;
}

.modal-body h2 {
	color: #2c3e50;
	margin: 10px 0;
	font-size: 28px;
}

.trust-name {
	color: #7f8c8d;
	line-height: 1.2;
	margin-bottom: 20px;
}

.event-details {
	background: #f9f6f0;
	padding: 15px;
	border-radius: 10px;
	margin: 10px 0;
	text-align: left;
}

.detail-item {
	margin-bottom: 5px;
	font-size: 14px;
}

.service-list {
	list-style: none;
	padding: 0;
	margin-bottom: 5px;
	text-align: left;
	display: inline-block;
}

.service-list li {
	font-size: 15px;
	margin-bottom: 8px;
	color: #444;
}

.modal-overlay blockquote {
	font-style: italic;
	color: var(--text);
	font-size: 14px;
	border: none;
	margin: 10px 0;
}

.modal-overlay blockquote span {
	display: block;
	margin-top: 5px;
	font-weight: bold;
}

.download-btn {
	display: inline-block;
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

.download-btn:hover {
	transform: translateY(-3px);
	color: white;
}

@keyframes rotate-shimmer {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}


/* ===========> spiritual-legacy staring   <===========*/

.spiritual-legacy {
	padding: 60px 0;
	color: #333;
}

/* Header Styling */
.legacy-header {
	display: flex;
	align-items: flex-end;
	gap: 50px;
	margin-bottom: 80px;
}

.swami-image-container {
	position: relative;
	flex: 0 0 350px;
}

.swami-image-container img {
	width: 100%;
	border-radius: 30px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.siddhi-badge {
	position: absolute;
	top: -20px;
	right: -20px;
	background: #b8926a;
	color: white;
	padding: 15px 25px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 10px 20px rgba(184, 146, 106, 0.3);
}

.swami-intro h1 {
	font-size: 4rem;
	margin: 10px 0;
	line-height: 1;
}

.title-label {
	color: #b8926a;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.alias {
	font-size: 1.4rem;
	font-style: italic;
	color: #888;
}

/* Content Grid */
.legacy-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.bio-item {
	margin-bottom: 50px;
	position: relative;
}

.bio-number {
	font-size: 4rem;
	font-weight: 900;
	color: #f1f1f1;
	position: absolute;
	top: -20px;
	left: -10px;
	z-index: -1;
}

.bio-item h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #b8926a;
}

.bio-item p {
	line-height: 1.8;
	font-size: 1.1rem;
	color: #555;
}

.featured blockquote {
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	.legacy-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.swami-intro h1 {
		font-size: 2.8rem;
	}

	.legacy-content {
		grid-template-columns: 1fr;
	}

	.swami-image-container {
		flex: none;
		width: 100%;
		max-width: 350px;
	}
}

/* ===========> Event IMpact   <===========*/
.event-impact {
	padding: 60px 0;
}

.event-header {
	max-width: 900px;
	margin: 0 auto 60px;
}

.event-date {
	background: #b8926a;
	color: #fff;
	padding: 5px 20px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1px;
}

.event-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin: 25px 0;
	color: #1a1a1a;
}

.event-intro {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #666;
}

.impact-grid {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.impact-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.impact-item:nth-child(even) {
	direction: rtl;
}

.impact-item:nth-child(even) .impact-details {
	direction: ltr;
}

.impact-image {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.impact-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.impact-item:hover .impact-image img {
	transform: scale(1.05);
}

.impact-stats {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(26, 26, 26, 0.9);
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.9rem;
}

.impact-details h3 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	margin-bottom: 20px;
	color: #b8926a;
}

.impact-details p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 25px;
}


/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
	.impact-item {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.impact-item:nth-child(even) {
		direction: ltr;
	}

	.impact-image img {
		height: 300px;
	}

	.event-header h2 {
		font-size: 2rem;
	}
}