/* ==========================================================================
   RAJDEEP GOALA - OFFICIAL WEBSITE STYLESHEET
   MLA, Udharbond Assembly Constituency
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary Colors */
  --color-primary: #d9531e;
  --color-primary-dark: #b83f12;
  --color-primary-light: #fbeee8;
  --color-primary-gradient: linear-gradient(135deg, #e45a24 0%, #c44314 100%);

  /* Secondary & Dark Tones */
  --color-dark: #121826;
  --color-dark-subtle: #242c3d;
  --color-text-main: #1f2937;
  --color-text-muted: #5c6479;
  --color-text-light: #8f98a8;

  /* Backgrounds */
  --bg-body: #f8f6f0;
  --bg-card: #ffffff;
  --bg-warm-light: #f4eee3;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-strong: rgba(255, 255, 255, 0.95);

  /* Organization Theme Accents */
  --color-ata: #1b7a42;
  --color-ata-bg: #eaf5ee;
  --color-ata-border: #bde2cc;

  --color-atc: #c45b14;
  --color-atc-bg: #faeee5;
  --color-atc-border: #f2c7a7;

  --color-ccsu: #1e428a;
  --color-ccsu-bg: #eaf0fb;
  --color-ccsu-border: #bdd2f8;

  /* Borders & Shadows */
  --border-subtle: rgba(220, 214, 203, 0.6);
  --border-light: #e5dfd5;
  --shadow-sm: 0 2px 8px rgba(25, 20, 15, 0.04);
  --shadow-md: 0 8px 24px rgba(25, 20, 15, 0.08);
  --shadow-lg: 0 16px 36px rgba(25, 20, 15, 0.12);
  --shadow-glow: 0 10px 30px rgba(217, 83, 30, 0.25);

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Layout */
  --container-max: 1380px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   3. Top Announcement Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: #181d28;
  color: #e5e9f2;
  font-size: 0.8125rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.top-bar-tag {
  background: rgba(217, 83, 30, 0.25);
  color: #ff9d75;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-text {
  color: #cbd5e1;
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-link {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-link:hover {
  color: #ff9d75;
}

.top-divider {
  color: rgba(255, 255, 255, 0.2);
}

.social-mini-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-mini-links a {
  color: #94a3b8;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.social-mini-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. Main Header & Navigation
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 214, 203, 0.8);
  transition: var(--transition-base);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

/* Brand Link */
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.bjp-logo-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bjp-lotus-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a83a15;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748b;
  margin-top: 3px;
  text-transform: uppercase;
}

/* Nav Links */
.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: #2e384d;
  position: relative;
  padding: 8px 2px;
}

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

.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

/* Header Action */
.header-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.925rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--color-primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 83, 30, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #eb642f 0%, #ad3a11 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 83, 30, 0.35);
  color: #ffffff;
}

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

.btn-glass {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--color-text-main);
}

.btn-outline:hover {
  background: #f1ede6;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  font-size: 0.825rem;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  padding: 0;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Mobile Drawer Navigation
   -------------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

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

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

.drawer-logo {
  width: 32px;
  height: 32px;
}

.drawer-brand h3 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
}

.drawer-brand p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.drawer-close {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  padding: 6px;
}

.drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-nav-list li {
  margin-bottom: 10px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-weight: 600;
  color: #2b3342;
  border-radius: var(--radius-sm);
}

.drawer-link i {
  color: var(--color-primary);
  width: 20px;
}

.drawer-link:hover,
.drawer-link.active {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 44px 0 54px;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(254, 237, 222, 0.7) 0%,
    rgba(248, 246, 240, 1) 70%
  );
  overflow: hidden;
}

/* Ambient glow blobs */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    rgba(217, 83, 30, 0.08) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: rgba(217, 83, 30, 0.12);
  top: -100px;
  right: 5%;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(34, 197, 94, 0.06);
  bottom: 0;
  left: -50px;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 36px;
  align-items: center;
}

