/* ==========================================================================
   ADITYA ENTERPRISES - MODERN LIGHT DESIGN SYSTEM (VANILLA CSS)
   ========================================================================== */

:root {
  /* Light Theme Color Palette */
  --bg-dark: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;
  --bg-alt: #f1f5f9;
  
  --primary-cyan: #0284c7;
  --primary-cyan-glow: rgba(2, 132, 199, 0.25);
  --accent-gold: #d97706;
  --accent-gold-glow: rgba(217, 119, 6, 0.25);
  --accent-emerald: #059669;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;

  --border-glass: rgba(15, 23, 42, 0.1);
  --border-active: rgba(2, 132, 199, 0.5);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-glass: 0 15px 35px -10px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 10px 25px rgba(2, 132, 199, 0.2);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Optional Dark Mode Class for Toggle */
body.dark-mode {
  --bg-dark: #090d16;
  --bg-card: rgba(18, 26, 43, 0.85);
  --bg-card-hover: rgba(26, 38, 64, 0.95);
  --bg-alt: #0c1220;
  
  --primary-cyan: #38bdf8;
  --primary-cyan-glow: rgba(56, 189, 248, 0.4);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-active: rgba(56, 189, 248, 0.5);
  --shadow-glass: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 5;
  width: 100%;
}

/* Subtle Animated Background Orbs */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: var(--primary-cyan);
}

.orb-2 {
  top: 40%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--accent-gold);
  animation-delay: -5s;
}

.orb-3 {
  bottom: -10%;
  left: 30%;
  width: 550px;
  height: 550px;
  background: #3b82f6;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center { text-align: center; }
.mt-5 { margin-top: 40px; }
.mb-4 { margin-bottom: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px -5px var(--primary-cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

.btn-outline {
  background: rgba(2, 132, 199, 0.05);
  border-color: rgba(2, 132, 199, 0.2);
  color: var(--primary-cyan);
}

.btn-outline:hover {
  border-color: var(--primary-cyan);
  background: rgba(2, 132, 199, 0.12);
  color: #0369a1;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-glass:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block { width: 100%; }

.pulse-glow {
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(2, 132, 199, 0.2); }
  100% { box-shadow: 0 0 30px rgba(2, 132, 199, 0.5); }
}

/* Ice-Lavender Pastel Sky Gradient Glassmorphism Header Strip */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
  padding: 14px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 242, 255, 0.93) 50%, rgba(224, 231, 255, 0.90) 100%) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 210, 254, 0.6) !important;
  box-shadow: 0 4px 25px rgba(99, 102, 241, 0.08) !important;
}

.navbar-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 242, 255, 0.93) 50%, rgba(224, 231, 255, 0.90) 100%) !important;
}

body.dark-mode .navbar-glass,
body.dark-mode .site-header {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 27, 75, 0.92) 50%, rgba(30, 41, 59, 0.90) 100%) !important;
}

/* 15 August 2026 Independence Day Single-Line Transparent Sliding Banner (Double Font Size & Dark Rich Flag Colors) */
.independence-ticker-strip {
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  z-index: 998;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  padding: 8px 0;
  user-select: none;
  pointer-events: none; /* Allows click-through while sliding */
}

.ticker-track-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: slideRightToLeft 26s linear infinite;
  pointer-events: auto;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 50px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 1.95rem; /* Double Font Size */
  font-weight: 900;
  letter-spacing: 0.8px;
}

.flag-emoji {
  font-size: 2.1rem;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.9));
  display: inline-block;
}

/* Deep Dark Saffron / Kesariya */
.ticker-saffron {
  color: #bf360c !important;
  background: linear-gradient(135deg, #e65100 0%, #d84315 50%, #bf360c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 12px rgba(230, 81, 0, 0.6));
}

/* Pure White with Deep Dark Contrast Shadow */
.ticker-white {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 60%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.65));
}

