html,
body {
	width: 100%;
	overflow-x: hidden;
}

:root {
	--saffron: #f97316;
	--blue: #1e3a8a;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: system-ui, sans-serif;
	background: #faf8f2;
	color: #222;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);

    padding: 15px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
	font-size: 1.2rem;
	font-weight: 700;
	color: #6b4f2a;
	text-decoration:none;
    cursor:pointer;
}
.logo:hover{
    color:var(--saffron);
}
.nav-links {
	display: flex;
	gap: 12px;

	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	display: block;

	padding: 10px 18px;

	border-radius: 999px;

	background: #fff7ec;
	border: 1px solid #ffd7a3;

	color: #6b4f2a;
	text-decoration: none;
	font-weight: 600;

	transition: .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
	background: linear-gradient(135deg,
			#ff9933,
			#f97316);

	color: white;

	transform: translateY(-2px);
}

.hero {
	padding-top:100px;
	padding-bottom:40px;

	background:
		linear-gradient(rgba(10, 10, 10, 0.40),
			rgba(10, 10, 10, 0.50)),
		url('../images/krishna-arjuna.jpg');

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	display: flex;
	align-items: flex-start;
	margin-top: 40px;
	justify-content: center;

	text-align: center;
	color: white;

	position: relative;
	overflow: hidden;
}
#pillars,
#focus-areas,
#teacher,
#benefits,
#gallery,
#feedback{
    scroll-margin-top:100px;
}
/* Decorative Golden Glow */
.hero::before {
	content: "";

	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle at top center,
			rgba(255, 193, 7, 0.18),
			transparent 45%);

	pointer-events: none;
}

/* Hero Card */
.hero-content {
	position: relative;
	z-index: 2;

	background: rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	padding: 60px;
	border-radius: 28px;

	max-width: 850px;
	width: 90%;

	border: 1px solid rgba(255, 255, 255, 0.15);

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Sanskrit Badge */
.hero-badge {
	display: inline-block;

	background: rgba(255, 153, 51, 0.18);

	color: #ffd699;

	padding: 8px 18px;
	border-radius: 40px;

	font-size: .9rem;
	letter-spacing: 1px;

	margin-bottom: 20px;

	border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
	font-size: 5rem;
	line-height: 1.1;
	margin: 0 0 20px;
	color: white;
}

.hero h2 {
	font-size: 2.2rem;
	line-height: 1.4;
	margin-bottom: 20px;
	color: #fff;
}

.hero p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);

	margin-bottom: 30px;
}