/* ---------------- Hero Left Column ---------------- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 12px;
  background: #ffffff;
  border: 1px solid #f2cfba;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(217, 83, 30, 0.08);
  margin-bottom: 20px;
}

.badge-lotus-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.badge-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #c44314;
  text-transform: uppercase;
}

.badge-divider {
  color: #d1d5db;
  font-weight: 300;
}

.badge-highlight {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #4b5563;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.45rem;
  font-weight: 700;
  line-height: 1.12;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.accent-highlight {
  color: #c44314;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.btn-hero-cta {
  padding: 13px 22px;
  font-size: 0.95rem;
}

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

.hero-quick-facts {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 214, 203, 0.7);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  width: 100%;
}

.quick-fact-item {
  display: flex;
  flex-direction: column;
}

.qf-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: #a83a15;
  line-height: 1.1;
}

.qf-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.qf-divider {
  width: 1px;
  height: 32px;
  background-color: #e2dcd2;
}

/* ---------------- Hero Right Column: Main Showcase & Auto-Scroller ---------------- */
.hero-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
  align-items: stretch;
  height: 520px;
}

/* Main Hero Portrait Card */
.hero-portrait-card {
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #fdf4eb);
  padding: 12px;
  box-shadow:
    0 16px 36px rgba(180, 80, 30, 0.12),
    0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(240, 200, 180, 0.6);
  overflow: hidden;
}

.portrait-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #fff7f0 0%, #edd8c4 100%);
}

.portrait-glow-halo {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(243, 145, 60, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.hero-portrait-card:hover .hero-main-img {
  transform: scale(1.02);
}

.portrait-floating-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-dot-live {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.bf-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.1;
}

.bf-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary);
}

.portrait-accent-seal {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6a4025;
  background: rgba(255, 245, 235, 0.92);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(220, 170, 140, 0.5);
}

/* Auto-Scrolling Gallery Reel */
.hero-gallery-scroller {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(220, 214, 203, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 12px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.scroller-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 10px;
}

.scroller-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroller-title i {
  color: var(--color-primary);
}

.scroller-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c44314;
  background: #fdf0e9;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-blink-dot {
  width: 6px;
  height: 6px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Infinite Marquee Viewport & Animation */
.marquee-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  border-radius: var(--radius-sm);
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: marqueeScroll 28s linear infinite;
}

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

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

@keyframes marqueeScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 6px));
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 130px;
  min-height: 130px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  border-color: var(--color-primary);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
  object-position: top;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 10px 8px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffaa80;
}

.card-caption {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f1f5f9;
}

.scroller-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}

.btn-scroll-toggle {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: #f1ede6;
}

.btn-scroll-toggle:hover {
  color: var(--color-primary);
  background: #faeade;
}

.scroller-hint {
  font-size: 0.68rem;
  color: #8b96a5;
}

/* --------------------------------------------------------------------------
   7. Key Credentials & Designation Capsule Bar
   -------------------------------------------------------------------------- */
.credentials-bar-wrapper {
  margin-top: 40px;
  margin-bottom: 24px;
}

.credentials-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(220, 214, 203, 0.9);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  box-shadow: 0 6px 24px rgba(25, 20, 15, 0.05);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.credential-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #fdf1e8;
  color: #c44314;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(217, 83, 30, 0.12);
}

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

.cred-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a482b;
  line-height: 1.1;
}

.cred-desc {
  font-size: 0.925rem;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
}

.cred-sub {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

.credential-separator {
  width: 1px;
  height: 38px;
  background-color: #e6e0d5;
  margin: 0 16px;
}

/* Section Divider Bar */
.section-divider-bar {
  background: #fdfaf6;
  padding: 22px 0;
  border-top: 1px solid #f1ede6;
  border-bottom: 1px solid #f1ede6;
}

.section-divider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ebd9c8, transparent);
}

.divider-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #8a482b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.divider-text i {
  color: #c44314;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   8. About Section Styles
   -------------------------------------------------------------------------- */
.section-about {
  background: #ffffff;
  padding: 80px 0 90px;
  position: relative;
}

/* --- Top Block: Biography & Big Featured Photo --- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-bio-col {
  display: flex;
  flex-direction: column;
}

.about-kicker-wrap {
  margin-bottom: 12px;
}

.about-kicker-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #c44314;
  text-transform: uppercase;
  position: relative;
  padding: 3px 0;
  border-top: 1.5px solid #c44314;
  border-bottom: 1.5px solid #c44314;
}

.about-main-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.about-lead-kicker {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #2b3342;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Inline Lotus Divider */
.lotus-inline-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.lid-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e2dcd2, #c44314, #e2dcd2);
  opacity: 0.7;
}

.lid-icon-wrap {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lid-lotus-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-p {
  font-size: 0.96rem;
  color: #374151;
  line-height: 1.7;
}

.about-mission-statement {
  font-size: 0.98rem;
  color: #1a1a1a;
  line-height: 1.65;
  padding-top: 6px;
}

.about-mission-statement strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* --- Right Media Column --- */
.about-media-col {
  display: flex;
  flex-direction: column;
}

.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 214, 203, 0.8);
  overflow: hidden;
}

