/* ===============================
   🔱 RESET & BASE
================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* =========================================
   🔱 DIVINE RED — CLEAN & LUMINOUS
========================================= */

html,
body {
	overflow-x: hidden;
}

/* 🔱 GSAP SMOOTH SCROLL SAFETY */
#smooth-wrapper,
#smooth-content {
	overflow-x: hidden;
}


body {
	background:
		/* 🔥 warm top glow (like sanctum light) */
		radial-gradient(900px 420px at 50% -10%, rgba(255, 110, 70, 0.28), transparent 60%),

		/* 🔥 gentle side warmth */
		radial-gradient(600px 360px at 10% 70%, rgba(220, 40, 40, 0.18), transparent 65%),
		radial-gradient(600px 360px at 90% 80%, rgba(200, 30, 30, 0.14), transparent 70%),

		/* 🔥 deep red base (clean, not muddy) */
		linear-gradient(180deg,
			#3c0000 0%,
			#5a0000 38%,
			#4a0000 68%,
			#2e0000 100%);

	font-family: 'Inter', sans-serif;
	color: #ffffff;
	overflow-x: hidden;
	position: relative;
}


/* ===============================
🔱 SUBTLE VIGNETTE
=============================== */

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;

	background:
		radial-gradient(1200px 700px at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
}

/* ===============================
   🌐 LANGUAGE FIX (CRITICAL)
================================= */

/* Default */
.en {
	display: block !important;
}

.ml {
	display: none !important;
}

/* Malayalam active */
body.lang-ml .en {
	display: none !important;
}

body.lang-ml .ml {
	display: block !important;
}


/* Buttons */
/* 🔥 FORCE CLICK FIX */
.lang-toggle {
	position: relative;
	z-index: 999999 !important;
}


/* ===============================
   🔱 DIVINE BACKGROUND SYSTEM
================================= */

/* Aura */
.divine-bg {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;

	background:
		radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08), transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(255, 140, 60, 0.05), transparent 50%);
}



/* Malayalam Font */
.ml {
	font-family: 'Manjari', sans-serif;
	display: none;
}




.logo {
	color: #d4af37;
	font-weight: 600;
	letter-spacing: 1px;
}

.lang-toggle button {
	background: transparent;
	border: 1px solid #d4af37;
	color: #d4af37;
	padding: 5px 10px;
	margin-left: 5px;
	cursor: pointer;
}

.lang-toggle .active {
	background: #d4af37;
	color: #000;
}


.logo-img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
}


/* ===============================
   📱 iOS STYLE MOBILE MENU
================================= */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 320px;
	height: 100vh;

	background: rgba(20, 0, 0, 0.82);


	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;

	transform: translateX(100%);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

	z-index: 999;
}

/* ACTIVE STATE */
.mobile-menu.active {
	transform: translateX(0%);
}

/* LINKS */
.mobile-menu a {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	margin: 12px 0;

	opacity: 0;
	transform: translateX(30px);
}

/* GOLD HOVER */
.mobile-menu a:hover {
	color: #d4af37;
}



.menu-backdrop {
	z-index: 998;
}

.mobile-menu {
	z-index: 999;
}



/* ===============================
   🌌 MOBILE MENU ENHANCED
================================= */
.mobile-menu {
	opacity: 0;
	pointer-events: none;
}

.mobile-menu.active {
	right: 0;
	opacity: 1;
	pointer-events: auto;
}

/* MENU LINKS */
.mobile-menu a {
	opacity: 0;
	transform: translateY(20px);
}

/* ===============================
   🎬 INTRO OVERLAY
================================= */
.intro-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(20, 0, 0, 0.82);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.enter-btn {
	padding: 14px 30px;
	background: #d4af37;
	border: none;
	font-size: 16px;
	cursor: pointer;
}



/* ===============================
   🔊 AUDIO BUTTON
================================= */
/* ===============================
   🔱 GOLDEN 3D BUTTON (COMMON)
================================= */
.golden-btn {
	position: absolute;
	bottom: 40px;
	z-index: 20;

	padding: 12px 20px;
	border-radius: 30px;
	border: none;

	font-size: 14px;
	cursor: pointer;

	color: #000;
	background: linear-gradient(145deg, #ffd700, #ffb300);

	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);

	transition: all 0.3s ease;
}

/* Hover glow */
.golden-btn:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Click press */
.golden-btn:active {
	transform: scale(0.95);
}

/* ===============================
   🔊 AUDIO BUTTON (LEFT)
================================= */
.audio-btn {
	left: 20px;
}


/* ===============================
   🔁 REPLAY BUTTON (FIXED)
================================= */
.replay-btn {
	position: absolute;
	bottom: 40px;
	right: 20px;

	display: none;

	width: auto;
	/* 🔥 prevents stretching */
	min-width: unset;
	max-width: fit-content;

	padding: 10px 18px;
	/* 🔥 match audio button size */
	font-size: 13px;

	white-space: nowrap;
	/* 🔥 keeps text in one line */

	z-index: 20;

}





/* ===============================
   🛕 FINAL FRAME BASE
================================= */
.final-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: 10;
	opacity: 0;
	transition: opacity 1.5s ease;
	overflow: hidden;
}

/* ===============================
   🔱 IMAGE (MAIN DEVI)
================================= */
.final-frame img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 3;

	animation: divineZoom 12s ease-in-out infinite alternate,
		divineGlow 3s ease-in-out infinite;
}

/* ===============================
   ✨ GOLDEN AURA (CORE LIGHT)
================================= */
.final-frame::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;

	transform: translate(-50%, -50%);
	border-radius: 50%;

	background: radial-gradient(circle,
			rgba(255, 215, 120, 0.5) 0%,
			rgba(255, 140, 0, 0.25) 40%,
			transparent 70%);

	animation: auraPulse 4s ease-in-out infinite;
	z-index: 1;
}

/* ===============================
   🌟 LIGHT RAYS (ROTATING)
================================= */
.final-frame .light-rays {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 215, 120, 0.15), transparent 70%);
	animation: raysRotate 25s linear infinite;
	z-index: 0;
}




/* ===============================
   🎬 HERO VIDEO WRAPPER
================================= */



/* 🎬 MAIN VIDEO (FOCUSED) */
.sequence-video {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 100%;
	height: auto;

	transform: translate(-50%, -50%);
	object-fit: contain;
	z-index: 2;
}

/* Desktop fallback */
@media (min-width: 769px) {
	.sequence-video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}



/* MAIN VIDEO (IMPORTANT) */
.sequence-video {
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	width: 100%;
	height: auto;

	object-fit: contain;

	z-index: 3;
	/* 🔥 ABOVE EVERYTHING */
}

/* DESKTOP */
@media (min-width: 769px) {
	.sequence-video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}



.golden-btn {
	font-size: 16px;
	padding: 14px 22px;
}


.deity-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}






/* =====================================================
   🔱 ABOUT SECTION – NEW on 19 April
===================================================== */



/* ===============================
🎬 MEDIA COLUMN
=============================== */
.about-media {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 25px;
}

/* ===============================
🎥 VIDEO PLAYER
=============================== */
.video-item {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
}

.media-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ▶ CENTER PLAY */
/* ===============================
   ▶ CENTER PLAY BUTTON (UPGRADED)
=============================== */
.video-center-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 90px;
	height: 90px;

	border-radius: 50%;

	color: #fff;
	font-size: 36px;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
	z-index: 5;

	transition: all 0.3s ease;
}

/* hover polish */
.video-center-play:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

/* 🔥 HIDE WHEN PLAYING */
.video-item:not(.paused) .video-center-play {
	opacity: 0;
	pointer-events: none;
}

/* 🎬 CONTROLS */
.video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	background: rgba(20, 0, 0, 0.2);
	z-index: 6;
}

/* BUTTONS */
.vc-btn {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}

/* PROGRESS */
.progress-bar {
	flex: 1;
	height: 4px;
	background: rgba(20, 0, 0, 0.82);
}

.progress {
	height: 100%;
	width: 0%;
	background: #ffd700;
}

/* MULTI VIDEO */
.multi-video {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ===============================
📱 MOBILE
=============================== */
@media (max-width: 900px) {
	.about-row {
		grid-template-columns: 1fr;
	}
}


/* 🎥 VIDEO DEPTH EFFECT */
.video-item {
	transform: scale(0.96);
	transition: transform 1s ease, box-shadow 0.6s ease;
}

.video-item.in-view {
	transform: scale(1);
}

.video-item:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* 🌟 SUBTLE GLOW PULSE */
.about-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(255, 215, 120, 0.1), transparent 70%);
	animation: glowPulse 4s ease-in-out infinite;
	pointer-events: none;
}

/* 🔥 SMOOTH SCROLL FEEL */
html {
	scroll-behavior: smooth;
}




















/* ===============================
   ✨ SACRED LIGHT RAYS
=============================== */

.about-flow {
	position: relative;
	overflow: hidden;
}

.about-flow::before {
	content: "";
	position: absolute;
	top: -20%;
	left: -10%;
	width: 120%;
	height: 140%;

	background: radial-gradient(circle at 50% 30%,
			rgba(255, 210, 120, 0.12),
			transparent 60%);

	pointer-events: none;
	z-index: 0;
}


/* ===============================
   🎬 CENTER IMAGE HOVER EFFECT
=============================== */

.about-media.multi-image img {
	width: 100%;
	border-radius: 12px;
	display: block;

	transition:
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease;

	transform: scale(1);
}

/* subtle zoom */
.about-media.multi-image img:hover {
	transform: scale(1.05);

	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.img-wrap {
	overflow: hidden;
	border-radius: 12px;
}

.img-wrap img {
	width: 100%;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-wrap:hover img {
	transform: scale(1.05);
}



/* ===============================
   🔱 SACRED FRAME BASE
=============================== */
.sacred-frame {
	position: relative;
	overflow: hidden;
	border-radius: 14px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: transparent;
}

/* ===============================
   🔱 SACRED FRAME STABILITY
=============================== */

.sacred-frame {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;
}

/* ensure image sits above effects */
.sacred-frame img {
	position: relative;
	z-index: 3;
	width: 100%;
	display: block;
}


/* ===============================
   ✨ LIGHT RAYS
=============================== */
/* ===============================
   ✨ CONTAINED SACRED LIGHT RAYS
=============================== */

.light-rays {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 60%;
	height: 60%;
	border-radius: 50%;

	pointer-events: none;
	z-index: 1;

	/* soft base glow */
	background: radial-gradient(circle,
			rgba(255, 220, 130, 0.35) 0%,
			rgba(255, 200, 100, 0.18) 35%,
			rgba(255, 180, 80, 0.05) 55%,
			transparent 70%);

	overflow: hidden;
	/* 🔥 critical */
}


/* bottom */
.light-rays {
	z-index: 1;
}

/* ripple ABOVE glow */
.ripple {
	z-index: 2;
}

/* smoke very subtle above ripple */
.smoke {
	z-index: 2;
}

/* image always top */
.sacred-frame img {
	z-index: 3;
}


.light-rays {
	background: radial-gradient(circle at center,
			rgba(255, 210, 120, 0.15),
			transparent 65%);
}


.smoke {
	background: radial-gradient(circle at 50% 70%,
			rgba(255, 230, 180, 0.04),
			transparent 75%);
}



/* ===============================
   🔥 DIVINE ENERGY CORE
=============================== */
/* ===============================
   🔥 STRONG ENERGY CORE
=============================== */
/* =========================================
   🔥 ENERGY CORE (CENTER OF DEITY)
========================================= */

.sacred-frame::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	width: 14%;
	aspect-ratio: 1;

	border-radius: 50%;
	z-index: 2;

	background: radial-gradient(circle,
			rgba(255, 240, 180, 0.9),
			rgba(255, 210, 120, 0.6),
			transparent 70%);

	animation: corePulse 3.5s ease-in-out infinite;
}

@keyframes corePulse {

	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.8;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.3);
		opacity: 1;
	}
}

/* ===============================
   🔱 EDGE FADE MASK (ANTI-SQUARE)
=============================== */

.sacred-frame {
	-webkit-mask-image: radial-gradient(circle,
			white 60%,
			transparent 85%);
	mask-image: radial-gradient(circle,
			white 60%,
			transparent 85%);
}


@keyframes raysPulse {

	0%,
	100% {
		opacity: 0.7;
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.08);
	}
}


/* ===============================
   ✨ EDGE-SAFE DIRECTIONAL RAYS
=============================== */

.light-rays::after {
	content: "";
	position: absolute;
	inset: 0;

	border-radius: 50%;

	/* directional streaks */
	background: conic-gradient(from 0deg,
			transparent 0deg,
			rgba(255, 220, 120, 0.18) 20deg,
			transparent 40deg,
			transparent 120deg,
			rgba(255, 210, 100, 0.15) 140deg,
			transparent 160deg,
			transparent 360deg);

	/* 🔥 FADE OUT BEFORE EDGES */
	mask-image: radial-gradient(circle,
			rgba(0, 0, 0, 1) 0%,
			rgba(0, 0, 0, 0.6) 45%,
			rgba(0, 0, 0, 0.2) 60%,
			transparent 75%);

	-webkit-mask-image: radial-gradient(circle,
			rgba(0, 0, 0, 1) 0%,
			rgba(0, 0, 0, 0.6) 45%,
			rgba(0, 0, 0, 0.2) 60%,
			transparent 75%);

	animation: rotateLight 18s linear infinite;
	pointer-events: none;
}



/* ===============================
   🔧 FIX LEFT COLUMN OFFSET (ROW 3 ONLY)
=============================== */

.about-row.final > .about-media:first-child {
	margin-top: 0 !important;
	transform: none !important;
	top: 0;
}

.about-row.final {
	align-items: start;
}

.about-row.final > * {
	align-self: start;
}

/* ===============================
   🔒 LOCK SACRED FRAME POSITION
=============================== */

.about-row.final .sacred-frame {
	position: relative;
	top: 0;
	transform: none;
}

.about-row.final .about-media {
	transform: none !important;
}

/* ===============================
   📐 ALIGN CENTER COLUMN (ROW 1 & 2)
=============================== */

/* only rows that are NOT final */
.about-row:not(.final) .about-media.center {
	margin-top: 10px;
	/* 🔧 adjust 8–15px if needed */
}

.about-row:not(.final) .about-media.center {
	margin-top: 12px;
}

.about-row:not(.final) .about-media.center {
	margin-top: 12px;
}


/* =========================================
   🔱 ABOUT HERO IMAGE FIX
========================================= */

.about-hero {
	overflow: hidden;
	position: relative;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.jarallax-img {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

/* 🎥 jarallax container fix */
/* ===============================
🎬 JARALLAX — STABLE SYSTEM
=============================== */

.jarallax {
	position: relative;
	overflow: hidden;
}

.jarallax-container {
	position: absolute !important;
	inset: 0;
	z-index: 0;
}

.jarallax-img {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	/* 🔥 gives scroll depth */
	object-fit: cover;
}


🎥 JARALLAX FULL COVER FIX===============================*/

/* 🌑 CONTRAST OVERLAY */
.about-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.2),
			rgba(0, 0, 0, 0.1));
}

/* 🌫 DEPTH (SAFE — NO TRANSFORM CONFLICT) */
.about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;

	background: radial-gradient(circle at center,
			rgba(0, 0, 0, 0.15),
			rgba(0, 0, 0, 0.3));

	pointer-events: none;
}

/* 🧾 CONTENT */
.about-hero-content {
	position: relative;
	z-index: 3;
	color: #fff;
	text-align: center;
	padding: 20px;
}

/* =========================================
   🟡 GOLD FRAME (WORKING)
========================================= */

.gold-line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	z-index: 5;
	overflow: hidden;

	background: linear-gradient(90deg,
			#6a4b00,
			#d4af37,
			#fff3c2,
			#d4af37,
			#6a4b00);

	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.gold-line.top {
	top: 0;
}

.gold-line.bottom {
	bottom: 0;
}

.gold-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: -40%;
	width: 40%;
	height: 100%;

	background: linear-gradient(120deg,
			transparent,
			rgba(255, 255, 255, 0.9),
			transparent);

	animation: goldSweep 4s linear infinite;
}

