/* ========================================
   Dr. Bipin Kumar – Official Website CSS
   Color Palette: Saffron, Navy, Gold, White
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@400;600;700&family=Noto+Sans+Devanagari:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES (BHAGWA PALETTE) ---------- */
:root {
  --saffron:     #E65100; /* Rich Bhagwa */
  --saffron-lt:  #FF7043; /* Light Kesariya */
  --saffron-dk:  #BF360C; /* Deep Bhagwa */
  --navy:        #4A0E17; /* Royal Maroon / Deep Sindoor */
  --navy-lt:     #6D1B24;
  --navy-dk:     #2D080A;
  --gold:        #D4AF37; /* Royal Gold */
  --gold-lt:     #FFD54F;
  --white:       #FFFFFF;
  --off-white:   #FFF9F2; /* Kesariya tinted cream */
  --gray-100:    #FFF3E0;
  --gray-200:    #FFE0B2;
  --gray-600:    #6D4C41;
  --gray-800:    #3E2723;
  --text-dark:   #21130D;
  --text-light:  #FFF9F2;

  --font-hindi:  'Noto Serif Devanagari', serif;
  --font-body:   'Noto Sans Devanagari', 'Inter', sans-serif;
  --font-en:     'Playfair Display', serif;
  --font-en-body:'Inter', sans-serif;

  --shadow-sm:   0 2px 8px rgba(230,81,0,0.08);
  --shadow-md:   0 8px 24px rgba(191,54,12,0.14);
  --shadow-lg:   0 16px 48px rgba(122,20,0,0.20);
  --radius:      12px;
  --radius-sm:   6px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.bg-navy { background: var(--navy); }
.bg-saffron { background: var(--saffron); }
.bg-off-white { background: var(--off-white); }
.bg-gray { background: var(--gray-100); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}
.btn-primary:hover {
  background: var(--saffron-dk);
  border-color: var(--saffron-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,35,126,0.3);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-hindi);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 16px auto 32px;
}
.divider-left {
  margin: 16px 0 32px;
}