.about-photo-wrapper {
  width: 100%;
  height: 440px;
  overflow: hidden;
  background: #121826;
  position: relative;
}

.about-slider-wrapper {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.about-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  pointer-events: none;
}

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

.about-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.about-slide:hover .about-featured-img {
  transform: scale(1.03);
}

/* Slider Navigation Buttons */
.about-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 24, 38, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 5;
  cursor: pointer;
  transition: all var(--transition-fast);
  opacity: 0;
}

.about-slider-wrapper:hover .about-slider-btn {
  opacity: 1;
}

.about-slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 12px rgba(217, 83, 30, 0.4);
}

.about-slider-btn.prev {
  left: 12px;
}

.about-slider-btn.next {
  right: 12px;
}

/* Slider Dots */
.about-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 5;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.about-dot:hover {
  background: #ffffff;
}

.about-dot.active {
  background: var(--color-primary);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(217, 83, 30, 0.6);
}

/* Inspiring Leadership Quote Card below featured photo */
.about-quote-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f4 100%);
  padding: 22px 24px;
  border-top: 1px solid rgba(220, 214, 203, 0.8);
  position: relative;
}

.about-quote-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #faeee5;
  color: #c44314;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(217, 83, 30, 0.12);
  margin-top: 2px;
}

.about-quote-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.about-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: #1f2937;
  line-height: 1.55;
  margin: 0;
}

.about-quote-author-wrap {
  display: flex;
  flex-direction: column;
}

.about-quote-author {
  font-size: 0.88rem;
  font-weight: 800;
  color: #c44314;
  line-height: 1.2;
}

.about-quote-desig {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

/* --- Middle Block: JOURNEY AT A GLANCE (Horizontal Stepper) --- */
.journey-glance-container {
  background: #faf7f2;
  border: 1px solid #ebd9c8;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.journey-glance-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}

.jg-header-col {
  border-right: 2px solid #ebd9c8;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
}

.jg-kicker {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #c44314;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.jg-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.jg-timeline-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.jg-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.jg-node {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}

.jg-icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ebd9c8;
  color: #c44314;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 2;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.jg-step:hover .jg-icon-circle {
  transform: scale(1.08);
  border-color: #c44314;
  background: #fdf1e8;
}

.jg-icon-active {
  background: #c44314;
  border-color: #c44314;
  color: #ffffff;
}

.jg-line {
  position: absolute;
  top: 50%;
  left: 44px;
  right: -16px;
  height: 2px;
  background: #ebd9c8;
  z-index: 1;
  transform: translateY(-50%);
}

.jg-content {
  display: flex;
  flex-direction: column;
  padding-right: 8px;
}

.jg-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.jg-step-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a482b;
  background: #faeee5;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.jg-badge-active {
  background: #c44314;
  color: #ffffff;
}

.jg-step-desc {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.5;
}

/* --- Citizen Connect Auto-Scrolling Stream --- */
.citizen-connect-section {
  width: 100%;
  position: relative;
  padding: 46px 0 36px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.citizen-connect-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.citizen-connect-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 12px 0 6px;
}

.citizen-connect-desc {
  font-size: 0.96rem;
  color: #556070;
  line-height: 1.6;
}

.citizen-marquee-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  border-radius: var(--radius-md);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.citizen-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: citizenMarqueeScroll 40s linear infinite;
}

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

@keyframes citizenMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

.citizen-marquee-card {
  width: 320px;
  height: 220px;
  min-width: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 2px solid #ffffff;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  background: #181d28;
}

.citizen-marquee-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  border-color: var(--color-primary);
}

.citizen-marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}

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

/* --- Bottom Block: A PROUD LEGACY (Father Shri Dinesh Prasad Goala Card) --- */
.legacy-card-wrapper {
  margin-top: 10px;
}

.legacy-card {
  background: #ffffff;
  border: 1px solid #ebd9c8;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 160px 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.legacy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-primary-gradient);
}

.legacy-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-photo-frame {
  width: 150px;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #faeee5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.legacy-photo-frame:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 26px rgba(217, 83, 30, 0.18);
  border-color: var(--color-primary);
}

.legacy-father-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
  object-position: top;
}

.legacy-photo-frame:hover .legacy-father-img {
  transform: scale(1.05);
}