@keyframes goldSweep {
	0% {
		left: -40%;
	}

	100% {
		left: 140%;
	}
}


.about-hero {
	animation: subtleFade 6s ease-in-out infinite alternate;
}

@keyframes subtleFade {
	0% {
		filter: brightness(0.95);
	}

	100% {
		filter: brightness(1.05);
	}
}


/* ===============================
   🎬 GSAP SMOOTH FIX
=============================== */

#smooth-wrapper {
	overflow: hidden;
}

#smooth-content {
	will-change: auto;
}

/* prevent internal clipping issues */
.jarallax > .jarallax-container {
	overflow: hidden;
}


/* =========================================
   🎬 ABOUT VIDEO CONTROLS (ISOLATED SAFE)
========================================= */

.about-media.multi-video .video-item {
	position: relative;
	z-index: 5;
}

.about-media.multi-video .sacred-frame::before,
.about-media.multi-video .sacred-frame::after,
.about-media.multi-video .light-rays,
.about-media.multi-video .ripple,
.about-media.multi-video .smoke,
.about-media.multi-video .about-overlay {
	pointer-events: none !important;
}

.about-media.multi-video .video-center-play {
	z-index: 6;
	cursor: pointer;
}

.about-media.multi-video .video-center-play.hidden {
	opacity: 0;
	pointer-events: none;
}

.about-media.multi-video .video-controls {
	z-index: 6;
}



/* =========================================
   ✨ LOGO DIVINE GLOW
========================================= */

.logo-img {
	transition: all 0.4s ease;
}




/* remove excessive dark overlays */
.about-overlay {
	background: rgba(20, 0, 0, 0.82);
	/* reduce if higher */
}


/* =========================================
   ✨ GLOBAL RED LIGHT BALANCE
========================================= */

body::before {
	content: "";
	position: fixed;
	inset: 0;

	background:
		radial-gradient(circle at 50% 30%, rgba(255, 90, 90, 0.15), transparent 65%);

	pointer-events: none;
	z-index: 0;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;

	background:
		radial-gradient(circle at 50% 50%, rgba(255, 200, 120, 0.06), transparent 70%);

	pointer-events: none;
	z-index: 0;
}




/*===================================NEW C-system======================================*/



/* =========================================
   🔱 CINEMATIC HEADER SYSTEM (NEW)
========================================= */

/* ===============================
   🔱 PREMIUM HEADER BASE
=============================== */


/* =========================================
   🔱 C-HEADER — CLEAN PREMIUM SYSTEM
========================================= */

/* ===============================
🔱 CINEMATIC HEADER
=============================== */

.c-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;

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

	padding: 14px 20px;
	height: 90px;

	background: rgba(20, 0, 0, 0.3);

	z-index: 9999;

	transition:
		height 0.4s ease,
		padding 0.4s ease,
		background 0.4s ease,
		backdrop-filter 0.4s ease,
		box-shadow 0.4s ease;
}

/* 🔥 SCROLLED */
.c-header.scrolled {
	padding: 8px 30px;
	height: 70px;

	background: rgba(20, 0, 0, 0.4);

	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);
}

/* ===============================
   🔱 LOGO SYSTEM
=============================== */
.c-logo-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}



.c-logo-icon {
	position: relative;

	width: 56px;
	aspect-ratio: 1 / 1;
	/* 🔥 guarantees square */

	flex-shrink: 0;
	/* 🔥 prevents flex distortion */
}


.c-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
	position: relative;
	z-index: 2;

	transition: transform 0.4s ease;
}

/* shrink on scroll */
.c-header.scrolled .c-logo-icon {
	width: 46px;
	height: 46px;
	padding-right: 3px;
}



.c-logo-aura {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: contain;
	/* 🔥 prevents stretching */
	transform-origin: center;

	animation: cAuraSpin 18s linear infinite;

	opacity: 0.65;
	filter: drop-shadow(0 0 10px rgba(255, 215, 120, 0.5));
}

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

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

.c-logo-text span {
	font-size: 14px;
	line-height: 1.2;
	color: #ffcc66;
}

/* ===============================
   📜 NAV MENU
=============================== */
.c-nav-menu {
	display: flex;
	gap: 26px;
}

.c-nav-link {
	position: relative;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.4px;

	transition: color 0.3s ease;
}

/* ✨ GOLD HOVER */
.c-nav-link:hover {
	color: #d4af37;
	text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* underline */
.c-nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0%;
	height: 1px;

	background: #d4af37;
	transition: width 0.3s ease;
}

.c-nav-link:hover::after,
.c-nav-link.active::after {
	width: 100%;
}



/* ===============================
   📱 MENU TOGGLE
=============================== */
.c-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;

	background: none;
	border: none;
	cursor: pointer;
}

.c-menu-toggle span {
	width: 24px;
	height: 2px;
	background: #d4af37;
	transition: all 0.4s ease;
}

/* animate to X */
.c-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ===============================
   📱 MOBILE RULES
=============================== */
@media (max-width: 900px) {

	.c-nav-menu {
		display: none;
	}

	.c-menu-toggle {
		display: flex;
	}
}

/* =========================================
   📱 C-MOBILE MENU SYSTEM (ISOLATED)
========================================= */

/* =========================================
   📱 C-MOBILE MENU — PREMIUM FIXED
========================================= */

/* 🌑 BACKDROP */
/* =========================================
   📱 C-MOBILE MENU — DIVINE GLASS UPGRADE
========================================= */

/* 🌑 BACKDROP — SOFT GLASS */
.c-menu-backdrop {
	position: fixed;
	inset: 0;

	background: rgba(20, 0, 0, 0.82);

	opacity: 0;
	pointer-events: none;

	transition: opacity 0.4s ease;
	z-index: 1500;
}

.c-menu-backdrop.active {
	opacity: 1;
	pointer-events: auto;
}

/* 🔱 PANEL — PREMIUM GLASS */
.c-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;

	width: 85%;
	max-width: 320px;
	height: 100vh;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

	padding: 60px 30px;

	/* 🔥 layered glass */
	background: linear-gradient(180deg,
			rgba(30, 0, 0, 0.75),
			rgba(10, 0, 0, 0.85));


	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);

	transform: translateX(100%);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

	z-index: 1600;
}

.c-mobile-menu.active {
	transform: translateX(0);
}

/* 🔱 CLOSE BUTTON */
.c-menu-close {
	position: absolute;
	top: 20px;
	right: 20px;

	font-size: 22px;
	color: #ffd700;

	background: none;
	border: none;
	cursor: pointer;

	transition: transform 0.25s ease, color 0.25s ease;
}

.c-menu-close:hover {
	transform: scale(1.2);
	color: #fff;
}

/* 🔗 LINKS — PREMIUM TEXT */
.c-mobile-menu .c-nav-link {
	font-size: 18px;
	margin: 14px 0;

	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;

	letter-spacing: 0.5px;

	opacity: 0;
	transform: translateY(20px);

	transition: all 0.4s ease;
}

/* ✨ SHOW */
.c-mobile-menu.active .c-nav-link {
	opacity: 1;
	transform: translateY(0);
}

/* ✨ GOLD HOVER */
.c-mobile-menu .c-nav-link:hover {
	color: #ffd700;
	text-shadow:
		0 0 10px rgba(255, 215, 120, 0.7),
		0 0 20px rgba(255, 200, 0, 0.5);
}

/* 📱 PREVENT SCROLL WHEN OPEN */
body.menu-open {
	overflow: hidden;
}

/* ===============================
   🌐 LANGUAGE
=============================== */
/* ===============================
   🌐 LANGUAGE — PREMIUM STATES
=============================== */

/* =========================================
   🌐 LANGUAGE — FORCE PREMIUM OVERRIDE
========================================= */

.c-header .c-lang-toggle {
	display: flex;
	gap: 6px;

	background: rgba(20, 0, 0, 0.2);
	padding: 4px;
	border-radius: 30px;
}

.c-header .c-lang-btn {
	padding: 6px 14px;
	border-radius: 20px;
	border: none;

	font-size: 13px;
	font-weight: 500;

	background: transparent !important;
	color: rgba(255, 255, 255, 0.75) !important;

	cursor: pointer;

	transition: all 0.3s ease;
}

/* ✨ HOVER */
.c-header .c-lang-btn:hover {
	color: #ffd700 !important;
}

/* 🔥 ACTIVE */
.c-header .c-lang-btn.active {
	background: linear-gradient(135deg, #ffd700, #ffb300) !important;
	color: #000 !important;

	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);
}

/* =========================================
   🔱 CINEMATIC HERO SYSTEM (ISOLATED)
   Namespace: .c-hero
========================================= */

/* ===============================
   🧱 BASE CONTAINER
=============================== */
.c-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	/* 🔥 REQUIRED */
	overflow: hidden;
}

/* ===============================
   🎬 FRAME
=============================== */
.c-hero .video-frame {
	position: relative;
	width: 100%;
	height: 100%;
	/* 🔥 THIS FIXES YOUR ISSUE */
	overflow: hidden;
}

/* ===============================
   🎥 VIDEO LAYER
=============================== */
/* 🎥 VIDEO LAYER */
.c-hero #hero-video {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;
	/* cinematic */
	object-position: center;

	z-index: 1;
}

/* hide video when final active */
.c-hero .video-frame.final-active #hero-video {
	opacity: 0;
	visibility: hidden;
}

.c-hero .hero-clip {
	width: 100%;
	height: 100%;
}


/* ===============================
   🛕 FINAL FRAME BASE
=============================== */
.c-hero .hero-video-player {
	width: 100%;
	height: 100%;


}


.c-hero .hero-video-player.final-frame {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	z-index: 5;
}

/* 🔥 THIS IS THE MISSING LINK */
.c-hero .final-frame.active {
	opacity: 1;
}

/* ===============================
   🔱 IMAGE (DEVI)
=============================== */
.c-hero .final-frame img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;

	z-index: 3;

	animation:
		cHeroZoom 12s ease-in-out infinite alternate,
		cHeroGlow 3s ease-in-out infinite;
}


.c-hero .video-frame.final-active #hero-video {
	opacity: 0;
}

/* ===============================
   ✨ GOLDEN AURA
=============================== */
.c-hero .final-frame::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;

	width: 600px;
	height: 600px;

	transform: translate(-50%, -50%);
	border-radius: 50%;

	background: radial-gradient(circle,
			rgba(255, 215, 120, 0.5) 0%,
			rgba(255, 140, 0, 0.25) 40%,
			transparent 70%);

	animation: cHeroAura 4s ease-in-out infinite;

	z-index: 1;
}

/* ===============================
   🌟 LIGHT RAYS
=============================== */
.c-hero .light-rays {
	position: absolute;
	inset: 0;

	background: radial-gradient(circle, rgba(255, 215, 120, 0.15), transparent 70%);

	animation: cHeroRays 25s linear infinite;

	z-index: 0;
}


/* ===============================
   🎮 CONTROLS
=============================== */
.c-hero .hero-controls {
	position: absolute;
	bottom: 6px;
	left: 50%;

	transform: translateX(-50%);

	display: flex;
	align-items: center;
	gap: 12px;

	z-index: 20;
}

.c-hero .hero-controls button {
	background: none;
	border: none;
	color: #fff;

	font-size: 22px;
	/* 🔥 bigger icons */
	padding: 6px 10px;

	cursor: pointer;
	transition: all 0.3s ease;
}

.c-hero .hero-controls button:hover {
	transform: scale(1.2);
	color: #ffd700;
	/* subtle gold hover */
}

.c-hero .hero-controls button {
	text-shadow: 0 0 8px rgba(255, 215, 120, 0.6);
}

/* ===============================
   📊 PROGRESS BAR
=============================== */
/*
.c-hero .hero-progress {
	width: 200px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
}

.c-hero .hero-progress-bar {
	height: 100%;
	width: 0%;
	background: #ffd700;
}
*/

/* ===============================
   🎬 FINAL STATE (VIDEO HIDDEN)
=============================== */
/* When final is active, hide video completely */
.c-hero .hero-frame.final-active #hero-video {
	opacity: 0;
	visibility: hidden;
}


/* ===============================
   🎬 ANIMATIONS
=============================== */

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

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

@keyframes cHeroGlow {

	0%,
	100% {
		filter: brightness(1) drop-shadow(0 0 5px rgba(255, 215, 120, 0.4));
	}

	50% {
		filter: brightness(1.15) drop-shadow(0 0 25px rgba(255, 200, 100, 0.9));
	}
}

@keyframes cHeroAura {

	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 1;
	}
}

@keyframes cHeroRipple {
	0% {
		transform: translate(-50%, -50%) scale(0.6);
		opacity: 0.8;
	}

	70% {
		opacity: 0.4;
	}

	100% {
		transform: translate(-50%, -50%) scale(3.5);
		opacity: 0;
	}
}

@keyframes cHeroSmoke {
	0% {
		transform: translate(-50%, 0) scale(1);
		opacity: 0.3;
	}

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

	100% {
		transform: translate(-50%, -80px) scale(1.4);
		opacity: 0;
	}
}

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

	100% {
		transform: rotate(360deg);
	}
}

.c-hero .final-frame {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	z-index: 5;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.c-hero .final-frame.active {
	opacity: 1;
}

.c-hero .final-frame.active {
	opacity: 1;
}


.c-hero .final-frame.active {
	opacity: 1 !important;
	background: url("../assets/images/temple-wall.jpg") center / cover no-repeat;
}



.c-hero .video-frame {
	position: relative;
	isolation: isolate;
	/* 🔥 THIS IS THE KEY FIX */
	z-index: 0;
}

/* 🔥 HERO VIDEO MOBILE SETTINGS */

@media (max-width: 768px) {

	.c-hero #hero-video {
		object-fit: contain;
		/* 🔥 FULL VIDEO VISIBLE */
		background: transparent !important;
	}

}


@media (max-width: 768px) {

	.c-hero {
		height: 100vh;
		/* 🔥 ONLY THIS NEEDED */
		position: relative;
		overflow: hidden;
	}

}


@media (max-width: 768px) {

	.c-hero {
		background: url("../assets/images/temple-wall.jpg") center / cover no-repeat;
	}

}


@media (max-width: 768px) {

	.c-hero .video-frame {
		position: relative;
		width: 100%;
		height: 100%;

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

}



@media (max-width: 768px) {

	.c-hero #hero-video {
		width: 100%;
		height: 100%;

		object-fit: contain;
		/* 🔥 full video */
		background: transparent !important;

		z-index: 1;
	}

}

@media (max-width: 768px) {

	.c-hero #hero-video {
		object-fit: contain;
		background: transparent !important;

		/* 🔥 GOLD TOP & BOTTOM LINES */
		border-top: 2px solid #ffd700;
		border-bottom: 2px solid #ffd700;

		box-shadow:
			0 10px 24px rgba(0, 0, 0, 0.28);
	}

}



