/* 
   Lokmanthan 2026 - Official Master Stylesheet
   Color Palette:
   - Primary Burgundy: #7B2230
   - Primary Dark Burgundy: #5E1823
   - Secondary Navy: #112B44
   - Accent Gold: #C49A5A
   - Dark Gold: #9E793B
   - Light Background 1: #FFF8F1
   - Light Background 2: #FAF3EA
   - Light Background 3: #F4E9DA
   - Text Dark: #1E2229
   - Text Muted: #5C6573
*/


:root {
  --primary-red: #AE4355;
  --primary-dark-red: #8E3242;
  --secondary-navy: #112B44;
  --secondary-dark-navy: #0A1C2E;
  --accent-gold: #C49A5A;
  --accent-gold-light: #DFB779;
  --accent-gold-dark: #9A7436;

  --bg-cream-light: #FFF8F1;
  --bg-cream-mid: #FAF3EA;
  --bg-cream-dark: #F4E9DA;
  --bg-white: #FFFFFF;

  --text-main: #1D232A;
  --text-muted: #5A6472;
  --text-light: #F4F6F9;

  --border-light: #E8DBCB;
  --border-gold: rgba(196, 154, 90, 0.35);

  --font-serif: 'Cinzel', 'Noto Serif Devanagari', serif;
  --font-hindi: 'Noto Serif Devanagari', serif;
  --font-sans: 'Outfit', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 18px rgba(17, 43, 68, 0.08);
  --shadow-lg: 0 12px 32px rgba(17, 43, 68, 0.12);
  --shadow-gold: 0 4px 20px rgba(196, 154, 90, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Base & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.heading-serif {
  font-family: var(--font-serif);
}

.heading-hindi {
  font-family: var(--font-hindi);
}

.text-gold {
  color: var(--accent-gold);
}

.text-red {
  color: var(--primary-red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  gap: 8px;
  transition: all var(--transition-normal);
}

.btn-primary-red {
  background-color: var(--primary-red);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(123, 34, 48, 0.3);
}

.btn-primary-red:hover {
  background-color: var(--primary-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 34, 48, 0.4);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--primary-red);
  border: 1.5px solid var(--primary-red);
}

.btn-secondary-outline:hover {
  background-color: var(--primary-red);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-2px);
}

.btn-green {
  background-color: #3E7C59;
  color: var(--bg-white);
}

.btn-green:hover {
  background-color: #2F6144;
  transform: translateY(-2px);
}

.btn-blue {
  background-color: #2B5B84;
  color: var(--bg-white);
}

.btn-blue:hover {
  background-color: #1F4565;
  transform: translateY(-2px);
}

.btn-purple {
  background-color: #6B3B6B;
  color: var(--bg-white);
}

.btn-purple:hover {
  background-color: #522B52;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* -------------------------------------------------------------
   1. TOP ANNOUNCEMENT BAR
------------------------------------------------------------- */
.announcement-bar {
  background-color: #AE4355;
  color: var(--bg-white);
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 44px !important;
  box-sizing: border-box;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-selector a, .lang-selector span {
  color: #FFF;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.lang-selector a:hover {
  opacity: 1;
  color: #FFE6B0;
}

.lang-selector a.active, .lang-selector span.active {
  font-weight: 700;
  color: #FFE6B0 !important;
  opacity: 1;
  border-bottom: 2px solid #FFE6B0;
  padding-bottom: 1px;
}

.lang-selector span.divider {
  opacity: 0.6;
}

.btn-announcement {
  background-color: #FEE2AD;
  color: #5C1D24;
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.btn-announcement:hover {
  background-color: #FFFFFF;
  color: #AE4355;
}

/* -------------------------------------------------------------
   2. STICKY NAVIGATION
------------------------------------------------------------- */
.navbar {
  background: #FAF4EB url('../assets/images/backgrounds/hero-bg.webp') center top / cover no-repeat;
  background-color: #FAF4EB;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0;
  box-shadow: none;
  transition: all var(--transition-normal);
}

/* Page Specific Navbar Matching Hero Background */
.theme-2026-page .navbar {
  background: #FAF4EB url('../assets/images/backgrounds/hero-original-root.webp') center top / cover no-repeat;
}

.contact-page .navbar {
  background: #FAF4EB url('../assets/images/backgrounds/contact-hero-bg.webp') center top / cover no-repeat;
}

.navbar.scrolled {
  position: sticky;
  top: 0;
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(123, 34, 48, 0.12);
  background: #FAF4EB url('../assets/images/backgrounds/hero-bg.webp') center top / cover no-repeat !important;
  background-color: rgba(250, 244, 235, 0.98) !important;
  border-bottom: 1px solid rgba(196, 154, 90, 0.3);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 44px !important;
  box-sizing: border-box;
}

.logo-container,
.nav-links,
.mobile-nav-toggle {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar.search-active .nav-links {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-emblem {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(110, 67, 27, 0.15));
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text-hindi {
  font-family: var(--font-hindi);
  font-size: 1.35rem;
  font-weight: 700;
  color: #4E2514;
  line-height: 1;
  letter-spacing: 0.2px;
}

.logo-text-english {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #4E2514;
  line-height: 1.15;
  margin-top: 1px;
}

.logo-text-year-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}

.logo-text-year {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #4E2514;
  line-height: 1;
}

.logo-year-line {
  height: 1.2px;
  width: 42px;
  background-color: rgba(78, 37, 20, 0.4);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.8vw, 32px);
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #000000;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

.nav-search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-trigger {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 1.2rem;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s ease;
  z-index: 2;
}

.search-trigger:hover {
  color: var(--primary-red);
  background: rgba(123, 34, 48, 0.06);
}

.search-input-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0.1);
  transform-origin: right center;
  width: 0;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  border-radius: 28px;
  padding: 0 14px 0 18px;
  box-shadow: 0 8px 30px rgba(17, 43, 68, 0.16);
  transition: width 0.42s cubic-bezier(0.16, 1, 0.3, 1), transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  z-index: 100;
  box-sizing: border-box;
  white-space: nowrap;
}

.nav-search-bar.active .search-input-wrap {
  width: 600px;
  max-width: 60vw;
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scaleX(1);
}

.search-input-icon {
  color: #7B2230;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 0;
}

.search-input::placeholder {
  color: #8C94A0;
}

.search-close-btn {
  position: relative;
  right: auto;
  background: transparent;
  border: none;
  color: #7B2230;
  font-size: 1.6rem;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  margin-left: 8px;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.search-close-btn:hover {
  color: var(--primary-red);
  background-color: rgba(123, 34, 48, 0.08);
  transform: scale(1.1);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  font-size: 1.6rem;
  color: var(--secondary-navy);
}

/* -------------------------------------------------------------
   3. HERO SECTION SLIDER
------------------------------------------------------------- */
.hero-section-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 580px;
  padding: 105px 0 45px;
  background: var(--bg-cream-light) url('../assets/images/backgrounds/hero-bg.webp') no-repeat center 15% / cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  transform: translateX(20px);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.hero-slide-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* Slider Arrow Navigation */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(196, 154, 90, 0.5);
  color: #AE4355;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.hero-slider-arrow:hover {
  background: #AE4355;
  color: #FFFFFF;
  border-color: #AE4355;
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(196, 154, 90, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background: rgba(174, 67, 85, 0.7);
}

.hero-dot.active {
  width: 28px;
  border-radius: 12px;
  background: #AE4355;
  box-shadow: 0 2px 8px rgba(174, 67, 85, 0.3);
}

.hero-background-arch {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 95px;
}

.hero-title-hindi {
  font-family: var(--font-hindi);
  font-size: 3.4rem;
  font-weight: 700;
  color: #7B2230;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(123, 34, 48, 0.05);
}

.hero-title-navy {
  color: var(--secondary-navy);
}

.hero-subtitle {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--secondary-navy);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero-meta-pills {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  background: transparent;
  padding: 0;
  border: none;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.meta-pill-divider {
  width: 1px;
  height: 38px;
  background: radial-gradient(circle, rgba(123, 34, 48, 0.45) 1px, transparent 1px);
  background-size: 1px 5px;
  margin: 0 4px;
}

.meta-pill-icon {
  width: auto;
  height: auto;
  background: transparent;
  color: #612D18;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-pill-text {
  display: flex;
  flex-direction: column;
}

.meta-pill-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: #4D121B;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.meta-pill-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 1px;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-navy);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
}

.hero-video-link:hover {
  color: var(--primary-red);
}

.play-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding-left: 2px;
}

.hero-illustration-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}

.mobile-hero-circle {
  display: none;
}

.hero-illustration-img {
  width: 100%;
  max-width: 470px;
  border-radius: 50%;
  border: none;
  filter: drop-shadow(0 12px 28px rgba(123, 34, 48, 0.18));
  transition: transform 0.6s ease;
}

.hero-illustration-img:hover {
  transform: rotate(2deg) scale(1.02);
}

/* -------------------------------------------------------------
   4. STATISTICS & COUNTDOWN STRIP
------------------------------------------------------------- */
.stats-strip {
  background-color: #0A1C2E;
  color: var(--bg-white);
  padding: 32px 0;
  border-top: none;
  border-bottom: none;
  position: relative;
  margin-top: 0;
}

.stats-strip::before,
.stats-strip::after {
  display: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr;
  align-items: stretch;
  gap: 20px;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.stat-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  bottom: -10px;
  width: 1px;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.5) 1px, transparent 1px);
  background-size: 1px 6px;
}