.legacy-bio-col {
  display: flex;
  flex-direction: column;
}

.legacy-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #c44314;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.legacy-heading {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.legacy-p {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 8px;
}

.legacy-p:last-child {
  margin-bottom: 0;
}

.legacy-p strong {
  color: #1a1a1a;
  font-weight: 700;
}

.legacy-bullets-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 10px;
  border-left: 1px solid #f1ede6;
  border-right: 1px solid #f1ede6;
}

.legacy-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #2b3342;
  line-height: 1.4;
}

.lb-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #faeee5;
  color: #c44314;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.legacy-quote-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-quote-inner {
  position: relative;
  padding: 10px 10px 10px 24px;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #e58a5c;
  line-height: 0.8;
  position: absolute;
  top: -12px;
  left: -4px;
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.12rem;
  color: #1f2937;
  line-height: 1.5;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c44314;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   9. Development Priorities Section (6 Color-Themed Cards)
   -------------------------------------------------------------------------- */
.section-development {
  background: #ffffff;
  padding: 70px 0 85px;
  border-top: 1px solid #f1ede6;
  border-bottom: 1px solid #f1ede6;
}

.dev-section-header {
  margin-bottom: 28px;
}

.dev-kicker-tag {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: #c44314;
  text-transform: uppercase;
}

.dev-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}

.dev-card {
  border-radius: 18px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  position: relative;
}

.dev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.dev-card-body {
  display: flex;
  flex-direction: column;
}

.dev-card-title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.dev-card-desc {
  font-size: 0.835rem;
  color: #4b5563;
  line-height: 1.55;
}

.dev-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.dev-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  transition: transform var(--transition-base);
}

.dev-card:hover .dev-icon-badge {
  transform: scale(1.1);
}

/* Card 1: Infrastructure Development (Sage / Forest Green) */
.card-infra {
  background: #edf7f0;
  border-color: #cdebd4;
}

.card-infra .dev-card-title {
  color: #1b7a42;
}

.card-infra .dev-icon-badge {
  background: #d8f1df;
  color: #1b7a42;
}

/* Card 2: Education & Youth (Sky / Royal Blue) */
.card-edu {
  background: #edf4fc;
  border-color: #cde1f8;
}

.card-edu .dev-card-title {
  color: #1d68bd;
}

.card-edu .dev-icon-badge {
  background: #d9e9fa;
  color: #1d68bd;
}

/* Card 3: Healthcare Access (Warm Coral / Rose Red) */
.card-health {
  background: #fef1f2;
  border-color: #fdd4d7;
}

.card-health .dev-card-title {
  color: #dc2626;
}

.card-health .dev-icon-badge {
  background: #fecdd3;
  color: #dc2626;
}

/* Card 4: Agriculture & Rural Economy (Leaf Green) */
.card-agri {
  background: #f0f7ee;
  border-color: #d4ebd0;
}

.card-agri .dev-card-title {
  color: #2d7a32;
}

.card-agri .dev-icon-badge {
  background: #ddf2d7;
  color: #2d7a32;
}

/* Card 5: Employment & Entrepreneurship (Warm Amber / Terracotta) */
.card-employ {
  background: #fef5ed;
  border-color: #fce2cc;
}

.card-employ .dev-card-title {
  color: #c45b14;
}

.card-employ .dev-icon-badge {
  background: #fbe6d5;
  color: #c45b14;
}

/* Card 6: Community Development (Lavender / Purple) */
.card-community {
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.card-community .dev-card-title {
  color: #6366f1;
}

.card-community .dev-icon-badge {
  background: #ede9fe;
  color: #6366f1;
}

/* --------------------------------------------------------------------------
   9b. Tea Association & Workers Welfare Section
   -------------------------------------------------------------------------- */
.section-tea-welfare {
  background: #f5f9f6;
  padding: 85px 0 90px;
  position: relative;
  border-bottom: 1px solid #e1eee4;
}

.badge-tea {
  background: #eaf5ee;
  color: #1b7a42;
  border-color: #c7e6d2;
}

/* Dual Key Roles Highlight Grid */
.tea-dual-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.tea-role-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  position: relative;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
  border: 2px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  overflow: hidden;
}

