/* =============================================
   Naval Kishor Yadav – Political Website CSS
   Patriotic · Premium · People-Focused
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF9933;
  --saffron-pale: #FFF3E8;
  --india-green: #138808;
  --india-navy: #000080;
  --india-white: #FFFFFF;
  --dark-bg: #0D1117;
  --dark-card: #161B22;
  --text-dark: #1a1a2e;
  --text-muted: #666;
  --text-light: #f0f0f0;
  --gold: #D4AF37;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Yatra One', serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }
.section-pad { padding: 90px 0; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.ashoka-spin svg {
  width: 80px; height: 80px;
  animation: spinSlow 3s linear infinite;
  filter: drop-shadow(0 0 12px #FF6B00aa);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.preloader-text {
  color: #FF9933;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-top: 16px;
  letter-spacing: 4px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ============ TOP BAR ============ */
.top-bar {
  background: linear-gradient(90deg, var(--india-navy) 0%, #0A0A6E 50%, var(--india-navy) 100%);
  color: #ccc;
  font-size: 0.75rem;
  padding: 7px 0;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}
.top-bar-left { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.top-bar-item { color: #ddd; }
.top-bar-item i { color: var(--saffron-light); }
.top-bar-divider { color: #444; }
.top-bar-social { display: flex; gap: 10px; justify-content: flex-end; }
.top-bar-social a {
  color: #aaa;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
}
.top-bar-social a:hover { background: var(--saffron); color: #fff; transform: translateY(-2px); }

/* ============ NAVBAR ============ */
.main-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--saffron);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  transition: var(--transition);
}
.main-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}
.brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-lotus .lotus-svg { width: 44px; height: 44px; filter: drop-shadow(0 2px 6px rgba(255,107,0,0.3)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.brand-title {
  font-size: 0.68rem;
  color: var(--saffron);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  position: relative;
  text-transform: uppercase;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--saffron);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover, .nav-link.active { color: var(--saffron) !important; }
.nav-btn {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255,107,0,0.35);
  transition: var(--transition);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.45); }

/* Toggler */
.navbar-toggler {
  border: none; background: transparent; padding: 5px;
  box-shadow: none !important;
}
.toggler-icon { display: flex; flex-direction: column; gap: 5px; }
.toggler-icon span { display: block; width: 24px; height: 2px; background: var(--saffron); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1117 0%, #161B22 40%, #0a0a3a 100%);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-flag-bg {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(255,107,0,0.06) 30%,
    rgba(255,153,51,0.04) 60%,
    transparent 100%);
  pointer-events: none;
}
.hero-flag-bg::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px; bottom: 20px; left: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,107,0,0.03) 8px,
    rgba(255,107,0,0.03) 16px
  );
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle var(--dur) ease-in-out infinite alternate;
}
@keyframes floatParticle {
  from { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  to { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}
.hero-content-col { padding: 100px 0 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--saffron-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.hero-hindi { display: block; }
.highlight-orange { color: var(--saffron-light); }
.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-left: 4px solid var(--saffron);
  padding-left: 16px;
}
.hero-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
.hero-stats {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--saffron-light);
  line-height: 1;
}
.stat-plus { font-size: 1.4rem; color: var(--saffron-light); }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; display: block; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-custom {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 25px rgba(255,107,0,0.4);
  transition: var(--transition);
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,0,0.5); color: #fff; }
.btn-outline-custom {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-custom:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(255,107,0,0.08); }

/* Hero Image */
.hero-image-col { padding: 60px 0; display: flex; justify-content: center; }
.hero-image-frame { position: relative; width: 380px; height: 420px; }
.hero-image-bg-circle {
  position: absolute;
  width: 360px; height: 360px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.1)} }