.stat-col:not(:first-child)::after {
  content: "❖";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  color: var(--accent-gold);
  opacity: 0.85;
  line-height: 1;
}

.countdown-col {
  align-items: center;
}

.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #FEE2AD;
  margin-bottom: 8px;
  font-weight: 700;
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #FEE2AD;
}

.timer-text {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FEE2AD;
  margin-top: 4px;
  font-weight: 700;
}

.timer-colon {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: #FEE2AD;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-icon-svg {
  margin-bottom: 6px;
  opacity: 0.95;
  transition: transform 0.2s ease;
}

.stat-col:hover .stat-icon-svg {
  transform: translateY(-3px);
}

.stat-number {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FEE2AD;
  line-height: 1.1;
}

.stat-title {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #FEE2AD;
  margin-top: 3px;
  font-weight: 700;
}

/* -------------------------------------------------------------
   5. ABOUT SECTION
------------------------------------------------------------- */
.section-padding {
  padding: 50px 0;
}

.about-section {
  background: #FAF3E8 url('../assets/images/backgrounds/about-section-bg.webp') no-repeat center center / 100% 100%;
  position: relative;
  padding: 45px 0 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.about-image-frame {
  position: relative;
  padding: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(196, 154, 90, 0.6);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(82, 20, 30, 0.08);
  backdrop-filter: blur(4px);
}

.ornate-border-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #C49A5A;
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}

.ornate-border-corner.top-left {
  top: 3px;
  left: 3px;
  border-width: 2px 0 0 2px;
}

.ornate-border-corner.top-right {
  top: 3px;
  right: 3px;
  border-width: 2px 2px 0 0;
}

.ornate-border-corner.bottom-left {
  bottom: 3px;
  left: 3px;
  border-width: 0 0 2px 2px;
}

.ornate-border-corner.bottom-right {
  bottom: 3px;
  right: 3px;
  border-width: 0 2px 2px 0;
}

.about-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.about-content-right {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  color: #52141E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.about-paragraph {
  font-size: 1.05rem;
  color: #3A2E2D;
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 500;
}

.about-4col-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.about-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.about-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.45) 1px, transparent 1px);
  background-size: 1px 5px;
}

.about-col-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  object-fit: contain;
}

.about-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #112B44;
  margin-bottom: 6px;
}

.about-col-desc {
  font-size: 0.88rem;
  color: #4A525D;
  line-height: 1.45;
}

.about-btn-wrap {
  margin-top: 6px;
}

/* -------------------------------------------------------------
   6. THEME SECTION
------------------------------------------------------------- */
.theme-section {
  position: relative;
  width: 100%;
  aspect-ratio: 2172 / 295;
  background: url('../assets/images/backgrounds/theme-banner-final-new.webp') no-repeat center center / 100% 100%;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

.theme-banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.theme-left-col {
  position: absolute;
  left: 4.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 3;
}

.theme-tag {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 0.95vw, 0.85rem);
  letter-spacing: 1.6px;
  color: #FEE2AD;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}

.theme-title-hindi {
  font-family: 'Rozha One', 'Noto Serif Devanagari', serif;
  font-size: clamp(1.2rem, 1.95vw, 2.25rem);
  color: #FEE2AD;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.theme-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.55rem, 0.85vw, 0.88rem);
  color: #FEE2AD;
  line-height: 1.35;
  opacity: 0.95;
  max-width: 95%;
}

.theme-vertical-divider {
  display: none;
}

.theme-arch-cards-row {
  position: absolute;
  left: 52.4%;
  right: 6.5%;
  top: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  z-index: 3;
}

/* Heritage Arch Shaped Cards */
.theme-arch-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 21.5%;
  box-sizing: border-box;
  transition: transform 0.25s ease;
}

.theme-arch-card:hover {
  transform: translateY(-4px);
}

.theme-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

.theme-card-hindi {
  font-family: 'Rozha One', 'Noto Serif Devanagari', serif;
  font-size: clamp(1.2rem, 1.95vw, 2.35rem);
  font-weight: 700;
  color: #FEE2AD;
  line-height: 2.95;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  text-align: center;
  width: 100%;
}

.theme-card-english {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.46rem, 0.68vw, 0.78rem);
  font-weight: 600;
  color: #FEE2AD;
  white-space: nowrap;
  letter-spacing: 0.1px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
  margin-top: -24px;
  text-align: center;
  width: 100%;
}

/* -------------------------------------------------------------
   7. JOURNEY TIMELINE
------------------------------------------------------------- */
.journey-section {
  background: #FFF9F0 url('../assets/images/backgrounds/journey-bg.png') no-repeat center / 100% 100%;
  position: relative;
}

.journey-header {
  text-align: center;
  margin-bottom: 50px;
}

