/*
Theme Name: Badoli BJP Theme
Theme URI: https://mohanlalbadoli.com
Author: SA Info Technologies
Description: A modern, clean, fully responsive WordPress theme for MLA Mohan Lal Badoli - BJP. Inspired by premium political websites with smooth animations, bilingual support, and mobile-first design.
Version: 2.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: badoli
Tags: politics, bjp, responsive, bilingual, hindi, english, one-page, modern
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
============================================================ */
:root {
  /* BJP Colors */
  --saffron:        #FF6B00;
  --saffron-light:  #FF8C38;
  --saffron-dark:   #D45500;
  --saffron-glow:   rgba(255,107,0,0.18);
  --green:          #138808;
  --green-light:    #1aaa0a;
  --navy:           #0A1628;
  --navy-mid:       #112240;
  --navy-soft:      #1a2f52;
  --gold:           #C8941A;
  --gold-light:     #E8B84B;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #F8F6F2;
  --light-gray:     #EDF0F5;
  --mid-gray:       #8A95A5;
  --dark-gray:      #2C3340;
  --text-body:      #3A3F4B;
  --text-muted:     #6B7280;

  /* Typography */
  --font-heading:   'Tiro Devanagari Hindi', 'Playfair Display', Georgia, serif;
  --font-display:   'Cinzel', 'Trajan Pro', serif;
  --font-body:      'DM Sans', 'Nunito Sans', sans-serif;
  --font-hindi:     'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;

  /* Spacing */
  --section-py:     100px;
  --container-max:  1280px;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:      0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:      0 24px 64px rgba(10,22,40,0.18);
  --shadow-orange:  0 8px 32px rgba(255,107,0,0.28);

  /* Transitions */
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:       0.2s;
  --dur-normal:     0.4s;
  --dur-slow:       0.7s;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

/* Hindi text class */
.hi { font-family: var(--font-hindi); }

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-py) 0;
}

.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform var(--dur-normal) var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,0,0.38); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* Section Heading Component */
.section-heading {
  margin-bottom: 60px;
}

.section-heading .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}

.section-heading .label::before,
.section-heading .label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--saffron);
  display: inline-block;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-heading h2 span { color: var(--saffron); }

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-heading.center p { margin: 0 auto; }

/* Decorative Divider */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 20px 0;
}

.divider.center { margin: 20px auto; }

/* AOS-style animation base */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="zoom-in"]    { transform: scale(0.92); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER / NAVIGATION
============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--dur-normal) var(--ease-out);
}

#site-header .header-top {
  background: var(--saffron);
  padding: 8px 0;
  font-size: 13px;
  color: var(--white);
}

#site-header .header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#site-header .header-top a { color: var(--white); opacity: 0.9; }
#site-header .header-top a:hover { opacity: 1; }

.header-contact-info { display: flex; gap: 24px; align-items: center; }
.header-contact-info span { display: flex; align-items: center; gap: 6px; }

.header-social { display: flex; gap: 14px; }
.header-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: background var(--dur-fast);
}
.header-social a:hover { background: rgba(255,255,255,0.4); }
.header-social svg { width: 14px; height: 14px; fill: white; }

#site-header .header-main {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
  flex-wrap: nowrap;
}

/* Group for right-side elements */
.header-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo img { height: 48px; width: auto; }

.logo-text-wrap .logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.logo-text-wrap .logo-title {
  font-size: 0.75rem;
  color: var(--saffron);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scrolled state */
#site-header.scrolled .header-top { display: none; }
#site-header.scrolled .header-main { box-shadow: var(--shadow-md); }

/* Nav */
#primary-nav { display: flex; align-items: center; gap: 4px; }

#primary-nav .nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 4px;
  transition: all var(--dur-fast);
  position: relative;
  letter-spacing: 0.02em;
}

#primary-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}

#primary-nav .nav-link:hover { color: var(--saffron); }
#primary-nav .nav-link:hover::after,
#primary-nav .nav-link.active::after { transform: scaleX(1); }
#primary-nav .nav-link.active { color: var(--saffron); }

/* Dropdown */
.nav-has-dropdown { position: relative; }