/* ---------- UNIFIED STICKY SITE HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 99999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.site-header .site-utility-bar {
  width: 100%;
  background: #2D080A;
  color: #FFE0B2;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 213, 79, 0.25);
  box-sizing: border-box;
}

/* ---------- NAVBAR (BHAGWA & GOLD) ---------- */
.navbar {
  position: static;
  width: 100%;
  background: linear-gradient(90deg, #4A0E17 0%, #6D1B24 40%, #7A1400 70%, #4A0E17 100%) !important;
  border-bottom: 2px solid #FFD54F;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 0;
  box-sizing: border-box;
}
.navbar.scrolled {
  background: linear-gradient(90deg, #38070F 0%, #52121A 40%, #5E0F00 70%, #38070F 100%) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.nav-brand-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand-logo-wrap a.custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand-logo-wrap img.custom-logo {
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-brand-name {
  font-family: var(--font-hindi);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-brand-title {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: #FFD54F;
}
.nav-links a.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 6px 14px;
  margin-left: 4px;
  border: 1px solid rgba(255,213,79,0.3);
}
.nav-links a.nav-cta:hover {
  background: var(--saffron-dk);
  box-shadow: 0 4px 12px rgba(230,81,0,0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 213, 79, 0.4);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 100002;
}
.nav-toggle:hover, .nav-toggle.active {
  background: rgba(230, 81, 0, 0.35);
  border-color: #FFD54F;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #FFD54F;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
/* Transforming Hamburger into Cross (✕) */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: #FFFFFF;
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: #FFFFFF;
}

/* Default Desktop State: Mobile Elements Strictly Hidden */
.nav-mobile-right,
.mobile-nav-drawer,
.mobile-drawer-overlay,
.mobile-app-bottom-bar {
  display: none !important;
}

/* ---------- HERO (PROMINENT BHAGWA THEME) ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #7A1400 0%, #A82500 25%, #C83803 55%, #E65100 85%, #FF6F00 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 213, 79, 0.28) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(191, 54, 12, 0.35) 0%, transparent 70%),
              url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.35) 0%, transparent 70%);
}
.hero-bg-circle-1 { width: 700px; height: 700px; top: -150px; right: -150px; }
.hero-bg-circle-2 { width: 500px; height: 500px; bottom: -120px; left: 5%; background: radial-gradient(circle, rgba(255, 112, 67, 0.3) 0%, transparent 70%); }
.hero-bg-circle-3 { width: 300px; height: 300px; top: 25%; left: -80px; background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%); }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 32px 80px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 213, 79, 0.65);
  color: #FFF8E1;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 0.75rem; color: #FFD54F; }
.hero-name {
  font-family: var(--font-hindi);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-name-en {
  font-family: var(--font-en);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: #FFD54F;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: block;
}
.hero-designation {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  line-height: 1.65;
}
.hero-designation strong {
  color: #FFE082;
}
.hero-quote {
  font-family: var(--font-hindi);
  font-size: 1.16rem;
  color: #FFFDE7;
  border-left: 4px solid #FFD54F;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0 32px;
  font-style: italic;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0 36px;
}
.hero-stat-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFD54F;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: #FFE0B2;
  margin-top: 4px;
  font-weight: 600;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-social-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

/* HERO IMAGE */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: 380px;
  height: 480px;
  max-width: 100%;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed rgba(255, 213, 79, 0.7);
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
}
.hero-portrait, .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  position: relative;
  z-index: 1;
  display: block;
  border: 4px solid #FFD54F;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--navy-lt) 0%, var(--navy-dk) 100%);
  border-radius: 22px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 5rem;
  border: 4px solid #FFD54F;
}
.hero-img-placeholder p {
  font-size: 0.75rem;
  margin-top: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge-float {
  position: absolute;
  z-index: 10;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 8px 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid #FFD54F;
  white-space: nowrap;
}
.hero-badge-float i {
  color: var(--saffron);
}
.hero-badge-float.badge-top-left, .float-1 {
  top: 20px;
  left: -25px;
}
.hero-badge-float.badge-bottom-right, .float-2 {
  bottom: 25px;
  right: -25px;
}
.float-2 .hero-badge-float-icon { background: rgba(26,35,126,0.1); color: var(--navy); }
.float-3 { bottom: 160px; left: -50px; }
.float-3 .hero-badge-float-icon { background: rgba(201,168,50,0.15); color: var(--gold); }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gray-200);
}
.about-award-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-award-badge .award-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-award-badge .award-label {
  font-size: 0.72rem;
  margin-top: 4px;
  opacity: 0.9;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.tag {
  background: var(--gray-100);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.tag:hover { background: var(--navy); color: var(--white); }
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--saffron);
}
.about-info-item i {
  color: var(--saffron);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.info-label { font-size: 0.75rem; color: var(--gray-600); }
.info-value { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.about-para {
  color: var(--gray-800);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ---------- STATS BAR (BHAGWA & GOLD) ---------- */
.stats-bar {
  background: linear-gradient(135deg, #4A0E17 0%, #681A0E 50%, #871400 100%);
  border-top: 3px solid #D4AF37;
  border-bottom: 3px solid #D4AF37;
  padding: 42px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,213,79,0.25);
}
.stat-number {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 800;
  color: #FFD54F;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.stat-label {
  font-size: 0.92rem;
  color: #FFE0B2;
  line-height: 1.4;
  font-weight: 600;
}
.stat-icon {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 8px;
}

/* ---------- ACHIEVEMENTS / AWARDS ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.award-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,0,0.2);
}
.award-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(201,168,50,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--saffron);
  margin-bottom: 16px;
}
.award-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.award-title {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.award-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--navy));
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--saffron);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-content {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.timeline-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---------- BOOKS ---------- */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.book-cover {
  height: 240px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.book-cover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(255,107,0,0.15));
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-body { padding: 20px; }
.book-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.book-title {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.book-publisher {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.book-publisher i { color: var(--saffron); }
.book-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 10px;
  line-height: 1.6;
}

/* ---------- EVENTS / GALLERY ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-dk), var(--navy-lt));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
}
.event-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-body { padding: 18px; }
.event-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.event-meta i { color: var(--saffron); font-size: 0.7rem; }
.event-title {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
}
.event-loc {
  font-size: 0.82rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-loc i { color: var(--saffron); }

/* ---------- PRESS / MEDIA ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.press-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  align-items: flex-start;
}
.press-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.press-source-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
}
.press-meta { font-size: 0.75rem; color: var(--gray-600); margin-bottom: 6px; }
.press-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.press-link {
  font-size: 0.78rem;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.press-link:hover { color: var(--saffron-dk); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-title {
  font-family: var(--font-hindi);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-sub {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,107,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-lt);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.72rem; opacity: 0.6; margin-bottom: 2px; }
.contact-item-value { font-size: 0.9rem; line-height: 1.5; }
.contact-item-value a { color: var(--saffron-lt); }
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.contact-social .social-icon {
  background: rgba(255,255,255,0.08);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}
.form-control:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255,107,0,0.1); }
.form-control::placeholder { color: var(--gray-600); opacity: 0.6; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-dk), var(--saffron-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  position: relative;
}
.blog-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body { padding: 20px; }
.blog-date {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-date i { color: var(--saffron); }
.blog-title {
  font-family: var(--font-hindi);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ---------- QUOTE BANNER (BHAGWA & GOLD) ---------- */
.quote-banner {
  background: linear-gradient(135deg, #A82500 0%, #D84315 50%, #E65100 100%);
  border-top: 3px solid #FFD54F;
  border-bottom: 3px solid #FFD54F;
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.25);
}
.quote-banner::before {
  content: '\275D';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 12rem;
  color: rgba(255,255,255,0.08);
  font-family: serif;
  line-height: 1;
}
.quote-text {
  font-family: var(--font-hindi);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--white);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.quote-author {
  color: #FFD54F;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ---------- FOOTER (ROYAL HERITAGE MAROON & GOLD) ---------- */
.footer {
  background: linear-gradient(135deg, #2D080A 0%, #4A0E17 50%, #681A0E 100%) !important;
  border-top: 3px solid #D4AF37;
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
  position: relative;
  z-index: 10;
  clear: both;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-hindi);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-title {
  font-size: 0.78rem;
  color: var(--saffron-lt);
  margin-bottom: 16px;
}
.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.75;
}
.footer-h {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-h::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--saffron);
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--saffron-lt); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--saffron-lt); margin-top: 2px; flex-shrink: 0; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--saffron-lt); }

/* ---------- AOS ANIMATIONS ---------- */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  font-size: 1rem;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--saffron-dk); transform: translateY(-2px); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 999;
  font-size: 1.2rem;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- SECTION HIGHLIGHT ---------- */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,107,0,0.05), rgba(201,168,50,0.05));
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.highlight-box ul {
  list-style: none;
}
.highlight-box ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-800);
}
.highlight-box ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-size: 0.7rem;
  top: 8px;
}