.journey-header-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #52141E;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.timeline-tracker {
  position: relative;
  margin-bottom: 40px;
  padding: 0 60px;
}

.timeline-line {
  height: 3px;
  background: var(--border-light);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-line-progress {
  height: 100%;
  background: var(--primary-red);
  width: 80%;
}

.timeline-nodes {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.timeline-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid var(--accent-gold);
  transition: var(--transition-fast);
}

.timeline-node.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 0 6px rgba(123, 34, 48, 0.2);
}

.timeline-node.featured {
  width: 24px;
  height: 24px;
  background: var(--primary-red);
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 0 8px rgba(123, 34, 48, 0.3), 0 0 14px rgba(123, 34, 48, 0.5);
}

.timeline-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-cards-grid.col-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.journey-card {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.journey-card:not(.featured-card) {
  opacity: 0.92;
  transform: scale(0.96);
}

.journey-card:not(.featured-card):hover {
  opacity: 1;
  transform: scale(1.01) translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Featured / Latest Edition Card (2026 Jaipur) */
.journey-card.featured-card {
  opacity: 1;
  transform: translateY(-6px) scale(1.04);
  border: 2px solid var(--primary-red);
  box-shadow: 0 12px 32px rgba(123, 34, 48, 0.25), 0 0 0 1px rgba(196, 154, 90, 0.4);
  z-index: 3;
}

.journey-card.featured-card:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 16px 40px rgba(123, 34, 48, 0.35);
}

.latest-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(123, 34, 48, 0.4);
}

.journey-card-img-wrapper {
  height: 130px;
  overflow: hidden;
}

.featured-card .journey-card-img-wrapper {
  height: 155px;
}

.journey-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.journey-card-body {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-card .journey-card-body {
  padding: 16px 14px;
}

.journey-year-city {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.journey-year {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary-navy);
}

.featured-card .journey-year {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.journey-city {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 1px;
}

.featured-card .journey-city {
  font-size: 0.8rem;
  color: var(--secondary-navy);
}

.journey-theme-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.journey-theme-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 34px;
}

.featured-card .journey-theme-title {
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 36px;
}

.journey-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.journey-card:not(.featured-card) .journey-btn {
  background-color: var(--secondary-navy);
  color: #FFFFFF;
  border: 1px solid var(--secondary-navy);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.journey-card:not(.featured-card) .journey-btn:hover {
  background-color: var(--secondary-dark-navy);
  color: #FFFFFF;
  border-color: var(--secondary-dark-navy);
  box-shadow: 0 4px 12px rgba(17, 43, 68, 0.25);
}

.featured-cta-btn {
  background-color: #7B2230;
  color: #FFFFFF;
  border: 1px solid #7B2230;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(123, 34, 48, 0.3);
}

.featured-cta-btn:hover {
  background-color: #5D1823;
  border-color: #5D1823;
  color: #FFFFFF;
}

/* -------------------------------------------------------------
   8 & 9. FEATURED SPEAKERS & ARTISTS SECTION
------------------------------------------------------------- */
.speakers-artists-section {
  background-color: #FAF5ED;
  padding: 38px 0 44px;
  position: relative;
  border-top: 1px solid rgba(196, 154, 90, 0.4);
  border-bottom: 1px solid rgba(196, 154, 90, 0.4);
}

.speakers-artists-grid {
  display: grid;
  grid-template-columns: 1fr 0.02fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
}

.speakers-widget,
.artists-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.speakers-artists-divider {
  position: relative;
  width: 1px;
  height: 220px;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.45) 1px, transparent 1px);
  background-size: 1px 6px;
}

.widget-header-block {
  flex-shrink: 0;
  width: 135px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title-sm {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #52141E;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.section-subtitle-sm {
  font-size: 0.76rem;
  color: #7A6B5D;
  font-weight: 500;
  margin-bottom: 12px;
}

.view-all-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: var(--primary-red);
}

.slider-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 90, 0.4);
  background: #FFFFFF;
  color: #52141E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 2px;
  line-height: 1;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: #52141E;
  color: #FFFFFF;
  border-color: #52141E;
  transform: scale(1.08);
}

.slider-cards-row.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex-grow: 1;
}

.speaker-card,
.artist-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.25s ease;
}

.speaker-card:hover,
.artist-card:hover {
  transform: translateY(-4px);
}

.speaker-img,
.artist-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  margin-bottom: 8px;
  border: 1px solid rgba(196, 154, 90, 0.3);
  transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-img,
.artist-card:hover .artist-img {
  transform: scale(1.03);
}

.speaker-info,
.artist-info {
  padding: 0;
  text-align: left;
}

.speaker-name,
.artist-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #4E2514;
  margin-bottom: 2px;
  line-height: 1.25;
}

.speaker-desig,
.artist-desig,
.artist-location {
  font-size: 0.78rem;
  color: #5C6573;
  line-height: 1.25;
  font-weight: 500;
}

/* -------------------------------------------------------------
   10. REGISTRATION CARDS SECTION
------------------------------------------------------------- */
.registration-section {
  background: #FAF3EA url('../assets/images/backgrounds/register-section-bg.webp') no-repeat center center / 100% 100%;
  padding: 42px 0 48px;
  position: relative;
}

.registration-header {
  text-align: center;
  margin-bottom: 34px;
}

.registration-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 0.94fr);
  gap: 16px;
  align-items: center;
}

.reg-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(196, 154, 90, 0.4);
  border-radius: 12px;
  padding: 22px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(4px);
}

/* Featured Active Card (DELEGATE) */
/* Featured Active Card (DELEGATE) */
.reg-card.active-featured {
  padding: 28px 16px 22px;
  border: 2px solid #AE4355;
  box-shadow: 0 14px 36px rgba(174, 67, 85, 0.18);
  transform: translateY(-4px);
  background: #FFFFFF;
  z-index: 2;
}

.reg-card.active-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(174, 67, 85, 0.25);
}

.reg-card.active-featured .reg-title {
  font-size: 1.15rem;
  color: #AE4355;
  font-weight: 800;
  margin-bottom: 8px;
}

.reg-card.active-featured .reg-icon-wrapper {
  width: 62px;
  height: 62px;
  background-color: #AE4355;
  box-shadow: 0 4px 14px rgba(174, 67, 85, 0.3);
  margin-bottom: 14px;
}

.reg-card.active-featured .reg-btn {
  padding: 10px 14px;
  font-weight: 700;
}

