/*

Tooplate 2143 Inner Peace

https://www.tooplate.com/view/2143-inner-peace

Free HTML CSS Template

*/


@charset "utf-8";
/* CSS Document */

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

:root {
	--primary: #2D5A87;
	--secondary: #4A7C8A;
	--accent: #6B9B7A;
	--light: #F7F7F7;
	--dark: #2A2A3E;
	--gradient-1: linear-gradient(135deg, #2D5A87 0%, #4A7C8A 100%);
	--gradient-2: linear-gradient(135deg, #f1e5ac 0%, #4a90e2 100%);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background: var(--light);
	overflow-x: hidden;
}

/* Geometric Background Pattern */
.geometric-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.03;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(107, 91, 149, 0.1) 35px, rgba(107, 91, 149, 0.1) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(136, 176, 211, 0.1) 35px, rgba(136, 176, 211, 0.1) 70px);
}

img {
    max-width: 100%;
}
/* Header */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 5% 1px;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
}

@media (max-width: 1000px) and (min-width: 769px) {
	nav {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem 5%;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}
}

/* Logo SVG */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo svg {
	width: 40px;
	height: 40px;
}
a.logo img {
    height: 105px;
}
.logo-text {
	font-size: 1.8rem;
	font-weight: bold;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
@media (max-width: 768px) {
	a.logo img {
		width: 250px;
		height: auto;
	}
}


.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	border: 1px solid transparent;
}

.nav-links a:hover {
	color: var(--primary);
	background: rgba(45, 90, 135, 0.05);
	border-color: rgba(45, 90, 135, 0.2);
}

.nav-links a.active {
	color: white;
	background: linear-gradient(135deg, #4a90e2 0%, #F1E5AC 100%);
	border-color: #4a90e2;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--dark);
	transition: all 0.3s ease;
	border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section with Enhanced Animated Background */
#hero {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-2);
	position: relative;
	margin-top: 106px;
	overflow: hidden;
}

/* Central Light Core */
#hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	z-index: 0;
}

/* Connecting Lines and Dots Background */
.network-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
}

.network-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	height: 1px;
	transform-origin: left center;
}

.network-line:nth-child(1) {
	width: 200px;
	top: 20%;
	left: 10%;
	transform: rotate(25deg);
	animation: pulseLine 4s ease-in-out infinite;
}

.network-line:nth-child(2) {
	width: 150px;
	top: 40%;
	right: 20%;
	transform: rotate(-45deg);
	animation: pulseLine 4s ease-in-out infinite 1s;
}

.network-line:nth-child(3) {
	width: 180px;
	bottom: 30%;
	left: 30%;
	transform: rotate(60deg);
	animation: pulseLine 4s ease-in-out infinite 2s;
}

.network-line:nth-child(4) {
	width: 220px;
	top: 60%;
	right: 15%;
	transform: rotate(-20deg);
	animation: pulseLine 4s ease-in-out infinite 3s;
}

.network-line:nth-child(5) {
	width: 160px;
	bottom: 20%;
	right: 35%;
	transform: rotate(40deg);
	animation: pulseLine 4s ease-in-out infinite 1.5s;
}

@keyframes pulseLine {

	0%,
	100% {
		opacity: 0.1;
		transform: scaleX(0.8) rotate(var(--rotation));
	}

	50% {
		opacity: 0.5;
		transform: scaleX(1) rotate(var(--rotation));
	}
}

