/* ============================================================
   BHARAT SHAKTI SANGH — MAIN STYLESHEET
   Vichar Se Vyavastha Tak
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700&family=Tiro+Devanagari+Hindi:ital@0;1&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,400&family=Bebas+Neue&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --gold:       #D4A017;
  --gold-light: #F5C842;
  --gold-deep:  #B8860B;
  --saffron:    #FF6B00;
  --saffron-lt: #FF9A3C;
  --dark:       #080400;
  --dark2:      #120800;
  --dark3:      #1A0C00;
  --cream:      #FDF6E3;
  --cream2:     #F5E6C0;
  --red:        #8B1A1A;
  --red-deep:   #5A0A0A;
  --green:      #1A4A1A;
  --muted:      #9A7A50;
  --border:     rgba(212,160,23,0.25);
  --glow-gold:  0 0 30px rgba(212,160,23,0.4);
  --glow-saf:   0 0 30px rgba(255,107,0,0.4);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Global animated background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 15% 5%,  rgba(139,26,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 95%, rgba(255,107,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(212,160,23,0.05) 0%, transparent 60%);
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: rgba(212,160,23,0.3); color: var(--gold-light); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--red-deep), #3D0000 50%, var(--red-deep));
  border-bottom: 1px solid rgba(212,160,23,0.35);
  padding: 7px 5%;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cinzel', serif; font-size: 10.5px; letter-spacing: 1.5px;
  position: relative; z-index: 200;
}
.topbar-marquee { color: var(--gold-light); flex: 1; overflow: hidden; white-space: nowrap; }
.topbar-marquee span { display: inline-block; animation: marquee 24s linear infinite; }
@keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
.topbar-links { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.topbar-links a {
  color: var(--cream2); font-size: 10px; letter-spacing: 1px;
  transition: color .2s;
}
.topbar-links a:hover { color: var(--gold-light); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 150;
  background: rgba(8,4,0,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  transition: height .3s;
}
header.scrolled { height: 64px; }

.logo-link { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 54px; width: auto; filter: drop-shadow(0 0 12px rgba(212,160,23,0.5)); transition: filter .3s; }
.logo-link:hover .logo-img { filter: drop-shadow(0 0 22px rgba(255,107,0,0.7)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 15px;
  color: var(--gold-light); letter-spacing: 2.5px;
}
.logo-tagline {
  font-family: 'Tiro Devanagari Hindi', serif; font-size: 11px;
  color: var(--saffron); letter-spacing: 1px;
}

.nav-main { display: flex; gap: 4px; align-items: center; }
.nav-main a {
  font-family: 'Cinzel', serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: 1px; color: var(--cream2); padding: 8px 13px; border-radius: 3px;
  transition: all .25s; position: relative; white-space: nowrap;
}
.nav-main a::after {
  content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .25s;
}
.nav-main a:hover { color: var(--gold-light); }
.nav-main a:hover::after { transform: scaleX(1); }
.nav-join {
  background: linear-gradient(135deg, var(--saffron), var(--gold)) !important;
  color: var(--dark) !important; font-weight: 700 !important; border-radius: 4px !important;
}
.nav-join::after { display: none !important; }
.nav-join:hover { box-shadow: var(--glow-saf); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all .3s; display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 95vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 5% 60px; overflow: hidden;
}

/* Particle-style SVG background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(139,26,26,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(255,107,0,0.15) 0%, transparent 60%);
}

/* Animated rings */
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: ringExpand 8s linear infinite;
}
.hero-ring:nth-child(1) { width: 300px; height: 300px; border-color: rgba(212,160,23,0.12); animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 500px; height: 500px; border-color: rgba(255,107,0,0.08); animation-delay: 2s; }
.hero-ring:nth-child(3) { width: 700px; height: 700px; border-color: rgba(212,160,23,0.06); animation-delay: 4s; }
.hero-ring:nth-child(4) { width: 900px; height: 900px; border-color: rgba(255,107,0,0.04); animation-delay: 6s; }
@keyframes ringExpand {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.8); }
  20%  { opacity: 1; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.15); }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(212,160,23,0.4); border-radius: 100px;
  padding: 6px 18px; margin-bottom: 28px;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--gold);
  background: rgba(212,160,23,0.07);
  animation: fadeInDown .8s ease both;
}

.hero-logo-big {
  width: 200px; height: auto; margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(212,160,23,0.6));
  animation: fadeInDown .8s ease .1s both, floatLogo 4s ease-in-out 1s infinite alternate;
}
@keyframes floatLogo {
  from { transform: translateY(0); filter: drop-shadow(0 0 40px rgba(212,160,23,0.6)); }
  to   { transform: translateY(-10px); filter: drop-shadow(0 0 60px rgba(255,107,0,0.7)); }
}

