/* ─────────────────────────────────────
   DESIGN TOKENS  (exact boilerplate)
───────────────────────────────────── */
:root {
  --brown-900: #3b1f00;
  --brown-700: #623b04;
  --brown-500: #996515;
  --brown-100: #fef6ef;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --green:     #1b7428;
  --white:     #ffffff;
  --gradient-brown: linear-gradient(135deg, #996515 0%, #623b04 100%);
  --shadow-card:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover:   0 8px 30px rgba(0,0,0,0.12);
  --radius-card:    14px;
  --radius-sm:      8px;
  --font-d:  'Tiro Devanagari Sanskrit', Georgia, serif;
  --font-b:  'Poppins', sans-serif;
  --font-dv: 'Tiro Devanagari Sanskrit', serif;
}


.gdnavbar{
    border-bottom: 1px solid #d1d1d1;
}


/* ─────────────────────────────────────
   BANNER
───────────────────────────────────── */
.gd-banner-wrapper-pathshala {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.gd-banner-wrapper-pathshala img          { height: 480px;object-position: center 10%; }
@media (max-width: 768px) {
  .gd-banner-wrapper-pathshala { height: 360px;padding-top: 70px;}
}
.gd-banner-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.gd-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(59,31,0,0.15) 0%, rgba(59,31,0,0.60) 100%);
}
.gd-banner-title {
  position: absolute;
  bottom: 36px; left: 48px;
  z-index: 2;
  color: var(--white);
}
.gd-banner-title h1 {
  font-family: var(--font-b);
  font-size: clamp(1.8rem, 4vw, 4.8rem);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.gd-banner-title .gd-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  font-family: var(--font-b);
  font-size: 16px;
  color: rgba(255,255,255);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.gd-banner-title .gd-banner-meta .sep { color: rgba(255,255,255); }
@media (max-width: 600px) {
  .gd-banner-title { left: 20px; bottom: 20px; }
}

/* ─────────────────────────────────────
   STICKY NAV  (exact boilerplate)
───────────────────────────────────── */
.headcont_l3_head_scroll {
  position: sticky;
  top: 0;
  z-index: 100;
  height: fit-content;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 0;
  background: #fff;
  box-shadow: rgba(0,0,0,0.133) 0px 1.6px 3.6px 0px,
              rgba(0,0,0,0.11)  0px 0.3px 0.9px 0px;
  align-items: center;
  margin: 0px auto 5px auto;
}
.headcont_l3_data {
  margin: 0 auto;
  padding: 10px 24px 0;
}
.nav-links-html {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0 15px 10px 30px;
  border-bottom: 1px solid #d1d1d1;
  list-style: none;
}
.nav-links-html li {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  padding-inline: 10px;
  color: var(--gray-400);
}
.t2 a { color: #623B04; text-decoration: none; cursor: pointer; }
.nav-links-html li a:hover { color: var(--brown-500); }

@media (max-width: 768px) {
  .nav-links-html { padding: 0 0 10px 0px;}
}

.gd-tabs-2 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.gd-tab {
  background: none;
  border: none;
  padding: 12px 20px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.gd-tab:hover  { color: var(--brown-700); }
.gd-tab.active { color: var(--brown-700); border-bottom-color: var(--brown-700); font-weight: 600; }

/* ─────────────────────────────────────
   CONTAINER & SHARED CARD
───────────────────────────────────── */
.gd-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.gd-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  padding: 40px;
  margin-top: 28px;
  transition: box-shadow 0.2s;
}
.gd-card:hover { box-shadow: var(--shadow-hover); }

/* ─────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────── */
.gd-heading-xl {
  font-family: var(--font-b);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.gd-heading-lg {
  font-family: var(--font-b);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 10px 0;
}
.gd-body { font-size: 15px; line-height: 1.75; }
.gd-label-1 {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.gd-btn-1 {
  display: inline-block;
  padding: 11px 26px;
  background: var(--brown-700);
  color: #fff9f2;
  border: 2px solid var(--brown-700);
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.gd-btn-1:hover {
  background: var(--brown-900);
  border-color: var(--brown-900);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59,31,0,0.28);
}
.gd-btn-ghost {
  display: inline-block;
  padding: 11px 26px;
  background: var(--white);
  color: var(--brown-700);
  border: 2px solid var(--brown-700);
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.gd-btn-ghost:hover {
  background: var(--brown-700);
  color: var(--white);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────
   SECTION TITLE (accent bar)
───────────────────────────────────── */
.gd-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}
.gd-section-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.5em;
  background: var(--gradient-brown);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   HERO  (inside gd-container)
───────────────────────────────────── */
.gd-hero {
  background: var(--brown-100);
  border-radius: var(--radius-card);
  border: 1px solid rgba(153,101,21,0.15);
  padding: 48px;
  margin-top: 28px;
}
.gd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.gd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 20px 0 28px;
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gd-hero-meta .sep { color: var(--gray-300); }
.gd-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

/* Live-active badge */
.gd-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,116,40,0.08);
  border: 1px solid rgba(27,116,40,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.gd-live-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.25; transform:scale(.6); }
}

/* ─────────────────────────────────────
   SOCIAL PROOF STRIP
───────────────────────────────────── */
.gd-proof-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  margin-top: 28px;
  overflow: hidden;
  flex-wrap: wrap;
}
.gd-proof-stat {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 28px;
  border-right: 1px solid var(--gray-200);
}
.gd-proof-stat:last-of-type { border-right: none; }
.gd-proof-num {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown-700);
  line-height: 1;
}
.gd-proof-label {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gd-proof-quote {
  flex: 2;
  padding: 20px 32px;
  font-family: var(--font-b);
  font-size: 15px;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.65;
  border-left: 2px solid var(--brown-100);
}

/* ─────────────────────────────────────
   ABOUT — 2-col
───────────────────────────────────── */
.gd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gd-study-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.gd-study-list li {
  padding-left: 14px;
  border-left: 2px solid var(--brown-500);
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}
.gd-master-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.gd-tag {
  padding: 7px 14px;
  background: var(--brown-100);
  border: 1px solid rgba(153,101,21,0.18);
  border-radius: 20px;
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--brown-700);
  font-weight: 500;
}

/* Acharya col */
.gd-acharya-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  text-align: right;
}
.gd-acharya-img {
  width: 200px; height: 200px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--brown-100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ─────────────────────────────────────
   PILLARS
───────────────────────────────────── */
.gd-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gd-pillar { margin-bottom: 34px; }
.gd-pillar:last-child { margin-bottom: 0; }
.gd-pillar-skt {
  font-family: var(--font-dv);
  font-size: 26px;
  color: var(--brown-700);
}
.gd-pillar-trans {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin: 4px 0 10px;
  text-transform: uppercase;
}
.gd-pillar-skt {
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 380px;
}

.gd-pillar-trans {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 380px;
}
/* Certificate col */
.gd-cert-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}
.gd-cert-img {
  width: 100%; max-width: 560px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

/* ─────────────────────────────────────
   LEARNING PATHS
───────────────────────────────────── */
.gd-paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.learning-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E9E6E0;
  transition: all .25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.learning-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.learning-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}