.network-dot {
	position: absolute;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.network-dot:nth-child(6) {
	top: 20%;
	left: 10%;
	animation: dotPulse 3s ease-in-out infinite;
}

.network-dot:nth-child(7) {
	top: 40%;
	right: 20%;
	animation: dotPulse 3s ease-in-out infinite 0.5s;
}

.network-dot:nth-child(8) {
	bottom: 30%;
	left: 30%;
	animation: dotPulse 3s ease-in-out infinite 1s;
}

.network-dot:nth-child(9) {
	top: 60%;
	right: 15%;
	animation: dotPulse 3s ease-in-out infinite 1.5s;
}

.network-dot:nth-child(10) {
	bottom: 20%;
	right: 35%;
	animation: dotPulse 3s ease-in-out infinite 2s;
}

.network-dot:nth-child(11) {
	top: 35%;
	left: 25%;
	animation: dotPulse 3s ease-in-out infinite 2.5s;
}

.network-dot:nth-child(12) {
	bottom: 40%;
	right: 25%;
	animation: dotPulse 3s ease-in-out infinite 0.8s;
}

.network-dot:nth-child(13) {
	top: 15%;
	left: 60%;
	animation: dotPulse 3s ease-in-out infinite 1.2s;
}

.network-dot:nth-child(14) {
	bottom: 50%;
	left: 15%;
	animation: dotPulse 3s ease-in-out infinite 2.8s;
}

.network-dot:nth-child(15) {
	top: 70%;
	left: 45%;
	animation: dotPulse 3s ease-in-out infinite 0.3s;
}

.network-dot:nth-child(16) {
	top: 25%;
	right: 40%;
	animation: dotPulse 3s ease-in-out infinite 1.8s;
}

.network-dot:nth-child(17) {
	bottom: 15%;
	left: 55%;
	animation: dotPulse 3s ease-in-out infinite 2.3s;
}

@keyframes dotPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.4;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

/* Inner Peace Animated Background */
.peace-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.breathing-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: breathe 8s ease-in-out infinite;
}

.breathing-circle:nth-child(1) {
	width: 300px;
	height: 300px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.breathing-circle:nth-child(2) {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.breathing-circle:nth-child(3) {
	width: 250px;
	height: 250px;
	bottom: 20%;
	left: 30%;
	animation-delay: 4s;
}

.breathing-circle:nth-child(4) {
	width: 180px;
	height: 180px;
	top: 30%;
	right: 25%;
	animation-delay: 6s;
}

@keyframes breathe {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.3;
	}

	25% {
		transform: scale(1.2) translate(-10px, -10px);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.4) translate(10px, -20px);
		opacity: 0.3;
	}

	75% {
		transform: scale(1.1) translate(-5px, 10px);
		opacity: 0.4;
	}
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
}

.zen-stone {
	position: absolute;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
	border-radius: 50%;
	animation: float 15s ease-in-out infinite;
}

.zen-stone:nth-child(1) {
	top: 20%;
	left: 5%;
	animation-delay: 0s;
}

.zen-stone:nth-child(2) {
	top: 70%;
	right: 10%;
	animation-delay: 5s;
}

.zen-stone:nth-child(3) {
	bottom: 30%;
	left: 50%;
	animation-delay: 10s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	33% {
		transform: translateY(-30px) translateX(20px) rotate(120deg);
	}

	66% {
		transform: translateY(20px) translateX(-20px) rotate(240deg);
	}
}

.mandala-bg {
	position: absolute;
	width: 500px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
}

.mandala-circle {
	position: absolute;
	border: 2px solid white;
	border-radius: 50%;
	animation: rotate 60s linear infinite;
}

.mandala-circle:nth-child(1) {
	width: 100%;
	height: 100%;
	animation-duration: 60s;
}

.mandala-circle:nth-child(2) {
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
	animation-duration: 50s;
	animation-direction: reverse;
}

.mandala-circle:nth-child(3) {
	width: 60%;
	height: 60%;
	top: 20%;
	left: 20%;
	animation-duration: 40s;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.hero-content {
	text-align: center;
	z-index: 1;
	padding: 2rem;
	max-width: 800px;
	position: relative;
	text-shadow: 2px 2px 8px #000;
}

.hero-content h1 {
	font-size: 3.5rem;
	color: white;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
	text-align: center;
	text-shadow: 2px 2px 8px #000;
}

.hero-content p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.hero-content p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: white;
	color: var(--primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-shadow: none;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgb(247 236 236);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* About Section - Complete Redesign */
#about {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2f3334;
    text-align: center;
}

.section-subtitle {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	color: #666;
	font-size: 1.1rem;
}

/* Floating Cards Design */
.about-floating-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.floating-card {
	background: white;
	border-radius: 25px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.floating-card:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.floating-card:hover::before {
	opacity: 0.05;
}

.card-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	position: relative;
}

.icon-wrapper {
	width: 100%;
	height: 100%;
	background: var(--gradient-2);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	animation: morphShape 8s ease-in-out infinite;
	box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg);
	}

	25% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(90deg);
	}

	50% {
		border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
		transform: rotate(180deg);
	}

	75% {
		border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
		transform: rotate(270deg);
	}
}