/* Button */
.hero .btn {
	background: linear-gradient(135deg,
			#ff9933,
			#f97316);

	padding: 15px 32px;
	border-radius: 50px;

	font-weight: 600;
	font-size: 1rem;

	transition: .3s;
}

.hero .btn:hover {
	transform: translateY(-3px);
	box-shadow:
		0 12px 25px rgba(249, 115, 22, .35);
}

/* Responsive */
@media(max-width:768px) {

	.hero-content {
		padding: 35px 25px;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.hero h2 {
		font-size: 1.5rem;
	}
}

/* =========================
   Teacher Section
========================= */

.teacher-card {
	max-width: 750px;
	margin: 0 auto;

	background: #fff;
	padding: 50px;

	border-radius: 24px;

	position: relative;
	overflow: hidden;

	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

	transition:
		transform .35s ease,
		box-shadow .35s ease;
}

/* Top Accent Line */
.teacher-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 5px;

	background: linear-gradient(90deg,
			#ff9933,
			#ffd166,
			#ff9933);
}

/* Om Watermark */
.teacher-card::after {
	content: "ॐ";

	position: absolute;
	right: 20px;
	bottom: -30px;

	font-size: 180px;
	font-weight: 700;
	line-height: 1;

	color: rgba(249, 115, 22, 0.05);

	pointer-events: none;
	user-select: none;
}

/* Hover Effect */
.teacher-card:hover {
	transform: translateY(-6px);

	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Badge */
.teacher-badge {
	display: inline-block;

	padding: 8px 18px;

	background: #fff3e0;
	color: #d97706;

	border-radius: 30px;

	font-size: .9rem;
	font-weight: 600;

	margin-bottom: 18px;
}

/* Name */
.teacher-card h2 {
	margin: 0 0 10px;

	color: var(--blue);

	font-size: 2.3rem;
	font-weight: 700;

	letter-spacing: -0.5px;
}

/* Subtitle */
.teacher-tagline {
	color: #666;
	font-size: 1.1rem;

	margin-bottom: 25px;
}

/* Divider */
.teacher-divider{
    width:400px;
    height:4px;

    background:var(--saffron);

    border-radius:50px;

    margin-top:15px;
    margin-bottom:30px;
}

/* Profile Points */
.profile-points {
	list-style: none;
	padding: 0;
	margin: 0;
}

.profile-points li {
	padding: 14px 0;

	border-bottom: 1px solid #eee;

	color: #333;
	line-height: 1.6;
}

.profile-points li:last-child {
	border-bottom: none;
}

.profile-points li::before {
	content: "✦";

	color: var(--saffron);

	font-weight: bold;

	margin-right: 12px;
}

/* Mobile */
@media(max-width:768px) {

	.teacher-card {
		padding: 30px 25px;
	}

	.teacher-card h2 {
		font-size: 1.8rem;
	}

	.teacher-card::after {
		font-size: 120px;
		right: 10px;
		bottom: -15px;
	}
}

.profile-points {
	list-style: none;
	padding: 0;
	margin: 0;
}

.profile-points li {
	padding: 12px 0;
	font-size: 1.05rem;
	border-bottom: 1px solid #eee;
}

.profile-points li:last-child {
	border-bottom: none;
}

.profile-points li::before {
	content: "✦";
	color: #f97316;
	font-weight: bold;
	margin-right: 12px;
}

.btn {
	background: var(--saffron);
	padding: 14px 22px;
	color: white;
	text-decoration: none;
	border-radius: 10px;
}

.section {
	max-width: 1100px;
	margin: auto;
	padding: 80px 20px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.card {
	background: linear-gradient(135deg,
			#ffffff,
			#fff7ed);

	padding: 25px;
	border-radius: 18px;

	box-shadow:
		0 8px 25px rgba(0, 0, 0, .08);

	transition:
		transform .3s ease,
		box-shadow .3s ease,
		background .3s ease;

	border: 1px solid rgba(249, 115, 22, .15);

}

.card:hover {

	transform:
		translateY(-8px) scale(1.03);

	box-shadow:
		0 15px 35px rgba(249, 115, 22, .25);

	background:
		linear-gradient(135deg,
			#fff7ed,
			#ffedd5);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.gallery-item {
	background: white;
	padding: 10px;
	border-radius: 20px;
	overflow: hidden;

	box-shadow:
		0 10px 25px rgba(0, 0, 0, .08);

	transition: .35s;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow:
		0 18px 35px rgba(0, 0, 0, .15);
}

.gallery-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 15px;
	display: block;
}

.benefit-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;

	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

	transition: .35s;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.benefit-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.benefit-card h3 {
	color: var(--blue);
	margin: 20px 15px 10px;
}

.benefit-card p {
	padding: 0 15px 20px;
	color: #555;
}

.benefit-card {
	overflow: hidden;
}

.benefit-card img {
	transition: transform .5s ease;
}

.benefit-card:hover img {
	transform: scale(1.08);
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: .8s;
}

.reveal.active {
	opacity: 1;
	transform: none;
}

footer {
	background: #111;
	color: white;
	text-align: center;
	padding: 30px;
}

.guide-photo {
	width: 100%;
	height: 380px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	border-radius: 15px;
	margin-bottom: 20px;
}

.swamiji-photo {
	background-image: url('../images/guidance/swamiji.jpeg');
}

.gurudev-photo {
	background-image: url('../images/guidance/sadgurudev.jpeg');
}

#guidance .card {
	background: white;
	border-radius: 20px;

	overflow: hidden;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, .08);

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}

#guidance .card:hover {
	transform: translateY(-8px);

	box-shadow:
		0 20px 40px rgba(249, 115, 22, .20);
}

#guidance h3 {
	color: var(--blue);
	margin-bottom: 15px;
}

.section-subtitle {
	text-align: center;
	margin-bottom: 40px;
	color: #666;
}

#feedback h2 {
	margin-bottom: 15px;
}

#feedback p {
	margin-bottom: 30px;
	font-size: 1.1rem;
	color: #555;
}

#feedback .card {
	margin-top: 20px;
}

#feedback iframe {
	display: block;
	width: 100%;
	border: none;
	border-radius: 12px;
}

.feedback-form {
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.feedback-form iframe {
	display: block;
	width: 100%;
	border: none;
}

.whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #25D366;
	color: white;
	padding: 14px 22px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
	z-index: 999;
}