.learning-card:hover img { transform: scale(1.04); }

.learning-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.learning-acharya {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.learning-card h3 {
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #80582B;
  margin-bottom: 10px;
  min-height: 54px;
}
.learning-card p {
  font-family: var(--font-b);
  font-size: 16px;
  min-height: 72px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.learning-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.learning-meta span {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  color: #444;
  background: var(--brown-100);
  border: 1px solid rgba(153,101,21,0.15);
  border-radius: 20px;
  padding: 3px 10px;
}
.learning-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.learning-price {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 22px;
  color: #623B04;
}
.learning-price.free { color: var(--green); }

/* Next-batch urgency chip */
.gd-batch-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.gd-batch-chip::before { content: '◷'; font-size: 11px; }

/* ─────────────────────────────────────
   CTA BLOCK
───────────────────────────────────── */
.gd-cta {
  text-align: center;
    padding: 48px 8px 24px 8px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d1d1d1;
  box-shadow: var(--shadow-card);
}
.gd-cta-rule { width: 48px; height: 1px; background: var(--gray-300); }
.gd-cta p {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.75;
}
.gd-cta-headline {
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--brown-700);
  max-width: 560px;
  line-height: 1.4;
}
.gd-cta .code-badge {
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--gray-900);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 4px 12px;
}