/* Compact Active & Upcoming Registration Cards */
.reg-card.deactivated {
  opacity: 1;
  background: #FFFFFF;
  border: 1px solid rgba(196, 154, 90, 0.4);
  transform: scale(0.97);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.reg-card.deactivated:hover {
  opacity: 1;
  transform: scale(0.99) translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  border-color: rgba(196, 154, 90, 0.7);
}

.reg-card.deactivated .reg-title {
  font-size: 1rem;
  color: #112B44;
  font-weight: 700;
  margin-bottom: 6px;
}

.reg-card.deactivated .reg-desc {
  font-size: 0.78rem;
  color: #444444;
  margin-bottom: 16px;
  line-height: 1.35;
}

.reg-card.deactivated .reg-icon-wrapper {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  opacity: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.reg-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FFFFFF;
}

.reg-icon-wrapper svg {
  stroke: #FFFFFF !important;
}

.reg-card.delegate .reg-icon-wrapper {
  background-color: #AE4355;
}

.reg-card.artist .reg-icon-wrapper {
  background-color: #E08214;
}

.reg-card.volunteer .reg-icon-wrapper {
  background-color: #2D7A4D;
}

.reg-card.stall .reg-icon-wrapper {
  background-color: #235E8E;
}

.reg-card.visitor .reg-icon-wrapper {
  background-color: #7A3B7A;
}

.reg-btn {
  width: 100%;
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.btn-delegate,
.reg-card.delegate .reg-btn {
  background-color: #8E2332;
  border: 1px solid #8E2332;
  color: #FFFFFF;
}

.btn-delegate:hover,
.reg-card.delegate .reg-btn:hover {
  background-color: #721A26;
  border-color: #721A26;
  transform: translateY(-1px);
}

.btn-artist,
.reg-card.artist .reg-btn {
  background-color: #DF7620;
  border: 1px solid #DF7620;
  color: #FFFFFF;
}

.btn-artist:hover,
.reg-card.artist .reg-btn:hover {
  background-color: #C56417;
  border-color: #C56417;
  transform: translateY(-1px);
}

.btn-volunteer,
.reg-card.volunteer .reg-btn {
  background-color: #447558;
  border: 1px solid #447558;
  color: #FFFFFF;
}

.btn-volunteer:hover,
.reg-card.volunteer .reg-btn:hover {
  background-color: #355F46;
  border-color: #355F46;
  transform: translateY(-1px);
}

.btn-stall,
.reg-card.stall .reg-btn {
  background-color: #25557C;
  border: 1px solid #25557C;
  color: #FFFFFF;
}

.btn-stall:hover,
.reg-card.stall .reg-btn:hover {
  background-color: #1B4364;
  border-color: #1B4364;
  transform: translateY(-1px);
}

.btn-visitor,
.reg-card.visitor .reg-btn {
  background-color: #6B3264;
  border: 1px solid #6B3264;
  color: #FFFFFF;
}

.btn-visitor:hover,
.reg-card.visitor .reg-btn:hover {
  background-color: #53254E;
  border-color: #53254E;
  transform: translateY(-1px);
}

.reg-card.deactivated .reg-btn,
.reg-card.deactivated .reg-btn:disabled {
  background-color: #9CA8B2 !important;
  border-color: #9CA8B2 !important;
  color: #FFFFFF !important;
  opacity: 0.85;
  cursor: not-allowed !important;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}

/* Status Badges */
.reg-status-badge {
  position: absolute;
  top: -11px;
  padding: 3px 10px;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.reg-status-badge.open {
  background: #AE4355;
  color: #FFFFFF;
  border: 1px solid #C49A5A;
  box-shadow: 0 2px 6px rgba(174, 67, 85, 0.3);
}

.reg-status-badge.soon {
  background: #F4EBE0;
  color: #AE4355;
  border: 1px solid rgba(196, 154, 90, 0.5);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.reg-title {
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #AE4355;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reg-desc {
  font-size: 0.78rem;
  color: #555555;
  line-height: 1.4;
  margin-bottom: 18px;
}

.reg-btn {
  width: 100%;
  font-size: 0.78rem;
  padding: 9px 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   11 & 12 & 13. BOTTOM MULTI-WIDGET GRID (NEWS, GALLERY, EVENTS)
------------------------------------------------------------- */
.bottom-widgets-section {
  background-color: #F8EFE3;
}

.widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 36px;
  position: relative;
}

.widget-box {
  display: flex;
  flex-direction: column;
  position: relative;
}

.widget-box:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.4) 1px, transparent 1px);
  background-size: 1px 6px;
  opacity: 0.6;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: none;
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #4E2514;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.widget-link:hover {
  color: var(--primary-red);
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item {
  display: flex;
  gap: 12px;
  background: transparent;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 154, 90, 0.2);
  transition: var(--transition-fast);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-item:hover {
  transform: translateX(3px);
}

.news-thumb {
  width: 78px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.news-headline {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4E2514;
  line-height: 1.3;
}

.news-date {
  font-size: 0.68rem;
  color: #7A6B5D;
  font-weight: 500;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 98px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 43, 68, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(196, 154, 90, 0.35);
  box-shadow: none;
  transition: var(--transition-fast);
}

.event-item:hover {
  background: rgba(196, 154, 90, 0.08);
  border-color: rgba(196, 154, 90, 0.6);
  transform: translateX(3px);
}

.event-date-badge {
  background: #6B1D28;
  color: var(--bg-white);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date-day {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.event-date-month {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-details {
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary-navy);
  line-height: 1.25;
}

.event-location {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   15. NEWSLETTER SECTION
------------------------------------------------------------- */
.newsletter-section {
  background: #6E1823 url('../assets/images/backgrounds/newsletter-bg.webp') no-repeat center center / cover;
  color: #FFFFFF;
  padding: 48px 0;
  min-height: 190px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 140px;
}

.newsletter-left-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1.4;
}

.newsletter-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FAF4EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.newsletter-mail-icon {
  width: 28px;
  height: 28px;
  color: #6E1823;
}

.newsletter-text-block {
  text-align: left;
}

.newsletter-top-line {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: #FAF4EB;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 3px;
  line-height: 1.3;
}

.newsletter-main-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.25;
}

.newsletter-form-inline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.newsletter-input-box-container {
  display: flex;
  align-items: center;
  background-color: #FAF4EB;
  border-radius: 6px;
  padding: 4px 5px 4px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  max-width: 480px;
  width: 100%;
}

.newsletter-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: #2D3436;
  padding: 8px 8px 8px 0;
  min-width: 0;
}

.newsletter-email-input::placeholder {
  color: #7A6B5D;
  opacity: 0.85;
}

.btn-subscribe-figma {
  background-color: #6E1823;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-subscribe-figma:hover {
  background-color: #58121B;
  border-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.btn-subscribe:hover {
  background-color: #3D0D15;
  border-color: var(--accent-gold);
}

.lotus-icon {
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   16. FOOTER
------------------------------------------------------------- */
.footer {
  background: #081726 url('../assets/images/backgrounds/footer-navy-blank.webp') no-repeat center top / cover;
  color: var(--bg-white);
  padding-top: 0;
  position: relative;
}

.footer-top-strip {
  width: 100%;
  height: 18px;
  background: url('../assets/images/backgrounds/footer-top-maroon-strip.webp') repeat-x top center / auto 100%;
  margin-bottom: 28px;
}

.footer-main-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 44px !important;
  box-sizing: border-box;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2.3fr 1.15fr 1.25fr 1.15fr 1.15fr 1.7fr;
  gap: 28px;
  padding-bottom: 35px;
  align-items: stretch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.footer-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 4px;
  bottom: 4px;
  width: 14px;
  background: url('../assets/images/decorations/vertical-gold-line.png') no-repeat center center / 100% 100%;
  opacity: 0.9;
}

.footer-col:not(:first-child)::after {
  display: none;
}

.footer-col-brand {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
}

.footer-col-brand::after {
  display: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-logo-svg {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
}

.footer-logo .logo-text-hindi {
  font-family: 'Rozha One', 'Noto Serif Devanagari', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #FEE2AD;
  display: block;
  line-height: 1.15;
}

.footer-logo .logo-text-english {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: #FEE2AD;
  letter-spacing: 1.6px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: #FEE2AD;
  margin: 10px 0 8px;
  letter-spacing: 0.8px;
}

.footer-desc {
  font-size: 0.92rem;
  color: #D8C4A0;
  line-height: 1.45;
  margin-bottom: 14px;
}

.footer-event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #D8C4A0;
}

.footer-follow-block {
  margin-top: auto;
  padding-top: 10px;
}

.follow-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: #FEE2AD;
  letter-spacing: 1.8px;
  font-weight: 700;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(254, 226, 173, 0.4);
  background: rgba(254, 226, 173, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FEE2AD;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: #FEE2AD;
  color: #081726;
  border-color: #FEE2AD;
  box-shadow: 0 0 10px rgba(254, 226, 173, 0.5);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
  color: #FEE2AD;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 2px;
  font-weight: 700;
  position: relative;
}

.footer-col-title::after {
  content: "";
  display: block;
  width: 85px;
  height: 9px;
  margin-top: 5px;
  margin-bottom: 14px;
  background: url('../assets/images/decorations/horizontal-gold-line.webp') no-repeat left center / contain;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  font-size: 0.94rem;
  color: #D8C4A0;
  transition: all 0.2s ease;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(254, 226, 173, 0.6);
  padding-left: 3px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #D8C4A0;
  line-height: 1.35;
}

.contact-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(254, 226, 173, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #FEE2AD;
}

.brochure-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(254, 226, 173, 0.35);
  padding: 9px 14px;
  border-radius: 6px;
  background: rgba(254, 226, 173, 0.04);
  color: #FFFFFF;
  transition: var(--transition-fast);
  margin-top: 14px;
}

.brochure-download-btn:hover {
  background: rgba(254, 226, 173, 0.12);
  border-color: #FEE2AD;
  box-shadow: 0 0 12px rgba(254, 226, 173, 0.2);
}

.brochure-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #FEE2AD;
  letter-spacing: 0.8px;
}

.brochure-sub {
  display: block;
  font-size: 0.8rem;
  color: #D8C4A0;
}

/* Partners Strip */
.footer-partners-strip {
  display: grid;
  grid-template-columns: 2.8fr 2.8fr 2.3fr 1.2fr 1.1fr;
  gap: 16px;
  padding: 24px 0 28px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px dashed rgba(254, 226, 173, 0.35);
  margin-top: 10px;
  position: relative;
  align-items: flex-start;
}

.partner-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.partner-group:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.55) 1px, transparent 1px);
  background-size: 1px 6px;
}