/* ---------- PAGE HEADER BANNER (ROYAL BHAGWA) ---------- */
.page-header-banner {
  background: linear-gradient(145deg, #7A1400 0%, #A82500 25%, #C83803 55%, #E65100 85%, #FF6F00 100%);
  padding: 125px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD54F;
}
.page-header-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 213, 79, 0.22), transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(74, 14, 23, 0.35), transparent 55%);
  pointer-events: none;
}
.page-header-banner .section-label,
.page-header-banner .page-header-tag {
  display: inline-block;
  background: rgba(255, 213, 79, 0.22);
  border: 1px solid rgba(255, 213, 79, 0.55);
  color: #FFD54F !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.page-header-banner .section-title,
.page-header-banner .page-header-title {
  color: #FFFFFF !important;
  font-family: var(--font-hindi);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.page-header-banner p,
.page-header-banner .page-header-sub {
  color: #FFF3E0 !important;
  font-size: 1.05rem;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

/* Breadcrumb */
.dbk-breadcrumb {
  background: #FFF3E0;
  padding: 12px 0;
  font-size: 0.85rem;
  color: #6D4C41;
  border-bottom: 1px solid #FFE0B2;
}
.dbk-breadcrumb a {
  color: var(--saffron);
  font-weight: 600;
}
.dbk-breadcrumb a:hover {
  text-decoration: underline;
}

/* Vision / Mission Section */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.vision-card {
  background: var(--white);
  border: 1px solid #FFE0B2;
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230,81,0,0.06);
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(230,81,0,0.15);
  border-color: #FFB74D;
}
.vision-card:hover::before {
  opacity: 1;
}
.vision-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230,81,0,0.12), rgba(212,175,55,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.vision-title {
  font-family: var(--font-hindi);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.vision-desc {
  font-size: 0.9rem;
  color: #5D4037;
  line-height: 1.65;
}

/* ===================================================
   AMIT SHAH PORTAL INSPIRED COMPONENTS & MODULES
   =================================================== */

/* 1. TOP UTILITY BAR */
.site-utility-bar {
  background: #2D080A;
  color: #FFE0B2;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,213,79,0.2);
}
.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 213, 79, 0.35);
  border-radius: 20px;
  padding: 2px 4px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  font-family: var(--font-body);
}
.lang-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
}
.lang-btn.active {
  background: linear-gradient(135deg, #BF360C 0%, #E65100 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.lang-btn.active .lang-badge {
  background: #FFD54F;
  color: #7A1400;
}
.lang-badge {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}
.lang-sep {
  color: rgba(255, 213, 79, 0.4);
  font-size: 0.75rem;
  padding: 0 1px;
}

/* Hide Google Translate top banner & clean up translation UI */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}
body {
  top: 0 !important;
}
.goog-tooltip, .goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
#google_translate_element {
  display: none !important;
}
.font-resizer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.font-resizer button {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFE0B2;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.font-resizer button:hover {
  background: var(--saffron);
  color: #fff;
}
.utility-social a {
  color: #FFE0B2;
  font-size: 0.85rem;
  transition: var(--transition);
}
.utility-social a:hover {
  color: var(--gold-lt);
}

/* 2. STALWARTS SAY (अमित शाह प्रारूप - दिग्गज विचार) */
.stalwarts-section {
  background: linear-gradient(180deg, #FFF9F2 0%, #FFF3E0 100%);
  padding: 70px 0;
  border-top: 1px solid #FFE0B2;
  border-bottom: 1px solid #FFE0B2;
  position: relative;
}
.stalwarts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.stalwart-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid #FFE0B2;
  box-shadow: 0 6px 20px rgba(122,20,0,0.06);
  padding: 32px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.stalwart-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(230,81,0,0.15);
  border-color: var(--saffron);
}
.stalwart-quote-icon {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(230,81,0,0.12);
  font-size: 3rem;
  font-family: serif;
  line-height: 1;
}
.stalwart-quote-text {
  font-family: var(--font-hindi);
  font-size: 1.08rem;
  line-height: 1.75;
  color: #3E2723;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.stalwart-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #FFF3E0;
}
.stalwart-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--saffron), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stalwart-author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  font-family: var(--font-hindi);
}
.stalwart-author-info p {
  font-size: 0.82rem;
  color: #6D4C41;
  line-height: 1.3;
}

