.elementor-4019 .elementor-element.elementor-element-b6150c7{--display:flex;}/* Start custom CSS *//* ===== CSS VARIABLES & GLOBALS ===== */
:root {
  --saffron: #E8850A;
  --saffron-light: #F5A623;
  --gold: #C8972A;
  --gold-light: #F0D080;
  --maroon: #7B1F1F;
  --cream: #FFFDF5;
  --off-white: #FAF8F2;
  --light-bg: #F4F0E8;
  --text-dark: #1A1A2E;
  --text-mid: #3D3D5C;
  --text-soft: #6B6B8A;
  --border-light: #E8E0D0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 50px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== TYPOGRAPHY ===== */
.hindi { font-family: 'Tiro Devanagari Hindi', serif; }
.display { font-family: 'Playfair Display', serif; }

/* ===== UTILITIES ===== */
.el-block-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.el-section { padding: 80px 0; background: var(--cream); color: var(--text-dark); line-height: 1.7; }
.section-light { background: var(--off-white); }
.section-cream { background: var(--light-bg); }
.section-white { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif; line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 600px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== DIVIDER ===== */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider.center { margin: 16px auto 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: white;
  box-shadow: 0 4px 16px rgba(232,133,10,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,133,10,0.45); }

.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: white; }

.btn-white {
  background: white;
  color: var(--saffron);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #1DAE55; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--maroon);
  color: #F0D080;
  padding: 8px 0;
  font-size: 13px;
  text-align: center;
}
.topbar a { color: #F0D080; text-decoration: none; }
.topbar-inner { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

/* ===== NAV ===== */
.custom-nav {
  background: white;
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text-dark); font-weight: 700; }
.nav-logo-sub { font-size: 11px; color: var(--text-soft); font-family: 'Poppins', sans-serif; display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--saffron); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 40%, #3D2015 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: 'ॐ';
  position: absolute;
  right: -60px; top: -40px;
  font-size: 400px;
  color: rgba(255,255,255,0.03);
  font-family: 'Tiro Devanagari Hindi', serif;
  line-height: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,133,10,0.2);
  border: 1px solid rgba(232,133,10,0.4);
  color: #F5A623;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: white;
  margin-bottom: 12px;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}

.hero-hindi {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num { font-size: 28px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--gold-light); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-form-card h3 { font-size: 22px; color: var(--text-dark); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.hero-form-card p { font-size: 14px; color: var(--text-soft); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--saffron); background: white; }

.form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--saffron), var(--saffron-light)); color: white; font-size: 16px; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s; }
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,133,10,0.4); }
.form-privacy { font-size: 12px; color: var(--text-soft); text-align: center; margin-top: 12px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: white; border-bottom: 1px solid var(--border-light); padding: 20px 0; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid); font-weight: 500; }
.trust-icon { font-size: 20px; }

/* ===== WHY GITA ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.why-hindi { font-family: 'Tiro Devanagari Hindi', serif; font-size: 14px; color: var(--saffron); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* ===== CONTENT CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--saffron); }
.cat-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(232,133,10,0.12), rgba(200,151,42,0.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.cat-card h3 { font-size: 17px; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.cat-hindi { font-family: 'Tiro Devanagari Hindi', serif; font-size: 14px; color: var(--saffron); }
.cat-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; flex: 1; }
.cat-link { font-size: 13px; font-weight: 600; color: var(--saffron); display: flex; align-items: center; gap: 4px; }

/* ===== CHAPTERS ===== */
.chapters-wrap {
  background: linear-gradient(135deg, var(--maroon) 0%, #4A1010 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: white;
}
.chapters-wrap .section-label { color: var(--gold-light); }
.chapters-wrap .section-title { color: white; }
.chapters-wrap .divider { background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,0.3)); }
.chapters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 36px; }
.chapter-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.25s;
}
.chapter-pill:hover { background: rgba(232,133,10,0.3); border-color: var(--saffron); transform: translateY(-2px); }
.chapter-pill .num { font-size: 22px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--gold-light); }
.chapter-pill .ch-hindi { font-family: 'Tiro Devanagari Hindi', serif; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ===== SHLOKA HIGHLIGHT ===== */
.shloka-box {
  background: linear-gradient(135deg, #FFF8ED, #FFFDF5);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--saffron);
  border-radius: var(--radius);
  padding: 36px 40px;
  position: relative;
}
.shloka-quote { font-size: 60px; color: var(--gold-light); font-family: serif; position: absolute; top: 16px; left: 20px; line-height: 1; }
.shloka-text {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
  margin-left: 20px;
}
.shloka-meaning { font-size: 15px; color: var(--text-soft); font-style: italic; margin-bottom: 8px; }
.shloka-ref { font-size: 13px; color: var(--saffron); font-weight: 600; }

/* ===== SERVICES GRID (Situations) ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card-top {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 28px;
  display: flex; align-items: center; gap: 16px;
}
.service-card-icon { font-size: 32px; }
.service-card-top h3 { color: white; font-size: 18px; font-family: 'Playfair Display', serif; }
.service-card-top .service-hindi { font-family: 'Tiro Devanagari Hindi', serif; color: rgba(255,255,255,0.8); font-size: 14px; }
.service-card-body { padding: 24px 28px; }
.service-card-body p { font-size: 14px; color: var(--text-soft); line-height: 1.7; margin-bottom: 20px; }
.service-list { list-style: none; margin-bottom: 20px; }
.service-list li { font-size: 13px; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 8px; }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '✦'; color: var(--saffron); font-size: 10px; }

/* ===== LEAD CTA SECTION ===== */
.lead-section {
  background: linear-gradient(135deg, #1A1A2E, #2D1B4E);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: 'गीता';
  position: absolute;
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.lead-section h2 { font-size: clamp(28px, 4vw, 42px); color: white; margin-bottom: 16px; font-family: 'Playfair Display', serif; }
.lead-section p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; }
.lead-cta-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ===== NEWSLETTER ===== */
.newsletter-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.newsletter-box h3 { font-size: 28px; color: var(--text-dark); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.newsletter-box p { font-size: 15px; color: var(--text-soft); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}
.newsletter-form input:focus { outline: none; border-color: var(--saffron); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--saffron-light); font-size: 18px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.testi-loc { font-size: 12px; color: var(--text-soft); }

/* ===== FOOTER ===== */
.custom-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand h4 { color: white; font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h5 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron-light); }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: all 0.2s; color: white; }
.social-fb { background: #1877F2; }
.social-wa { background: #25D366; }
.social-btn:hover { transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding: 20px 0; text-align: center; font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .why-grid, .categories-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .chapters-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-box { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .el-section { padding: 56px 0; }
  .why-grid, .categories-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .chapters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .chapters-wrap { padding: 32px 24px; }
  .nav-links { display: none; }
  .newsletter-form { flex-direction: column; }
  .topbar-inner { gap: 16px; font-size: 12px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-left > *:nth-child(6) { animation-delay: 0.6s; }
.hero-form-card { animation: fadeUp 0.8s 0.4s ease forwards; opacity: 0; }/* End custom CSS */