.floating-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--dark);
}

.floating-card p {
	color: #666;
	line-height: 1.6;
}

/* Stats Banner */
.stats-banner {
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	border-radius: 30px;
	padding: 3rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 4rem;
	position: relative;
	overflow: hidden;
}

.stats-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 10px,
			rgba(255, 255, 255, 0.05) 10px,
			rgba(255, 255, 255, 0.05) 20px);
	animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(50px, 50px);
	}
}

.stat-block {
	text-align: center;
	position: relative;
	z-index: 1;
}

.stat-value {
	font-size: 3rem;
	font-weight: bold;
	color: white;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-desc {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	margin-top: 0.5rem;
}

/* Feature Showcase */
.feature-showcase {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem;
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.03) 0%, rgba(74, 124, 138, 0.03) 100%);
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.feature-showcase::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 20px,
			rgba(45, 90, 135, 0.02) 20px,
			rgba(45, 90, 135, 0.02) 40px);
	animation: slidePattern 30s linear infinite;
}

.showcase-content h3 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	position: relative;
	z-index: 1;
}

.feature-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 20px;
	transition: all 0.4s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.feature-list li::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(241, 229, 172, 0.2), transparent);
	transition: left 0.5s ease;
}

.feature-list li:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	background: linear-gradient(135deg, rgba(241, 229, 172, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.feature-list li:hover::before {
	left: 100%;
}

.feature-check {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	flex-shrink: 0;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
	transform: scale(1.1) rotate(360deg);
	box-shadow: 0 5px 15px rgba(241, 229, 172, 0.4);
}

/* Practices Section - Futuristic Timeline Design */
#practices {
	background: linear-gradient(69deg, #ffffff 0%, #a3d6e5 100%);
	padding: 5rem 5%;
}

.practices-container {
	max-width: 1200px;
	margin: 0 auto;
}

.practice-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 1rem;
	margin-top: 3rem;
}

/* Futuristic Left Timeline */
.timeline-track {
	position: relative;
	padding: 2rem 0;
}

.timeline-progress {
	position: absolute;
	left: 50%;
	top: 2rem;
	bottom: 2rem;
	width: 2px;
	background: rgba(107, 91, 149, 0.1);
	transform: translateX(-50%);
}

.timeline-progress::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--gradient-1);
	animation: fillTimeline 3s ease forwards;
}

@keyframes fillTimeline {
	to {
		height: 100%;
	}
}