/* Deep Dark India Green */
.ticker-green {
  color: #004d20 !important;
  background: linear-gradient(135deg, #00701a 0%, #004d20 60%, #003314 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 12px rgba(0, 112, 26, 0.6));
}

.ticker-divider {
  color: #000080;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
  opacity: 0.9;
}

@media (max-width: 992px) {
  .independence-ticker-strip {
    top: 74px;
  }
  .ticker-item {
    font-size: 1.35rem;
    gap: 10px;
    padding: 0 30px;
  }
  .flag-emoji {
    font-size: 1.5rem;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0284c7 0%, #d97706 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px var(--primary-cyan-glow);
}

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

.brand-name {
  font-family: 'Cinzel', 'Outfit', serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 1.8px;
  background: linear-gradient(135deg, #0f172a 0%, #d97706 70%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

body.dark-mode .brand-name {
  background: linear-gradient(135deg, #ffffff 0%, #fbbf24 60%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-family: 'Cinzel', 'Outfit', serif;
  font-size: 0.80rem;
  letter-spacing: 1.8px;
  color: var(--accent-gold);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: #0f172a;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  padding: 8px 0;
  border-radius: 0;
  background: none !important;
}

body.dark-mode .nav-link {
  color: #ffffff;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0284c7, #d97706);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #0284c7 !important;
  background: none !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
  color: #38bdf8 !important;
}

.nav-link:hover::before, .nav-link.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--primary-cyan);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.header-action-btn:hover {
  background: var(--primary-cyan);
  color: #ffffff;
  transform: translateY(-2px);
}

.call-btn-header {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #059669;
}

.call-btn-header:hover {
  background: #059669;
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: var(--transition-fast);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE SLIDE-IN DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 11, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  z-index: 2000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.96) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--border-glass);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 22px 20px;
  box-sizing: border-box;
}

body.dark-mode .mobile-drawer-panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(9, 13, 22, 0.98) 100%);
}

.mobile-drawer-panel.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 18px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.drawer-title {
  display: flex;
  flex-direction: column;
}

.drawer-name {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: var(--text-main);
}

.drawer-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.70rem;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 800;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 0 auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.90rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  background: transparent;
}

.drawer-link i {
  font-size: 1.05rem;
  color: var(--primary-cyan);
  width: 20px;
  text-align: center;
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary-cyan);
  transform: translateX(4px);
}

.drawer-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
}

.drawer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.drawer-contact-row i {
  color: var(--accent-gold);
}

.drawer-contact-row a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 100px 0;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(2, 132, 199, 0.06), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.8rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-cyan);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-card-stack {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  background: #ffffff;
  transition: var(--transition-smooth);
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  color: #ffffff;
}

.card-overlay h3 { color: #ffffff; }

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-cyan);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.floating-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  animation: floatBadge 6s infinite ease-in-out alternate;
}

body.dark-mode .floating-badge {
  background: rgba(18, 26, 43, 0.9);
  color: #fff;
}

.badge-1 { top: -20px; right: -20px; color: var(--accent-gold); }
.badge-2 { bottom: 30px; left: -30px; color: var(--accent-emerald); animation-delay: -3s; }

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

/* About / Reading Section */
.about-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--primary-cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin: 8px 0 16px 0;
  color: var(--text-main);
}

.title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
  margin: 0 auto;
  border-radius: var(--radius-pill);
}

.reading-container {
  max-width: 1000px;
  margin: 0 auto;
}

.reading-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  margin-bottom: 32px;
}

.reading-btn {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--primary-cyan);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.reading-btn:hover, .reading-btn.active {
  background: var(--primary-cyan);
  color: #ffffff;
}

.reading-speed {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reading-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reading-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-smooth);
}

.reading-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-cyan);
  transform: translateX(8px);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
}

.card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.reading-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.reading-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Animated Highlight Effect */
.hl-brand {
  color: var(--primary-cyan);
  font-weight: 700;
}

.reading-text.highlighted {
  position: relative;
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.12) 0%, rgba(217, 119, 6, 0.12) 100%);
  border-left: 4px solid var(--primary-cyan);
  padding-left: 16px;
  border-radius: 4px;
}

/* Page View Routing & Clean Non-Overlapping Spacing */
.page-view {
  display: none;
  min-height: calc(100vh - 120px);
  box-sizing: border-box;
}

.page-view.active-page {
  display: block;
}

#home.page-view {
  min-height: auto;
}

.category-section,
.contact-section {
  padding: 145px 0 95px 0 !important;
  position: relative;
  z-index: 5;
  scroll-margin-top: 135px;
}

@media (max-width: 992px) {
  .category-section,
  .contact-section {
    padding: 125px 0 85px 0 !important;
    scroll-margin-top: 115px;
  }
}