.nav-has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--saffron);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-normal) var(--ease-out);
  z-index: 100;
}

.nav-has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-body);
  transition: all var(--dur-fast);
}
.dropdown a:hover { background: var(--off-white); color: var(--saffron); padding-left: 28px; }
.dropdown a img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

/* Lang Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  background: var(--light-gray);
  border-radius: 20px;
  padding: 4px;
}
.lang-btn {
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--mid-gray);
  transition: all var(--dur-fast);
}
.lang-btn.active {
  background: var(--saffron);
  color: var(--white);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-out);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-heading);
  padding: 12px 24px;
  border-radius: 4px;
  transition: color var(--dur-fast);
}
#mobile-nav a:hover { color: var(--saffron); }
#mobile-nav .close-nav {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,0,0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(19,136,8,0.06) 0%, transparent 40%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-lotus {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 600px; height: 600px;
  opacity: 0.04;
}

#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--saffron-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-title .highlight {
  color: var(--saffron);
  position: relative;
}

.hero-subtitle-hi {
  font-family: var(--font-hindi);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item {}

.hero-stat-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--saffron);
  line-height: 1;
  font-weight: 700;
}

.hero-stat-item .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px 0 0;
  border: 2px solid var(--saffron);
  border-radius: 12px;
  opacity: 0.3;
  z-index: 0;
}

.hero-img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.hero-flag-badge {
  position: absolute;
  bottom: 32px; left: -24px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-flag-badge .bjp-logo { width: 40px; height: 40px; object-fit: contain; }

.hero-flag-badge .badge-text .name {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}

.hero-flag-badge .badge-text .party {
  font-size: 11px;
  color: var(--saffron);
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  animation: float 2.5s ease-in-out infinite;
}

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

.scroll-indicator .line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.8), transparent);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
#about {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

#about .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-exp-badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.about-exp-badge .years {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-exp-badge .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.about-content {}

.about-bio {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-bio-hi {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 32px;
  border-left: 3px solid var(--saffron);
  padding-left: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.highlight-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--saffron);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-card .hc-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.highlight-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.highlight-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   STATS SECTION
============================================================ */
#stats {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,0.1), transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 48px 32px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  transition: background var(--dur-normal);
}

.stat-card:hover { background: rgba(255,107,0,0.1); }

.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--saffron);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-card .stat-label-en {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 4px;
}

.stat-card .stat-label-hi {
  font-family: var(--font-hindi);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  display: block;
}

/* ============================================================
   DEVELOPMENT AREAS
============================================================ */
#development {
  padding: var(--section-py) 0;
  background: var(--white);
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dev-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
}

.dev-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}

.dev-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.dev-card-img-wrap { overflow: hidden; }

.dev-card-body {
  padding: 24px;
}

.dev-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.dev-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.dev-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ============================================================
   LEADERSHIP SECTION (My Guideline Lights)
============================================================ */
#leadership {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,107,0,0.08), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(19,136,8,0.05), transparent 50%);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.leader-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all var(--dur-normal) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.leader-card:hover {
  background: rgba(255,107,0,0.12);
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,107,0,0.2);
}

.leader-photo-wrap {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 16px;
}

.leader-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(255,107,0,0.4);
  transition: border-color var(--dur-normal);
}

.leader-card:hover .leader-photo { border-color: var(--saffron); }

.leader-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(255,107,0,0.3);
  animation: rotate-ring 10s linear infinite;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

.leader-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.leader-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ============================================================
   GALLERY / PUBLIC INTERACTION
============================================================ */
#gallery {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7), transparent);
  opacity: 0;
  transition: opacity var(--dur-normal);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 33.333%;
  padding: 0 14px;
}

.testimonial-inner {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px;
  border-left: 4px solid var(--saffron);
  position: relative;
  height: 100%;
}

.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--saffron);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text-hi {
  font-family: var(--font-hindi);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 16px;
}

.testimonial-text-en {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-info .role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: all var(--dur-normal);
}
.slider-dot.active {
  background: var(--saffron);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
#contact {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.1), transparent 70%);
}

#contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-block .ci-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-block .ci-value {
  color: var(--white);
  font-size: 1rem;
}