.timeline-points {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.timeline-point {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.futuristic-label {
	position: relative;
	padding: 1rem 2rem;
	background: white;
	border-radius: 50px;
	font-weight: 600;
	color: var(--dark);
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	z-index: 5;
	min-width: 200px;
	text-align: center;
}

.futuristic-label::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.futuristic-label::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.timeline-point:hover .futuristic-label,
.timeline-point.active .futuristic-label {
	animation: zoomPulse 0.6s ease-in-out;
}

@keyframes zoomPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

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


.timeline-point:hover .timeline-indicator,
.timeline-point.active .timeline-indicator {
	transform: translateX(-50%) scale(1.3);
	background: var(--primary);
	box-shadow: 0 0 15px rgba(45, 90, 135, 0.6);
}

.label-text {
	position: relative;
	z-index: 2;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

/* Glowing dot indicator */
.timeline-indicator {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 50%;
	z-index: 2;
}

.timeline-point.active .timeline-indicator {
	background: var(--primary);
	box-shadow: 0 0 20px rgba(107, 91, 149, 0.5);
}

/* Right Content Area */
.practice-content-area {
	display: grid;
	gap: 2rem;
}

.practice-card-new {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.practice-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--gradient-1);
}

.practice-card-new:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.practice-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.practice-icon-new {
	width: 60px;
	height: 60px;
	background: var(--gradient-2);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.practice-info h3 {
	font-size: 30px;
	color: var(--dark);
	margin-bottom: 0.3rem;
	font-weight: 700;
}

.practice-duration {
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 500;
}

.practice-description {
	color: #0a3948;
	line-height: 27px;
	margin-bottom: 1.5rem;
	font-size: 20px;
	font-weight: 600;
}

.practice-benefits {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.benefit-tag {
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.1) 0%, rgba(74, 124, 138, 0.1) 100%);
	border-radius: 20px;
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.benefit-tag:hover {
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Resources Section - New Structure */
#resources {
	padding: 5rem 5%;
	/* max-width: 1200px; */
	margin: 0 auto;
	background: #ede9e1;
	width: 100%;
}

.resource-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.tab-btn {
	padding: 0.8rem 2rem;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 25px;
	color: var(--primary);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
	background: var(--gradient-1);
	color: white;
	border-color: transparent;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.resource-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.resource-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgb(0 0 0 / 54%);
	transition: all 0.3s ease;
	height: 97%;
}

.resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.resource-image {
	height: 200px;
	background: var(--gradient-2);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.resource-thumbnail {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	color: transparent;
	position: relative;
	z-index: 1;
}

/* Real thumbnail images */
.morning-meditation {
	background-image: url('images/unsplash-mountain-cloud.avif');
}

.stress-relief {
	background-image: url('images/unsplash-blue-lakeside.avif');
}

.sleep-meditation {
	background-image: url('images/unsplash-mountain-top.avif');
}

.mbsr-course {
	background-image: url('images/unsplash-library-bookshelf.avif');
}

.leadership-course {
	background-image: url('images/unsplash-people-meeting-room.avif');
}

.beginner-course {
	background-image: url('images/unsplash-yoga-session.avif');
}

.timer-tool {
	background-image: url('images/unsplash-meditation-timer.avif');
}

.mood-tracker {
	background-image: url('images/unsplash-mood-tracker.avif');
}

.breathing-tool {
	background-image: url('images/unsplash-breathing-exercise.avif');
}

.resource-image::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 10px,
			rgba(255, 255, 255, 0.1) 10px,
			rgba(255, 255, 255, 0.1) 20px);
	animation: slide 20s linear infinite;
}

@keyframes slide {
	0% {
		transform: translate(-50%, -50%);
	}

	100% {
		transform: translate(0, 0);
	}
}

.resource-body {
	min-height: 200px;
    padding-bottom: 80px;
}
.resource-body h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    min-height: 70px;
    border-bottom: 5px solid #239fd9;
    padding: 0 10px;
    margin-top: 20px;
}
.resource-body p {
    text-align: center;
    display: block;
    min-height: 80px;
    padding: 10px;
}
.resource-body a {
    float: right;
    border: 1px solid;
    padding: 5px 20px;
    text-decoration: none;
    border-radius: 10px;
    color: #239fd9;
    margin-right: 20px;
}

.resource-body a {
    float: right;
    border: 1px solid;
    padding: 5px 20px;
    text-decoration: none;
}
.resource-body a:hover {
    color: #7ed1e4;
}
section#resources .btn-read-more {
    width: 300px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    background-color: #fff9ec;
}
/* Contact Section - Two Columns */
#contact {
	background-color: #f9f9f9;
	padding: 5rem 5%;
	color: white;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-container h2 {
	color: #2f3334;
	margin-bottom: 3rem;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	background: rgba(255, 255, 255, 0.95);
	/*! padding: 3rem; */
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
	padding: 2rem;
}

.contact-info h3 {
	color: var(--primary);
	margin-bottom: 2rem;
	font-size: 1.8rem;
	text-align: left;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: var(--dark);
	padding: 1rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(45, 90, 135, 0.1), transparent);
	transition: left 0.5s ease;
}

.info-item:hover {
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.05) 0%, rgba(74, 124, 138, 0.05) 100%);
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(45, 90, 135, 0.1);
}

.info-item:hover::before {
	left: 100%;
}

.info-item:hover .info-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(45, 90, 135, 0.3);
}

.info-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.info-text h4 {
	margin-bottom: 0.25rem;
	color: var(--primary);
}