@media (max-width: 768px) {

	.c-hero .video-frame {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.c-hero .video-slot {
		position: relative;

		width: 100%;
		height: auto;
		max-height: 100%;

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

	.c-hero #hero-video {
		width: 100%;
		height: 100%;

		object-fit: contain;
		background: transparent !important;
	}

}



@media (max-width: 768px) {

	.c-hero .video-slot::before,
	.c-hero .video-slot::after {
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;

		background: linear-gradient(90deg,
				transparent,
				#ffd700,
				#ffae00,
				#ffd700,
				transparent);

		box-shadow:
			0 10px 24px rgba(0, 0, 0, 0.28);

		z-index: 10;
	}

	.c-hero .video-slot::before {
		top: 0;
	}

	.c-hero .video-slot::after {
		bottom: 0;
	}

}


@keyframes goldPulse {

	0%,
	100% {
		opacity: 0.8;
	}

	50% {
		opacity: 1;
	}
}

.c-hero .video-slot::before,
.c-hero .video-slot::after {
	animation: goldPulse 3s ease-in-out infinite;
}


@media (max-width: 768px) {

	.c-hero .video-slot {
		position: relative;
		width: 100%;

		aspect-ratio: 16 / 9;
		/* 🔥 CRITICAL FIX */

		max-height: 80vh;
		/* prevents overflow on tall screens */

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

}


@media (max-width: 768px) {

	.c-hero #hero-video {
		width: 100%;
		height: 100%;

		object-fit: contain;
		background: transparent !important;
	}

}


@media (max-width: 768px) {

	/* 🔥 HARD HIDE GOLD LINES ON FINAL FRAME */
	.c-hero .video-frame.final-active .video-slot::before,
	.c-hero .video-frame.final-active .video-slot::after {
		opacity: 0 !important;
		visibility: hidden !important;
	}

}


@media (max-width: 768px) {

	.c-hero .video-frame.final-active .video-slot::before,
	.c-hero .video-frame.final-active .video-slot::after {
		content: none;
	}

}





@media (max-width: 768px) {

	.c-hero .video-slot::before,
	.c-hero .video-slot::after {

		background: linear-gradient(90deg,
				transparent,
				#ffd700,
				#fff3b0,
				#ffae00,
				#ffd700,
				transparent);

		background-size: 200% 100%;

	}

}


.c-hero::after {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(circle at 50% 70%,
			rgba(255, 220, 150, 0.08),
			transparent 60%);

	pointer-events: none;
	z-index: 2;
}


.c-hero .final-frame::after {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(circle,
			rgba(255, 230, 150, 0.6),
			rgba(255, 200, 120, 0.2),
			transparent 70%);

	opacity: 0;
	pointer-events: none;
}


.c-hero .final-frame.active::after {
	animation: divineFlash 1.8s ease-out forwards;
}

@keyframes divineFlash {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}

	40% {
		opacity: 1;
		transform: scale(1.1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}


.c-hero .final-frame .ripple {
	border: 2px solid rgba(255, 215, 120, 0.35);
	filter: blur(0.5px);
}


.c-hero .final-frame img {
	animation:
		divineZoom 14s ease-in-out infinite alternate,
		divineGlow 4s ease-in-out infinite;
}


.c-hero .ash-layer {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 4;
}



@keyframes ashRise {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}

	20% {
		opacity: 0.6;
	}

	100% {
		transform: translateY(-120vh) translateX(20px);
		opacity: 0;
	}
}


.c-hero::before {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(circle at 50% 80%,
			rgba(255, 180, 80, 0.15),
			transparent 60%);

	animation: diyaFlicker 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 3;
}


@keyframes diyaFlicker {

	0%,
	100% {
		opacity: 0.12;
	}

	50% {
		opacity: 0.22;
	}
}



/* 🔱 Cinematic fade */
.c-hero.fade-out {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.c-hero.fade-in {
	opacity: 1;
	transition: opacity 0.8s ease;
}




.logo-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}




.logo-img {
	position: relative;

	width: 70px;
	/* adjust as needed */
	height: auto;

	z-index: 2;

	filter: drop-shadow(0 0 6px rgba(255, 200, 120, 0.4));
}


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

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


@media (max-width: 768px) {

	.logo-img {
		width: 55px;
	}

	.logo-aura {
		width: 140%;
		height: 140%;
	}

}


/*EDITS FROM 1 MAY*/


.hero-controls {
	position: relative;
	z-index: 50;
}

.final-frame {
	pointer-events: none;
}


/* ===============================
   🔱 HERO PROGRESS — CINEMATIC
=============================== */

.hero-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;

	background: rgba(20, 0, 0, 0.82);
	cursor: pointer;
	overflow: hidden;

	transition: height 0.25s ease;
	z-index: 30;
}

/* ✨ EXPAND ON HOVER */
.hero-progress:hover {
	height: 8px;
}

/* 🔸 BUFFER (optional future use) */
.hero-progress-buffer {
	position: absolute;
	height: 100%;
	width: 0%;
	background: rgba(20, 0, 0, 0.82);
}

/* 🟡 MAIN PROGRESS */
.hero-progress-bar {
	position: absolute;
	height: 100%;
	width: 0%;

	background: linear-gradient(90deg,
			#ffd700,
			#ffb300,
			#ffd700);

	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);

	transition: width 0.1s linear;
}

/* ✨ GLOW TRAIL */
.hero-progress-glow {
	position: absolute;
	height: 100%;
	width: 40px;

	background: radial-gradient(circle,
			rgba(255, 220, 120, 0.8),
			transparent 70%);

	opacity: 0.8;
	pointer-events: none;

	transform: translateX(-100%);
	transition: transform 0.1s linear;
}

/* ✨ GOLD SHIMMER PASS */
.hero-progress-bar::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 50%;
	height: 100%;

	background: linear-gradient(120deg,
			transparent,
			rgba(255, 255, 255, 0.6),
			transparent);

	animation: progressShimmer 3s infinite;
}

@keyframes progressShimmer {
	0% {
		left: -50%;
	}

	100% {
		left: 120%;
	}
}




/* ===============================
   🔱 HERO CONTROLS — ULTRA PREMIUM
=============================== */

/* ===============================
   🔱 HERO CONTROLS — REFINED
=============================== */

.hero-controls {
	position: absolute;
	bottom: 6px;
	/* 🔥 closer to edge */
	left: 50%;
	transform: translateX(-50%);

	display: flex;
	gap: 10px;

	padding: 6px 12px;
	/* 🔥 reduced height */
	border-radius: 30px;

	background: rgba(20, 0, 0, 0.2);


	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);

	z-index: 50;

	opacity: 0;
	transition: opacity 0.35s ease, transform 0.25s ease;
}

/* 🔥 SHOW ON HOVER */
.video-frame:hover .hero-controls {
	opacity: 1;
}

/* 📱 ALWAYS VISIBLE ON MOBILE */
@media (max-width: 768px) {
	.hero-controls {
		opacity: 1;
	}
}

/* ===============================
   🔘 BUTTON STYLE
=============================== */

.ctrl-btn {
	background: none;
	border: none;

	color: #fff;
	font-size: 16px;
	cursor: pointer;

	padding: 6px;
	border-radius: 50%;

	transition: all 0.25s ease;
}

/* ✨ GOLD HOVER GLOW */
.ctrl-btn:hover {
	color: #ffd700;
	transform: scale(1.15);

	text-shadow:
		0 0 6px rgba(255, 215, 120, 0.8),
		0 0 12px rgba(255, 200, 0, 0.6);
}

/* 🔥 ACTIVE CLICK */
.ctrl-btn:active {
	transform: scale(0.9);
}


.hero-progress {
	bottom: 0;
}

.hero-controls {
	bottom: 10px;
	/* sits just above progress bar */
}


@media (max-width: 768px) {

	.hero-controls {
		bottom: env(safe-area-inset-bottom, 8px);
		/* 🔥 iPhone safe area */
		padding: 5px 10px;
		gap: 8px;
	}


	.video-frame:hover .hero-controls {
		opacity: 1;
		transform: translateX(-50%) translateY(-2px);
	}

	.ctrl-btn {
		font-size: 15px;
	}
}


.video-frame:hover .hero-controls {
	opacity: 1;
	transform: translateX(-50%) translateY(-2px);
}


.ctrl-btn svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	transition: all 0.25s ease;
}

.ctrl-btn:hover svg {
	stroke: #ffd700;
	filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.8));
	transform: scale(1.1);
}

.video-frame.final-active .sequence-video {
	opacity: 0;
	pointer-events: none;
}

.video-frame:not(.final-active) .sequence-video {
	opacity: 1;
}

/* 🔱 GLOBAL SACRED LIGHT */
.hero-controls::before {
	content: "";
	position: absolute;
	inset: -20px;

	background: radial-gradient(circle,
			rgba(255, 215, 120, 0.12),
			transparent 90%);

	opacity: 0.6;
	pointer-events: none;
}


.hero-progress-bar {
	animation: goldBreath 4s ease-in-out infinite;
}

@keyframes goldBreath {

	0%,
	100% {
		filter: brightness(1);
	}

	50% {
		filter: brightness(1.25);
	}
}


/* =========================================
   🔱 C-SECTION HERO — CINEMATIC SYSTEM
========================================= */

/* ===============================
   🔱 SAFE SCAN SYSTEM
=============================== */

/* ===============================
   🔱 FINAL SCAN BASE
=============================== */

/* ===============================
   🔱 FINAL SCAN SYSTEM
=============================== */

.c-section-hero {
	position: relative;
	height: 35vh;
	min-height: 260px;

	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

/* 🔥 IMAGE WRAPPER */
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

/* 🔥 IMAGE (TALLER) */
.c-section-hero .hero-bg img {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 160%;

	object-fit: cover;

	transform: translateY(0);
	will-change: transform;
}

/* 🔥 CRITICAL */
.c-section-hero.about-hero .jarallax-img {
	position: absolute !important;
	top: -30%;
	left: 0;
	width: 100%;

	height: 160%;
	/* 🔥 more depth */

	object-fit: cover;
	object-position: 50% 50% !important;
	/* 🔥 unlock vertical movement */
}

/* ===============================
   🌫️ OVERLAY
=============================== */

.about-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.65),
			rgba(0, 0, 0, 0.4),
			rgba(0, 0, 0, 0.75));
}

/* ===============================
   ✨ CONTENT WRAPPER
=============================== */

.about-hero-content {
	position: relative;
	z-index: 2;

	width: 100%;
	max-width: 900px;

	padding: 20px;

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

.about-intro {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ===============================
   🔱 TEXT STYLING
=============================== */

.about-label {
	font-size: 14px;
	letter-spacing: 2px;
	color: #fff085;
	margin-bottom: 8px;
}

.about-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

.about-tagline {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

/* ===============================
   🎬 TEXT REVEAL (CRITICAL)
=============================== */

.c-section-hero .about-label,
.c-section-hero .about-title,
.c-section-hero .about-tagline {
	opacity: 0;
	transform: translateY(25px);
	transition: all 0.8s ease;
}

/* 🔥 ACTIVE STATE */
.c-section-hero.active .about-label {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.1s;
}

.c-section-hero.active .about-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.c-section-hero.active .about-tagline {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

/* ===============================
   📱 MOBILE
=============================== */

@media (max-width: 768px) {

	.c-section-hero {
		height: 45vh;
		min-height: 300px;
	}

	.c-section-hero.about-hero .jarallax-img {
		height: 140%;
		/* 🔥 more than before */
		top: -20%;
		/* 🔥 slightly less aggressive */
	}

	.about-title {
		font-size: 22px;
	}

	.about-tagline {
		font-size: 14px;
	}
}


/* ===============================
🔱 SECTION HERO BASE (FIXED)
=============================== */

.c-section-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

/* CONTENT ABOVE PARALLAX */
.about-hero-content {
	position: relative;
	z-index: 2;
}

.about-overlay {
	z-index: 1;
}


/* ===============================
🔱 ABOUT HEADER CONTENT — FORCE ABOVE
=============================== */
/* ===============================
🔱 FIX TEXT VISIBILITY (ISOLATED)
=============================== */

/* Force content above jarallax */
.c-section-hero .about-hero-content {
	position: relative;
	z-index: 10;
}

/* Ensure jarallax stays behind */
.c-section-hero .jarallax-container {
	z-index: 0 !important;
}




/* ===============================
🔱 HERO TEXT — ALWAYS VISIBLE
=============================== */

.c-section-hero .about-intro,
.c-section-hero .about-title,
.c-section-hero .about-label,
.c-section-hero .about-tagline {
	opacity: 1;
	visibility: visible;
	transform: none;
}


/* ===============================
🔱 ABOUT HERO — JARALLAX FIX ONLY
=============================== */

.c-section-hero.about-hero.jarallax .hero-bg {
	display: contents;
}


/* ===============================
🔱 PARALLAX INNER (MOVEMENT SPACE)
=============================== */

.parallax-inner {
	position: absolute;
	inset: 0;
	height: 200%;
	/* 🔥 gives scroll distance */
	top: -50%;
	/* center it */
}


.c-section-hero.about-hero .jarallax-img {
	position: absolute !important;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-section-hero {
	height: 28vh;
	min-height: 220px;
}


/* ===============================
🔱 GSAP PARALLAX SYSTEM
=============================== */

.c-section-hero {
	position: relative;
	height: 28vh;
	min-height: 220px;
	overflow: hidden;
}

/* BG LAYER */
.parallax-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	will-change: transform;
}

.parallax-bg img {
	width: 100%;
	object-fit: cover;

	height: 150%;
	transform: translateY(-10%);
}

/* OVERLAY */
.about-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
}

/* CONTENT */
.about-hero-content {
	position: relative;
	z-index: 3;
}



/*
==========================================================================================
NEW ABOUT HEADER SYSTEM STARTS HERE
==========================================================================================
*/

/* ==================================================
🔱 SECTION HEADER SYSTEM (STABLE BASE)
================================================== */

.s-section-head {
	position: relative;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;
	overflow: hidden;
}

/* ==================================================
🎬 BACKGROUND (SECTION-SCOPED)
================================================== */

.scan-bg {
	position: absolute;
	inset: 0;
	z-index: 1;

	background-image: url("../assets/images/about-bg.jpg");
	/* 🔁 change per section */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ==================================================
🌑 OVERLAY (DEPTH + READABILITY)
================================================== */

/*
.s-head-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;

	background: rgba(0, 0, 0, 0.4);
}
*/

/* ==================================================
✨ CONTENT WRAPPER
================================================== */

.s-head-content {
	position: absolute;
	inset: 0;
	z-index: 3;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 20px;
}


.s-head-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* ==================================================
🔸 TYPOGRAPHY
================================================== */

.s-head-label {
	font-size: 36px;
	letter-spacing: 2px;
	color: #fff085;
	margin-bottom: 8px;
}

.s-head-title {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff085;
	line-height: 0.5;
}

.s-head-tag {
	font-size: 25px;
	color: #fff085;
	opacity: 0.9;
	line-height: 1.0;
}

/* ==================================================
📱 RESPONSIVE
================================================== */

@media (max-width: 768px) {

	.s-section-head {
		height: 26vh;
	}

	.s-head-title {
		font-size: 16px;
	}

	.s-head-tag {
		font-size: 11px;
	}

}



/* ==========================================
🔱 GOLDEN THEME SECTION
========================================== */
/* ===============================
🔱 SECTION HEIGHT FROM IMAGE RATIO
=============================== */

/* ===============================
🔱 SECTION (IMAGE-DRIVEN HEIGHT)
=============================== */

.s-section-head.gold-theme {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* ===============================
🎬 BACKGROUND IMAGE (NO CROPPING)
=============================== */

.gold-bg {
	position: relative;
	inset: 0;
	z-index: 1;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	object-fit: contain;
	/* 🔥 no cropping */
	object-position: center;
}

/* ===============================
🎬 IMAGE CONTROLS HEIGHT
=============================== */

/* ===============================
🎬 BACKGROUND IMAGE (FULL WIDTH)
=============================== */

.gold-bg img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	/* 🔥 fills width */
	object-position: center;
	/* 🔥 keeps center visible */
}


/* ===============================
✨ CONTENT
=============================== */

.s-head-content {
	position: absolute;
	inset: 0;
	z-index: 3;

	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;

	padding: 20px;
}

.s-head-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}


/* ===============================
🔱 LIGHTENED DIVINE TEXT
=============================== */

/* LABEL */
.s-head-label {
	color: #fff085;
	/* 🔥 lighter gold */
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.8),
		0 0 6px rgba(255, 215, 120, 0.4);
}

/* TITLE */
.s-head-title {
	color: #fff085;
	/* pure white for clarity */

	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.9),
		0 0 10px rgba(255, 220, 140, 0.45),
		0 0 18px rgba(255, 200, 80, 0.25);
}

/* TAGLINE */
.s-head-tag {
	color: #fff085;
	/* 🔥 brighter cream */

	text-shadow:
		0 1px 3px rgba(0, 0, 0, 0.9),
		0 0 6px rgba(255, 215, 120, 0.3);
}

/* ===============================
📱 MOBILE OPTIMIZATION
=============================== */

@media (max-width: 768px) {

	.s-section-head.gold-theme {
		height: auto;
		padding: 0px 0;
	}

	.gold-bg img {
		height: auto;
		max-height: 100%;
	}

	.s-head-content {
		padding: 12px;
	}

	.s-head-title {
		font-size: 15px;
		/* 🔥 reduced */
		line-height: 0.5;
	}

	.s-head-tag {
		font-size: 11px;
	}

	.s-head-label {
		font-size: 13px;
		letter-spacing: 1.5px;
	}
}


/* ===============================
🔱 SOFT CONTRAST PANEL
=============================== */

.s-head-content::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 75%;
	height: 70%;

	background: radial-gradient(ellipse at center,
			rgba(0, 0, 0, 0.45),
			rgba(0, 0, 0, 0.25),
			transparent 70%);

	z-index: -1;
	pointer-events: none;
}


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

	.s-head-title {
		font-size: 12px;
	}

	.s-head-tag {
		font-size: 9px;
	}

	.s-head-label {
		font-size: 9px;
		letter-spacing: 1.6px;
	}
}
*/