.partner-group-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: #FEE2AD;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.partner-logos-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.p-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.p-emblem {
  opacity: 0.95;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.p-logo-box:hover .p-emblem {
  opacity: 1;
  transform: translateY(-2px);
}

.p-label-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-title-sm {
  font-family: 'Outfit', sans-serif;
  font-size: 0.66rem;
  color: #FEE2AD;
  line-height: 1.15;
  font-weight: 600;
  white-space: nowrap;
}

.p-sub-sm {
  font-size: 0.56rem;
  color: rgba(254, 226, 173, 0.8);
  white-space: nowrap;
}

.p-title-bold {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #FFFFFF;
  letter-spacing: 0.8px;
}

.devanagari-label {
  font-family: 'Noto Serif Devanagari', 'Cinzel', serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #FEE2AD;
}

.center-text {
  text-align: center;
}

/* Media Brands */
.media-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.inline-brand {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.brand-db {
  font-family: 'Rozha One', 'Noto Serif Devanagari', serif;
  font-size: 0.88rem;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brand-indiatv {
  font-family: 'Cinzel', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.tv-badge {
  background: #FFFFFF;
  color: #0A1C2E;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 2px;
  line-height: 1;
  display: inline-block;
}

.brand-hindu {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.78rem;
  color: #FEE2AD;
  letter-spacing: 0.8px;
  font-weight: 700;
  white-space: nowrap;
}

/* Event Partners Alignment */
.event-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.zee-circle-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0A1C2E;
  font-family: 'Outfit', 'Cinzel', sans-serif;
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.zee-circle-badge:hover {
  transform: scale(1.08);
}

/* IT Brand Alignment */
.it-brand {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-center-group {
  align-items: center;
  text-align: center;
}

.futura-name-wrap {
  line-height: 1.1;
  text-align: center;
}

.brand-soft {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

.brand-futura {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #00A8FF;
  letter-spacing: 0.3px;
}

.sub-futura {
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: #00A8FF;
  letter-spacing: 0.6px;
  margin-top: 2px;
  display: block;
  text-align: center;
}

.footer-bottom {
  width: 100%;
  background: url('../assets/images/backgrounds/footer-bottom-clean-bg.png') no-repeat center center / 100% 100%;
  height: 56px;
  display: flex;
  align-items: center;
  position: relative;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 44px !important;
  box-sizing: border-box;
  font-size: 0.84rem;
  font-family: var(--font-serif);
  color: #7B2629;
}

.footer-center-lotus {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

.footer-center-lotus:hover {
  transform: scale(1.08);
}

.footer-copy {
  color: #7B2629;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  color: #7B2629;
  font-weight: 600;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #562b1f;
  text-decoration: underline;
}

.footer-pipe {
  color: #8C5B3E;
  opacity: 0.6;
  font-size: 0.8rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==================== THEME 2026 PAGE SPECIFIC STYLES ==================== */

.theme-2026-page {
  background-color: var(--bg-cream-light);
}

/* 1. Hero Section */
.theme-hero-section {
  background: #FAF4EB url('../assets/images/backgrounds/hero-original-root.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  width: 100%;
  padding: 36px 0 20px 0;
  display: flex;
  align-items: center;
}

.theme-hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 375px;
  padding: 0 4% 16px 4%;
}

.theme-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  margin-left: 3vw;
  z-index: 2;
  padding: 16px 0 30px 0;
}

.theme-hero-small-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.heading-ornament-icon {
  display: inline-block;
  flex-shrink: 0;
}

.theme-hero-tag-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #7B2230;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.theme-hero-hindi-title {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(2.8rem, 4.2vw, 4.3rem);
  font-weight: 800;
  color: #6E1823;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.theme-hero-diamond-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  width: 380px;
  max-width: 100%;
}

.theme-hero-diamond-divider .divider-line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #D4AF37 0%, #7B2230 100%);
}

.theme-hero-diamond-divider .divider-line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #7B2230 0%, #D4AF37 100%);
}

.diamond-shape {
  color: #7B2230;
  font-size: 0.7rem;
}

.theme-hero-english-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  color: #4A5463;
  line-height: 1.5;
  font-weight: 500;
}


/* 2. Theme Vision Section */
/* 2. THEME VISION Section */
.theme-vision-section {
  background-color: #FAF4EB;
  padding: 48px 0 54px 0;
  border-top: 1px solid #E6D7C3;
  border-bottom: 1px solid #E6D7C3;
}

.theme-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.vision-header-arrow {
  flex-shrink: 0;
}

.theme-section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #7B2230;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.theme-vision-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  color: #4A5463;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-weight: 500;
}