.tea-role-card.role-ccsu {
  border-color: #1b7a42;
  background: linear-gradient(145deg, #ffffff 60%, #f1faf4 100%);
}

.tea-role-card.role-atc {
  border-color: #c45b14;
  background: linear-gradient(145deg, #ffffff 60%, #fef7f2 100%);
}

.tea-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.tea-role-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tea-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tea-role-badge.current {
  background: #1b7a42;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(27, 122, 66, 0.3);
}

.tea-role-badge.former {
  background: #c45b14;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(196, 91, 20, 0.3);
}

.tea-role-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.role-ccsu .tea-role-icon {
  background: #edf7f0;
  color: #1b7a42;
}

.role-atc .tea-role-icon {
  background: #faeee5;
  color: #c45b14;
}

.tea-role-designation {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.role-ccsu .tea-role-designation {
  color: #1b7a42;
}

.role-atc .tea-role-designation {
  color: #c45b14;
}

.tea-role-org {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 10px;
}

.tea-role-summary {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 16px;
}

.tea-role-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tea-role-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.role-ccsu .tea-role-chip {
  background: #eaf5ee;
  color: #1b7a42;
}

.role-atc .tea-role-chip {
  background: #fdf0e7;
  color: #c45b14;
}

/* Top Feature Banner Grid */
.tea-hero-banner-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 45px;
}

.tea-leadership-card {
  background: #ffffff;
  border: 1px solid #c7e6d2;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(27, 122, 66, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.tea-leadership-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(27, 122, 66, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.tea-kicker-tag {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #1b7a42;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.tea-lead-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 16px;
}

.tea-lead-p {
  font-size: 0.94rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 14px;
}

.tea-affiliation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #edf7f0;
}

.tea-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf7f0;
  color: #1b7a42;
  border: 1px solid #c7e6d2;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Impact Counters Grid */
.tea-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tea-stat-card {
  background: #ffffff;
  border: 1px solid #c7e6d2;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.tea-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(27, 122, 66, 0.12);
  border-color: #1b7a42;
}

.tea-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #edf7f0;
  color: #1b7a42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.tea-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #1b7a42;
  line-height: 1;
  margin-bottom: 6px;
}

.tea-stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.tea-stat-sub {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
}

/* 6 Welfare Pillars Grid */
.tea-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.tea-pillar-card {
  background: #ffffff;
  border: 1px solid #d4ebd0;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.tea-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(27, 122, 66, 0.1);
  border-color: #1b7a42;
}

.tea-pillar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tea-pillar-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: #edf7f0;
  color: #1b7a42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.tea-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

.tea-pillar-desc {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

/* Tea Estates Rollout Strip */
.tea-estates-wrapper {
  background: #ffffff;
  border: 1px solid #c7e6d2;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.tea-estates-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.tea-estates-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b7a42;
  margin: 0;
}

.tea-estates-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tea-estate-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f7ee;
  border: 1px solid #d4ebd0;
  color: #2d7a32;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
}

.tea-estate-chip i {
  font-size: 0.74rem;
  color: #1b7a42;
}

/* Quote Callout */
.tea-quote-banner {
  background: linear-gradient(135deg, #18482b 0%, #0d2818 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 12px 30px rgba(13, 40, 24, 0.2);
  border: 1px solid #2d7a46;
}

.tea-quote-icon {
  font-size: 2.5rem;
  color: #86efac;
  opacity: 0.8;
  flex-shrink: 0;
}

.tea-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: #f0fdf4;
  margin-bottom: 8px;
}

.tea-quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --------------------------------------------------------------------------
   10. Shared Section Headers & Badges (Matching Amiya-Kanti-Das Style)
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #faeee5;
  color: #c44314;
  border: 1px solid #f2cfba;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 8px;
}

.divider-ornament {
  color: #c44314;
  font-size: 1.1rem;
  margin: 6px 0 10px;
}

.section-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Recent Updates Section (8-Card Grid)
   -------------------------------------------------------------------------- */
.section-updates {
  background: #fdfaf6;
  padding: 80px 0;
  border-bottom: 1px solid #f1ede6;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.update-card {
  background: #ffffff;
  border: 1px solid #eedecf;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(196, 67, 20, 0.12);
  border-color: #c44314;
}

.update-card-image {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: #1e293b;
}

.update-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.update-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(196, 67, 20, 0.92);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-cat-assembly {
  background: rgba(30, 64, 175, 0.92);
}
.badge-cat-welfare {
  background: rgba(22, 101, 52, 0.92);
}
.badge-cat-infra {
  background: rgba(196, 67, 20, 0.92);
}
.badge-cat-health {
  background: rgba(220, 38, 38, 0.92);
}
.badge-cat-youth {
  background: rgba(124, 58, 237, 0.92);
}
.badge-cat-gov {
  background: rgba(15, 118, 110, 0.92);
}
.badge-cat-culture {
  background: rgba(217, 119, 6, 0.92);
}
.badge-cat-outreach {
  background: rgba(196, 67, 20, 0.92);
}