.gd-modal-eyebrow {
  font-family: var(--font-b); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-400); margin: 0 0 6px;
}
.gd-join-steps { display: flex; flex-direction: column; margin: 1.25rem 0; }
.gd-join-step { display: flex; align-items: flex-start; gap: 14px; }
.gd-join-connector {
  width: 1px; height: 16px; background: var(--gray-200);
  margin: 4px 0 4px 13px;
}
.gd-join-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: 12px; font-weight: 600;
  color: var(--gray-700); margin-top: 2px;
}
.gd-join-step-title {
  font-family: var(--font-b); font-size: 14px; font-weight: 600;
  color: var(--gray-800); margin: 0 0 3px;
}
.gd-join-step-desc {
  font-family: var(--font-b); font-size: 13px; color: var(--gray-500);
  line-height: 1.6; margin: 0;
}
.gd-join-code {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 6px 12px; margin-top: 8px;
}
.gd-join-code-text {
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--brown-700);
}
.gd-join-code button {
  font-family: var(--font-b); font-size: 11px; color: var(--gray-500);
  background: none; border: 1px solid var(--gray-300);
  border-radius: 4px; padding: 2px 8px; cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.gd-join-code button:hover { color: var(--brown-700); border-color: var(--brown-500); }
.gd-join-cta { display: flex; flex-direction: column; gap: 8px; margin-top: 1.5rem; }
.gd-join-cta .gd-btn-1 { display: block; text-align: center; text-decoration: none; padding: 12px; }
.gd-join-cta-note {
  font-family: var(--font-b); font-size: 11px;
  color: var(--gray-400); text-align: center; margin: 0;
}

/* ─────────────────────────────────────
   MANTRA FOOTER
───────────────────────────────────── */
.gd-mantra-footer {
  text-align: center;
  padding: 48px 0 24px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d1d1d1;
}
.gd-mantra-text {
  font-family: var(--font-dv);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}
.gd-mantra-translation {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 14px;
  color: var(--gray-400);
}
.gd-inst-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.gd-logo { height: 32px; opacity: 0.5; filter: grayscale(1); }

/* ═══════════════════════════════════════
   JOIN MODAL — RESPONSIVE
═══════════════════════════════════════ */

.gd-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gd-modal-backdrop.open { display: flex; }

.gd-modal {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}

.gd-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--gray-400);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.gd-modal-close:hover { background: var(--gray-100); color: var(--gray-700); }

/* ── Eyebrow + heading ── */
.gd-modal-eyebrow {
  font-family: var(--font-b);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-500);
  margin-bottom: 6px;
}
.gd-modal h2 {
  font-family: var(--font-b);
  font-size: 22px; font-weight: 600;
  color: var(--brown-700);
  margin-bottom: 28px;
  line-height: 1.25;
}