.hero-image-glow {
  position: absolute; inset: 10px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255,107,0,0.2);
}
.hero-portrait {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
}
.portrait-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(19,136,8,0.2));
  border: 3px solid var(--saffron);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
}
.portrait-initials {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--saffron-light);
  text-shadow: 0 0 20px rgba(255,107,0,0.5);
}
.portrait-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 280px; height: 280px; border-color: rgba(255,107,0,0.25); animation-delay: 0s; }
.ring-2 { width: 310px; height: 310px; border-color: rgba(255,107,0,0.15); animation-delay: 0.5s; }
.ring-3 { width: 340px; height: 340px; border-color: rgba(255,107,0,0.08); animation-delay: 1s; }
@keyframes ringPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-badge-card {
  position: absolute;
  background: rgba(22,27,34,0.9);
  border: 1px solid rgba(255,107,0,0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  animation: floatCard 3s ease-in-out infinite alternate;
}
.card-1 { top: 30px; right: -10px; animation-delay: 0s; }
.card-2 { bottom: 60px; left: -10px; animation-delay: 1s; }
@keyframes floatCard { from{transform:translateY(0)} to{transform:translateY(-8px)} }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  margin: 0 auto 8px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--saffron);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }

/* ============ NEWS TICKER ============ */
.news-ticker-wrap {
  background: linear-gradient(90deg, var(--india-navy) 0%, #1a1a8e 100%);
  display: flex; align-items: center;
  overflow: hidden; height: 42px;
}
.ticker-label {
  background: var(--saffron);
  color: #fff;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  height: 100%;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.ticker-content { flex: 1; overflow: hidden; position: relative; }
.ticker-inner {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  gap: 40px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.85rem;
}
.ticker-sep { color: var(--saffron-light); font-size: 0.6rem; }
@keyframes tickerScroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ============ SECTION COMMON ============ */
.section-label {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 14px;
}
.section-label.light { background: rgba(255,107,0,0.15); color: var(--saffron-light); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-bg-motif {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.section-bg-motif.right { right: -100px; top: 50%; transform: translateY(-50%); }
.section-bg-motif.left { left: -100px; top: 50%; transform: translateY(-50%); }

/* ============ ABOUT ============ */
.about-section { position: relative; overflow: hidden; }
.about-image-wrap {
  position: relative; height: 450px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-bg {
  position: absolute; inset: 20px;
  background: linear-gradient(135deg, var(--saffron-pale) 0%, rgba(19,136,8,0.05) 100%);
  border-radius: 30px;
  border: 1px solid rgba(255,107,0,0.15);
}
.about-portrait {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(255,107,0,0.3);
  position: relative; z-index: 1;
}
.ap-inner { text-align: center; }
.ap-initials {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.about-exp-badge {
  position: absolute;
  bottom: 40px; right: 20px;
  background: var(--india-navy);
  color: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--saffron-light); display: block; line-height: 1; }
.exp-num sup { font-size: 1rem; }
.exp-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); line-height: 1.4; display: block; margin-top: 4px; }
.about-party-badge {
  position: absolute;
  top: 30px; left: 30px;
  background: var(--saffron);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.about-bio p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.about-bio strong { color: var(--text-dark); }
.highlight-card {
  background: #fff;
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.highlight-card:hover { border-color: var(--saffron); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.highlight-card i { font-size: 1.5rem; color: var(--saffron); display: block; margin-bottom: 6px; }
.highlight-card span { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--text-dark); }
.about-quote {
  background: linear-gradient(135deg, var(--saffron-pale), rgba(19,136,8,0.04));
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  position: relative;
}
.quote-icon { font-size: 2rem; color: rgba(255,107,0,0.2); position: absolute; top: 10px; left: 16px; }
.about-quote p { color: var(--text-dark); font-style: italic; font-size: 0.95rem; padding-left: 20px; margin: 0; }
.about-quote span { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--saffron); display: block; margin-top: 8px; padding-left: 20px; }

/* ============ TIMELINE ============ */
.bg-dark-saffron {
  background: linear-gradient(135deg, #0D1117 0%, #0a0a3a 100%);
  position: relative;
  overflow: hidden;
}
.bg-dark-saffron::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.08) 0%, transparent 60%);
}
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron), rgba(255,107,0,0.1));
}
.timeline-item {
  display: flex; margin-bottom: 50px; position: relative;
}
.timeline-item.left { flex-direction: row-reverse; }
.timeline-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 24px;
  width: calc(50% - 50px);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.timeline-content:hover { border-color: var(--saffron); background: rgba(255,107,0,0.06); }