.section-bg-alt {
  background-color: var(--bg-alt);
}

.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: var(--transition-fast);
}

body.dark-mode .pill {
  background: rgba(255, 255, 255, 0.05);
}

.pill:hover, .pill.active {
  background: var(--primary-cyan);
  color: #ffffff;
  border-color: var(--primary-cyan);
  font-weight: 700;
  box-shadow: 0 6px 20px var(--primary-cyan-glow);
}

/* 3D Auto Flip Card Slider for Manufacturer, Service, and Stockist */
.flip-slider-container {
  perspective: 1200px;
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 520px;
  margin: 0 auto;
}

.flip-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: rotateY(-90deg) scale(0.9);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.flip-item.active {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.flip-item.exit {
  opacity: 0;
  transform: rotateY(90deg) scale(0.9);
  z-index: 1;
}

.flip-item .card-img-wrap {
  height: 360px;
  width: 100%;
}

.flip-item .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Marquee Carousel for Authorised Brands */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 12px 0;
}

.marquee-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 32px;
  width: max-content;
  animation: slideRightToLeft 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track .item-card {
  width: 320px;
  flex-shrink: 0;
}

.brand-card .card-img-wrap {
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-cyan);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.15);
  transition: all 0.3s ease;
}

.brand-card:hover .card-img-wrap {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.brand-card .card-img-wrap img {
  object-fit: contain;
}

@keyframes slideRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.item-card, .service-card {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.item-card:hover, .service-card:hover {
  transform: translateY(-4px);
  background: transparent;
  box-shadow: none;
}

.card-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-glass);
}

/* Service Cards Layout */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-cyan);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.15);
}

.service-img-wrap {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(15, 23, 42, 0.4) 100%);
}

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

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-glass-badge {
  background: rgba(2, 132, 199, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-highlights i {
  color: var(--primary-cyan);
  margin-right: 6px;
}

.service-cta-btn {
  margin-top: auto;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.service-cta-btn:hover {
  background: var(--primary-cyan) !important;
  color: #ffffff !important;
  border-color: var(--primary-cyan) !important;
  box-shadow: 0 6px 20px var(--primary-cyan-glow);
}

/* Process Timeline */
.process-timeline {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
}

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

.timeline-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.04);
  border: 1px solid var(--border-glass);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-cyan);
  margin-bottom: 8px;
}

/* Stockist Filter Box */
.stockist-search-box {
  position: relative;
  width: 320px;
}

.stockist-search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.stockist-search-box input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  outline: none;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

body.dark-mode .stockist-search-box input {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.stockist-search-box input:focus {
  border-color: var(--primary-cyan);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  cursor: pointer;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
  color: #ffffff;
}

.gallery-caption h4 { color: #ffffff; }

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-fast);
}

.contact-box:hover {
  border-color: var(--primary-cyan);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.contact-box-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.box-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
}

.contact-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

body.dark-mode .form-group input, 
body.dark-mode .form-group select, 
body.dark-mode .form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.2);
}

/* Modals & Search Overlay */
.search-overlay, .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.active, .modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-modal {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  overflow: hidden;
}

body.dark-mode .search-modal {
  background: var(--bg-card);
}

.search-header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.search-icon {
  font-size: 1.2rem;
  color: var(--primary-cyan);
  margin-right: 12px;
}

.search-header input {
  flex-grow: 1;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  outline: none;
}

.close-search, .modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}

.close-search:hover, .modal-close:hover { color: var(--primary-cyan); }

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-card {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #0f172a;
  color: #ffffff;
  border: none;
  box-shadow: none;
  padding: 40px;
  position: relative;
  overflow-y: auto;
}

.modal-fullscreen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  height: 100%;
  align-items: center;
}