/* 3. INTERACTIVE TIMELINE (अमित शाह प्रारूप - कालक्रम) */
.timeline-section-wrap {
  position: relative;
  padding: 40px 0;
}
.amit-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.amit-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 3px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--navy));
}
.amit-timeline-item {
  position: relative;
  padding-left: 75px;
  margin-bottom: 40px;
}
.amit-timeline-badge {
  position: absolute;
  left: 12px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid #FFF;
  box-shadow: 0 0 0 3px var(--gold);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 2;
}
.amit-timeline-content {
  background: #FFF;
  border: 1px solid #FFE0B2;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 4px 15px rgba(122,20,0,0.06);
  transition: var(--transition);
}
.amit-timeline-content:hover {
  box-shadow: 0 8px 25px rgba(230,81,0,0.12);
  border-color: #FFB74D;
}
.timeline-year-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--saffron), #BF360C);
  color: #FFF;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.timeline-item-title {
  font-family: var(--font-hindi);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.timeline-item-snippet {
  font-size: 0.94rem;
  color: #4E342E;
  line-height: 1.7;
}
.timeline-more-content {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #FFE0B2;
  font-size: 0.92rem;
  color: #3E2723;
  line-height: 1.75;
}
.timeline-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #FFF3E0;
  color: var(--saffron);
  border: 1px solid #FFE0B2;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.timeline-toggle-btn:hover {
  background: var(--saffron);
  color: #FFF;
}

/* 4. PRESS & MEDIA PORTAL TABS */
.press-nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.press-tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #FFF;
  border: 1px solid #FFE0B2;
  color: #5D4037;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}
.press-tab-btn.active, .press-tab-btn:hover {
  background: var(--saffron);
  color: #FFF;
  border-color: var(--saffron);
  box-shadow: 0 4px 12px rgba(230,81,0,0.25);
}
.press-portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}
.press-portal-card {
  background: #FFF;
  border: 1px solid #FFE0B2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(122,20,0,0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.press-portal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(230,81,0,0.15);
  border-color: #FFB74D;
}
.press-card-header {
  padding: 18px 22px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #FFF3E0;
}
.press-source-pill {
  display: inline-block;
  padding: 4px 10px;
  background: #FFF3E0;
  color: var(--saffron);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}