.hero-title {
  font-family: 'Cinzel Decorative', serif; font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 40%, var(--saffron) 70%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
  animation: fadeInUp .8s ease .2s both;
}
.hero-title span { display: block; color: var(--gold-light); -webkit-text-fill-color: var(--gold-light); }

.hero-devanagari {
  font-family: 'Tiro Devanagari Hindi', serif; font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--muted); letter-spacing: 3px; margin-bottom: 24px;
  animation: fadeInUp .8s ease .3s both;
}

.tagline-wrap {
  position: relative; display: inline-block; margin-bottom: 40px;
  animation: fadeInUp .8s ease .4s both;
}
.tagline-line {
  position: absolute; top: 50%; height: 1px; width: 60px; background: var(--gold);
  transform: translateY(-50%);
}
.tagline-line.left  { left: -70px; }
.tagline-line.right { right: -70px; }
.tagline-text {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 6px; color: var(--gold-light);
  text-shadow: 0 0 30px rgba(212,160,23,0.5);
}
.tagline-hindi {
  font-family: 'Tiro Devanagari Hindi', serif; font-size: 1.1rem;
  color: var(--saffron); letter-spacing: 2px; display: block; margin-top: 4px;
}

.hero-desc {
  max-width: 640px; margin: 0 auto 44px;
  font-size: 1.2rem; color: var(--cream2); line-height: 1.8; font-weight: 300;
  animation: fadeInUp .8s ease .5s both;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp .8s ease .6s both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--dark); font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 13px; letter-spacing: 2px; padding: 16px 36px; border-radius: 4px;
  transition: all .3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-saf), 0 8px 30px rgba(255,107,0,0.3); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold-light);
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: 13px; letter-spacing: 2px; padding: 15px 34px; border-radius: 4px;
  border: 1px solid var(--gold); transition: all .3s; cursor: pointer;
}
.btn-secondary:hover { background: rgba(212,160,23,0.1); transform: translateY(-3px); box-shadow: var(--glow-gold); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1.5px; padding: 15px 28px; border-radius: 4px;
  transition: all .3s;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; color: var(--muted);
  animation: bounce 2s ease infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { position: relative; z-index: 1; }
.section-pad { padding: 90px 5%; }
.section-pad-sm { padding: 60px 5%; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 4px; color: var(--saffron); text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 16px; border: 1px solid rgba(255,107,0,0.3); border-radius: 100px;
}
.section-title {
  font-family: 'Cinzel Decorative', serif; font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 60%, var(--saffron) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.15; margin-bottom: 16px;
}
.section-desc { color: var(--muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.divider {
  width: 80px; height: 2px; margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--red-deep) 0%, #200800 50%, var(--red-deep) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 5%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold-light);
  line-height: 1; display: block;
}
.stat-lbl { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px; color: var(--muted); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-img-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(255,107,0,0.15) 0%, transparent 50%);
}
.about-img-wrap img { width: 100%; border-radius: 8px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; z-index: 2;
  box-shadow: var(--glow-saf);
}
.about-badge span:first-child { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--dark); }
.about-badge span:last-child  { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 1px; color: var(--dark); text-align: center; }

.about-text h2 { margin-bottom: 6px; }
.about-text .section-label { display: inline-block; }
.about-lead {
  font-size: 1.25rem; color: var(--cream2); margin: 24px 0 18px; font-weight: 300;
  border-left: 3px solid var(--saffron); padding-left: 20px;
}
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.feature-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(212,160,23,0.07); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 14px;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px; color: var(--cream2);
}
.feature-pill svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   MISSION / PILLARS
   ============================================================ */
.pillars { background: var(--dark3); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: rgba(212,160,23,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 40px 30px; text-align: center;
  transition: all .3s; position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0); transition: transform .3s;
}
.pillar-card:hover { transform: translateY(-8px); border-color: rgba(212,160,23,0.5); box-shadow: var(--glow-gold); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 70px; height: 70px; margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(212,160,23,0.2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; border: 1px solid var(--border);
}
.pillar-title { font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 14px; }
.pillar-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

/* ============================================================
   KABEER JI SECTION
   ============================================================ */
.kabeer { background: linear-gradient(135deg, #0A0500 0%, #1A0800 50%, #0A0500 100%); }
.kabeer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.kabeer-text .section-label { color: var(--gold); border-color: rgba(212,160,23,0.3); }
.kabeer-quote {
  font-family: 'Crimson Pro', serif; font-style: italic;
  font-size: 1.5rem; color: var(--gold-light); margin: 28px 0;
  padding: 24px; border: 1px solid var(--border); border-radius: 8px;
  background: rgba(212,160,23,0.05); position: relative;
}
.kabeer-quote::before { content: '"'; font-size: 6rem; color: rgba(212,160,23,0.15); position: absolute; top: -20px; left: 10px; font-family: Georgia, serif; }
.kabeer-links { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.kabeer-link {
  display: flex; align-items: center; gap: 14px;
  background: rgba(212,160,23,0.06); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 20px; transition: all .3s;
}
.kabeer-link:hover { background: rgba(212,160,23,0.12); border-color: var(--gold); transform: translateX(6px); }
.kabeer-link-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kabeer-link-text { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 1px; color: var(--cream); }
.kabeer-link-sub  { font-size: 11px; color: var(--muted); }

.kabeer-visual { position: relative; }
.kabeer-img-frame {
  border: 2px solid var(--border); border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  position: relative;
}
.kabeer-img-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,4,0,0.7) 100%);
}
.kabeer-img-frame img { width: 100%; }
.kabeer-orb {
  position: absolute; top: -30px; right: -30px;
  width: 150px; height: 150px;
  border: 2px solid rgba(212,160,23,0.3); border-radius: 50%;
  animation: rotateSlow 20s linear infinite;
}
.kabeer-orb::before {
  content: '🕉'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); font-size: 2rem;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.videos { background: var(--dark2); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  background: rgba(212,160,23,0.04); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; transition: all .3s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--glow-gold); border-color: rgba(212,160,23,0.4); }