.theme-vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: visible;
}

.vision-col-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  position: relative;
  transition: transform 0.25s ease;
}

.vision-col-item:hover {
  transform: translateY(-2px);
}

.vision-col-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #DBCAB7;
}

.vision-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.vision-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.vision-col-item:hover .vision-icon-img {
  transform: scale(1.08);
}

.vision-hindi-title {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #6E1823;
  margin: 6px 0 3px 0;
}

.vision-english-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  color: #4A5463;
  font-weight: 600;
}


/* 3. Panchatattva Section */
/* 3. "पंचतत्व – लोक जीवन की आधारशिला" Section */
.panchatattva-section {
  padding: 24px 0 28px 0;
  background: #FAF4EB url('../assets/images/backgrounds/panchatattva-bg-new.webp') center/cover no-repeat;
  position: relative;
  border-top: 1px solid #E6D7C3;
  border-bottom: 1px solid #E6D7C3;
}

.panchatattva-box {
  background-color: transparent;
  border: 1.5px solid #E2D1BE;
  border-top: none;
  border-radius: 16px;
  position: relative;
  padding: 28px 16px 20px 16px;
  margin-top: 16px;
}

.panchatattva-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 190px);
  height: 1.5px;
  background-color: #E2D1BE;
}

.panchatattva-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 190px);
  height: 1.5px;
  background-color: #E2D1BE;
}

.panchatattva-box-title {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  padding: 0 10px;
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: #6E1823;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.panchatattva-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 8px;
}

.panchatattva-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 10px;
  position: relative;
  transition: transform 0.25s ease;
}

.panchatattva-col:hover {
  transform: translateY(-2px);
}

.panchatattva-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #DBCAB7;
}

.panchatattva-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pancha-icon-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.panchatattva-col:hover .pancha-icon-img {
  transform: scale(1.08);
}

.pancha-hindi-heading {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1D232A;
  margin: 4px 0 2px 0;
}

.pancha-hindi-sub {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.88rem;
  color: #4A525D;
  font-weight: 600;
}

/* 4. "लोक से विचार, विचार से आधार" Section */
.lok-vichar-section {
  background-color: #FAF4EB;
  padding: 38px 0 44px 0;
  border-bottom: 1px solid #E6D7C3;
}

.lok-vichar-inner {
  display: flex;
  gap: 28px;
  align-items: center;
}

.lok-vichar-left {
  flex: 0 0 330px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 0;
}

.lok-vichar-title {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.58rem;
  font-weight: 700;
  color: #6E1823;
  margin-bottom: 22px;
  line-height: 1.3;
}

.lok-vichar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lok-vichar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: #4A525D;
  line-height: 1.45;
}

.bullet-mandala-svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.lok-vichar-divider {
  width: 1.5px;
  background-color: #DBCAB7;
  align-self: stretch;
  margin: 0 6px;
  opacity: 0.85;
}

.lok-vichar-right {
  flex: 1;
  min-width: 0;
}

.lok-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  height: 240px;
}

.lok-card {
  background-color: #F8EFE4;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 240px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1.2px solid #E2D1BE;
  box-shadow: 0 3px 12px rgba(110, 24, 35, 0.05);
}

.lok-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(110, 24, 35, 0.14);
}

.lok-card-img-wrap {
  width: 100%;
  height: 184px;
  flex: 0 0 184px;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
}

.lok-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) brightness(1.02);
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.4s ease;
}

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

.lok-card-caption {
  width: 100%;
  height: 56px;
  flex: 0 0 56px;
  padding: 6px 8px;
  text-align: center;
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.90rem;
  font-weight: 700;
  color: #6E1823;
  background-color: #F8EFE4;
  line-height: 1.32;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* 5. "हमारी दृश्य भाषा" Section */
.visual-language-section {
  background-color: #FAF4EB;
  padding: 56px 0 64px 0;
}

.visual-language-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.v-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(123, 34, 48, 0.02), rgba(123, 34, 48, 0.4), rgba(123, 34, 48, 0.02));
}

.visual-language-heading {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #7B2230;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.visual-language-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: visible;
  margin-top: 0;
}

.visual-col-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 10px;
  position: relative;
  transition: transform 0.25s ease;
}

.visual-col-item:hover {
  transform: translateY(-2px);
}

.visual-col-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #DBCAB7;
}

.visual-icon-wrap {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.visual-icon-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.visual-col-item:hover .visual-icon-img {
  transform: scale(1.08);
}

.visual-hindi-title {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: #6E1823;
  margin: 6px 0 3px 0;
}

.visual-hindi-sub {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.94rem;
  color: #5A6472;
  line-height: 1.35;
}


/* 6. Final CTA Section */
.theme-cta-section {
  background-color: #F8EFE4;
  background-image: url('../assets/images/backgrounds/theme-cta-bg.png');
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 44px 0 48px 0;
  position: relative;
}

.theme-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.theme-cta-heading {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(1.2rem, 1.9vw, 1.75rem);
  font-weight: 700;
  color: #6E1823;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px auto;
  line-height: 1.35;
}

.btn-theme-cta {
  background-color: #7B2230;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(123, 34, 48, 0.3);
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-theme-cta:hover {
  background-color: #5E1823;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 34, 48, 0.45);
}


/* ==================== CONTACT US PAGE SPECIFIC STYLES ==================== */

/* 1. Contact Hero Section */
.contact-hero-section {
  background: #FAF4EB url('../assets/images/backgrounds/contact-hero-bg.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  width: 100%;
  padding: 36px 0 20px 0;
  display: flex;
  align-items: center;
}

.contact-hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 375px;
  padding: 0 4% 16px 4%;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  margin-left: 3vw;
  z-index: 2;
  padding: 16px 0 30px 0;
}

.contact-hero-small-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-hero-tag-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #7B2230;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.contact-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 4.2vw, 4.3rem);
  font-weight: 800;
  color: #6E1823;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.contact-hero-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  width: 380px;
  max-width: 100%;
}

.contact-hero-divider .divider-line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #D4AF37 0%, #7B2230 100%);
}

.contact-hero-divider .divider-line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #7B2230 0%, #D4AF37 100%);
}

.contact-hero-subtitle-1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  color: #2D3436;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.contact-hero-subtitle-2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #4A5463;
  font-weight: 400;
  line-height: 1.55;
  max-width: 540px;
}


/* 2. Contact Information 5-Column Section */
.contact-info-section {
  background-color: #FAF4EB;
  padding: 36px 0 28px 0;
  border-bottom: 1px solid #E6D7C3;
}

.contact-info-box {
  background-color: #FAF4EB;
  border: 1.5px solid #E2D1BE;
  border-radius: 16px;
  padding: 28px 16px;
  box-shadow: 0 4px 16px rgba(110, 24, 35, 0.04);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 14px;
  position: relative;
}