/* =====================================================================================
🔱 SOFT EDGE VIGNETTE
=============================== */

.s-head-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;

	background: radial-gradient(ellipse at center,
			rgba(0, 0, 0, 0) 40%,
			rgba(0, 0, 0, 0.25) 75%,
			rgba(0, 0, 0, 0.45) 100%);
}


/* ===============================
🔱 CENTER LIGHT BOOST
=============================== */

.s-head-content::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 60%;
	height: 100%;

	background: radial-gradient(ellipse at center,
			rgba(255, 215, 120, 0.18),
			transparent 70%);

	z-index: -1;
	pointer-events: none;
}

/* ===============================
🔱 GOLD SHIMMER (VISIBLE)
=============================== */

/*
.gold-bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: -40%;
	width: 30%;
	height: 100%;
	z-index: 3;

	background: linear-gradient(120deg,
			transparent,
			rgba(255, 230, 150, 0.35),
			transparent);

	animation: goldShimmer 7s linear infinite;
	pointer-events: none;
}

@keyframes goldShimmer {
	0% {
		left: -40%;
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		left: 120%;
		opacity: 0;
	}
}
*/


/* ===============================
🔱 GOLD EMBOSS / REFLECTION
=============================== */

.gold-bg img {
	filter: contrast(1.08) brightness(1.05);
}

/* light reflection layer */
/*
.gold-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;

	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0.08) 0%,
			rgba(255, 230, 150, 0.18) 25%,
			rgba(255, 200, 100, 0.08) 50%,
			rgba(255, 230, 150, 0.18) 75%,
			rgba(255, 255, 255, 0.08) 100%);

	mix-blend-mode: soft-light;
	pointer-events: none;
}
*/


/* ===============================
🔱 LAMP FLICKER GLOW
=============================== */

.s-head-content::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 65%;
	height: 120%;
	z-index: -1;

	background: radial-gradient(ellipse at center,
			rgba(255, 210, 120, 0.22),
			rgba(255, 180, 80, 0.08),
			transparent 70%);

	animation: lampFlicker 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes lampFlicker {
	0% {
		opacity: 0.85;
		transform: translate(-50%, -50%) scale(1);
	}

	25% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.02);
	}

	50% {
		opacity: 0.9;
		transform: translate(-50%, -50%) scale(0.98);
	}

	75% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.01);
	}

	100% {
		opacity: 0.85;
		transform: translate(-50%, -50%) scale(1);
	}
}


.s-head-title {
	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.85),
		0 0 8px rgba(255, 215, 120, 0.35);
}

.s-head-tag {
	text-shadow:
		0 1px 3px rgba(0, 0, 0, 0.85);
}


/* ===============================
🔱 LIGHTENED DIVINE TEXT
=============================== */

/* LABEL */
.s-head-label {
	color: #fff085;
	/* 🔥 lighter gold */
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.8),
		0 0 6px rgba(255, 215, 120, 0.4);
}

/* TITLE */
.s-head-title {
	color: #fff085;
	/* pure white for clarity */

	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.9),
		0 0 10px rgba(255, 220, 140, 0.45),
		0 0 18px rgba(255, 200, 80, 0.25);
}

/* TAGLINE */
.s-head-tag {
	color: #fff085;
	/* 🔥 brighter cream */

	text-shadow:
		0 1px 3px rgba(0, 0, 0, 0.9),
		0 0 6px rgba(255, 215, 120, 0.3);
}


/* ===============================
🔱 ABOUT FLOW — SAFE BASE
=============================== */

.about-flow {
	position: relative;
	z-index: 1;

	max-width: 1200px;

	margin: 0 auto;

	padding: 24px 20px;
}

/* basic text defaults (so nothing breaks visually) */
.about-flow h2,
.about-flow h3,
.about-flow p,
.about-flow li {
	margin: 0 0 10px 0;
	font-family: 'Inter', sans-serif;
	color: #f5e6c8;
	line-height: 1.5;
}

/* ensure media doesn’t collapse */
.about-flow img,
.about-flow video {
	display: block;
	max-width: 100%;
	height: auto;
}


/* ===============================
🔱 LANGUAGE VISIBILITY (RESTORE)
=============================== */

.about-flow .en {
	display: block;
}

.about-flow .ml {
	display: none;
}

body.lang-ml .about-flow .en {
	display: none;
}

body.lang-ml .about-flow .ml {
	display: block;
}


/* ===============================
🔱 ABOUT FLOW — CLEAN GRID
=============================== */

.about-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
	margin-bottom: 60px;
	align-items: stretch;
}

@media (max-width: 900px) {

	.about-row {
		grid-template-columns: 1fr;
	}
}

.about-media {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* video */
.video-item {
	aspect-ratio: 16/9;
	border-radius: 12px;
	overflow: hidden;

	background: #000;

	box-shadow:
		0 6px 18px rgba(0, 0, 0, 0.5);
	/* reduced */

	transition: transform 0.4s ease;
}

.media-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media (max-width: 900px) {
	.about-row {
		grid-template-columns: 1fr;
	}
}


.about-card h2 {
	color: #f3d98c;
	/* softer gold */
	font-size: 21px;
}

.about-card h3 {
	color: #f7e7b5;
	font-size: 18px;
}

.about-card p {
	color: #e8d9b5;
	font-size: 15px;
	line-height: 1.6;
}

.about-card li {
	color: #e8d9b5;
	font-size: 15px;
	line-height: 1.6;
}


.about-card:hover,
.video-item:hover {
	transform: none !important;
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28) !important;
}


.about-row {
	gap: 28px;
	margin-bottom: 70px;
}


/* ===================================================================================================
   🔶 RIPPLE ENERGY WAVES SHIFTED FROM OLD CSS AREA from this point.
====================================================================================================== */

.final-frame .ripple {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;

	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 2px solid rgba(255, 215, 120, 0.6);

	opacity: 0;
	animation: rippleWave 6s linear infinite;
	z-index: 1;
}

.final-frame .ripple:nth-child(1) {
	animation-delay: 0s;
}

.final-frame .ripple:nth-child(2) {
	animation-delay: 1.5s;
}

.final-frame .ripple:nth-child(3) {
	animation-delay: 3s;
}

.final-frame .ripple:nth-child(4) {
	animation-delay: 4.5s;
}


/* =========================================
   🔱 TEMPLE ENERGY WAVE (DIVINE AURA)
========================================= */


.ripple {
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	width: min(45%, 280px);
	aspect-ratio: 1 / 1;

	border-radius: 50%;
	pointer-events: none;
	z-index: 2;

	opacity: 0;


	background: radial-gradient(circle,
			rgba(255, 235, 170, 0.35) 0%,
			rgba(255, 210, 120, 0.2) 30%,
			rgba(255, 180, 80, 0.08) 55%,
			transparent 75%);


	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);

	animation: energyWave 5s ease-out infinite;
}


.ripple:nth-of-type(2) {
	animation-delay: 1.2s;
}

.ripple:nth-of-type(3) {
	animation-delay: 2.4s;
}


/* =========================================
   🌊 ENERGY WAVE MOTION
========================================= */


@keyframes energyWave {

	0% {
		opacity: 0.7;
		transform: translate(-50%, -50%) scale(0.6);
		filter: blur(0px);
	}

	40% {
		opacity: 0.5;
	}

	70% {
		opacity: 0.25;
		filter: blur(2px);
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(2.4);
		filter: blur(4px);
	}
}


/* stagger */

.ripple:nth-of-type(2) {
	animation-delay: 1s;
}

.ripple:nth-of-type(3) {
	animation-delay: 2s;
}

@keyframes divinePulseBright {
	0% {
		opacity: 0.9;
		transform: translate(-50%, -50%) scale(0.35);
	}

	50% {
		opacity: 0.6;
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(3);
	}
}


/* ===============================
   🔶 RIPPLE EFFECT
=============================== */


.c-hero .ripple {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 200px;
	height: 200px;

	transform: translate(-50%, -50%);
	border-radius: 50%;

	border:
		1.5px solid rgba(255, 220, 140, 0.55);

	opacity: 0;

	animation: cHeroRipple 6s linear infinite;

	z-index: 1;
}

.c-hero .ripple:nth-child(1) {
	animation-delay: 0s;
}

.c-hero .ripple:nth-child(2) {
	animation-delay: 1.5s;
}

.c-hero .ripple:nth-child(3) {
	animation-delay: 3s;
}

.c-hero .ripple:nth-child(4) {
	animation-delay: 4.5s;
}




/* ===============================
🔱 DEEP GOLD LAMP GLOW (TUNED)
=============================== */

.about-card {
	animation: goldTempleGlow 4.5s ease-in-out infinite;
}

/* richer + stronger variation */
@keyframes goldTempleGlow {

	0% {
		filter: brightness(1) contrast(1.05) saturate(1.05) hue-rotate(0deg);
	}

	35% {
		filter: brightness(1.22) contrast(1.12) saturate(1.35) hue-rotate(-2deg);
	}

	60% {
		filter: brightness(1.18) contrast(1.1) saturate(1.3) hue-rotate(-1deg);
	}

	100% {
		filter: brightness(1) contrast(1.05) saturate(1.05) hue-rotate(0deg);
	}
}

.about-card {
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);
}

.about-card:nth-child(2) {
	animation-delay: 1s;
}

.about-card:nth-child(3) {
	animation-delay: 2s;
}

.about-card {
	box-shadow:
		0 22px 48px rgba(0, 0, 0, 0.75),
		0 8px 20px rgba(0, 0, 0, 0.55),
		inset 0 2px 4px rgba(255, 255, 255, 0.22),
		inset 0 -10px 18px rgba(120, 70, 0, 0.45);
}

/* ===============================
🔱 VIDEO FRAME — CINEMATIC
=============================== */

.video-item {
	position: relative;
	border-radius: 14px;
	overflow: hidden;

	background: #000;

	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);

	aspect-ratio: 16 / 9;
}

/* subtle dark gradient overlay */
.video-item::after {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0.1),
			transparent);

	pointer-events: none;
}


.media-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ===============================
🔱 CONTROLS BAR
=============================== */

.video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;

	display: flex;
	align-items: center;
	gap: 10px;

	padding: 8px 12px;

	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.75),
			rgba(0, 0, 0, 0.3),
			transparent);

	opacity: 0;
	transition: opacity 0.3s ease;
}

/* show on hover */
.video-item:hover .video-controls {
	opacity: 1;
}


.vc-btn {
	background: none;
	border: none;
	color: #ffd87a;

	font-size: 14px;
	cursor: pointer;

	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.vc-btn:hover {
	opacity: 1;
}


/* ===============================
🔱 PROGRESS BAR
=============================== */

.progress-bar {
	flex: 1;
	height: 3px;

	background: rgba(20, 0, 0, 0.82);
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
}

.progress {
	height: 100%;
	width: 0%;

	background: linear-gradient(to right,
			#ffd87a,
			#fff3c0);
}


/* ===============================
🔱 VIDEO ZOOM ON PLAY
=============================== */

.media-video {
	transition: transform 1.2s ease;
}

.video-item.playing .media-video {
	transform: scale(1.05);
}


/* ===============================
🔱 SAFE FADE-IN (NO BLOCKING)
=============================== */

/* default: visible */
.video-item {
	opacity: 1;
	transform: none;
}



/* ===============================
🔱 ACTIVE VIDEO FOCUS
=============================== */

.video-item {
	transition: all 0.6s ease;
}

/* active (playing) */
.video-item.playing {
	transform: scale(1.02);

	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.28);
}


/* ===============================
🔱 INACTIVE VIDEO DIM
=============================== */

.video-item:not(.playing) {
	opacity: 0.75;
	filter: brightness(0.85) contrast(0.95);
}


/* ===============================
🔱 VIDEO TRANSITION SMOOTHING
=============================== */

.media-video {
	transition: transform 1.2s ease, filter 0.6s ease;
}

/* subtle zoom already applied */
.video-item.playing .media-video {
	transform: scale(1.05);
}


/* ===============================
🔱 GOLD AMBIENT GLOW
=============================== */

.video-item.playing::before {
	content: "";
	position: absolute;
	inset: -10%;
	z-index: 0;
	pointer-events: none;

	background: radial-gradient(circle,
			rgba(255, 210, 120, 0.18),
			transparent 70%);

	opacity: 0.6;
}

.video-item.playing .video-center-play {
	opacity: 0;
	pointer-events: none;
}


/* ===============================
🔱 FIXED HEADER VIEWPORT RESTORE
=============================== */

#smooth-content {

	will-change: auto !important;
}

#smooth-wrapper {
	overflow-x: hidden;
	overflow-y: visible;
}



/* ===============================
🔱 FIXED HEADER VIEWPORT RESTORE
=============================== */

html,
body,
#smooth-wrapper,
#smooth-content,
main {
	transform: none !important;
	filter: none !important;
	perspective: none !important;
	contain: none !important;
}

#smooth-wrapper,
#smooth-content {
	overflow-x: hidden !important;
	overflow-y: visible !important;
	will-change: auto !important;
}





/* =====================================================================================================
🔱 SUB-DEITIES ATMOSPHERE
======================================================================================================== */

/* ==================================================
🔱 SUB-DEITIES — ISOLATED SYSTEM
================================================== */

.subdeity-flow {
	position: relative;

	margin-top: -40px;
	padding: 40px 0 120px;

	position: relative;

	margin-top: -40px;
	padding: 40px 0 120px;

	overflow: hidden;
}

/* ==================================================
🔱 FLOATING SACRED ROWS
================================================== */

.subdeity-row {
	position: relative;

	display: grid;
	grid-template-columns: 1fr 420px 1fr;

	align-items: stretch;

	gap: 36px;

	max-width: 1600px;

	margin: 0 auto;

	padding: 80px 40px;
}


/* ==================================================
🔱 SUB-DEITY SACRED BRASS PANELS
================================================== */