.video-thumb {
  position: relative; padding-top: 56.25%; background: var(--dark3); overflow: hidden;
}
.video-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-thumb-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark3), #200A00);
  cursor: pointer;
}
.video-play-btn {
  width: 60px; height: 60px; background: rgba(255,107,0,0.8); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  transition: all .3s; margin-bottom: 12px;
}
.video-card:hover .video-play-btn { background: var(--saffron); transform: scale(1.1); }
.video-info { padding: 18px 20px; }
.video-title { font-family: 'Cinzel', serif; font-size: 13px; color: var(--cream); margin-bottom: 8px; line-height: 1.5; }
.video-channel { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.yt-badge { background: #FF0000; color: #fff; font-size: 9px; font-family: 'Cinzel', serif; padding: 2px 7px; border-radius: 3px; letter-spacing: 1px; }

.videos-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   ACTIVITIES / INITIATIVES
   ============================================================ */
.activities { background: var(--dark3); }
.activities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.activity-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: rgba(212,160,23,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 30px; transition: all .3s;
}
.activity-card:hover { border-color: rgba(212,160,23,0.4); background: rgba(212,160,23,0.08); }
.activity-icon {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(212,160,23,0.2));
  border: 1px solid var(--border);
}
.activity-title { font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.activity-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   SOCIAL MEDIA SECTION
   ============================================================ */
.social-section { background: var(--dark); }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
.social-card {
  border-radius: 12px; padding: 32px 24px; text-align: center;
  transition: all .3s; position: relative; overflow: hidden; cursor: pointer;
}
.social-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: rgba(255,255,255,0.05);
}
.social-card:hover::before { opacity: 1; }
.social-card:hover { transform: translateY(-8px); }
.social-card.facebook  { background: #0D1B3E; border: 1px solid #1877F2; }
.social-card.instagram { background: linear-gradient(135deg,#1a0533,#3d0e1e,#1a200d); border: 1px solid #E1306C; }
.social-card.twitter   { background: #0A1929; border: 1px solid #1DA1F2; }
.social-card.youtube   { background: #1A0505; border: 1px solid #FF0000; }
.social-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.social-name { font-family: 'Cinzel', serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.social-card.facebook  .social-name { color: #1877F2; }
.social-card.instagram .social-name { color: #E1306C; }
.social-card.twitter   .social-name { color: #1DA1F2; }
.social-card.youtube   .social-name { color: #FF0000; }
.social-handle { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-bottom: 18px; }
.social-follow {
  display: inline-block; padding: 8px 20px; border-radius: 20px;
  font-family: 'Cinzel', serif; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  transition: all .3s;
}
.social-card.facebook  .social-follow { background: #1877F2; color: #fff; }
.social-card.instagram .social-follow { background: linear-gradient(90deg,#405DE6,#E1306C,#F77737); color: #fff; }
.social-card.twitter   .social-follow { background: #1DA1F2; color: #fff; }
.social-card.youtube   .social-follow { background: #FF0000; color: #fff; }
.social-card:hover .social-follow { transform: scale(1.05); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

.kabeer-socials { text-align: center; }
.kabeer-socials h3 {
  font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 3px;
  color: var(--muted); margin-bottom: 20px; text-transform: uppercase;
}
.kabeer-social-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.kabeer-soc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 30px; font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 1px; transition: all .3s; border: 1px solid;
}
.kabeer-soc-btn:hover { transform: translateY(-3px); }
.kabeer-soc-btn.website { border-color: var(--gold); color: var(--gold); }
.kabeer-soc-btn.website:hover { background: rgba(212,160,23,0.1); }
.kabeer-soc-btn.fb { border-color: #1877F2; color: #1877F2; }
.kabeer-soc-btn.fb:hover { background: rgba(24,119,242,0.1); }
.kabeer-soc-btn.yt { border-color: #FF0000; color: #FF0000; }
.kabeer-soc-btn.yt:hover { background: rgba(255,0,0,0.1); }

/* ============================================================
   JOIN / CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red-deep) 0%, #300800 50%, #1A0000 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 90px 5%;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Cinzel Decorative', serif; font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold-light); margin-bottom: 16px;
}
.cta-desc { color: var(--cream2); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.contact-val { color: var(--cream); font-size: 1rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px; color: var(--muted); }
.form-input {
  background: rgba(212,160,23,0.05); border: 1px solid var(--border); border-radius: 6px;
  padding: 12px 16px; color: var(--cream); font-family: 'Crimson Pro', serif; font-size: 1rem;
  transition: border-color .2s;
}
.form-input:focus { outline: none; border-color: var(--gold); background: rgba(212,160,23,0.08); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050200;
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo-link { margin-bottom: 20px; display: flex; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-soc-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all .25s; color: var(--muted);
}
.footer-soc-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(212,160,23,0.08); transform: translateY(-2px); }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 2px; color: var(--gold-light); margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.95rem; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: '›'; color: var(--saffron); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap 20px;
}
.footer-copy { color: var(--muted); font-size: 0.85rem; }
.footer-copy span { color: var(--saffron); }
.footer-mission { font-family: 'Tiro Devanagari Hindi', serif; color: var(--gold-deep); font-size: 0.9rem; }

/* ============================================================
   WHATSAPP POPUP
   ============================================================ */
.wa-popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.wa-popup-overlay.show { opacity: 1; pointer-events: all; }
.wa-popup {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  border: 1px solid rgba(212,160,23,0.4); border-radius: 16px; padding: 50px 44px;
  max-width: 480px; width: 90%; text-align: center; position: relative;
  transform: scale(0.9) translateY(20px); transition: transform .4s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), var(--glow-gold);
}
.wa-popup-overlay.show .wa-popup { transform: scale(1) translateY(0); }
.wa-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  color: var(--muted); font-size: 1.4rem; cursor: pointer; transition: color .2s;
}
.wa-close:hover { color: var(--gold-light); }
.wa-logo-wrap { margin-bottom: 20px; }
.wa-logo-wrap img { width: 80px; margin: 0 auto; filter: drop-shadow(0 0 20px rgba(212,160,23,0.5)); }
.wa-title { font-family: 'Cinzel Decorative', serif; font-size: 1.5rem; color: var(--gold-light); margin-bottom: 10px; }
.wa-sub { color: var(--muted); font-size: 1rem; margin-bottom: 28px; line-height: 1.7; }
.wa-join-btn {
  display: inline-flex; align-items: center; gap: 10px; width: 100%;
  justify-content: center; background: #25D366; color: #fff; padding: 16px;
  border-radius: 8px; font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 14px; letter-spacing: 1.5px; transition: all .3s; margin-bottom: 14px;
}
.wa-join-btn:hover { background: #1eb558; box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.wa-skip { color: var(--muted); font-size: 12px; cursor: pointer; transition: color .2s; background: none; border: none; }
.wa-skip:hover { color: var(--cream); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); cursor: pointer; transition: all .3s;
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--dark2); border-left: 1px solid var(--border);
  z-index: 300; transition: right .35s ease;
  display: flex; flex-direction: column; padding: 80px 30px 40px;
  gap: 6px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px;
  color: var(--cream2); padding: 12px 0; border-bottom: 1px solid rgba(212,160,23,0.1);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .nav-join { background: linear-gradient(135deg,var(--saffron),var(--gold)); color: var(--dark); padding: 12px 20px; border-radius: 4px; border: none; text-align: center; margin-top: 10px; }
.menu-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer;
}
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 290;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.menu-overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid      { grid-template-columns: 1fr 1fr; }
  .social-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .about-grid, .kabeer-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge       { display: none; }
  .stats-bar         { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .topbar            { padding: 5px 4%; }
  .topbar-marquee    { display: none; }
  .nav-main          { display: none; }
  .hamburger         { display: flex; }
  .hero-logo-big     { width: 150px; }
  .tagline-line      { display: none; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .activities-grid   { grid-template-columns: 1fr; }
  .videos-grid       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom     { flex-direction: column; gap: 10px; text-align: center; }
  .stats-bar         { grid-template-columns: repeat(2,1fr); }
  .stat-item::after  { display: none; }
  .section-pad       { padding: 60px 5%; }
  .about-features    { grid-template-columns: 1fr; }
  .hero-ctas         { flex-direction: column; align-items: center; }
  .cta-buttons       { flex-direction: column; align-items: center; }
}