.press-date-text {
  font-size: 0.8rem;
  color: #8D6E63;
}
.press-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.press-headline {
  font-family: var(--font-hindi);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
}
.press-excerpt {
  font-size: 0.9rem;
  color: #5D4037;
  line-height: 1.65;
  margin-bottom: 18px;
}
.press-read-link {
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.press-read-link:hover {
  color: var(--saffron-dk);
}

/* 5. MY VIEWS PORTAL (QUOTES & ARTICLES) */
.myviews-hero-quote {
  background: linear-gradient(135deg, #4A0E17 0%, #2D080A 100%);
  color: #FFF;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--gold);
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(45,8,10,0.25);
  position: relative;
  overflow: hidden;
}
.myviews-hero-quote::after {
  content: '”';
  position: absolute;
  right: 20px;
  bottom: -40px;
  font-size: 12rem;
  color: rgba(255,213,79,0.08);
  font-family: serif;
}
.myviews-hero-text {
  font-family: var(--font-hindi);
  font-size: 1.45rem;
  line-height: 1.8;
  color: #FFF9F2;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.myviews-hero-author {
  color: var(--gold-lt);
  font-size: 1.05rem;
  font-weight: 700;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.quote-card {
  background: #FFF;
  border: 2px solid #FFE0B2;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 15px rgba(122,20,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.quote-card:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(230,81,0,0.14);
}
.quote-body-text {
  font-family: var(--font-hindi);
  font-size: 1.1rem;
  color: #2D080A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #FFF3E0;
}
.quote-topic-tag {
  font-size: 0.78rem;
  background: #FFF3E0;
  color: var(--saffron);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.quote-share-btn {
  background: none;
  border: none;
  color: var(--saffron);
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}
.quote-share-btn:hover {
  color: var(--navy);
}

/* 6. GALLERY PORTAL */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}
.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 25px;
  background: #FFF;
  border: 1px solid #FFE0B2;
  color: #5D4037;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--saffron);
  color: #FFF;
  border-color: var(--saffron);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gallery-item-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFF;
  border: 1px solid #FFE0B2;
  box-shadow: 0 4px 15px rgba(122,20,0,0.06);
  transition: var(--transition);
}
.gallery-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(230,81,0,0.15);
}
.gallery-thumb-wrap {
  height: 200px;
  background: linear-gradient(135deg, #E65100, #4A0E17);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item-card:hover .gallery-thumb-wrap img {
  transform: scale(1.08);
}
.gallery-caption {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-hindi);
}

/* 7. SOCIAL CONNECT HUB (FOLLOW / ACT / LISTEN / SHARE) */
.connect-hub-section {
  background: #FFF9F2;
  padding: 70px 0;
  border-top: 1px solid #FFE0B2;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.connect-card {
  background: #FFF;
  border-radius: var(--radius);
  border: 1px solid #FFE0B2;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(122,20,0,0.05);
}
.connect-card:hover {
  transform: translateY(-5px);
  border-color: var(--saffron);
  box-shadow: 0 10px 25px rgba(230,81,0,0.15);
}
.connect-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), #FF8F00);
  color: #FFF;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.connect-title {
  font-family: var(--font-hindi);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.connect-desc {
  font-size: 0.88rem;
  color: #6D4C41;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   8. MODERN CONTACT PAGE & OFFICES
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Left: Contact Info Card */
.contact-info-card {
  background: linear-gradient(145deg, #7A1400 0%, #BF360C 50%, #E65100 100%);
  border-radius: var(--radius);
  padding: 36px 30px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(122, 20, 0, 0.25);
  border: 2px solid #FFD54F;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info-heading {
  font-family: var(--font-hindi);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFD54F;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(255, 213, 79, 0.3);
  padding-bottom: 12px;
}
.office-box {
  background: rgba(0, 0, 0, 0.18);
  border-left: 3px solid #FFD54F;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.office-box-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFD54F;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-box-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #FFF3E0;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 213, 79, 0.2);
  border: 1px solid rgba(255, 213, 79, 0.45);
  color: #FFD54F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFE082;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-val {
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.5;
}
.contact-val a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-val a:hover {
  color: #FFD54F;
}
.contact-social-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 213, 79, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon-btn:hover {
  background: #FFD54F;
  color: #7A1400;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Right: Contact Form Card */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #FFE0B2;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.08);
  position: relative;
}
.contact-form-heading {
  font-family: var(--font-hindi);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 0.92rem;
  color: #6D4C41;
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D7CCC8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #FFFDF9;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #E65100;
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.18);
  background: #FFFFFF;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-contact-submit {
  width: 100%;
  background: linear-gradient(135deg, #BF360C 0%, #E65100 60%, #FF6F00 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-hindi);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}
.btn-contact-submit:hover {
  background: linear-gradient(135deg, #7A1400 0%, #BF360C 60%, #E65100 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}
#c_feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}