.subdeity-card {
	position: relative;

	padding:
		clamp(24px, 3vw, 38px);

	border-radius: 26px;

	overflow: hidden;

	/* 🔱 sacred brass / metallic gold */
	/* 🔱 sacred metallic gold */

	/* 🔱 sacred silver metallic */

	background:
		linear-gradient(145deg,

			rgba(245, 245, 245, 0.30) 0%,
			rgba(220, 220, 220, 0.22) 12%,
			rgba(170, 170, 170, 0.26) 28%,
			rgba(118, 118, 118, 0.38) 52%,
			rgba(72, 72, 72, 0.82) 78%,
			rgba(34, 34, 34, 0.96) 100%);

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


	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;

	/* 🔱 metallic silver depth */

	backdrop-filter:
		blur(6px);

	box-shadow:
		0 14px 34px rgba(0, 0, 0, 0.24),
		0 0 18px rgba(255, 255, 255, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}




/* =================================
🔱 ABOUT SECTION — CLEAN SYSTEM
================================= */

.about-flow {
	max-width: 1200px;
	margin: auto;
	padding: 20px 20px;
}

/* ===============================
🧱 3-COLUMN GRID
=============================== */
.about-row {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 40px;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

/* IMPORTANT: prevent overflow */
.about-row > * {
	min-width: 0;
}


/* ===============================
   🔱 FINAL ABOUT CARD  MOVED FROM OLD
=============================== */
.about-card {
	position: relative;
	padding: 25px;
	border-radius: 14px;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: center;

	background:
		linear-gradient(145deg, #3a2a00, #c9a646),
		radial-gradient(circle at 30% 30%, rgba(255, 230, 150, 0.25), transparent 60%);

	border: 1px solid rgba(255, 215, 120, 0.4);

	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);

	transition: all 0.5s ease;
}

.about-card {
	position: relative;
	border-radius: 14px;

	background: linear-gradient(120deg,
			#3a2500 0%,
			#b8963a 25%,
			#f0d27a 50%,
			#b8963a 75%,
			#3a2500 100%);

	background-size: 200% 200%;
}

@keyframes goldFlow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}


.about-card h3 {
	color: #fff3c0;
	margin-bottom: 10px;
}

.about-card p {
	line-height: 1.4;
}


/* ===============================
🔱 ABOUT — EFFECT CLEAN SLATE
=============================== */

/* kill ALL pseudo effects on cards */
.about-card::before,
.about-card::after {
	content: none !important;
	animation: none !important;
	transform: none !important;
	opacity: 0 !important;
	background: none !important;
	box-shadow: none !important;
}

/* kill hover animations */
.about-card:hover,
.video-item:hover {
	transform: none !important;
	box-shadow: none !important;
}



/* ==================================================
🔱 SACRED RITUAL PROCESSION - POOJA TIMING SECTION
================================================== */

.ritual-procession {
	position: relative;

	max-width: 900px;

	margin: 0 auto 120px;

	padding: 0 20px;

	text-align: center;
}

/* ==================================================
🔱 TITLES
================================================== */

.ritual-title {
	font-size: clamp(2rem, 3vw, 3rem);

	color: #ffe6b0;

	margin-bottom: 40px;

	letter-spacing: 0.04em;

	text-shadow:
		0 0 12px rgba(255, 210, 120, 0.12);
}


/* ==================================================
🔱 SACRED FRAME HOLDER
================================================== */

.ritual-slider {
	position: relative;

	width: min(48vw, 820px);

	aspect-ratio: 16 / 9;

	margin: 0 auto;

	min-height: unset;

	/* 🔱 sacred ornamental frame boundary */

	border-radius: 42px;

	border:
		1.5px solid rgba(255, 220, 140, 0.45);

	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.28),
		0 0 22px rgba(255, 210, 120, 0.08),
		inset 0 1px 0 rgba(255, 245, 210, 0.22);

	overflow: hidden;
}

/* ==================================================
🔱 SACRED FRAME RITUAL SLIDES
================================================== */

.ritual-slide {
	position: absolute;

	inset: 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;


	padding: clamp(70px, 10vw, 130px) clamp(40px, 8vw, 100px);

	background:
		url("../assets/images/pooja-timing-frame.png") center center / contain no-repeat;

	border: none;

	box-shadow: none;

	opacity: 0;


	pointer-events: none;

	overflow: hidden;

	/* 🔱 sacred frame depth */

	/*
	border: 1px solid rgba(255, 220, 140, 0.42);
*/

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.28),
		0 0 18px rgba(255, 210, 120, 0.08),
		inset 0 1px 0 rgba(255, 245, 210, 0.22);

	transition:
		opacity 1.4s ease;
}

/* ACTIVE */

.ritual-slide.active {
	opacity: 1;

	transform:
		translateY(0);

	pointer-events: auto;
}


/* ==================================================
🔱 TIME
================================================== */

.ritual-slide span {
	font-size:
		clamp(1.2rem, 1.8vw, 1.8rem);

	letter-spacing: 0.20em;

	text-transform: uppercase;

	color: #FFF085;

	font-weight: 700;

	margin-bottom: 24px;

	text-shadow:
		0 2px 6px rgba(60, 10, 0, 0.65),
		0 0 8px rgba(255, 180, 60, 0.10);
}




/* ==================================================
🔱 MOBILE
================================================== */

@media (max-width: 768px) {

	.ritual-slide {
		padding: 40px 20px;
	}

	.ritual-slide h3 {
		font-size: 2rem;
	}

	.ritual-slide .ml {
		font-size: 1.5rem;
	}
}


/* ==================================================
🔱 NEXT RITUAL
================================================== */

.next-pooja {
	margin-top: 28px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 10px;

	text-align: center;

	padding-top: 22px;

	border-top:
		1px solid rgba(255, 220, 140, 0.12);
}

/* LABEL */

.next-pooja span {
	font-size: 0.78rem;

	letter-spacing: 0.18em;

	text-transform: uppercase;

	color: #FFF085;

	text-shadow:
		0 2px 8px rgba(60, 10, 0, 0.28),
		0 0 12px rgba(255, 180, 60, 0.10);
}

/* NAME */

.next-pooja-name {
	font-size: clamp(1rem, 2vw, 1.35rem);

	font-weight: 500;

	color: #FFF085;

	letter-spacing: 0.03em;

	text-shadow:
		0 0 10px rgba(255, 210, 120, 0.08);
}


/* 🔱 subtle sacred readability layer */

.ritual-slide::before {
	content: "";

	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle,
			rgba(255, 235, 180, 0.06),
			rgba(120, 40, 0, 0.10));

	pointer-events: none;
}


/* ==================================================
🔱 POOJA TIMINGS SECTION
================================================== */

.pooja-timings-section {
	position: relative;

	padding:
		0 20px 140px;

	background: transparent;

	overflow: hidden;
}


/* ==================================================
🔱 SACRED TEXT EMERGENCE
================================================== */

.ritual-slide span,
.ritual-slide h3 {
	opacity: 0;

	transform:
		scale(0.94);

	transition:
		opacity 1.6s ease,
		transform 1.6s ease;
}

/* ACTIVE TEXT */

.ritual-slide.active span,
.ritual-slide.active h3 {
	opacity: 1;

	transform:
		scale(1);
}


/* ==================================================
🔱 SACRED RITUAL TITLE
================================================== */

.ritual-slide h3 {
	font-size:
		clamp(1.5rem, 2.7vw, 3.2rem);

	font-weight: 700;

	line-height: 1.15;

	color: #fff085;

	margin-bottom: 18px;

	text-align: center;

	text-shadow:
		0 3px 10px rgba(60, 10, 0, 0.58),
		0 0 16px rgba(255, 180, 60, 0.10);
}


/* ==================================================
🔱 POOJA TIMINGS SECTION (FINAL CLEAN)
================================================== */

.pooja-timings-section {
	position: relative;

	margin-top: 0 !important;

	margin-bottom: 120px;

	padding:
		0 !important;

	background: transparent !important;

	border: none !important;

	border-radius: 0 !important;

	box-shadow: none !important;

	outline: none !important;

	overflow: visible;
}


/* ==================================================
🔱 MOBILE SACRED FRAME
================================================== */

@media (max-width: 768px) {

	.ritual-slider {

		width: 100%;

		max-width: 100%;

		border-radius: 28px;
	}

	.ritual-slide {

		padding:
			50px 22px;
	}
}


/* ==================================================
🔱 POOJA DESCRIPTION — SACRED GOLD PLATE
================================================== */

.pooja-description {
	position: relative;

	max-width: 980px;

	margin:
		0 auto 70px;

	padding:
		42px 48px;

	text-align: center;

	border-radius: 34px;

	/* 🔱 sacred gold plate */
	background:
		linear-gradient(145deg,
			rgba(95, 28, 8, 0.82),
			rgba(58, 14, 6, 0.92));

	border:
		1.5px solid rgba(255, 220, 140, 0.38);

	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.24),
		0 0 18px rgba(255, 210, 120, 0.06),
		inset 0 1px 0 rgba(255, 245, 210, 0.14);

	overflow: hidden;
}

/* ==================================================
🔱 GOLDEN EDGE GLOW
================================================== */

.pooja-description::before {
	content: "";

	position: absolute;
	inset: 0;

	border-radius: inherit;

	padding: 1px;

	background:
		linear-gradient(135deg,
			rgba(255, 245, 210, 0.95),
			rgba(255, 210, 120, 0.42),
			rgba(255, 170, 40, 0.12),
			rgba(255, 220, 140, 0.55),
			rgba(255, 250, 235, 0.95));

	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);

	-webkit-mask-composite: xor;
	mask-composite: exclude;

	opacity: 0.9;

	pointer-events: none;
}

/* ==================================================
🔱 TITLE
================================================== */

.pooja-description h2 {
	position: relative;

	font-size:
		clamp(2.1rem, 4vw, 3.8rem);

	font-weight: 700;

	margin-bottom: 24px;

	letter-spacing: 0.03em;

	color: #ffe6b0;

	text-shadow:
		0 2px 10px rgba(0, 0, 0, 0.28),
		0 0 14px rgba(255, 210, 120, 0.08);
}

/* ENGLISH */

.pooja-description h2.en {
	font-family:
		"Cinzel",
		serif;
}

/* MALAYALAM */

.pooja-description h2.ml {
	font-family:
		"Noto Serif Malayalam",
		serif;

	font-size:
		clamp(1.7rem, 3vw, 2.8rem);
}

/* ==================================================
🔱 DESCRIPTION TEXT
================================================== */

.pooja-description p {
	position: relative;

	max-width: 760px;

	margin:
		0 auto 18px;

	font-size:
		clamp(1rem, 1.3vw, 1.16rem);

	line-height: 1.95;

	letter-spacing: 0.02em;

	color:
		rgba(255, 236, 205, 0.88);

	text-shadow:
		0 1px 6px rgba(0, 0, 0, 0.18);
}

/* MALAYALAM TEXT */

.pooja-description p.ml {
	font-family:
		"Noto Serif Malayalam",
		serif;

	line-height: 2.1;
}

/* ==================================================
🔱 MOBILE
================================================== */

@media (max-width: 768px) {

	.pooja-description {

		padding:
			34px 24px;

		border-radius: 28px;

		margin-bottom: 50px;
	}

	.pooja-description h2 {
		margin-bottom: 20px;
	}

	.pooja-description p {
		font-size: 1rem;

		line-height: 1.9;
	}
}


/* ==================================================
🔸 TYPOGRAPHY
================================================== */

/* ==================================================
🔱 POOJA HEADER TYPOGRAPHY
================================================== */

.pooja-head-title {
	position: relative;
	z-index: 3;

	font-size:
		clamp(0.9rem, 1.9vw, 2.0rem);

	font-weight: 700;

	line-height: 0.5;

	color: #fff0cf;

	text-shadow:
		0 4px 18px rgba(0, 0, 0, 0.75),
		0 0 22px rgba(255, 210, 120, 0.10);
}

/* MALAYALAM */

.pooja-head-title.ml {
	/*
	font-family: "Noto Serif Malayalam",
	serif;*/

	font-size:
		clamp(1.5rem, 2.5vw, 2.25rem);
}

/* ==================================================
🔱 TAGLINE
================================================== */

.pooja-head-tag {
	position: relative;
	z-index: 3;

	font-size:
		clamp(1.1rem, 2vw, 1.5rem);

	font-weight: 500;

	line-height: 1.0;

	letter-spacing: 0.04em;

	color:
		rgba(255, 235, 205, 0.92);

	margin-top: 18px;

	text-shadow:
		0 2px 8px rgba(0, 0, 0, 0.22);
}

/* ==================================================
🔱 DESCRIPTION LABEL
================================================== */

.pooja-head-label {
	position: relative;
	z-index: 3;

	max-width: 900px;

	margin:
		34px auto 0;

	font-size:
		clamp(1rem, 1.2vw, 1.18rem);

	line-height: 2;

	font-weight: 400;

	letter-spacing: 0.02em;

	color:
		rgba(255, 240, 215, 0.88);

	text-shadow:
		0 2px 8px rgba(0, 0, 0, 0.20);
}

/* MALAYALAM LABEL */

.pooja-head-label.ml {
	font-family:
		"Noto Serif Malayalam",
		serif;

	line-height: 2.1;
}

.pooja-head-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:
		140px 20px 120px;
}


/* ===============================
📱 MOBILE OPTIMIZATION
=============================== */

@media (max-width: 768px) {


	.s-head-content {
		padding: 12px;
	}

	.pooja-head-title {
		font-size: 15px;
		/* 🔥 reduced */
		line-height: 0.5;
	}

	.pooja-head-tag {
		font-size: 11px;
	}

	.pooja-head-label {
		font-size: 13px;
		letter-spacing: 1.5px;
	}
}


/* ==================================================
🔱 HEADER IMAGE REFINEMENT
================================================== */

.gold-bg img {
	filter:
		brightness(0.72) contrast(1.08) saturate(1.05);
}



/* ==================================================
🔱 REMOVE HEADER SHIMMER / OVERLAYS
================================================== */

.s-section-head::before,
.s-section-head::after,

.gold-theme::before,
.gold-theme::after,

.s-head-content::before,
.s-head-content::after {

	display: none !important;
	content: none !important;
}



/* ==================================================
🔱 POOJA HEADER — MOBILE FRAME SAFE SYSTEM
================================================== */

/* ==================================================
🔱 POOJA HEADER CONTAINER
================================================== */

.pooja-head-section {
	position: relative;

	width: 100%;

	overflow: hidden;
	margin-bottom: 50px;
}


/* ==================================================
🔱 SACRED HEADER FRAME WRAPPER
================================================== */

.pooja-head-section .gold-bg {
	position: relative;

	width: 100%;

	z-index: 1;
}

/* ==================================================
🔱 RESPONSIVE SACRED FRAME IMAGE
================================================== */

.pooja-head-section .gold-bg img {

	width: 100%;
	height: auto;

	display: block;

	object-fit: contain;

	filter:
		brightness(0.72) contrast(1.05);

	pointer-events: none;
}

/* ==================================================
🔱 CONTENT LAYER
================================================== */

.pooja-head-section .s-head-content {
	position: relative;
	z-index: 3;

	width: 100%;
}

/* ==================================================
🔱 SAFE TEXT ZONE
================================================== */

.pooja-head-section .s-head-inner {

	width:
		min(88%, 950px);

	margin: 0 auto;

	padding:
		clamp(80px, 10vw, 140px) clamp(30px, 8vw, 90px);

	text-align: center;
}

/* ==================================================
🔱 MOBILE OPTIMIZATION
================================================== */

@media (max-width: 768px) {

	.pooja-head-section {

		padding:
			20px 0;
	}

	.pooja-head-section .gold-bg img {

		width: 100%;
		height: auto;

		object-fit: contain;
	}

	.pooja-head-section .s-head-inner {

		width: 94%;

		padding:
			42px 22px;
	}

	.pooja-head-title {

		font-size:
			clamp(2rem, 8vw, 3rem);

		line-height: 1.18;
	}

	.pooja-head-tag {

		font-size:
			1rem;

		line-height: 1.0;

		margin-top: 14px;
	}

	.pooja-head-label {

		font-size:
			0.94rem;

		line-height: 1.00;

		margin-top: 22px;
	}
}


/* ==================================================
🔱 POOJA INVOCATION TEXT
================================================== */

.pooja-head-invocation {
	position: relative;
	z-index: 3;

	max-width: 820px;

	margin:
		26px auto 0;

	font-size:
		clamp(1rem, 1.35vw, 1.28rem);

	line-height: 1.30;

	font-weight: 400;

	/*	letter-spacing: 0.02em;*/

	color:
		rgba(255, 240, 215, 0.92);

	text-align: center;

	text-shadow:
		0 2px 8px rgba(0, 0, 0, 0.24);
}