.contact-block .ci-value a {
  color: var(--white);
  transition: color var(--dur-fast);
}

.contact-block .ci-value a:hover { color: var(--saffron); }

/* Contact Form */
.contact-form {}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--dur-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: rgba(255,107,0,0.06);
}

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

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

/* Map embed */
.map-section {
  padding: 0;
  background: var(--dark-gray);
}
.map-section iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #060e1a;
  padding: 60px 0 32px;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img { height: 40px; }

.footer-brand .footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
}

.footer-social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer-social a:hover svg { fill: white; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--saffron);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '→';
  color: var(--saffron);
  opacity: 0;
  transition: all var(--dur-fast);
  margin-left: -10px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a:hover::before { opacity: 1; margin-left: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--saffron); }

/* India flag stripe */
.india-stripe {
  height: 4px;
  background: linear-gradient(90deg, #FF9933 0%, #FF9933 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #138808 66.66%);
  display: block;
}

/* ============================================================
   BACK TO TOP
============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--dur-normal) var(--ease-out);
  z-index: 500;
}

#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--saffron-dark); transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; fill: white; }

/* ============================================================
   LIGHTBOX
============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

#lightbox .lb-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
  .development-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-py: 70px; }

  #hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image-wrap { display: none; }
  .hero-tagline { margin: 0 auto 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }

  #about .container { grid-template-columns: 1fr; gap: 48px; }
  .about-image-stack { max-width: 500px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { flex: 0 0 100%; }

  #contact .container { grid-template-columns: 1fr; gap: 48px; }

  .gallery-masonry { columns: 2; }
}

/* Medium screens - simplify navbar */
@media (max-width: 1024px) {
  /* Reduce nav link padding */
  #primary-nav .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  /* Make WhatsApp button smaller */
  .header-main .btn-primary {
    padding: 8px 14px;
    font-size: 12px;
    margin-left: 8px;
  }
  
  .header-main .btn-primary svg {
    width: 14px;
    height: 14px;
  }
  
  /* Reduce logo size slightly */
  .site-logo img { height: 42px; }
}

@media (max-width: 768px) {
  /* Hide entire top bar on mobile */
  #site-header .header-top { display: none; }
  
  /* Hide desktop navigation elements */
  #primary-nav, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  
  /* Make header more compact */
  .header-main .container { 
    height: 60px;
    gap: 8px;
  }
  
  .header-right-group {
    gap: 8px;
  }
  
  /* Make logo smaller on mobile */
  .site-logo img { height: 36px; }
  .logo-text-wrap .logo-name { font-size: 0.95rem; }
  .logo-text-wrap .logo-title { font-size: 0.65rem; }
  
  /* Hide WhatsApp button text on mobile, show only icon */
  .whatsapp-btn {
    padding: 10px !important;
    margin-left: 0 !important;
    font-size: 13px !important;
  }
  
  .whatsapp-btn .whatsapp-text {
    display: none;
  }
  
  .whatsapp-btn svg {
    margin: 0;
  }

  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .development-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  
  /* Further reduce header height and logo size */
  .header-main .container { height: 54px; }
  .site-logo img { height: 32px; }
  .logo-text-wrap .logo-name { font-size: 0.85rem; }
  .logo-text-wrap .logo-title { font-size: 0.6rem; }
  
  .header-right-group {
    gap: 6px;
  }
  
  /* Make WhatsApp button even more compact */
  .whatsapp-btn {
    padding: 8px !important;
    margin-left: 0 !important;
  }
  
  .whatsapp-btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* Adjust hamburger size */
  .hamburger {
    width: 32px;
    height: 32px;
  }
  
  .hamburger span {
    width: 20px;
  }
  
  /* Page Templates Responsive */
  .bio-hero, .contact-hero { padding: 60px 0 40px !important; }
  .bio-content .container > div,
  .contact-content .container > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .bio-photo { position: static !important; }
  
  .hero-stats { flex-direction: column; gap: 16px; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

/* Page Templates - Tablet/Mobile */
@media (max-width: 900px) {
  .bio-content .container > div,
  .contact-content .container > div {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bio-photo {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}