.contact-info-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background-color: #E2D1BE;
}

.contact-icon-circle-lg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #7B2230;
  background-color: #FAF4EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #7B2230;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.contact-info-card:hover .contact-icon-circle-lg {
  transform: scale(1.08);
  background-color: #7B2230;
  color: #FFFFFF;
}

.contact-info-card:hover .contact-icon-circle-lg svg {
  stroke: #FFFFFF;
}

.contact-info-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #6E1823;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.90rem;
  color: #4A5463;
  line-height: 1.5;
  font-weight: 500;
}

.contact-info-text a {
  color: #6E1823;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: #7B2230;
  text-decoration: underline;
}


/* 3. Send Us A Message + Find Us Main Section */
.contact-main-section {
  background-color: #FAF4EB;
  padding: 44px 0 52px 0;
  border-bottom: 1px solid #E6D7C3;
}

.contact-main-box {
  background-color: #FAF4EB;
  border: 1.5px solid #E2D1BE;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(110, 24, 35, 0.04);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.contact-form-col {
  position: relative;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form-col::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #E2D1BE;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}

.contact-map-col .contact-section-heading {
  margin-bottom: 24px;
}

.contact-section-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #6E1823;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.heading-divider-sm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  width: 240px;
  max-width: 100%;
}

.heading-divider-sm .divider-line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #D4AF37 0%, #7B2230 100%);
}

.heading-divider-sm .divider-line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #7B2230 0%, #D4AF37 100%);
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: #FAF4EB;
  border: 1px solid #E6D7C3;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: #2D3436;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-select {
  color: #8A7869;
  opacity: 0.9;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #6E1823;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(110, 24, 35, 0.08);
}

.select-wrap {
  position: relative;
  width: 100%;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit-message {
  align-self: flex-start;
  background-color: #6E1823;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 24px;
  border: none;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(110, 24, 35, 0.2);
  transition: all 0.25s ease;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit-message:hover {
  background-color: #58121B;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(110, 24, 35, 0.3);
}

.btn-submit-message:active {
  transform: translateY(0);
}

/* Map & Find Us Styling */
.map-wrapper {
  width: 100%;
  height: 245px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E6D7C3;
  position: relative;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.open-in-maps-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #E2D1BE;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1B2A4A;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.open-in-maps-btn:hover {
  background-color: #7B2230;
  color: #FFFFFF;
  border-color: #7B2230;
  transform: translateY(-1px);
}

.map-location-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -85%);
  background-color: #FAF4EB;
  border: 1px solid #E2D1BE;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  text-decoration: none;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.map-location-tag:hover {
  transform: translate(-50%, -90%) scale(1.04);
  background-color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(110, 24, 35, 0.25);
}

.map-location-tag svg {
  flex-shrink: 0;
}

.tag-text {
  display: flex;
  flex-direction: column;
}

.tag-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #6E1823;
  line-height: 1.2;
}

.tag-text span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: #4A5463;
}

/* How to Reach Card */
.how-to-reach-card {
  background-color: #F8EFE4;
  border: 1px solid #E6D7C3;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.how-reach-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #7B2230;
  background-color: #FAF4EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2230;
  flex-shrink: 0;
}

.how-reach-content {
  display: flex;
  flex-direction: column;
}

.how-reach-title {
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #6E1823;
  margin-bottom: 4px;
}

.how-reach-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  color: #4A5463;
  line-height: 1.5;
}


/* 4. Frequently Asked Questions Section */
.contact-faq-section {
  background-color: #FAF4EB;
  padding: 48px 0 60px 0;
  border-bottom: 1px solid #E6D7C3;
}

.faq-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.faq-title {
  font-family: 'Cinzel', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #7B2230;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #F8EFE4;
  border: 1.2px solid #E2D1BE;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: #C49A5A;
  box-shadow: 0 4px 14px rgba(110, 24, 35, 0.06);
}

.faq-item.active {
  background-color: #FAF4EB;
  border-color: #7B2230;
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #6E1823;
  gap: 12px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: #4A5463;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px 20px;
}


/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  background: #FAF4EB url('../assets/images/backgrounds/testimonial-section-bg.webp') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  width: 100%;
}

.testimonials-corner-art {
  display: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.testimonials-top-ornament {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.testimonials-main-title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #52141E;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.testimonials-diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 16px auto;
  max-width: 380px;
  width: 100%;
}

.testimonials-diamond-divider .divider-line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7B2230);
}

.testimonials-diamond-divider .divider-line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #7B2230, transparent);
}

.testimonials-diamond-divider .diamond-flower {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: #2D3436;
  font-weight: 500;
  margin-bottom: 8px;
}

.testimonials-subtitle-wave {
  display: flex;
  justify-content: center;
}

/* Central Card */
.testimonials-card-wrapper {
  max-width: 1120px;
  margin: 0 auto 56px auto;
  position: relative;
  z-index: 2;
}

.testimonials-card {
  background: transparent url('../assets/images/backgrounds/testimonial-card-bg.png') center center / 100% 100% no-repeat !important;
  border: none !important;
  box-shadow: none !important;
  padding: 44px 30px 32px 30px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}

.card-bg-artwork,
.testimonials-corner-art {
  display: none !important;
}

.testimonials-card-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  padding-left: 155px;
  /* Offset for left Jharokha artwork */
  padding-right: 75px;
  /* Offset for right floral artwork */
}

.testimonial-profile-col {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-avatar-frame {
  position: relative;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  padding: 8px;
  background-color: #FAF4EB;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-scallop-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  pointer-events: none;
  z-index: 2;
}

.avatar-img-crop {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 2px solid #C49A5A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.avatar-notch {
  position: absolute;
  color: #7B2230;
  font-size: 0.75rem;
  z-index: 3;
}

.notch-top {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.notch-bottom {
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.notch-left {
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.notch-right {
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #6E1823;
  margin-bottom: 4px;
  line-height: 1.3;
}

.testimonial-designation {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: #4A5463;
  font-weight: 500;
}

.testimonial-quote-col {
  flex: 1;
  position: relative;
  padding: 0 10px;
}

.testimonial-quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 4.2rem;
  line-height: 1;
  color: #6E1823;
  position: absolute;
  opacity: 0.9;
  user-select: none;
}

.quote-open {
  top: -26px;
  left: -28px;
}

.quote-close {
  bottom: -38px;
  right: 0;
}

.testimonial-quote-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  color: #2D3436;
  font-weight: 400;
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease;
}

/* Slider Controls */
.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-left: 120px;
  position: relative;
  z-index: 3;
}

.slider-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FAF4EB;
  border: 1px solid #D6C4B0;
  color: #6E1823;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.slider-nav-btn:hover {
  background-color: #6E1823;
  color: #FFFFFF;
  border-color: #6E1823;
}

.slider-dots-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FAF4EB;
  border: 1px solid #D6C4B0;
  color: #6E1823;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.slider-dot.active {
  background-color: #6E1823;
  color: #FFFFFF;
  border-color: #6E1823;
  box-shadow: 0 4px 10px rgba(110, 24, 35, 0.3);
}

.slider-dot:hover:not(.active) {
  background-color: #F5EAE0;
  border-color: #6E1823;
}