.info-text p {
	color: #666;
	font-size: 18px;
}
.info-item a {
    color: #239fd9;
    text-decoration: none;
}
.info-item a:hover {
    color: #65c288;
}


.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: var(--gradient-1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px);
	color: #e5dfb0;
	box-shadow: 0px 0px 8px #4c4c49;
}

.contact-form {
	padding: 2rem;
}
.contact-form p {
	margin-bottom: 0px;
}
.form-group {
	margin-bottom: 10px;
}
.form-group p{
	margin-bottom: 0;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--dark);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 95%;
	padding: 1rem;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: white;
	transition: all 0.3s ease;
	font-family: inherit;
	color: var(--dark);
}
.form-group textarea {
    height: 150px;
}
.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
}

.submit-btn {
	background: var(--gradient-1);
	color: white;
	padding: 1rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 95%;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.wpcf7 form .wpcf7-response-output {
    padding: 5px;
    margin: 0;
    color: #000;
}
/* Footer */
footer {
	background: var(--dark);
	color: white;
	padding: 2rem 5%;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
}

.copyright {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(255, 255, 255, 0.98);
		flex-direction: column;
		align-items: center;
		justify-content: start;
		padding-top: 3rem;
		transition: right 0.3s ease;
		gap: 1rem;
		z-index: 999;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		width: 80%;
	}

	.nav-links a {
		width: 100%;
		text-align: center;
		padding: 1rem;
		margin: 0;
		display: block;
		box-sizing: border-box;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.mandala-bg {
		width: 300px;
		height: 300px;
	}

	.about-content,
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

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

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

	.journey-path {
		flex-direction: column;
		gap: 2rem;
	}

	.journey-path::before {
		display: none;
	}

	.practice-layout {
		grid-template-columns: 1fr;
	}

	.timeline-track {
		display: none;
	}

	.practice-content-area {
		gap: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.stats-counter {
		grid-template-columns: 1fr;
	}

	.stat-item::after {
		display: none;
	}

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

	.resource-tabs {
		flex-direction: column;
	}

	.tab-btn {
		width: 100%;
	}
}
.banner-img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}
.banner-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
}
.banner-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000001c;
    width: 100%;
    height: 100%;
}
section.about {
    margin: 40px 0;
}
section.about a.btn-read-more {
    display: inline-block;
}
.abt-img {
    padding: 0 10px;
}
.abt-img img {
    width: 100%;
    border: 2px solid #e0e0e0;
    padding: 6px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}