.update-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #8a482b;
  font-weight: 700;
  margin-bottom: 10px;
  gap: 8px;
}

.update-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.update-excerpt {
  font-size: 0.86rem;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-card-footer {
  border-top: 1px solid #f1ede6;
  padding-top: 10px;
}

.btn-read-update {
  font-size: 0.82rem;
  font-weight: 700;
  color: #c44314;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.update-card:hover .btn-read-update {
  gap: 10px;
}

.updates-cta-wrapper {
  text-align: center;
  margin-top: 10px;
}

.btn-show-more-updates {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   11b. Dedicated Updates Archive Page Styles (Filter Toolbar & Pagination)
   -------------------------------------------------------------------------- */
.updates-hero-banner {
  background: linear-gradient(135deg, #2a0c06 0%, #170704 100%);
  color: #ffffff;
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #6b2612;
}

.updates-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(232, 150, 35, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.updates-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #f7b483;
  margin: 10px 0 12px;
}

.updates-hero-content p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

/* Filter Card & Toolbar */
.filter-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #ebd9c8;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

.filter-form-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr auto;
  gap: 18px;
  align-items: end;
}

@media (max-width: 992px) {
  .filter-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .filter-form-grid {
    grid-template-columns: 1fr;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ebd9c8;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fdfaf6;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.filter-input:focus {
  outline: none;
  border-color: #c44314;
  box-shadow: 0 0 0 3px rgba(196, 67, 20, 0.15);
  background: #ffffff;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.btn-filter-submit {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-filter-reset {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* Active Filters & Results Bar */
.active-filters-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: #64748b;
}

.filter-pill {
  background: #faeee5;
  color: #c44314;
  border: 1px solid #f2cfba;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}

.clear-all-link {
  color: #c44314;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

.results-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 18px 4px;
  font-size: 0.9rem;
  color: #64748b;
  border-bottom: 1px solid #ebd9c8;
  margin-bottom: 28px;
}

/* Pagination Controls */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.page-link {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid #ebd9c8;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-link:hover:not(.disabled):not(.active) {
  background: #faeee5;
  border-color: #c44314;
  color: #c44314;
}

.page-link.active {
  background: #c44314;
  border-color: #c44314;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(196, 67, 20, 0.3);
}

.page-link.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f1ede6;
}

.page-link.ellipsis {
  border: none;
  background: transparent;
}

/* --------------------------------------------------------------------------
   12. Media & Gallery Section
   -------------------------------------------------------------------------- */
.section-gallery {
  background: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid #f1ede6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  background: #111827;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 10, 4, 0.9) 0%,
    rgba(30, 10, 4, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #ffffff;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
}

.gallery-overlay p {
  font-size: 0.78rem;
  color: #fed7aa;
}

/* --------------------------------------------------------------------------
   13. Contact & Citizen App Section (2-Column Grid)
   -------------------------------------------------------------------------- */
.section-contact {
  background: #faf7f2;
  padding: 80px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}

/* Left: Contact Info Card */
.contact-info-card {
  background: linear-gradient(135deg, #2a0c06 0%, #170704 100%);
  color: #fffdf9;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #6b2612;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  color: #f7b483;
  margin-bottom: 8px;
}

.contact-card-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(247, 180, 131, 0.35);
  color: #f7b483;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.contact-detail-item h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #f7b483;
  margin-bottom: 3px;
  font-weight: 700;
}

.contact-detail-item p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  margin: 0;
}

.contact-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.contact-link:hover {
  color: #f7b483;
}

.contact-handles-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.social-handle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(247, 180, 131, 0.3);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.social-handle-badge:hover {
  background: #c44314;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-info-footer {
  font-size: 0.82rem;
  color: #f7b483;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-email-office {
  color: #f7b483;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(247, 180, 131, 0.3);
  transition: all var(--transition-fast);
}

.btn-email-office:hover {
  background: #c44314;
  color: #ffffff;
  border-color: #c44314;
}

/* Right: Android App Portal CTA Box */
.portal-cta-box {
  background: #ffffff;
  border: 1.5px solid #ebd9c8;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.portal-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(196, 67, 20, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.portal-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #faeee5;
  color: #c44314;
  border: 1px solid #f2cfba;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  width: fit-content;
}

.portal-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.portal-cta-box p {
  font-size: 0.94rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 22px;
}

.portal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.portal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.portal-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #faeee5;
  border: 1px solid #ebd9c8;
  color: #c44314;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.portal-feature-text h5 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.portal-feature-text p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.45;
}

.portal-cta-action {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-google-play-store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #121826 0%, #1f2937 100%);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid #374151;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.btn-google-play-store:hover {
  background: linear-gradient(135deg, #c44314 0%, #d9531e 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(196, 67, 20, 0.35);
  border-color: #c44314;
}

.btn-google-play-store .play-icon {
  font-size: 2.2rem;
  color: #38bdf8;
  transition: color var(--transition-fast);
}

.btn-google-play-store:hover .play-icon {
  color: #ffffff;
}

.play-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 0 14px;
  flex: 1;
}

.play-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #94a3b8;
  text-transform: uppercase;
}

.btn-google-play-store:hover .play-sub {
  color: #fde68a;
}

.play-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.play-arrow {
  font-size: 1.15rem;
  color: #94a3b8;
}

.btn-google-play-store:hover .play-arrow {
  color: #ffffff;
}

.app-trust-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fdfaf6;
  border: 1px solid #ebd9c8;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #64748b;
}

.app-trust-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   14. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0f141e;
  color: #cbd5e1;
  position: relative;
}