/* MALAYALAM */

.pooja-head-invocation.ml {

	font-family:
		"Noto Serif Malayalam",
		serif;

	line-height: 1.05;
}

/* ==================================================
🔱 MOBILE
================================================== */

@media (max-width: 768px) {

	.pooja-head-invocation {

		font-size:
			0.95rem;

		line-height: 1.00;

		margin-top: 18px;
	}
}


/* ==================================================
🔱 FLOATING TEXT OVER FRAME
================================================== */

.pooja-head-section .s-head-content {
	position: absolute;

	inset: 0;

	z-index: 3;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;
}


/* ==================================================
🔱 FINAL MOBILE STACK FIX
================================================== */

@media screen and (max-width: 900px) {

	.about-row,
	.subdeity-row {

		display: grid !important;

		grid-template-columns: 1fr !important;

		gap: 24px !important;

		width: 100%;
	}

	.about-media,
	.about-card,
	.subdeity-media,
	.subdeity-card {

		width: 100% !important;

		max-width: 100% !important;
	}

	.about-flow,
	.subdeity-flow {

		padding-left: 14px;
		padding-right: 14px;
	}
}


/* ==================================================
🔱 SACRED SILVER TEMPLE PLATE
================================================== */

.subdeity-card {
	position: relative;

	padding:
		clamp(24px, 3vw, 38px);

	border-radius: 26px;

	overflow: hidden;

	/* 🔱 sacred pearl silver */

	/* 🔱 sacred pearl silver with ceremonial warmth */

	background:
		linear-gradient(to bottom,

			#fffdf8 0%,
			#f5f1e8 10%,
			#dfe3e4 24%,
			#c1c7ca 42%,
			#f4eee2 58%,
			#cdd2d4 76%,
			#9ea5aa 100%);

	border:
		1px solid rgba(255, 235, 210, 0.22);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.92),
		inset 0 -1px 1px rgba(0, 0, 0, 0.12),
		0 10px 24px rgba(0, 0, 0, 0.16),
		0 0 18px rgba(255, 255, 255, 0.08),
		0 0 14px rgba(255, 190, 80, 0.05);

	backdrop-filter:
		blur(4px);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}


//* ==================================================
🔱 PEARL SILVER SHEEN==================================================*/ .subdeity-card::before {
	content: "";

	position: absolute;
	inset: 0;

	border-radius: inherit;

	background:
		linear-gradient(to right,

			rgba(255, 248, 235, 0.34),

			rgba(255, 235, 210, 0.06) 20%,

			rgba(255, 245, 225, 0.18) 40%,

			rgba(255, 235, 215, 0.04) 60%,

			rgba(255, 248, 230, 0.22) 80%,

			rgba(255, 245, 225, 0.08));

	mix-blend-mode: soft-light;

	opacity: 0.85;

	pointer-events: none;
}

/* ==================================================
🔱 PEARL INNER GLOW
================================================== */

.subdeity-card::after {
	content: "";

	position: absolute;

	inset: 0;

	border-radius: inherit;

	background:
		radial-gradient(circle at top left,
			rgba(255, 236, 205, 0.20),
			transparent 45%);

	pointer-events: none;

	opacity: 0.8;
}


/* ==================================================
🔱 SACRED HOVER
================================================== */

.subdeity-card:hover {

	transform:
		translateY(-2px);

	border-color:
		rgba(255, 230, 160, 0.34);

	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.26),
		0 0 18px rgba(255, 210, 120, 0.08);
}

/* ==================================================
🔱 SUB-DEITY TITLES
================================================== */

/* ==================================================
🔱 MAIN TITLE
================================================== */

.subdeity-card h2 {

	font-size:
		clamp(1.7rem, 2.1vw, 2.2rem);

	font-weight: 700;

	line-height: 1.25;

	margin-bottom: 8px;

	color: #6e1020;

	letter-spacing: 0.01em;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.82),
		0 2px 6px rgba(120, 0, 20, 0.10);
}

/* ==================================================
🔱 SUB TITLE
================================================== */

.subdeity-card h3 {

	font-size:
		clamp(1rem, 1.15vw, 1.16rem);

	font-weight: 500;

	line-height: 1.7;

	margin-bottom: 18px;

	color: rgba(108, 0, 24, 0.78);

	letter-spacing: 0.06em;

	text-transform: uppercase;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.22);
}


/* ==================================================
🔱 SUB-DEITY TEXT
================================================== */

.subdeity-card p,
li {

	font-size:
		clamp(0.98rem, 1vw, 1.05rem);

	line-height: 1.9;
	margin-bottom: 15px;

	letter-spacing: 0.015em;

	color: rgba(92, 0, 18, 0.82);

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.18);

}

.subdeity-card ul {
	padding-left: 22px;
}




/* ==================================================
🔱 MEDIA
================================================== */

/* ==================================================
🔱 FLOATING SACRED IMAGES
================================================== */

.subdeity-media.multi-image {
	display: flex;
	flex-direction: column;

	justify-content: center;

	gap: 30px;

	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
}

.img-wrap {
	position: relative;

	/*	border-radius: 30px;*/

	overflow: hidden;


}


.img-wrap:nth-child(2) {
	animation-delay: 2s;
}

.img-wrap img {
	display: block;

	width: 100%;
	height: auto;

	object-fit: cover;
}


/* ==================================================
🔱 MOBILE SACRED FLOW
================================================== */

@media (max-width: 980px) {

	.subdeity-row {
		display: flex;
		flex-direction: column;

		padding: 60px 20px;

		gap: 26px;
	}

	/* 🔱 correct narrative flow */
	.subdeity-card.left {
		order: 1;
	}

	.subdeity-media {
		order: 2;
	}

	.subdeity-card.right {
		order: 3;
	}

	/* typography refinement */
	.subdeity-card h2 {
		font-size: 2rem;
	}

	.subdeity-card p,
	.subdeity-card li {
		font-size: 0.96rem;
		line-height: 1.8;
	}
}



/* ==================================================
🔱 ABOUT / SUBDEITY RIPPLE SYSTEM
================================================== */

.about-ripple {

	position: absolute;

	top: 50%;
	left: 50%;

	width: 340px;
	height: 340px;

	transform:
		translate(-50%, -50%);

	border-radius: 50%;

	border:
		1.5px solid rgba(255, 225, 170, 0.30);

	background:
		radial-gradient(circle,
			rgba(255, 235, 180, 0.12) 0%,
			rgba(255, 215, 120, 0.05) 35%,
			rgba(255, 200, 100, 0.02) 55%,
			transparent 75%);

	box-shadow:
		0 0 32px rgba(255, 215, 120, 0.14);

	opacity: 0;

	animation:
		aboutRipple 6s linear infinite;

	z-index: 2;

	pointer-events: none;
}


/* ==================================================
🔱 ABOUT RIPPLE STAGGER
================================================== */

.about-ripple:nth-of-type(1) {
	animation-delay: 0s;
}

.about-ripple:nth-of-type(2) {
	animation-delay: 1.5s;
}

.about-ripple:nth-of-type(3) {
	animation-delay: 3s;
}

.about-ripple:nth-of-type(4) {
	animation-delay: 4.5s;
}


/* ==================================================
🔱 ABOUT SACRED RIPPLE
================================================== */

@keyframes aboutRipple {

	0% {
		opacity: 0;

		transform:
			translate(-50%, -50%) scale(0.6);
	}

	18% {
		opacity: 0.42;
	}

	70% {
		opacity: 0.16;
	}

	100% {
		opacity: 0;

		transform:
			translate(-50%, -50%) scale(2.2);
	}
}


/* ==================================================
🔱 FINAL SUBDEITY MOBILE TYPOGRAPHY FIX
================================================== */

@media screen and (max-width: 768px) {

	.subdeity-card h2 {

		font-size: 1.38rem !important;

		line-height: 1.32 !important;

		margin-bottom: 10px !important;

		letter-spacing: 0.01em !important;
	}

	.subdeity-card h3 {

		font-size: 0.88rem !important;

		line-height: 1.65 !important;

		margin-bottom: 14px !important;

		letter-spacing: 0.04em !important;
	}

	.subdeity-card p,
	.subdeity-card li {

		font-size: 0.94rem !important;

		line-height: 1.82 !important;

		margin-bottom: 14px !important;
	}

	.subdeity-card ul {

		padding-left: 18px !important;
	}
}



/* ==================================================
🔱 LIVE TEMPLE STATUS PANEL
================================================== */

.live-temple-panel {

	position: relative;

	width:
		min(92%, 760px);

	min-height:
		535px;

	margin:
		50px auto 70px;

	padding:
		150px 42px 60px;

	text-align: center;

	border-radius: 34px;

	overflow: visible;

	/* 🔱 ornamental frame artwork */
	background:
		url("../assets/images/frame-realtime.png") center center / contain no-repeat;

	/* 🔱 transparent so PNG cutouts work */
	background-color:
		transparent;

	box-shadow:
		0 18px 50px rgba(0, 0, 0, 0.18);

}


/* ==================================================
🔱 INNER CONTENT LAYER
================================================== */

.live-temple-panel > * {

	position: relative;

	z-index: 2;
}


/* ==================================================
🔱 LIVE CLOCK
================================================== */

.live-clock {

	font-size:
		clamp(1.9rem, 4vw, 2.8rem);

	font-weight: 700;

	line-height: 1.2;

	color:
		#6e1020;

	margin-bottom: 18px;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.72);
}


/* ==================================================
🔱 TEMPLE STATUS
================================================== */

.live-status {

	font-size:
		1.08rem;

	font-weight: 700;

	line-height: 1.45;

	letter-spacing: 0.02em;

	color:
		rgba(120, 0, 20, 0.88);

	margin-bottom: 22px;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.58);
}


/* ==================================================
🔱 RITUAL LABEL
================================================== */

.ritual-label {

	font-size:
		1rem;

	font-weight: 700;

	line-height: 1.2;

	letter-spacing: 0.05em;

	text-transform: uppercase;

	color:
		rgba(110, 16, 32, 0.84);

	margin-bottom: 10px;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.65);
}


/* ==================================================
🔱 RITUAL NAME
================================================== */

.live-ritual-name {

	font-size:
		clamp(1.55rem, 3vw, 2.2rem);

	font-weight: 700;

	line-height: 1.2;

	letter-spacing: 0.04em;

	text-transform: uppercase;

	color:
		#6e1020;

	margin-bottom: 10px;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.72);
}


/* ==================================================
🔱 RITUAL TIME
================================================== */

.live-ritual-time {

	font-size:
		1.15rem;

	font-weight: 700;

	line-height: 1.2;

	letter-spacing: 0.04em;

	color:
		#7a0018;

	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.72);
}


/* ==================================================
🔱 MOBILE REFINEMENT
================================================== */

@media (max-width: 768px) {

	.live-temple-panel {

		width:
			calc(100% - 18px);

		min-height:
			460px;

		padding:
			118px 24px 50px;

		margin:
			40px auto 60px;

		background-size:
			contain;
	}

	.live-clock {

		font-size:
			1.75rem;

		margin-bottom: 2px;
		margin-top: 50px;
	}

	.live-status {

		font-size:
			0.95rem;

		line-height: 1.4;
		margin-top: 2px;
		margin-bottom: 5px;
	}

	.ritual-label {

		font-size:
			0.9rem;
	}

	.live-ritual-name {

		font-size:
			1.3rem;

		line-height: 1.2;
	}

	.live-ritual-time {

		font-size:
			1rem;
	}
}



/* ================================================================================================
   📜 HISTORY SCROLL SECTION
=================================================================================================== */

.history-scroll-section {
	position: relative;
	padding: 20px 20px 20px;
}

@media (max-width: 900px) {

	.history-scroll-section {
		padding-left: 0;
		padding-right: 0;
	}
}

/* =========================================
   🔱 WRAPPER
========================================= */

/* =========================================
   🔱 WRAPPER
========================================= */

.history-scroll-wrap {

	position: relative;

	max-width: 1220px;

	margin: auto;

	padding-bottom: 80px;

	transform: translateZ(0);
}

/* =========================================
   🔱 AMBIENT GLOW
========================================= */

.history-ambient-glow {
	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle at 50% 0%,
			rgba(255, 210, 120, 0.12),
			transparent 60%);

	pointer-events: none;
}

/* =========================================
   📜 IMAGE ROLLERS
========================================= */

.scroll-top-bar,
.scroll-bottom-bar {

	position: relative;

	width: 100%;
	height: 118px;

	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;

	z-index: 10;

	transform: translateZ(0);
}

.scroll-top-bar {
	background-image: url("../assets/images/roller-top.png");
}

.scroll-bottom-bar {
	background-image: url("../assets/images/roller-bottom.png");
}

/* =========================================
   🔱 TITLE
========================================= */

.scroll-title {

	position: absolute;

	left: 50%;
	top: 50%;

	transform: translate(-50%, -52%);

	font-size: clamp(22px, 2vw, 34px);

	font-family: "Cormorant Garamond", serif;
	font-weight: 600;

	letter-spacing: 0.5px;

	color: #5c2200;

	text-shadow:
		0 1px 4px rgba(255, 255, 255, 0.35);

	z-index: 20;

	pointer-events: none;
}

/* =========================================
   📜 HISTORY SCROLL BODY
========================================= */

/* =========================================
   📜 HISTORY SCROLL BODY
========================================= */

/* =========================================
   📜 HISTORY SCROLL BODY
========================================= */