.modal-img-container {
  width: 100%;
  height: 90vh;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2500;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.lightbox-arrow:hover {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  transform: translateY(-50%) scale(1.15);
}

.lightbox-arrow.nav-prev { left: 40px; }
.lightbox-arrow.nav-next { right: 40px; }

.modal-info-panel h2 {
  font-size: 2.2rem;
  margin: 16px 0;
}

.modal-desc-text {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

body.dark-mode .modal-card {
  background: var(--bg-card);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Floating WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Footer - Always Visible at the Bottom of Every Page */
.site-footer {
  position: relative;
  z-index: 10;
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 60px 0 30px 0;
  width: 100%;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4 {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-brand .logo-img-real {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 16px rgba(217, 119, 6, 0.45);
}

.footer-brand .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .brand-name {
  font-family: 'Cinzel', 'Outfit', serif !important;
  font-weight: 900 !important;
  font-size: 1.45rem !important;
  letter-spacing: 2px !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  text-transform: uppercase;
  display: block;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-brand .brand-sub {
  font-family: 'Cinzel', 'Outfit', serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 2.2px !important;
  color: #fbbf24 !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-brand p {
  color: #cbd5e1;
  margin-top: 14px;
  max-width: 400px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title { font-size: 2.8rem; }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    display: none;
  }

  .nav-menu.active { display: flex; }
  .mobile-toggle { display: block; }
}

/* ==========================================================================
   FULLSCREEN 4-SECOND IMAGE SLIDESHOW & SCROLL TEXT ANIMATIONS
   ========================================================================== */

.fullscreen-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important; /* Push text strictly to the BOTTOM of hero section! */
  align-items: center !important;
  padding-bottom: 60px !important;
  box-sizing: border-box;
}

.fs-slider-viewport {
  position: fixed !important; /* FIXED BACKGROUND SLIDER */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.fs-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s linear;
  pointer-events: none;
}

.fs-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.fs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fs-slider-overlay {
  position: fixed !important; /* FIXED OVERLAY GRADIENT */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(5, 11, 20, 0.2) 0%, rgba(5, 11, 20, 0.05) 50%, rgba(5, 11, 20, 0.65) 95%);
  pointer-events: none;
}

.fs-progress-container {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1001;
}

.fs-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d97706, #38bdf8);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  transition: width 0.1s linear;
}

.fs-hero-bottom-container {
  position: absolute !important;
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 90% !important;
  max-width: 900px !important;
  z-index: 10 !important;
  text-align: center !important;
}

.fs-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.95);
  margin: 6px 0;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.5));
}

.fs-hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  font-weight: 500;
}

.fs-scroll-down-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 10px;
}