.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, #c44314, #f97316, #eab308);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 44px;
  padding-top: 60px;
  padding-bottom: 50px;
}

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

.footer-bjp-logo {
  width: 44px;
  height: 44px;
}

.footer-brand-header h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #ffffff;
  margin: 0;
}

.footer-badge {
  display: block;
  font-size: 0.72rem;
  color: #f7b483;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

.footer-mission {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 18px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.footer-contact-mini span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-mini i {
  color: #c44314;
  width: 16px;
}

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

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: #c44314;
  color: #ffffff;
  border-color: #c44314;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: #c44314;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a i {
  font-size: 0.72rem;
  color: #c44314;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-app-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 18px;
}

.btn-footer-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c44314;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(196, 67, 20, 0.35);
  transition: all var(--transition-fast);
}

.btn-footer-app:hover {
  background: #d9531e;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #090c12;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 83, 30, 0.25);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.footer-developer-credit:hover {
  background: rgba(217, 83, 30, 0.1);
  border-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(217, 83, 30, 0.2);
}

.voteecal-logo-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.credit-label {
  font-size: 0.78rem;
  color: #cbd5e1;
  font-weight: 500;
}

.voteecal-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.voteecal-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-primary);
}

.voteecal-brand-link:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   15. Update Details Modal
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.show,
.modal-backdrop.active {
  display: flex;
}

.modal-dialog-update {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.4);
  border: 1px solid #ebd9c8;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPopIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header-update {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #faf7f2;
  border-bottom: 1px solid #ebd9c8;
}

.modal-title-update {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 0;
}

.modal-close-update {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: all var(--transition-fast);
}

.modal-close-update:hover {
  background: #fee2e2;
  color: #dc2626;
}

.modal-body-update {
  padding: 24px;
  overflow-y: auto;
}

.modal-update-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.modal-update-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #faeee5;
  color: #c44314;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.modal-update-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 10px;
}

.modal-update-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1ede6;
  margin-bottom: 16px;
}

.modal-update-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.modal-update-text {
  font-size: 0.94rem;
  color: #374151;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. Interactive Grievance Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.94);
  transition: transform var(--transition-smooth);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #faf8f5;
  border-bottom: 1px solid var(--border-light);
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fbeee8;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.modal-sub {
  font-size: 0.75rem;
  color: #64748b;
}

.modal-close-btn {
  font-size: 1.25rem;
  color: #94a3b8;
  padding: 6px;
  border-radius: 50%;
}

.modal-close-btn:hover {
  color: var(--color-dark);
  background: #f1ede6;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.modal-instructions {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: 1.45;
}

.grievance-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
}

.form-group .req {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #faf8f5;
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 83, 30, 0.15);
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.form-success-message {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 14px;
}

.form-success-message h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-success-message strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.success-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 14px auto 22px;
  max-width: 440px;
}