.history-scroll-body {

	position: absolute;

	top: 85px;
	left: 50%;

	transform: translateX(-50%) translateZ(0);

	width: calc(100% - 260px);

	height: 72vh;

	z-index: 2;

	overflow-y: auto;
	overflow-x: hidden;

	scrollbar-gutter: stable;

	padding:
		95px 10px 140px;

	/* parchment styling */

	background:

		radial-gradient(circle at 50% 20%,
			rgba(255, 248, 230, 0.96) 0%,
			rgba(245, 225, 185, 0.92) 30%,
			rgba(226, 190, 125, 0.88) 100%),

		linear-gradient(180deg,
			#f7e7c5 0%,
			#efd29b 18%,
			#e2bc7a 52%,
			#d4a45f 100%);

	box-shadow:
		inset 0 0 80px rgba(120, 70, 10, 0.12),
		0 20px 50px rgba(0, 0, 0, 0.38);

	border-left: 4px solid rgba(126, 74, 0, 0.18);
	border-right: 4px solid rgba(126, 74, 0, 0.18);

	/* CLOSED */

	opacity: 0;

	clip-path: inset(0 0 100% 0);

	pointer-events: none;

	backface-visibility: hidden;

	will-change:
		clip-path,
		opacity;

	transition:
		clip-path 1.15s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
}

/* =========================================
   🔱 OPEN STATE
========================================= */

.history-scroll-section.active .history-scroll-body {

	opacity: 1;

	clip-path: inset(0 0 0 0);

	pointer-events: auto;
}


/* =========================================
   🔱 OPEN STATE
========================================= */

.history-scroll-section.active .history-scroll-body {

	opacity: 1;

	clip-path: inset(0 0 0 0);

	pointer-events: auto;
}



/* =========================================
   🔻 BOTTOM ROLLER
========================================= */

/* =========================================
   🔻 BOTTOM ROLLER
========================================= */

.scroll-bottom-bar {

	position: absolute;

	top: 55px;
	left: 50%;

	transform:
		translateX(-50%) translateY(0);

	width: 100%;

	height: 118px;

	z-index: 5;

	cursor: pointer;
	user-select: none;

	background-image:
		url("../assets/images/roller-bottom.png");

	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;

	backface-visibility: hidden;

	will-change: transform;

	transition:
		transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   🔓 OPEN
========================================= */

.history-scroll-section.active .scroll-bottom-bar {

	transform:
		translateX(-50%) translateY(calc(72vh - 7px));
}


/* =========================================
   🔥 SECTION HEIGHT CONTROL
========================================= */

.history-scroll-section {

	min-height: 240px;

	transition:
		min-height 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.history-scroll-section.active {

	min-height: calc(72vh + 220px);
}

/* =========================================
   ✨ PAPER TEXTURE OVERLAY
========================================= */

.history-scroll-body::before {

	content: "";

	position: absolute;
	inset: 0;

	background:

		repeating-linear-gradient(0deg,
			rgba(255, 255, 255, 0.02) 0px,
			rgba(255, 255, 255, 0.02) 1px,
			transparent 1px,
			transparent 5px),

		radial-gradient(circle at center,
			transparent 45%,
			rgba(90, 40, 0, 0.08) 100%);

	mix-blend-mode: multiply;

	pointer-events: none;

	z-index: 1;
}

/* =========================================
   ✨ TOP/BOTTOM FADE
========================================= */

.history-scroll-body::after {

	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(to bottom,
			rgba(247, 231, 197, 1) 0%,
			rgba(247, 231, 197, 0) 8%,
			rgba(247, 231, 197, 0) 92%,
			rgba(212, 164, 95, 1) 100%);

	pointer-events: none;

	z-index: 2;
}

/* =========================================
   🔱 DEITY ICON
========================================= */

.history-deity-icon {

	position: absolute;

	top: 18px;
	left: 50%;

	transform: translateX(-50%);

	width: 110px;
	height: 110px;

	border-radius: 50%;

	background:
		radial-gradient(circle,
			rgba(255, 220, 120, 0.95),
			rgba(255, 180, 80, 0.5),
			transparent);

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 5;
}

.history-deity-icon img {

	width: 72px;
	height: 72px;

	object-fit: contain;

	filter:
		drop-shadow(0 0 15px rgba(255, 215, 120, 0.7));
}

/* =========================================
   🌐 CONTENT
========================================= */

.history-column {

	position: relative;
	z-index: 5;

	max-width: 860px;

	margin: 0 auto;

	padding-top: 95px;
}

.history-column h3 {

	font-size: 25px;

	margin-bottom: 28px;

	color: #5a1d00;

	font-family: "Cormorant Garamond", serif;

	text-align: center;
}

.history-column h4 {

	margin-top: 34px;
	margin-bottom: 16px;

	font-size: 24px;

	color: #7a2400;

	font-weight: 700;
}

.history-column p,
.history-column li {

	color: #442100;

	font-size: 17px;

	line-height: 1.95;

	margin-top: 18px;
	margin-bottom: 18px;

	text-align: left;
}

.history-column ul {
	padding-left: 22px;
}

.history-column li {
	margin-bottom: 10px;
}

/* =========================================
   🔻 TOGGLE BAR
========================================= */

.scroll-bottom-bar {

	cursor: pointer;
	user-select: none;
}

/* =========================================
   🔻 ARROWS
========================================= */

.scroll-toggle-arrows {

	position: absolute;

	left: 50%;
	top: 50%;

	transform: translate(-50%, -50%);

	font-size: 34px;

	color: #6a2800;

	z-index: 20;

	cursor: pointer;

	text-shadow:
		0 0 10px rgba(255, 220, 120, 0.5);

	animation: sacredArrowFloat 2s ease-in-out infinite;
}

.scroll-toggle-arrows span {

	display: inline-block;

	transition:
		transform 0.4s ease,
		opacity 0.3s ease;
}

@keyframes sacredArrowFloat {

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

	50% {
		transform: translate(-50%, calc(-50% + 8px));
	}
}

/* =========================================
   📱 MOBILE
========================================= */

@media (max-width: 900px) {

	.scroll-top-bar,
	.scroll-bottom-bar {

		height: 82px;
	}

	.scroll-title {

		font-size: 21px;

		width: 72%;

		text-align: center;

		line-height: 1.2;
	}

	.history-scroll-body {

		top: 52px;

		width: calc(100% - 93px);

		height: 68vh;

		padding:
			75px 18px 100px;
	}


	.history-scroll-section.active {

		min-height: calc(68vh + 180px);
	}



	.history-scroll-section.active .scroll-bottom-bar {

		transform:
			translateX(-50%) translateY(calc(68vh - 44px));
	}

	.history-column {

		max-width: 100%;

		padding-top: 70px;
	}

	.history-column h3 {

		font-size: 15px;

		line-height: 1.3;
	}

	.history-column h4 {

		font-size: 21px;
	}

	.history-column p,
	.history-column li {

		font-size: 12px;

		line-height: 1.5;
	}
}




/* ==================================================================================================
   🌟 FESTIVAL SECTION
==================================================================================================== */
/* =====================================================================================
   🌟 FESTIVAL SECTION 🌟 FESTIVAL SECTION 🌟 FESTIVAL SECTION 🌟 FESTIVAL SECTION 🌟 FESTIVAL SECTION 
====================================================================================== */

.festival-section {

	position: relative;

	padding: 120px 20px;

	overflow: hidden;

	background:


		linear-gradient(180deg,
			rgba(8, 2, 2, 0.1) 0%,
			rgba(18, 5, 5, 0.2) 35%,
			rgba(10, 2, 2, 0.3) 100%),


		url("../assets/images/festival-header-bg.jpg");

	background-size: cover;

	background-position: center center;

	background-repeat: no-repeat;

	background-attachment: fixed;
}

@media (max-width: 900px) {

	.festival-section {

		padding:
			90px 18px;

		background-attachment: fixed;

		background-position: 72% center;

		background-size: cover;
	}


	.festival-main-title {

		font-size: 20px;

		line-height: 1.2;
	}

	.festival-hero-title {

		font-size: 20px;

		line-height: 1.2;
	}
}


/* =====================================================================================
   🔥 OVERLAY
====================================================================================== */

.festival-bg-overlay {

	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle at center,
			rgba(255, 180, 90, 0.06),
			transparent 60%);

	pointer-events: none;
}


/* =====================================================================================
   ✨ FLOATING PARTICLES
====================================================================================== */

.festival-floating-particles {

	position: absolute;
	inset: 0;

	background-image:
		radial-gradient(circle,
			rgba(255, 210, 120, 0.18) 1px,
			transparent 1px);

	background-size: 120px 120px;

	opacity: 0.22;

	animation: festivalParticles 28s linear infinite;

	pointer-events: none;
}

@keyframes festivalParticles {

	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-120px);
	}
}


/* =====================================================================================
   🌟 HEADER
====================================================================================== */

.festival-section-header {

	position: relative;

	max-width: 980px;

	margin: 0 auto 90px;

	text-align: center;

	z-index: 5;

}

.festival-section-tagline {

	display: inline-block;

	margin-bottom: 22px;

	color: #ffcb7d;

	font-size: 18px;

	letter-spacing: 1px;

	text-transform: uppercase;
}

.festival-main-title {

	font-family: "Cormorant Garamond", serif;

	font-size: clamp(24px, 3vw, 34px);

	font-weight: 600;

	line-height: 1.15;

	color: #f5deb3;

	margin-bottom: 10px;

	letter-spacing: 0.5px;

	text-shadow:
		0 0 18px rgba(255, 190, 120, 0.14);
}

.festival-divider {

	width: 180px;
	height: 1px;

	margin: 30px auto;

	background:
		linear-gradient(90deg,
			transparent,
			rgba(255, 210, 120, 0.9),
			transparent);
}

.festival-intro {

	max-width: 820px;

	margin: 0 auto 18px;

	color: rgba(255, 240, 220, 0.88);

	font-size: 18px;

	line-height: 1.9;
}


/* =====================================================================================
   🌟 HERO FESTIVAL BLOCK
====================================================================================== */

.festival-hero-block {

	position: relative;

	max-width: 1450px;

	margin: auto;

	border-radius: 38px;

	overflow: hidden;

	min-height: 860px;

	border: 1px solid rgba(255, 200, 120, 0.12);

	box-shadow:
		0 40px 100px rgba(0, 0, 0, 0.55),
		inset 0 0 120px rgba(255, 180, 80, 0.04);
}


/* =====================================================================================
   🎥 HERO BACKGROUND
====================================================================================== */

/* =====================================================================================
   🎥 FESTIVAL VIDEO BACKGROUND
====================================================================================== */

.festival-bg-video {

	position: absolute;

	inset: 0;

	width: 100%;
	/*	height: 100%;*/

	object-fit: cover;

	object-position: center center;

	object-position: center center;

	z-index: 1;

	filter:
		brightness(0.72) saturate(1.08) contrast(1.04);

	transform: scale(1.03);
}

@media (max-width: 900px) {

	.festival-bg-video {

		object-fit: contain;

		background: #120303;

		object-position: center top;
	}
}

/* =====================================================================================
   🔥 GRADIENT
====================================================================================== */

.festival-hero-gradient {

	position: absolute;
	inset: 0;

	z-index: 2;

	background:

		radial-gradient(circle at center,
			rgba(255, 180, 80, 0.06) 0%,
			rgba(120, 20, 10, 0.16) 45%,
			rgba(8, 2, 2, 0.74) 100%),

		linear-gradient(180deg,
			rgba(0, 0, 0, 0.18) 0%,
			rgba(8, 2, 2, 0.58) 100%);
}


@media (max-width: 900px) {

	.festival-bg-video {

		object-position: center center;

		filter:
			brightness(0.82) saturate(1.02);

		transform: scale(1.02);
	}
}



/* =====================================================================================
   ✨ GLOWS
====================================================================================== */

.festival-glow {

	position: absolute;

	width: 460px;
	height: 460px;

	border-radius: 50%;

	filter: blur(120px);

	opacity: 0.12;

	pointer-events: none;
}

.glow-left {

	left: -120px;
	top: 120px;

	background: rgba(255, 180, 70, 0.9);
}

.glow-right {

	right: -120px;
	bottom: 40px;

	background: rgba(255, 120, 30, 0.8);
}


/* =====================================================================================
   🌟 CONTENT
====================================================================================== */

.festival-hero-content {

	position: relative;

	z-index: 5;

	max-width: 980px;

	margin: auto;

	padding:
		120px 60px 100px;

	text-align: center;
}

.festival-badge {

	display: inline-flex;

	align-items: center;

	padding: 12px 26px;

	border-radius: 999px;

	margin-bottom: 32px;

	border: 1px solid rgba(255, 210, 120, 0.2);

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

	color: #ffdca2;

	font-size: 14px;

	letter-spacing: 2px;

	text-transform: uppercase;

	backdrop-filter: blur(12px);
}

.festival-hero-title {

	font-family: "Cormorant Garamond", serif;

	font-size: clamp(24px, 3vw, 34px);

	font-weight: 600;

	line-height: 1.08;

	color: #ffe5b3;

	margin-bottom: 10px;

	letter-spacing: 0.3px;

	text-shadow:
		0 0 28px rgba(255, 200, 120, 0.18);
}


.festival-title-divider {

	width: 220px;
	height: 1px;

	margin: 32px auto;

	background:
		linear-gradient(90deg,
			transparent,
			rgba(255, 220, 140, 0.95),
			transparent);
}

.festival-hero-subtitle {

	color: #ffd89b;

	font-size: 18px;

	margin-bottom: 22px;

	line-height: 1.6;
}

.festival-preview {

	max-width: 860px;

	margin: 0 auto 22px;

	color: rgba(255, 245, 228, 0.92);

	font-size: 19px;

	line-height: 2;
}


/* =====================================================================================
   🔻 BUTTON
====================================================================================== */

.festival-expand-btn {

	display: inline-flex;

	align-items: center;
	gap: 14px;

	margin-top: 200px;

	padding: 18px 34px;

	border-radius: 999px;

	border: 1px solid rgba(255, 210, 120, 0.24);

	background:
		linear-gradient(180deg,
			rgba(255, 210, 120, 0.18),
			rgba(255, 150, 50, 0.1));

	color: #ffe5ba;

	font-size: 16px;

	cursor: pointer;

	transition:
		transform 0.4s ease,
		background 0.4s ease,
		box-shadow 0.4s ease;
}

.festival-expand-btn:hover {

	transform: translateY(-3px);

	box-shadow:
		0 14px 30px rgba(255, 160, 50, 0.16);
}

.festival-expand-icon {

	font-size: 20px;

	transition: transform 0.5s ease;
}

.festival-expand-btn.active .festival-expand-icon {

	transform: rotate(180deg);
}


/* =====================================================================================
   📜 EXPANDED CONTENT
====================================================================================== */

.festival-expanded-content {

	max-height: 0;

	overflow: hidden;

	opacity: 0;

	transition:
		max-height 1s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.5s ease;
}

.festival-expanded-content.active {

	max-height: 2200px;

	opacity: 1;
}

.festival-expanded-inner {

	display: grid;

	grid-template-columns: 1.1fr 0.9fr;

	gap: 60px;

	padding-top: 10px;

	align-items: start;
}

.festival-description {

	color: rgba(255, 245, 230, 0.9);

	font-size: 18px;

	line-height: 2;

	margin-bottom: 24px;
}


/* =====================================================================================
   🎥 MEDIA PLACEHOLDER
====================================================================================== */

.festival-media-placeholder {

	position: relative;

	min-height: 520px;

	border-radius: 28px;

	border: 1px solid rgba(255, 210, 120, 0.12);

	background:
		linear-gradient(180deg,
			rgba(255, 210, 120, 0.08),
			rgba(0, 0, 0, 0.4));

	display: flex;

	align-items: center;
	justify-content: center;

	overflow: hidden;

	backdrop-filter: blur(14px);
}

.festival-media-placeholder::before {

	content: "";

	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle at center,
			rgba(255, 200, 120, 0.14),
			transparent 70%);
}

.festival-media-placeholder span {

	position: relative;

	z-index: 5;

	color: rgba(255, 230, 180, 0.82);

	letter-spacing: 2px;

	text-transform: uppercase;
}


/* =====================================================================================
   📱 MOBILE
====================================================================================== */

@media (max-width: 900px) {

	.festival-section {

		padding:
			100px 18px;
	}

	.festival-main-title {

		font-size: 28px;
	}

	.festival-intro {

		font-size: 15px;

		line-height: 1.8;
	}

	.festival-hero-block {

		height: 92vh;

		max-height: 980px;

		min-height: 720px;

		border-radius: 24px;
	}



	.festival-hero-block {

		position: relative;

		height: auto;

		min-height: unset;

		max-height: unset;

		overflow: hidden;
	}


	.festival-hero-content {

		padding:
			90px 24px 70px;
	}

	.festival-hero-title {

		font-size: 28px;

		line-height: 1.1;
	}

	.festival-hero-subtitle {

		font-size: 20px;
	}

	.festival-preview {

		font-size: 14px;

		line-height: 1.9;

		text-align: left;
	}

	.festival-expanded-inner {

		grid-template-columns: 1fr;

		gap: 40px;
	}

	.festival-description {

		font-size: 14px;

		line-height: 1.9;

		text-align: left;
	}

	.festival-media-placeholder {

		min-height: 320px;
	}

	/* =====================================================================================
   📱 MOBILE HERO TYPOGRAPHY COMPRESSION
====================================================================================== */

	.festival-hero-content {

		padding:
			1px 22px 42px;
	}

	/* =====================================================================================
   🌟 TITLE
====================================================================================== */

	.festival-hero-title {

		font-size: 34px;

		line-height: 1.02;

		margin-bottom: 4px;

		letter-spacing: 0.2px;
	}

	/* Malayalam title */

	.festival-hero-title.ml {

		font-size: 28px;

		line-height: 1.08;
	}

	/* =====================================================================================
   ✨ DIVIDER
====================================================================================== */

	.festival-title-divider {

		margin:
			16px auto 18px;

		width: 140px;
	}

	/* =====================================================================================
   🔱 SUBTITLE
====================================================================================== */

	.festival-hero-subtitle {

		font-size: 17px;

		line-height: 1.45;

		margin-bottom: 12px;
	}

	/* Malayalam subtitle */

	.festival-hero-subtitle.ml {

		font-size: 15px;

		line-height: 1.5;
	}

	/* =====================================================================================
   📜 PREVIEW TEXT
====================================================================================== */

	.festival-preview {

		font-size: 13px;

		line-height: 1.25;

		margin-bottom: 14px;

		max-width: 100%;
	}

	/* =====================================================================================
   🔻 BUTTON
====================================================================================== */

	.festival-expand-btn {

		margin-top: 18px;

		padding:
			14px 24px;

		font-size: 14px;
	}

	/* =====================================================================================
   🏷 BADGE
====================================================================================== */

	.festival-badge-wrap {

		gap: 6px;

		margin-bottom: 18px;
	}

	.festival-badge {

		padding:
			8px 18px;
		margin-bottom: 0;

		font-size: 11px;

		letter-spacing: 1.6px;
	}

}