/* ── Steps ── */
.gd-join-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.gd-join-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gd-join-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brown-700);
  color: var(--white);
  font-family: var(--font-d);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.gd-join-step-title {
  font-family: var(--font-b);
  font-size: 14px; font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.gd-join-step-desc {
  font-family: var(--font-b);
  font-size: 13px; color: var(--gray-500);
  line-height: 1.65;
}

/* Connector line between steps */
.gd-join-connector {
  width: 2px; height: 20px;
  background: var(--gray-200);
  border-radius: 2px;
  margin-left: 15px;    /* aligns with centre of the number circle */
}

/* ── Class code block ── */
.gd-join-code {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: var(--brown-100);
  border: 1px solid rgba(153,101,21,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.gd-join-code-text {
  font-family: var(--font-b);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brown-700);
  flex: 1;
}
.gd-join-code button {
  font-family: var(--font-b);
  font-size: 11px; font-weight: 600;
  color: var(--brown-700);
  background: var(--white);
  border: 1px solid rgba(153,101,21,0.25);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.gd-join-code button:hover { background: var(--brown-700); color: var(--white); }

/* ── CTA ── */
.gd-join-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.gd-join-cta .gd-btn-1 {
  width: 100%;
  text-align: center;
  padding: 13px;
  font-size: 15px;
}
.gd-join-cta-note {
  font-family: var(--font-b);
  font-size: 11px; color: var(--gray-400);
  text-align: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 640px) {
  .gd-modal {
    padding: 28px 24px;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;    /* bottom sheet feel */
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    max-width: 100%;
  }
  .gd-modal-backdrop {
    align-items: flex-end;           /* slides up from bottom */
    padding: 0;
  }
  .gd-modal h2       { font-size: 20px; margin-bottom: 22px; }
  .gd-join-code-text { font-size: 16px; letter-spacing: 0.14em; }
}

/* Small phones */
@media (max-width: 380px) {
  .gd-modal         { padding: 24px 16px; }
  .gd-join-num      { width: 28px; height: 28px; font-size: 12px; }
  .gd-join-connector { margin-left: 13px; }
  .gd-join-step     { gap: 12px; }
  .gd-join-step-title { font-size: 13px; }
  .gd-join-step-desc  { font-size: 12px; }
  .gd-join-code-text  { font-size: 15px; }
}
.gd-btn-1 {padding: 8px 18px;}

/* ─────────────────────────────────────
   DESKTOP-ONLY DIVIDER
───────────────────────────────────── */
.col-divider { display: none; }
@media (min-width: 1024px) {
  .col-divider {
    display: block;
    position: absolute;
    left: -24px; top: 0;
    height: 100%; width: 1px;
    background: var(--gray-200);
  }
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 900px) {
    .gd-banner-overlay {margin-top: 70px;}
  .gd-hero              { padding: 28px; }
  .gd-hero-grid,
  .gd-about-grid,
  .gd-pillars-grid      { grid-template-columns: 1fr; gap: 28px; }
  .gd-acharya-col,
  .gd-cert-col          { align-items: flex-start; text-align: left; }
  .gd-banner-wrapper-pathshala img          { height: 330px;object-position: center 5%; }
  .gd-card              { padding: 16px; }
  .gd-proof-strip       { flex-direction: column; }
  .gd-proof-stat        { border-right: none; border-bottom: 1px solid var(--gray-200); width: 100%; }
  .gd-proof-stat:last-of-type { border-bottom: none; }
  .gd-proof-quote       { border-left: none; border-top: 2px solid var(--brown-100); }
  .gd-section-title { justify-content: left;}
  .gd-study-list { padding: 0 12px 0 0;}
  .gd-banner-title .gd-banner-meta {gap:6px}
  .gd-hero-img {display: none;}
  .gd-banner-title h1 {font-size: clamp(2.4rem, 4vw, 4.8rem);}
  .gd-banner-title .gd-banner-meta {font-size: 12px;}
  .learning-card p, .gd-cta p { font-size: 14px;}
  .gd-btn-1,.gd-btn-ghost {padding: 6px 12px;}
  .gd-cta-headline {font-size: 16px;}
  .learning-card h3{min-height: 36px;}
  .gd-banner-wrapper-pathshala { height: 400px; padding-top: 70px;}
  
}
@media (max-width: 480px) {
  .gd-container { padding: 0 14px 40px; }
  .gd-tabs-2    { padding: 0 14px; }
  .gd-tab       { padding: 12px 14px; font-size: 12px; }
}