/* --------------------------------------------------------------------------
   12. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.lightbox-container {
  position: relative;
  max-width: 860px;
  width: 100%;
  background: #181d28;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
  background: var(--color-primary);
}

.lightbox-image-wrapper {
  width: 100%;
  max-height: 580px;
  background: #0d111a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 580px;
  object-fit: contain;
}

.lightbox-caption {
  padding: 16px 20px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  background: #181d28;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   13. Floating Back to Top Button
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(217, 83, 30, 0.35);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   14. Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (<= 1200px) */
@media screen and (max-width: 1200px) {
  .hero-title {
    font-size: 2.85rem;
  }

  .hero-showcase-wrapper {
    grid-template-columns: 1fr 220px;
    height: 480px;
  }

  .credentials-bar {
    padding: 10px 16px;
  }

  .credential-separator {
    margin: 0 10px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .legacy-card {
    grid-template-columns: 140px 1.2fr 1fr;
  }

  .legacy-quote-col {
    grid-column: 1 / -1;
    border-top: 1px solid #f1ede6;
    padding-top: 18px;
  }

  .dev-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablets (<= 992px) */
@media screen and (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-showcase-wrapper {
    grid-template-columns: 1.2fr 1fr;
    height: 440px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .credentials-bar {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    gap: 16px;
    padding: 20px;
  }

  .credential-item {
    min-width: 45%;
  }

  .credential-separator {
    display: none;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-photo-wrapper {
    height: 380px;
  }

  .about-quote-card {
    padding: 18px 20px;
  }

  .journey-glance-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jg-header-col {
    border-right: none;
    border-bottom: 2px solid #ebd9c8;
    padding-right: 0;
    padding-bottom: 14px;
  }

  .jg-timeline-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .jg-line {
    display: none;
  }

  .legacy-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legacy-bullets-col {
    border-left: none;
    border-right: none;
    padding: 16px 0;
    border-top: 1px solid #f1ede6;
    border-bottom: 1px solid #f1ede6;
  }

  .legacy-photo-col {
    justify-content: flex-start;
  }

  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tea-dual-roles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tea-hero-banner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

/* Mobile Devices (<= 640px) */
@media screen and (max-width: 640px) {
  .top-bar-right {
    display: none;
  }

  #header-grievance-btn {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  .header-container {
    height: 72px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
  }

  .header-action .btn-header span {
    display: none;
  }

  .header-action .btn-header {
    padding: 8px 12px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-cta {
    width: 100%;
  }

  .hero-quick-facts {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .qf-divider {
    display: none;
  }

  /* On mobile, stack portrait & horizontal activity stream */
  .hero-showcase-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
  }

  .hero-portrait-card {
    height: 380px;
  }

  .hero-gallery-scroller {
    height: auto;
  }

  .marquee-track {
    flex-direction: row;
    animation: marqueeScrollHorizontal 22s linear infinite;
    width: max-content;
  }

  .gallery-card {
    width: 170px;
    min-width: 170px;
    height: 140px;
  }

  @keyframes marqueeScrollHorizontal {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 6px));
    }
  }

  .credential-item {
    min-width: 100%;
  }

  .about-main-title {
    font-size: 2.2rem;
  }

  .about-photo-wrapper,
  .about-slider-wrapper {
    height: 300px;
  }

  .about-slider-btn {
    opacity: 1;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .about-quote-card {
    padding: 16px 18px;
    gap: 12px;
  }

  .about-quote-text {
    font-size: 0.94rem;
  }

  .about-quote-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.9rem;
  }

  .journey-glance-container {
    padding: 20px 16px;
  }

  .jg-timeline-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .citizen-connect-section {
    padding: 38px 0 30px;
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .citizen-connect-title {
    font-size: 1.75rem;
  }

  .citizen-marquee-card {
    width: 250px;
    height: 175px;
    min-width: 250px;
  }

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

  .legacy-photo-frame {
    width: 100%;
    height: 20rem;
  }

  .dev-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dev-card {
    padding: 18px 14px 16px;
  }

  .dev-card-title {
    font-size: 0.95rem;
  }

  .dev-card-desc {
    font-size: 0.78rem;
  }

  .dev-icon-badge {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .updates-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    height: 190px;
  }

  .contact-info-card,
  .portal-cta-box {
    padding: 24px 18px;
  }

  .contact-info-card h3,
  .portal-cta-box h3 {
    font-size: 1.6rem;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .tea-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tea-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tea-leadership-card {
    padding: 24px 18px;
  }

  .tea-quote-banner {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }
}

@media screen and (max-width: 480px) {
  .dev-cards-grid {
    grid-template-columns: 1fr;
  }
}