/* Feature Blocks Grid */
.testimonial-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding: 0 12px;
  text-align: left;
}

.testimonial-feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #E2D1BE;
}

.feature-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-feature-item:hover .feature-icon-badge {
  transform: translateY(-3px);
}

.feature-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-maroon {
  background-color: #6E1823;
  color: #FFFFFF;
  border: 2px solid #FAF4EB;
  outline: 1.5px solid #6E1823;
}

.badge-navy {
  background-color: #1B2A4A;
  color: #FFFFFF;
  border: 2px solid #FAF4EB;
  outline: 1.5px solid #1B2A4A;
}

.badge-gold {
  background-color: #9C6B32;
  color: #FFFFFF;
  border: 2px solid #FAF4EB;
  outline: 1.5px solid #9C6B32;
}

.badge-red {
  background-color: #7B2230;
  color: #FFFFFF;
  border: 2px solid #FAF4EB;
  outline: 1.5px solid #7B2230;
}

.feature-item-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #6E1823;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-item-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  color: #4A5463;
  line-height: 1.45;
  margin-bottom: 6px;
}

.feature-item-underline {
  width: 32px;
  height: 2px;
  background-color: #C49A5A;
  border-radius: 1px;
  display: block;
}

/* ==================== HIGHLIGHTS SECTION ==================== */
.highlights-section {
  background: #FAF4EB url('../assets/images/backgrounds/highlights-bg.webp') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 60px 0 68px 0;
  border-bottom: 1px solid #E6D7C3;
}

.highlights-container {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
}

.highlights-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
}

.highlights-title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #52141E;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.highlights-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  width: 280px;
  max-width: 100%;
}

.highlights-divider .divider-line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #7B2230 100%);
}

.highlights-divider .divider-line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #7B2230 0%, transparent 100%);
}

.highlights-hindi-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.highlights-hindi-subtitle .hindi-text {
  font-family: 'Cinzel', 'Noto Serif Devanagari', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #6E1823;
}

.highlights-english-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  color: #1B2A4A;
  font-weight: 500;
  margin-bottom: 8px;
}

.highlights-subtitle-wave {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 6 Column Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 56px;
  align-items: start;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #E2D1BE;
}

.highlight-image-wrapper {
  position: relative;
  width: 154px;
  height: 154px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-dashed-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.highlight-img-crop {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1.5px solid #C49A5A;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.highlight-item:hover .highlight-img {
  transform: scale(1.06);
}

.highlight-icon-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #6E1823;
  border: 2px solid #FAF4EB;
  outline: 1.2px solid #C49A5A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(110, 24, 35, 0.3);
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon-badge {
  transform: translateX(-50%) scale(1.1);
  background-color: #7B2230;
}

.highlight-item-title {
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #6E1823;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #3A4454;
  line-height: 1.52;
  text-align: center;
  margin: 0 auto;
}

.highlights-features-grid {
  border-top: 1px solid #E6D7C3;
  padding-top: 40px;
}

/* Pinned Venue Badge */
.hero-venue-pinned-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FAF4EB;
  border: 1px solid #E6D7C3;
  border-radius: 30px;
  padding: 8px 18px;
  margin-top: 18px;
  text-decoration: none;
  color: #6E1823;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(110, 24, 35, 0.1);
  transition: all 0.25s ease;
}

.hero-venue-pinned-badge:hover {
  background: #7B2230;
  color: #FFFFFF;
  border-color: #7B2230;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(123, 34, 48, 0.25);
}

.hero-venue-pinned-badge:hover svg path {
  fill: #FFFFFF;
}

/* ==========================================================================
   IN THE NEWS SECTION
   ========================================================================== */

.news-section {
  position: relative;
  background: #FAF3EA url('../assets/images/backgrounds/news-section-bg.png') center top / 100% 100% no-repeat;
  padding: 55px 0 60px;
  overflow: hidden;
  border-top: 1px solid #E8DBCB;
  border-bottom: 1px solid #E8DBCB;
}

.news-section__corner-art {
  display: none;
}

.news-section__corner-art--left {
  left: 0;
}

.news-section__corner-art--right {
  right: 0;
}

.news-section__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.news-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.news-section__title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #52141E;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.25;
}

.news-section__hindi-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.news-section__hindi-subtitle .hindi-text {
  font-family: 'Cinzel', 'Noto Serif Devanagari', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #6E1823;
}

/* Carousel Layout & Controls */
.news-carousel {
  position: relative;
  padding: 0 40px;
}

.news-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #E2BD96;
  color: #7B2230;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(123, 34, 48, 0.12);
  transition: all 0.3s ease;
}

.news-carousel__nav--prev {
  left: -10px;
}

.news-carousel__nav--next {
  right: -10px;
}

.news-carousel__nav:hover:not(:disabled) {
  background: #7B2230;
  color: #FFFFFF;
  border-color: #7B2230;
  box-shadow: 0 6px 18px rgba(123, 34, 48, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.news-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.news-carousel__track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
  padding: 6px 2px 14px;
}

.news-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* News Cards */
.news-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #FAF4EB;
  border: 1px solid #E8D5C0;
  border-radius: 14px;
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(123, 34, 48, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-50% scale(1));
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(123, 34, 48, 0.12);
  border-color: #D9531E;
}

.news-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-card__badge {
  background: #D9531E;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  padding: 3px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.news-card__date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #6E5C4F;
  font-weight: 500;
}

.news-card__date-icon {
  width: 13px;
  height: 13px;
  color: #D9531E;
}

.news-card__image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 12px;
  width: 100%;
  position: relative;
  background: #E8DBCB;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card__image {
  transform: scale(1.05);
}

.news-card__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 6px 0;
  text-align: center;
}

.news-card__divider::before,
.news-card__divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #E2BD96, transparent);
}

.news-card__divider-dot,
.news-card__divider-flower {
  padding: 0 6px;
  color: #D9531E;
  font-size: 0.7rem;
}

.news-card__title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: #7B2230;
  line-height: 1.32;
  margin: 6px 0;
  flex-grow: 1;
  text-align: left;
}

.news-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 14px;
}

.news-card__read-more {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #D9531E;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card:hover .news-card__read-more {
  color: #7B2230;
}

.news-card__arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #D9531E;
  color: #D9531E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.news-card:hover .news-card__arrow-btn {
  background: #D9531E;
  color: #FFFFFF;
  transform: translateX(3px);
}

.news-card__warli-strip {
  height: 30px;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  margin-top: auto;
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 28px;
  opacity: 0.85;
  border-top: 1px stroke rgba(217, 83, 30, 0.15);
}

/* Footer View All Button */
.news-section__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.news-section__botanical {
  display: inline-flex;
  align-items: center;
}

.news-section__view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #7B2230;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 13px 32px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(123, 34, 48, 0.22);
  transition: all 0.3s ease;
}

.news-section__view-all-btn:hover {
  background: #5E1823;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(123, 34, 48, 0.35);
  color: #FFFFFF;
}

.news-section__btn-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #D9531E;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.news-section__view-all-btn:hover .news-section__btn-arrow-circle {
  transform: translateX(4px);
}