.bounce-icon {
  animation: bounceDown 1.8s infinite ease-in-out;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* SCROLL-DRIVEN ANIMATED TEXT DETAILS (COMPLETELY TRANSPARENT OVER RUNNING SLIDESHOW) */
.about-section,
.scroll-details-section,
.gallery-section {
  position: relative;
  z-index: 10;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.scroll-details-section {
  padding: 120px 0 100px 0;
}

.gallery-section {
  padding: 60px 0 100px 0;
}

.scroll-details-section .section-title,
.scroll-details-section .main-scroll-title,
.gallery-section .section-title {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.scroll-details-section .section-subtitle,
.gallery-section .section-subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.gallery-section .section-desc {
  color: #f1f5f9 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.reading-container {
  max-width: 840px;
  margin: 0 auto;
}

.reading-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scroll-reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  background: rgba(6, 12, 22, 0.08) !important; /* 60% more transparent */
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid #f59e0b !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
  padding: 16px 24px !important;
  border-radius: 14px !important;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.scroll-reveal-card:hover {
  background: rgba(15, 23, 42, 0.2) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  transform: translateX(6px) translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
}

.scroll-reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-reveal-card .card-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 10px !important;
  background: rgba(56, 189, 248, 0.15) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  font-size: 1.2rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.scroll-reveal-card .card-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem !important; /* Font bada kiya */
  font-weight: 700 !important;
  margin-bottom: 6px !important;
  color: #38bdf8 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 12px rgba(56, 189, 248, 0.4);
  letter-spacing: 0.3px;
}

.scroll-animated-p {
  font-size: 1.02rem !important; /* Font bada kiya */
  line-height: 1.65 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.98), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
  margin: 0 !important;
}

.text-gradient-gold {
  font-family: 'Cinzel', 'Outfit', serif !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 25%, #f59e0b 55%, #d97706 80%, #fbbf24 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.75)) drop-shadow(0 4px 18px rgba(0, 0, 0, 0.95)) !important;
}

.hl-brand {
  font-family: 'Cinzel', 'Outfit', serif !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 30%, #f59e0b 70%, #fbbf24 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.7)) !important;
  text-shadow: none !important;
}

.gold-tag {
  color: #fbbf24 !important;
  letter-spacing: 2.5px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.gallery-item {
  background: rgba(8, 14, 26, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

/* ==========================================================================
   MOBILE-FIRST COMPLETE REDESIGN (STICKY BOTTOM BAR, GESTURES & TOUCH TARGETS)
   ========================================================================== */

/* Mobile Bottom Sticky Glass Navigation Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 440px;
  height: 62px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 36px;
  z-index: 1500;
  padding: 4px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-around;
}

body.dark-mode .mobile-bottom-bar {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  transition: var(--transition-fast);
  min-width: 50px;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item i {
  font-size: 1.15rem;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--primary-cyan);
}

.bottom-nav-item.active i {
  transform: scale(1.18);
  color: var(--primary-cyan);
}

.call-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
  animation: pulseCall 2.5s infinite;
}

@keyframes pulseCall {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.call-bubble i {
  font-size: 0.92rem;
  color: #fff !important;
}

.wa-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.wa-bubble i {
  font-size: 1.1rem;
  color: #fff !important;
}

/* Touch Swipe Indicator Pill for 3D Flip Sliders */
.touch-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.touch-swipe-hint i {
  animation: swipeHand 1.6s infinite ease-in-out;
  color: var(--primary-cyan);
}

@keyframes swipeHand {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
}

/* ==========================================================================
   MOBILE SCREENS (max-width: 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-menu {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .mobile-bottom-bar {
    display: flex !important;
  }

  .whatsapp-btn {
    display: none !important; /* Managed cleanly via bottom bar */
  }

  .touch-swipe-hint {
    display: flex;
  }

  /* Safe Padding for page views */
  .category-section,
  .contact-section {
    padding: 115px 0 110px 0 !important;
    scroll-margin-top: 105px;
  }

  /* Fullscreen Hero Section adjustments */
  .fullscreen-hero-section {
    padding-bottom: 95px !important;
  }

  .fs-hero-bottom-container {
    bottom: 85px !important;
    width: 94% !important;
  }

  .fs-hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.6rem) !important;
  }

  .fs-hero-subtitle {
    font-size: clamp(0.85rem, 3.2vw, 1.02rem) !important;
  }

  /* Cards Grid & 3D Stage Centering on Mobile */
  .flip-slider-container {
    padding: 15px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .flip-stage {
    width: 100% !important;
    max-width: 360px !important;
    height: 485px !important;
    margin: 0 auto !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .flip-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 auto !important;
  }

  .flip-item .card-img-wrap {
    height: 230px !important;
    width: 100% !important;
  }

  .flip-item .card-content {
    flex: 1 !important;
    padding: 16px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .reading-card {
    padding: 20px 18px !important;
    gap: 14px !important;
  }

  .reading-card .card-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 1.2rem !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .site-footer {
    padding: 40px 0 90px 0 !important;
  }

  /* Touch Lightbox navigation arrows repositioned for thumb reach */
  .lightbox-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    top: auto;
    bottom: 30px;
    transform: none !important;
  }

  .lightbox-arrow.nav-prev { left: 24px; }
  .lightbox-arrow.nav-next { right: 24px; }
}

/* ==========================================================================
   EXTRA SMALL MOBILE SCREENS (max-width: 576px)
   ========================================================================== */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 1.15rem;
    letter-spacing: 1.2px;
  }

  .brand-sub {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
  }

  .logo-img-real {
    width: 38px !important;
    height: 38px !important;
  }

  .header-actions {
    gap: 6px;
  }

  .header-action-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
  }

  .section-title {
    font-size: 1.85rem !important;
  }

  .section-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 2px !important;
  }

  .section-desc {
    font-size: 0.88rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
    padding: 12px 14px !important;
  }

  .contact-card {
    padding: 24px 18px !important;
  }

  .timeline-step {
    padding: 16px 14px !important;
  }

  .flip-stage {
    max-width: 320px !important;
    height: 460px !important;
  }

  .flip-item .card-img-wrap {
    height: 215px !important;
  }

  .modal-card {
    padding: 20px 16px;
  }

  .modal-img-container {
    height: 75vh !important;
    max-height: 75vh !important;
  }
}