.festival-badge-wrap {

	/*	display: flex;*/

	flex-direction: column;

	align-items: center;

	gap: 12px;

	/*	margin-bottom: 32px;*/
}


css id="z7cw9t"
/* =====================================================================================
   🌺 PONKALA SECTION
====================================================================================== */

.ponkala-section {

	position: relative;

	display: grid;

	grid-template-columns: 1fr 1fr;

	overflow: hidden;

	margin-top: 120px;

	border-radius: 34px;

	background:
		linear-gradient(180deg,
			rgba(20, 8, 3, 0.62) 0%,
			rgba(38, 16, 6, 0.72) 100%);

	backdrop-filter: blur(3px);

	border:
		1px solid rgba(255, 210, 140, 0.08);

	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.38);
}


/* =====================================================================================
   🌫 BACKGROUND AMBIENCE
====================================================================================== */

.ponkala-bg-overlay {

	position: absolute;

	inset: 0;

	background:
		radial-gradient(circle at top left,
			rgba(255, 180, 90, 0.10),
			transparent 45%);

	pointer-events: none;
}

.ponkala-floating-smoke {

	position: absolute;

	inset: 0;

	opacity: 0.12;

	background-image:
		radial-gradient(circle,
			rgba(255, 255, 255, 0.28) 1px,
			transparent 1px);

	background-size: 120px 120px;

	animation: ponkalaSmoke 24s linear infinite;
}

@keyframes ponkalaSmoke {

	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-90px);
	}
}


/* =====================================================================================
   📸 MEDIA PANEL
====================================================================================== */

.ponkala-media-panel {

	position: relative;

	min-height: 760px;

	overflow: hidden;
}


/* =====================================================================================
   🧱 DESKTOP HEIGHT RESERVER
====================================================================================== */

.ponkala-section::after {

	content: "";

	display: block;

	width: 100%;

	height: 0;

	padding-bottom: 760px;
}


/* =====================================================================================
   🖼 IMAGE WRAP
====================================================================================== */

.ponkala-image-wrap {

	position: absolute;

	inset: 0;

	overflow: hidden;
}


/* =====================================================================================
   🌺 MAIN IMAGE
====================================================================================== */

.ponkala-main-image {

	width: 100%;
	height: 100%;

	object-fit: cover;

	object-position: center center;

	display: block;

	transform: scale(1.03);

	transition:
		transform 8s ease,
		filter 1s ease;

	filter:
		brightness(0.95) saturate(1.03) contrast(1.02);
}


/* =====================================================================================
   ✨ CINEMATIC ZOOM
====================================================================================== */

.ponkala-section:hover .ponkala-main-image {

	transform: scale(1.08);
}


/* =====================================================================================
   🌫 IMAGE OVERLAY
====================================================================================== */

.ponkala-image-overlay {

	position: absolute;

	inset: 0;

	z-index: 2;

	background:

		linear-gradient(90deg,
			rgba(0, 0, 0, 0.04) 0%,
			rgba(20, 8, 3, 0.12) 38%,
			rgba(18, 8, 3, 0.84) 100%),

		linear-gradient(180deg,
			rgba(255, 180, 90, 0.03) 0%,
			rgba(0, 0, 0, 0.24) 100%);
}


/* =====================================================================================
   📜 CONTENT PANEL
====================================================================================== */

/* =====================================================================================
   📜 DESKTOP OVERLAY CONTENT PANEL
====================================================================================== */

.ponkala-content-panel {

	position: absolute;

	top: 0;
	right: 0;
	bottom: 0;

	width: 50%;

	z-index: 10;

	display: flex;

	flex-direction: column;

	justify-content: center;

	padding:
		90px 70px;

	background:

		linear-gradient(90deg,
			rgba(18, 8, 3, 0.02) 0%,
			rgba(18, 8, 3, 0.18) 18%,
			rgba(18, 8, 3, 0.92) 100%);
}


/* =====================================================================================
   🏷 BADGES
====================================================================================== */

.ponkala-badge-wrap {

	display: flex;

	flex-direction: column;

	gap: 10px;

	margin-bottom: 24px;
}

.ponkala-badge {

	color: rgba(255, 225, 185, 0.92);

	font-size: 13px;

	letter-spacing: 3px;

	text-transform: uppercase;
}


/* =====================================================================================
   🌺 TITLES
====================================================================================== */

.ponkala-title {

	display: flex;

	align-items: center;

	gap: 18px;

	font-family: "Cormorant Garamond", serif;

	color: #ffe7c2;

	line-height: 1.08;

	margin-bottom: 8px;
}

.ponkala-title.en {

	font-size: clamp(38px, 4vw, 60px);
}

.ponkala-title.ml {

	font-size: clamp(28px, 3vw, 42px);
}


/* =====================================================================================
   🌺 ICON
====================================================================================== */

.ponkala-title-icon {

	width: 58px;

	height: auto;

	flex-shrink: 0;

	filter:
		drop-shadow(0 4px 10px rgba(255, 140, 40, 0.28));

	animation: pongalaGlow 4s ease-in-out infinite;
}

@keyframes pongalaGlow {

	0%,
	100% {

		transform: translateY(0);

		filter:
			drop-shadow(0 4px 10px rgba(255, 140, 40, 0.24));
	}

	50% {

		transform: translateY(-2px);

		filter:
			drop-shadow(0 6px 18px rgba(255, 160, 60, 0.42));
	}
}


/* =====================================================================================
   ✨ DIVIDER
====================================================================================== */

.ponkala-divider {

	width: 180px;

	height: 1px;

	margin:
		26px 0 28px;

	background:
		linear-gradient(90deg,
			rgba(255, 190, 120, 0.88),
			transparent);
}


/* =====================================================================================
   📜 SUBTITLE
====================================================================================== */

.ponkala-subtitle {

	color: rgba(255, 225, 185, 0.92);

	line-height: 1.7;

	margin-bottom: 14px;
}

.ponkala-subtitle.en {

	font-size: 24px;
}

.ponkala-subtitle.ml {

	font-size: 18px;
}


/* =====================================================================================
   📖 PREVIEW
====================================================================================== */

.ponkala-preview {

	color: rgba(255, 255, 255, 0.74);

	font-size: 17px;

	line-height: 2;

	margin-bottom: 18px;
}


/* =====================================================================================
   🔻 BUTTON
====================================================================================== */

.ponkala-expand-btn {

	display: inline-flex;

	align-items: center;

	gap: 12px;

	width: fit-content;

	margin-top: 24px;

	padding:
		16px 28px;

	border-radius: 999px;

	border:
		1px solid rgba(180, 120, 40, 0.18);

	background:
		linear-gradient(180deg,
			rgba(255, 210, 140, 0.28),
			rgba(230, 170, 90, 0.18));

	color: rgba(255, 235, 210, 0.88);

	cursor: pointer;

	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.ponkala-expand-btn:hover {

	transform: translateY(-3px);

	box-shadow:
		0 14px 30px rgba(180, 110, 40, 0.16);
}

.ponkala-btn-icon {

	transition: transform 0.5s ease;
}

.ponkala-expand-btn.active .ponkala-btn-icon {

	transform: rotate(180deg);
}


/* =====================================================================================
   🌺 EXPANDED CONTENT
====================================================================================== */

.ponkala-expanded-content {

	max-height: 0;

	overflow: hidden;

	opacity: 0;

	transition:
		max-height 1s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.5s ease;
}

.ponkala-expanded-content.active {

	max-height: 2400px;

	opacity: 1;
}

.ponkala-expanded-inner {

	display: grid;

	grid-template-columns: 1.1fr 0.9fr;

	gap: 60px;

	padding:
		70px 40px 40px;
}

.ponkala-body-text {

	color: rgba(255, 235, 210, 0.84);

	font-size: 17px;

	line-height: 2;

	margin-bottom: 24px;
}


/* =====================================================================================
   🎥 GALLERY
====================================================================================== */

.ponkala-gallery-placeholder {

	min-height: 520px;

	border-radius: 24px;

	background:
		linear-gradient(180deg,
			rgba(255, 220, 180, 0.08),
			rgba(0, 0, 0, 0.18));

	border:
		1px solid rgba(255, 220, 180, 0.08);

	display: flex;

	align-items: center;
	justify-content: center;

	color: rgba(255, 240, 220, 0.6);

	letter-spacing: 2px;

	text-transform: uppercase;
}


/* =====================================================================================
   📱 MOBILE
====================================================================================== */

@media (max-width: 900px) {

	.ponkala-section {

		display: block;

		margin-top: 90px;

		border-radius: 24px;
	}


	/* =========================================================================
	   IMAGE PANEL
	========================================================================= */

	.ponkala-media-panel {

		position: relative;

		min-height: unset;

		height: auto;

		overflow: hidden;
	}


	/* =========================================================================
	   IMAGE WRAP
	========================================================================= */

	.ponkala-image-wrap {

		position: relative;

		inset: unset;

		width: 100%;

		height: auto;
	}


	/* =========================================================================
	   RESPONSIVE IMAGE
	========================================================================= */

	.ponkala-main-image {

		width: 100%;

		height: auto;

		object-fit: contain;

		object-position: top center;

		transform: none !important;

		display: block;
	}


	/* =========================================================================
	   OVERLAY
	========================================================================= */

	.ponkala-image-overlay {

		background:

			linear-gradient(180deg,
				rgba(0, 0, 0, 0.02) 0%,
				rgba(18, 8, 3, 0.18) 55%,
				rgba(18, 8, 3, 0.92) 100%);
	}


	/* =========================================================================
	   CONTENT OVERLAY
	========================================================================= */

	.ponkala-content-panel {

		position: absolute;

		left: 0;
		right: 0;
		bottom: 0;

		padding:
			36px 22px 24px;

		background:
			linear-gradient(180deg,
				transparent 0%,
				rgba(10, 4, 2, 0.14) 18%,
				rgba(10, 4, 2, 0.94) 100%);
	}


	/* =========================================================================
	   TYPOGRAPHY
	========================================================================= */

	.ponkala-badge {

		font-size: 11px;

		letter-spacing: 2px;
	}

	.ponkala-title {

		gap: 10px;
	}

	.ponkala-title.en {

		font-size: 30px;

		line-height: 1.04;
	}

	.ponkala-title.ml {

		font-size: 22px;

		line-height: 1.14;
	}

	.ponkala-title-icon {

		width: 38px;
	}

	.ponkala-divider {

		width: 110px;

		margin:
			14px 0 16px;
	}

	.ponkala-subtitle.en {

		font-size: 15px;
	}

	.ponkala-subtitle.ml {

		font-size: 13px;
	}

	.ponkala-preview {

		font-size: 13px;

		line-height: 1.72;

		margin-bottom: 10px;
	}


	/* =========================================================================
	   BUTTON
	========================================================================= */

	.ponkala-expand-btn {

		margin-top: 10px;

		padding:
			12px 20px;

		font-size: 13px;
	}


	/* =========================================================================
	   EXPANDED CONTENT
	========================================================================= */

	.ponkala-expanded-inner {

		display: flex;

		flex-direction: column;

		gap: 34px;

		padding:
			42px 20px 30px;
	}

	.ponkala-body-text {

		font-size: 14px;

		line-height: 1.9;

		margin-bottom: 18px;
	}

	.ponkala-gallery-placeholder {

		width: 100%;

		min-height: 260px;

		border-radius: 20px;
	}
}


/* =====================================================================================
   📱 FINAL MOBILE FLOW STABILIZATION
====================================================================================== */

@media (max-width: 900px) {


	/* =========================================================================
	   SECTION AUTO HEIGHT
	========================================================================= */

	.ponkala-section {

		position: relative;

		height: auto !important;

		min-height: unset !important;
	}


	/* =========================================================================
	   MEDIA PANEL AUTO HEIGHT
	========================================================================= */

	.ponkala-media-panel {

		position: relative;

		height: auto !important;

		min-height: unset !important;
	}


	/* =========================================================================
	   IMAGE WRAP AUTO HEIGHT
	========================================================================= */

	.ponkala-image-wrap {

		position: relative;

		height: auto !important;
	}


	/* =========================================================================
   MOBILE CONTENT OVERLAY FIX
========================================================================= */

	/* =========================================================================
   MOBILE CONTENT OVERLAY FIX
========================================================================= */

	.ponkala-content-panel {

		position: absolute;

		left: 0;
		right: 0;
		bottom: 0;

		z-index: 10;

		padding:
			36px 22px 26px;

		background:

			linear-gradient(180deg,
				rgba(10, 4, 2, 0.00) 0%,
				rgba(10, 4, 2, 0.18) 20%,
				rgba(10, 4, 2, 0.96) 100%);
	}


	/* =========================================================================
   MOBILE SECTION HEIGHT PRESERVER
========================================================================= */

	.ponkala-media-panel::after {

		content: "";

		display: block;

		width: 100%;

		height: 240px;
	}


	/* =========================================================================
	   REMOVE EXTRA EMPTY SPACE
	========================================================================= */

	.ponkala-preview-wrap {

		margin-bottom: 0 !important;
	}

	.ponkala-preview {

		margin-bottom: 10px !important;
	}

	.ponkala-badge-wrap {

		margin-bottom: 10px !important;
	}


	/* =========================================================================
	   EXPANDED CONTENT NORMAL FLOW
	========================================================================= */

	.ponkala-expanded-content {

		position: relative;

		z-index: 2;
	}


	/* =========================================================================
	   EXPANDED INNER
	========================================================================= */

	.ponkala-expanded-inner {

		padding-top: 26px !important;
	}
}


/* =====================================================================================
   📱 FINAL MOBILE STACKING FIX
====================================================================================== */

@media (max-width: 900px) {


	/* =========================================================================
	   MAIN SECTION
	========================================================================= */

	.ponkala-section {

		position: relative;

		z-index: 20;
	}


	/* =========================================================================
	   IMAGE PANEL
	========================================================================= */

	.ponkala-media-panel {

		position: relative;

		z-index: 1;
	}


	/* =========================================================================
	   CONTENT OVERLAY
	========================================================================= */

	/* =========================================================================
   MOBILE CONTENT PANEL RESET
========================================================================= */

	.ponkala-content-panel {

		position: absolute;

		width: 100%;

		top: auto;
		left: 0;
		right: 0;
		bottom: 0;

		z-index: 20;

		padding:
			36px 22px 26px;

		background:

			linear-gradient(180deg,
				rgba(10, 4, 2, 0.00) 0%,
				rgba(10, 4, 2, 0.18) 20%,
				rgba(10, 4, 2, 0.96) 100%);
	}

	/* =========================================================================
	   SPACE RESERVER FOR OVERLAY CONTENT
	========================================================================= */

	.ponkala-media-panel::after {

		content: "";

		display: block;

		width: 100%;

		height: 260px;
	}


	/* =========================================================================
	   EXPANDED CONTENT
	========================================================================= */

	.ponkala-expanded-content {

		position: relative;

		z-index: 5;

		margin-top: 0;
	}


	/* =========================================================================
	   EXPANDED INNER
	========================================================================= */

	.ponkala-expanded-inner {

		position: relative;

		z-index: 5;
	}


	/* =========================================================================
   MOBILE PANEL HEIGHT FIX
========================================================================= */

	.ponkala-media-panel {

		position: relative;

		padding-bottom: 260px;
	}
}