@media(max-width:768px) {

	.navbar {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

}

@media(max-width:768px) {

	.hero h1 {
		font-size: 3rem;
	}

	.hero h2 {
		font-size: 1.3rem;
	}

}

@media (max-width: 768px) {

	.benefits-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.benefit-card {
		max-width: 100%;
	}

	.benefit-image {
		height: 220px;
	}

}

/* =========================
   Mobile Fixes
========================= */

@media (max-width:768px) {

	.section {
		padding: 60px 20px;
	}

	/* Benefits */
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.benefit-card img {
		height: 220px;
	}

	/* Gallery */
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gallery-item {
		padding: 12px;
	}

	.gallery-item img {
		width: 100%;
		height: 280px;
		object-fit: cover;
		border-radius: 12px;
	}

	/* Teacher */
	.teacher-card {
		padding: 30px 20px;
	}

	.teacher-card h2 {
		font-size: 1.8rem;
	}

	/* Guidance Cards */
	.grid {
		grid-template-columns: 1fr;
	}

	.guide-photo {
		height: 280px;
	}

	/* WhatsApp Button */
	.whatsapp {
		right: 15px;
		bottom: 15px;
		padding: 12px 18px;
	}

}

@media(max-width:768px) {

	.navbar {
		padding: 15px;
	}

	.logo {
		text-align: center;
		width: 100%;

		font-size: 1.5rem;
		line-height: 1.3;

		white-space: normal;
		word-break: break-word;
	}

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

	.nav-links a {
		margin: 0;
		padding: 6px 10px;
	}
}

@media(max-width:768px) {

	.hero {
		min-height: 80vh;
	}

	.hero-content {
		padding: 30px 20px;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.hero h2 {
		font-size: 1.2rem;
		line-height: 1.5;
	}

	.hero p {
		font-size: 1rem;
	}

}

@media(max-width:768px) {

	.feedback-form iframe {
		height: 1100px;
	}

}

@media(max-width:768px) {

	.whatsapp-float {
		bottom: 20px;
		right: 15px;
	}

}

@media (max-width:768px) {

	header {
		padding: 15px 20px;
	}

	nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	nav ul li a {
		background: #fffaf3;

		border: 1px solid #e8c27a;

		color: #6b3f12;

		box-shadow: 0 4px 12px rgba(0, 0, 0, .06);

		border-radius: 30px;
		padding: 10px 20px;
	}

	nav ul li a:hover,
	nav ul li a.active {
		background: linear-gradient(135deg,
				#c98c2d,
				#e8c27a);

		color: white;
	}

}

@media (max-width:768px) {

	.navbar {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}

	.nav-links {
		justify-content: center;
		flex-wrap: wrap;
	}

	.logo {
		text-align: center;
	}

}

.guru-title {
	color: #1e3a8a;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.guru-name {
	color: #1e3a8a;
	font-size: 2rem;
	margin: 0;
	line-height: 1.3;
}

.map-container {
	margin: 25px 0;
	border-radius: 18px;
	overflow: hidden;

	box-shadow:
		0 10px 25px rgba(0, 0, 0, .08);
}

.map-container iframe {
	width: 100%;
	height: 350px;
	border: none;
	display: block;
}

/* ==========================
   5 PILLARS SECTION
========================== */

#pillars {
	background: #fffdf8;
}

.section-subtitle {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 40px;
	color: #555;
	line-height: 1.7;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.pillar-card {
	border-radius: 20px;
	padding: 28px 22px;
	text-align: center;
	transition: all .3s ease;
	border: 1px solid rgba(0, 0, 0, .05);
}

.pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.pillar-icon {
	font-size: 2.8rem;
	margin-bottom: 15px;
}

.pillar-card h3 {
	margin-bottom: 15px;
	color: #222;
}

.pillar-card p {
	font-size: .95rem;
	line-height: 1.7;
}

/* Colors */

.pillar-purple {
	background: #f4ecff;
}

.pillar-green {
	background: #ecfff2;
}

.pillar-gold {
	background: #fff7e3;
}

.pillar-pink {
	background: #fff0f5;
}

.pillar-blue {
	background: #edf5ff;
}

/* Tablet */

@media(max-width:1000px) {

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

/* Mobile */

@media(max-width:640px) {

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

	.pillar-card {
		text-align: left;
	}

	.pillar-icon {
		font-size: 2.2rem;
	}
}

/* ==========================
   KEY FOCUS AREAS
========================== */

#focus-areas {
	background: linear-gradient(180deg,
			#fffdf8 0%,
			#faf6ed 100%);
}

.focus-intro {
	max-width: 800px;
	margin: 0 auto 50px;
	text-align: center;
	color: #555;
	line-height: 1.8;
}

.focus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.focus-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;

	border-top: 4px solid var(--saffron);

	box-shadow:
		0 8px 24px rgba(0, 0, 0, .05);

	transition: .35s ease;
}

.focus-card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, .10);
}

.focus-number {
	font-size: 3rem;
	font-weight: 800;
	color: rgba(249, 115, 22, .12);
	display: block;
	line-height: 1;
	margin-bottom: 15px;
}

.focus-card h3 {
	margin: 0 0 12px;
	color: var(--blue);
	font-size: 1.2rem;
}

.focus-card p {
	margin: 0;
	line-height: 1.7;
	color: #555;
}

/* Mobile */

@media(max-width:640px) {

	.focus-card {
		padding: 24px;
	}

	.focus-number {
		font-size: 2.5rem;
	}
}