.timeline-item.right .timeline-content { margin-left: auto; margin-right: 50px; }
.timeline-item.left .timeline-content { margin-right: auto; margin-left: 50px; }
.tl-year {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.timeline-content h4 { font-family: var(--font-heading); color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin: 0; }
.timeline-dot {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--saffron);
  border-radius: 50%;
  border: 3px solid var(--dark-bg);
  box-shadow: 0 0 12px rgba(255,107,0,0.5);
  top: 24px;
  z-index: 1;
}

/* ============ ACHIEVEMENTS ============ */
.achievements-section { position: relative; overflow: hidden; }
.achieve-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.achieve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--icon-color, var(--saffron)), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.achieve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.achieve-card:hover::before { transform: scaleX(1); }
.achieve-icon-wrap {
  width: 60px; height: 60px;
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--icon-color);
}
.achieve-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 10px; }
.achieve-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.achieve-stat {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
}
.achieve-stat span { color: var(--saffron); font-weight: 700; }

/* ============ COUNTER STRIP ============ */
.counter-strip {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF5500 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}
.counter-item { padding: 20px; position: relative; }
.counter-item + .counter-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.25);
}
.c-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.c-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============ INITIATIVES ============ */
.initiatives-section { position: relative; }
.initiatives-swiper { padding-bottom: 50px !important; }
.init-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}
.init-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.init-icon {
  width: 56px; height: 56px;
  background: var(--saffron-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--saffron);
  margin-bottom: 18px;
}
.init-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.init-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.init-progress { position: relative; }
.init-progress-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  border-radius: 3px;
  margin-bottom: 6px;
  position: relative;
}
.init-progress-bar::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--saffron);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(255,107,0,0.4);
}
.init-progress { background: rgba(0,0,0,0.05); border-radius: 3px; overflow: visible; }
.init-progress span { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-heading); font-weight: 600; }
.initiatives-pagination .swiper-pagination-bullet { background: var(--saffron) !important; opacity: 0.4; }
.initiatives-pagination .swiper-pagination-bullet-active { opacity: 1 !important; }