section.about h3 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2f3334;
}
section.about p {
    font-size: 20px;
    line-height: 30px;
	margin: 10px 0;
}
a.btn-read-more {
    border: 1px solid;
    padding: 10px 20px;
    color: #0c7871;
    text-decoration: none;
    border-radius: 10px;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-shadow: none;
}
a.btn-read-more:hover {
  transform: translateY(-3px);
  background-color: #fefeff;
  box-shadow: 0 15px 40px rgb(247 236 236);
} 
section.donation {
    background: linear-gradient(135deg, #284652 0%, #ffb6c1 100%);
    padding: 5rem 5%;
    color: white;
}
section.donation .sub-title{
	display: block;
    font-size: 20px;
    line-height: 1;
    color: var(--tc-theme-primary);
    margin-bottom: 12px;
    font-weight: 400;
    padding-left: 40px;
    position: relative;
}
section.donation .sub-title::before{
    content: "";
    width: 33px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
}
section.donation .section-title {
    color: #fff;
    text-align: left;
    margin: 30px 0 50px 0;
}
section.donation p {
    font-size: 20px;
}
section.donation a.btn-read-more {
    color: #fff;
    margin-top: 30px;
    display: inline-block;
}
section.donation a.btn-read-more:hover {
	box-shadow: 2px 2px 8px #CCC;
	color: #000;
}
img.img-donation {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 6px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}
.img-text-box {
    padding-left: 20px;
    position: relative;
}
.img-text-box .text-box {
    position: absolute;
    bottom: 10%;
    width: 300px;
    left: 10%;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    padding: 10px 20px;
    display: flex;
}
.img-text-box .text-box h3{
	color: #126d8d;
    text-align: center;
    font-family: Halant;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding: 0 20px;
}
.img-text-box .text-box p{
	color: #000;
    font-family: Sora;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-left: 20px;
    position: relative;
    margin-bottom: 0;
}
.img-text-box .text-box p::before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 57px;
    background-color: goldenrod;
}
.copyright {
  border-top: 1px solid #C2C8CD;
}
.ipsr p, .ipsr a {
	font-size: 8px !important;
	padding: 0px;
	margin: 0;
	color: #fff;
	text-decoration: none;
}
.ipsr img {
  height: 25px;
  margin: 0;
  border-radius: 0;
}
.bg-breadcrumb {
    margin-top: 75px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-breadcrumb h3 {
    text-shadow: 2px 2px 8px #000;
    font-weight: 600;
    font-size: 53px;
}
ol.breadcrumb {
    background-color: #433a3ab8;
    padding: 10px 30px;
    border-radius: 10px;
    max-width: 100%;
    display: inline-block;
    text-align: center;
}
ol.breadcrumb li {
    float: left;
}
li.breadcrumb-item a {
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: #1fa7de;
}
li.breadcrumb-item a:hover {
    color: #85c89d;
}

blockquote {
    margin: 20px 0;
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-left: 8px solid #3498db; /* Blue accent */
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
}
.quote-card {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    font-size: 1.1rem;
    color: #333;
}

.quote-card::before {
    content: "\201C"; /* Left Double Quote Unicode */
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: #e1e1e1;
    font-family: serif;
    z-index: 0;
}

.quote-card p {
    position: relative;
    z-index: 1;
}
.gradient-quote {
    padding: 1.5rem;
    background: #fff;
    border-left: 5px solid;
    /* Use border-image for a gradient effect */
    border-image: linear-gradient(to bottom, #6a11cb 0%, #2575fc 100%) 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}
section.sub-page-content {
    margin: 40px 0;
}
section.directors {
    background: linear-gradient(180deg, #D4D3BF 0%, #ffffff  100%);
    padding: 40px 0;
}
.director-card {
	text-align: center;
	padding: 30px;
	box-shadow: 0px 0px 8px #D4D3BF;
	border-radius: 10px;
	height: 97%;
	padding-bottom: 40px;
	display: inline-block;
	background-color: #fff;
}
.director-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
	height: 250px;
    border: 2px solid #e0e0e0;
    padding: 6px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}
.director-card h3 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
    color: #18495b;
}
.director-card a {
    float: right;
    border: 1px solid;
    padding: 5px 20px;
    text-decoration: none;
}
.director-card a:hover {
    color: #7ed1e4;
}
.director-card .quote-card {
    position: relative;
    padding-left: 35px;
    background: #ffffff;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #333;
    text-align: left;
    font-style: italic;
    padding-top: 8px;
	box-shadow: none;
    border: 0;
	padding-right: 0;
    padding-bottom: 0;
}
.director-card .quote-card::before {
    content: "\201C";
    position: absolute;
    top: -27px;
    left: -9px;
    font-size: 4rem;
    color: #547885;
    font-family: serif;
    z-index: 0;
}

.director-card.featured {
    background-color: #0c3a49;
}
.director-card.featured h3 {
    color: #fff;
    font-size: 25px;
}
.director-card.featured p.quote-card {
    background-color: #0c3a49;
    color: #fff;
}
.director-card.featured .quote-card::before{
	color: #fff;
}
.director-card.featured a{
	color: #7ed1e4;
}
.director-card.featured a:hover{
	color: #ffffff;
}
.floating_social_links {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 60px;
    z-index: 999999;
}
.floating_social_links img {
    /* width: 50px; */
    margin: 1px 0;
    float: right;
    margin-right: 3px;
    cursor: pointer;
}

/* custom nav */
/* ======================================================================= */
nav.custom-nav {
    display: flex;
    justify-content: end;
    /* background-color: var(--primary); */
    padding: 5px 0px !important;
}
.custom-nav a {
    font-size: 15px;
    color: var(--dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    text-decoration: none;
}
.custom-nav a:hover{
	color: #239ed7;
}

.custom-nav .submenu {
    position: absolute;
    display: block;
    background: #fff;
    z-index: 9;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    top: 60px;
    opacity: 0;
    pointer-events: none;
    /* top: 35px; */
    padding: 10px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    min-width: 160px;
}

.custom-nav .navbar {
    gap: 30px;
}

.custom-nav .navbar li {
    position: relative;
    list-style: none;
}

.custom-nav .submenu.open {
    opacity: 1;
    top: 35px;
    pointer-events: all;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .submenu .submenu {
    left: 100%;
    /* right: 100%; */
    top: 0;
}

.custom-nav .navbar .has-child>a::after {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.custom-nav .navbar .has-child:hover::after {
    color: var(--primary) !important;
}

/* .custom-nav .navbar a {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
} */

.custom-nav .navbar .submenu a {
    padding: 7px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-size: 14px;
	border-bottom: 1px dotted #2D5A87;
}




nav.custom-nav .navbar>li:nth-last-child(-n+2) .submenu {
    left: auto;
    right: 0;
}

.mainNav-btn {
    display: none;
}


.mainNav-btn {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: none;
    margin-right: 10px;
    color: #fff;
    outline: none;
    padding: 0 !important;
}


.menu-overlay {
    display: none;
}

.menu-overlay {
    display: block;
    width: 0%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 0;
}

.menu-open .menu-overlay {
    width: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 1;
}


.submenu a {
    color: var(--dark) !important;
}

/************************ Menu ************************/
/* responsive menu */
/* @media (max-width: 576px) {}

@media (max-width: 768px) {}

@media (max-width: 992px) {}

@media (max-width: 1200px) {} */
@media (min-width: 992px) {
  .custom-nav .submenu .submenu {
    left: auto;
    right: 100% !important;
    top: 0;
}
}
@media (max-width: 992px) {
    .menu{
        display: flex;
    }
    #mainNav {
        background: var(--primary);
        position: fixed;
		display: block;
    }
    body.menu-open{
      overflow: hidden;
    }
    .custom-nav.open {
        left: 0;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
    }

    .custom-nav {
        width: 100%;
        max-width: 300px;
        height: 100vh;
        position: absolute;
        left: -350px;
        top: 0;
        overflow: scroll;
        z-index: 99999;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
    }

    .custom-nav a {
        font-weight: 400 !important;
        color: #fff !important;
    }

    .custom-nav .navbar {
        display: block;
        float: initial;
        margin-top: 30px;
        width: 100%;
		padding-left: 0;
    }

    .custom-nav .navbar a {
        padding: 10px 30px;
    }

    .custom-nav .submenu {
        position: inherit !important;
        height: 0;
        padding: 0 0;
        top: initial;
        top: 0 !important;
        width: 100% !important;
        background: #fff !important;
        box-shadow: none;
        margin: initial !important;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
    }
    /* .custom-nav .submenu .submenu {
      left: 100% !important;
    } */
    .custom-nav .submenu a {
        color: var(--dark) !important;
        padding: 5px 15px;
        white-space: initial !important;
    }

    .custom-nav .submenu.open {
        height: fit-content;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
    }

    .topNav-btn,
    .mainNav-btn {
        display: block;
    }

    .custom-nav .submenu .submenu {
        left: initial !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }
	
	.info-text h4{
		font-size: 18px;
	}
	.info-text p{
		font-size: 15px;
	}
}

.donation-box {
    margin: 30px 0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px #ede9e9;
    background: linear-gradient(135deg, #c3dce7, #dcffe9, #ffffff);
}
.inner-content ul li {
    margin-bottom: 20px;
    line-height: 30px;
}
.inner-content img {
  border: 2px solid #e0e0e0;
  padding: 6px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}

/* Container for Vision, Mission, Why */
.vmw-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

/* Individual columns */
.vmw-card {
    background: #ffffff;
    padding: 25px 22px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: center;

    /* Equal height */
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2b7496, #056581, #d2c1c1);
    text-shadow: 2px 2px 8px #000;
}

/* Hover effect */
.vmw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Headings */
.vmw-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

/* Content text */
.vmw-card p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    /* font-weight: 700; */
    color: #fff;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .vmw-section {
        grid-template-columns: 1fr;
    }
}