/* ============ GALLERY ============ */
.bg-light-warm { background: linear-gradient(135deg, #FAFAF8, #FFF8F0); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.gp-1 { background: linear-gradient(135deg, #FF6B00, #FF9933); color: #fff; }
.gp-2 { background: linear-gradient(135deg, #138808, #1a9c09); color: #fff; }
.gp-3 { background: linear-gradient(135deg, #000080, #1a1aad); color: #fff; }
.gp-4 { background: linear-gradient(135deg, #FF5500, #FF8800); color: #fff; }
.gp-5 { background: linear-gradient(135deg, #8B0000, #CC0000); color: #fff; }
.gp-6 { background: linear-gradient(135deg, #2c5f2e, #138808); color: #fff; }
.gallery-placeholder i { font-size: 2.5rem; opacity: 0.7; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: #fff; }
.testimonials-swiper { padding-bottom: 60px !important; padding: 0 20px 60px; }
.testi-card {
  background: linear-gradient(135deg, #fff, var(--saffron-pale));
  border: 1px solid rgba(255,107,0,0.12);
  border-radius: var(--radius);
  padding: 32px;
  height: auto;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: #F4C52B; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.testi-pagination .swiper-pagination-bullet { background: var(--saffron) !important; }
.swiper-button-next.testi-next, .swiper-button-prev.testi-prev {
  width: 44px !important; height: 44px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--saffron) !important;
}
.swiper-button-next.testi-next::after, .swiper-button-prev.testi-prev::after { font-size: 14px !important; font-weight: 900; }

/* ============ PRESS ============ */
.news-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
  transition: var(--transition);
  border-top: 3px solid var(--saffron);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 6px; }
.news-source { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; color: var(--saffron); text-transform: uppercase; letter-spacing: 1px; }
.news-date { font-size: 0.75rem; color: var(--text-muted); }
.news-card h5 { font-family: var(--font-heading); font-weight: 700; font-size: 0.98rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.5; }
.news-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.7; margin-bottom: 16px; }
.read-more-link { font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; color: var(--saffron); letter-spacing: 0.5px; }
.read-more-link:hover { color: var(--saffron-light); }

/* ============ CONTACT ============ */
.contact-section { position: relative; overflow: hidden; }
.contact-info-wrap { padding-right: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--saffron-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item strong { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); display: block; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.contact-social { display: flex; gap: 10px; }
.cs-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cs-link:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.cs-link.facebook { background: #1877F2; }
.cs-link.twitter { background: #1DA1F2; }
.cs-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cs-link.youtube { background: #FF0000; }
.cs-link.whatsapp { background: #25D366; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.form-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 24px; }
.form-group-custom { margin-bottom: 4px; }
.form-group-custom label { font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; color: var(--text-dark); margin-bottom: 6px; display: block; letter-spacing: 0.3px; }
.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: var(--transition);
  appearance: none;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--saffron);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.btn-submit-form {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
  display: inline-flex; align-items: center;
}
.btn-submit-form:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,0,0.5); }
.form-success {
  text-align: center;
  padding: 30px;
  color: var(--india-green);
}
.form-success i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.form-success p { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; margin: 0; }

/* ============ FOOTER ============ */
.main-footer { background: var(--dark-bg); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fl-name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: #fff; }
.fl-sub { display: block; font-size: 0.72rem; color: var(--saffron-light); letter-spacing: 1px; text-transform: uppercase; }
.footer-about { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.footer-heading { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-contact i { color: var(--saffron); width: 18px; }
.tricolor-bar {
  display: flex; flex-direction: column;
  width: 120px; height: 22px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.tc-saffron, .tc-white, .tc-green { flex: 1; display: flex; align-items: center; justify-content: center; }
.tc-saffron { background: #FF9933; }
.tc-white { background: #fff; }
.tc-green { background: #138808; }
.tc-chakra { color: #000080; font-size: 0.55rem; }
.jai-bharat { font-family: var(--font-display); font-size: 0.85rem; color: rgba(255,255,255,0.4); letter-spacing: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.heart { color: var(--saffron); }

/* ============ FAB ============ */
.fab-group {
  position: fixed; bottom: 30px; right: 25px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 1000;
}
.fab-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--saffron); }
.fab-top { background: var(--india-navy); opacity: 0; pointer-events: none; }
.fab-top.visible { opacity: 1; pointer-events: auto; }
.fab-btn:hover { transform: scale(1.15) translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column !important; padding-left: 50px; }
  .timeline-item .timeline-content { width: 100%; margin: 0 !important; }
  .timeline-dot { left: 20px !important; transform: translateX(-50%); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 1; }
  .hero-image-col { display: none; }
  .hero-content-col { padding: 80px 0 50px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .top-bar { display: none; }
  .contact-form-wrap { padding: 24px; }
  .timeline-content { padding: 18px; }
  .counter-strip .row { flex-wrap: wrap; }
  .hero-badge-card { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
  .brand-name { font-size: 0.95rem; }
  .brand-title { font-size: 0.6rem; }
}

/* ============ AOS overrides ============ */
[data-aos] { transition-duration: 700ms !important; }
