@charset "UTF-8";
:root {
  --deep-blue: #0a2342;
  --mid-blue: #1a3a6b;
  --light-blue: #e8eef7;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --gold-pale: #fdf3e3;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text-dark: #0a2342;
  --text-body: rgba(0, 0, 0, 0.65);
  --text-mid: #3a4a6b;
  --text-light: #6b7a99;
  --border: #dde3ef;
  --body-font: 16px!important;
  --font-heading: 'Merriweather', serif;
  --font-body: 'Georama', sans-serif;
  --font-body2: 'Cormorant Garamond', serif;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 6px 0;
  letter-spacing: 0.03em;
}

.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
}

.top-bar .divider {
  margin: 0 10px;
  opacity: 0.4;
}

/* ── MEGA MENU — MOBILE/TABLET (<1200px) ── */
@media (max-width: 1199.98px) {
  /* Let collapse JS control visibility — remove hover rule on mobile */
  .mega-menu-wrapper:hover .mega-dropdown {
    display: none;
  }
  /* When Bootstrap collapse adds .show, display it */
  .mega-dropdown.show {
    display: block !important;
  }
  /* Override absolute positioning for mobile */
  .mega-dropdown {
    position: static !important;
    box-shadow: none !important;
    border-top: none !important;
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 12px 8px 16px !important;
    background: var(--off-white) !important;
    margin-bottom: 8px;
    z-index: auto !important;
  }
  /* Tighten grid columns on small screens */
  .mega-dropdown .row {
    --bs-gutter-x: 0.5rem;
  }
  .nav-link-top {
    padding: 12px 4px !important;
    border-bottom: 1px solid var(--border);
  }
}
/* ── STANDARD DROPDOWN ── */
.std-dropdown {
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  padding: 8px 0;
  min-width: 220px;
}

.std-dropdown .dropdown-item {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 7px 20px;
  transition: all 0.2s;
}

.std-dropdown .dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 26px;
}

.std-dropdown .dropdown-divider {
  border-color: var(--border);
  margin: 4px 0;
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 60%, #1e4080 100%);
  position: relative;
  overflow: hidden;
  padding: 30px 0 20px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="none" stroke="rgba(201,146,42,0.06)" stroke-width="1"/><circle cx="80" cy="80" r="50" fill="none" stroke="rgba(201,146,42,0.04)" stroke-width="1"/><circle cx="50" cy="50" r="70" fill="none" stroke="rgba(201,146,42,0.03)" stroke-width="1"/></svg>') center/cover;
}

.hero-gold-line {
  width: 100px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 16px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-body2);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero-title .hero-title-span {
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
}

/*
.hero-title strong {
  font-weight: 700;
  color: var(--gold-light);
}*/
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Search bar */
.hero-search {
  margin: 30px auto 30px !important;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 4px 4px 4px 20px;
  display: flex;
  align-items: center;
  max-width: 400px;
  backdrop-filter: blur(10px);
}

.hero-search input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.88rem;
  flex: 1;
  font-family: var(--font-body);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-search button {
  background: var(--gold);
  border: none;
  color: white;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-search button:hover {
  background: var(--gold-light);
}

/* Subscribe */
.hero-subscribe {
  width: 100% !important;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-subscribe, .btn-explore {
  font-size: 12px !important;
}

.hero-search * {
  font-size: 12px !important;
}

.btn-subscribe, .btn-explore {
  padding: 8px 20px;
}

.btn-subscribe {
  background: var(--gold) !important;
  color: white !important;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-subscribe:hover {
  background: var(--gold-light) !important;
  color: white !important;
  transform: translateY(-1px);
}

.btn-explore {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-explore:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Hero Khanda SVG decoration */
.hero-decoration {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  opacity: 0.06;
}

.hero-stats {
  display: flex;
  gap: 45px;
  margin: 32px auto 0 auto;
  padding-top: 24px;
  padding-left: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
  font-family: "Crimson Pro", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-align: center;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SECTION HEADERS ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-body2);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep-blue);
  line-height: 1.2;
  font-weight: 600;
}

.section-title span {
  color: var(--gold);
}

.gold-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 20px;
}

/* ── QUICK TOPICS ── */
.quick-topics {
  background: var(--off-white);
  padding: 48px 0;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
  height: 100%;
}

.topic-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.12);
  transform: translateY(-3px);
}

.topic-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--deep-blue);
  font-size: 1.3rem;
  transition: all 0.25s;
}

.topic-card:hover .topic-icon {
  background: var(--deep-blue);
  color: var(--gold);
}

.topic-card h6 {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.topic-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* ── FEATURED ARTICLES ── */
.featured-section {
  padding: 64px 0;
  background: var(--white);
}

.article-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  transform: translateY(-3px);
}

.article-img {
  height: 180px;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-img .art-icon {
  font-size: 3rem;
  color: rgba(201, 146, 42, 0.4);
}

.article-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.article-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-body h5 {
  font-family: "Crimson Pro", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.article-link {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.article-link:hover {
  gap: 10px;
  color: var(--deep-blue);
}

/* ── CALENDAR STRIP ── */
.calendar-strip {
  background: var(--deep-blue);
  padding: 40px 0;
}

.cal-title {
  font-family: var(--font-body2);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--white);
}

.cal-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.cal-month-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  /*cursor: pointer;*/
  transition: all 0.2s;
}

.cal-month-card:hover, .cal-month-card.active {
  background: var(--gold);
  border-color: var(--gold);
}

.cal-month-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

.cal-month-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.cal-month-card:hover .cal-month-date,
.cal-month-card.active .cal-month-date {
  color: rgba(255, 255, 255, 0.85);
}

.btn-cal {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 24px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cal:hover {
  background: var(--gold);
  color: white !important;
}

/* ── GURUS STRIP ── */
.gurus-section {
  background: var(--off-white);
  padding: 64px 0;
}

.guru-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 12px 16px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.guru-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 146, 42, 0.1);
}

.guru-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Crimson Pro", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.guru-card h6 {
  font-family: "Crimson Pro", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 2px;
}

.guru-card small {
  font-size: 0.68rem;
  color: var(--text-light);
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--gold-pale), #fff8ee);
  border-top: 1px solid rgba(201, 146, 42, 0.2);
  border-bottom: 1px solid rgba(201, 146, 42, 0.2);
  padding: 56px 0;
}

.newsletter-section .section-title {
  color: var(--deep-blue);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 35, 66, 0.06);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
}

.newsletter-form button {
  background: var(--deep-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold);
}

.newsletter-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* ── SIKHISM & WORLD ── */
.world-section {
  padding: 64px 0;
  background: var(--white);
}

.world-card {
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: 0 6px 6px 0;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  height: 100%;
}

.world-card:hover {
  background: var(--gold-pale);
  border-left-color: var(--deep-blue);
}

.world-card h6 {
  font-family: "Crimson Pro", serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.world-card p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 0;
}

.footer-brand {
  font-family: var(--font-body2);
  font-size: 1.6rem;
  font-weight: 500 !important;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

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

/*.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}*/
.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
  margin-right: 6px;
}

.social-link:hover {
  background: var(--gold);
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-decoration {
    display: none;
  }
  .hero-stats {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0 40px;
    min-height: auto;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    padding: 12px;
  }
}
/* ── NAVBAR TOGGLER ── */
.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2342' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  padding: 6px 0;
}

.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
}

.top-bar .divider {
  margin: 0 10px;
  opacity: 0.4;
}

/* ── NAVBAR (same as homepage) ── */
.main-navbar {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(10, 35, 66, 0.08);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}

.brand-khanda {
  width: 40px !important;
  height: 40px !important;
  background: var(--deep-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem !important;
  flex-shrink: 0;
}

.brand-text-main {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-dark) !important;
  line-height: 1.15;
  margin-bottom: 8px;
}

.brand-text-sub {
  font-size: 0.5rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link-top {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 18px 14px !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}

.nav-link-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-link-top:hover {
  color: var(--gold) !important;
}

.nav-link-top:hover::after {
  transform: scaleX(1);
}

.mega-menu-wrapper {
  position: static;
}

.mega-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(10, 35, 66, 0.12);
  padding: 32px 0;
  display: none;
  z-index: 999;
}

.mega-menu-wrapper:hover .mega-dropdown {
  display: block;
}

.mega-col-title {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.mega-link {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.mega-link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.std-dropdown {
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  padding: 8px 0;
  min-width: 220px;
}

.std-dropdown .dropdown-item {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 7px 20px;
  transition: all 0.2s;
}

.std-dropdown .dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 26px;
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2342' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── PAGE HERO (Inner) ── */
.page-hero {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 100%);
  padding: 44px 0 36px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "☬";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.breadcrumb-custom a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-custom a:hover {
  color: var(--gold-light);
}

.breadcrumb-custom .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

.breadcrumb-custom .current {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.page-cat-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: "Crimson Pro", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.page-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-hero-meta span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-hero-meta span i {
  color: var(--gold);
}

/* ── MAIN LAYOUT ── */
.inner-layout {
  padding: 48px 0 64px;
}

/* ── ARTICLE CONTENT ── */
.article-content {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.article-content h2 {
  font-family: "Crimson Pro", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.article-content h3 {
  font-family: "Crimson Pro", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 28px 0 10px;
}

.article-content p {
  margin-bottom: 16px;
}

.article-content ul, .article-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.article-content li {
  margin-bottom: 6px;
}

.article-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 146, 42, 0.3);
  transition: border-color 0.2s;
}

.article-content a:hover {
  border-color: var(--gold);
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--gold);
  background: rgba(253, 243, 227, 0.5);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 6px 6px 0;
}

.pull-quote p {
  font-family: "Crimson Pro", serif;
  font-size: 1.75rem;
  font-style: italic;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.6;
}

.pull-quote cite {
  display: block;
  font-size: 1rem;
  color: var(--gold);
  font-style: normal;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Key facts box */
.key-facts {
  background: var(--light-blue);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 28px 0;
}

.key-facts-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-facts-title i {
  color: var(--gold);
}

.fact-row {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-label {
  font-weight: 600;
  color: var(--deep-blue);
  min-width: 130px;
  flex-shrink: 0;
}

.fact-value {
  color: var(--text-mid);
}

/* Article image -->
.article-img-wrap {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin: 24px 0;
}
.article-img-placeholder {
    background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,146,42,0.3);
    font-size: 5rem;
}
.article-img-caption {
    padding: 10px 14px;
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--off-white);
    font-style: italic;
}

/* Share bar */
.share-bar {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.share-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.share-btn {
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  color: white;
}

.share-btn:hover {
  opacity: 0.85;
  color: white;
}

.share-fb {
  background: #1877f2;
}

.share-tw {
  background: #1da1f2;
}

.share-wa {
  background: #25d366;
}

.share-copy {
  background: var(--deep-blue);
}

/* Table of contents */
.toc-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  max-height: 2000px;
  overflow-y: scroll;
}

.toc-title {
  font-family: "Crimson Pro", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-title i {
  color: var(--gold);
}

.toc-link {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 5px 0 5px 10px;
  border-left: 2px solid var(--border);
  transition: all 0.2s;
  margin-bottom: 2px;
}

.toc-link:hover, .toc-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 14px;
}

/* Related articles */
.related-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.related-title {
  font-family: "Crimson Pro", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-title i {
  color: var(--gold);
}

.related-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.related-item:last-child {
  border-bottom: none;
}

.related-item:hover .related-item-title {
  color: var(--gold);
}

.related-thumb {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 146, 42, 0.5);
  font-size: 1.2rem;
}

.related-item-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.2s;
}

.related-item-cat {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 3px;
}

/* PDF Download box */
.pdf-box {
  background: var(--deep-blue);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.pdf-box-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.pdf-box h6 {
  font-family: "Crimson Pro", serif;
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}

.pdf-box p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.btn-pdf {
  background: var(--gold);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.btn-pdf:hover {
  background: var(--gold-light);
  color: white;
}

/* Guru of the day */
.guru-box {
  background: var(--gold-pale);
  border: 1px solid rgba(201, 146, 42, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.guru-box-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.guru-box-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Crimson Pro", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.guru-box h6 {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 2px;
}

.guru-box small {
  font-size: 0.72rem;
  color: var(--text-light);
}

.guru-box-quote {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-mid);
  margin: 10px 0;
  line-height: 1.6;
  border-top: 1px solid rgba(201, 146, 42, 0.2);
  padding-top: 10px;
}

.btn-guru {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.gold-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 20px;
}

/* ── MORE TOPICS ── */
.more-topics {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 0.01em solid rgba(0, 0, 0, 0.07);
  margin-top: 30px;
  margin-bottom: 30px;
}

.topic-pill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.78rem;
  padding: 7px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  margin: 4px;
}

.topic-pill:hover {
  background: var(--deep-blue);
  color: white;
  border-color: var(--deep-blue);
}

.topic-pill.gold {
  background: var(--gold-pale);
  border-color: rgba(201, 146, 42, 0.3);
  color: var(--gold);
}

.topic-pill.gold:hover {
  background: var(--gold);
  color: white;
}

/* ── NEWSLETTER MINI ── */
.newsletter-mini {
  background: var(--deep-blue);
  padding: 40px 0;
  border-bottom: 1px solid var(--gold);
}

.newsletter-mini-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-mini-form input {
  flex: 1;
  border: 0.01em solid rgba(204, 204, 204, 0.47);
  outline: none;
  padding: 11px 16px;
  font-size: 0.83rem;
  font-family: var(--font-body);
}

.newsletter-mini-form button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 11px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-mini-form button:hover {
  background: var(--gold-light);
}

.miniForm * {
  color: var(--text-light) !important;
}

/* ── SIDEBAR ── */
.sidebar {
  /*position: sticky;*/
  top: 10px;
  max-height: 2000px;
  overflow-y: scroll;
}

/* ── FOOTER (same as homepage) ── */
@media (max-width: 991px) {
  .sidebar {
    position: static;
    margin-top: 40px;
  }
  .mega-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    overflow-y: auto;
    max-height: 80vh;
  }
}
@media (max-width: 767px) {
  .page-hero {
    padding: 32px 0 24px;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
  .fact-row {
    flex-direction: column;
    gap: 2px;
  }
  .fact-label {
    min-width: unset;
  }
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%; /* opens to the right of parent */
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

/* ================================================================
   NANAKSHAHI CALENDAR — PILLAR PAGE CSS
   File: assets/cssSikhism/sikh-nanakshahi-calendar-pillar.css
   Companion to main.css — do not duplicate base variables here
   ================================================================ */
/* ── YEAR TAB NAVIGATION ── */
.nc-year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.nc-year-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--text-mid);
  min-width: 130px;
}

.nc-year-tab:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--deep-blue);
}

.nc-year-tab.active {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 35, 66, 0.18);
}

.nc-tab-samvat {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.nc-tab-greg {
  font-size: 0.72rem;
  opacity: 0.75;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.nc-year-tab.active .nc-tab-greg {
  opacity: 0.65;
  color: var(--gold-light);
}

/* ── YEAR PANEL ── */
.nc-year-panel {
  display: none;
  animation: ncFadeIn 0.3s ease;
}

.nc-year-panel.active {
  display: block;
}

@keyframes ncFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── YEAR HEADER BAR ── */
.nc-year-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 100%);
  border-radius: 8px;
  padding: 16px 22px;
  margin-bottom: 20px;
}

.nc-year-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nc-year-heading strong {
  color: var(--gold-light);
  font-weight: 700;
}

.nc-khanda {
  font-size: 1.5rem;
  color: var(--gold);
}

.nc-year-overview-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nc-year-overview-btn:hover {
  background: var(--gold-light);
  color: #fff;
}

/* ── MONTHS GRID ── */
.nc-months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 10px;
}

/* ── MONTH CARD ── */
.nc-month-card {
  display: block;
  position: relative;
  background: #fffdf4;
  border: 1px solid #e0c97f;
  border-radius: 8px;
  padding: 18px 16px 14px;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.nc-month-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #b8860b;
  border-radius: 8px 0 0 8px;
  transition: width 0.2s ease;
}

.nc-month-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.16);
  border-color: #b8860b;
  color: var(--text-dark);
}

.nc-month-card:hover::before {
  width: 6px;
}

/* Past year cards — slightly muted */
.nc-month-card.past {
  background: #faf9f5;
  border-color: #d6c97a;
  opacity: 0.88;
}

.nc-month-card.past:hover {
  opacity: 1;
}

/* Month number badge */
.nc-month-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b8860b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Gurmukhi name */
.nc-month-gurmukhi {
  font-family: "Noto Sans Gurmukhi", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.2;
  margin-bottom: 2px;
}

/* English name */
.nc-month-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 6px;
}

/* Gregorian date range */
.nc-month-greg {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.4;
}

/* Arrow icon */
.nc-month-arrow {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 0.8rem;
  color: #b8860b;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nc-month-card:hover .nc-month-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .nc-months-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 767px) {
  .nc-year-tabs {
    gap: 8px;
  }
  .nc-year-tab {
    min-width: calc(50% - 8px);
    flex: 1;
  }
  .nc-months-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .nc-year-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nc-year-overview-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .nc-months-grid {
    grid-template-columns: 1fr;
  }
  .nc-year-tab {
    min-width: 100%;
  }
}
.page-header {
  border-top: 0.01em solid #CCC;
  /*background: #133059;*/
  background: var(--gold-pale);
  text-align: center;
  padding: 18px 16px 14px;
}

.page-header .title-line1 {
  font-size: clamp(1.1rem, 3.5vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  font-family: "Crimson Pro", serif;
}

.page-header .title-line1 span.cal-word {
  color: #c8a84b;
}

.page-header .title-line1 span.year-bracket {
  color: #f5c842;
}

.page-header .title-line2 {
  font-size: clamp(0.75rem, 2.2vw, 1rem);
  color: #c8a84b;
  margin-top: 5px;
  font-family: "Crimson Pro", serif;
}

.barah-maha-section {
  background: #f0f2f7;
  text-align: center;
  padding: 18px 20px 22px;
}

.barah-maha-section h2 {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: #0a0a5c;
  font-weight: 700;
  margin-bottom: 14px;
}

.barah-maha-verse {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  color: #1a1a4a;
  line-height: 2;
  max-width: 680px;
  margin: 0 auto;
}

:root {
  --ns-navy: #000099;
  --ns-navy-light: #e6e6ff;
  --ns-gold: #b8860b;
  --ns-eng-gray: #7f7f7f;
  --ns-border: #c8d8ef;
  --ns-header-bg: #f0f4fb;
  --ns-sun-bg: #fdf0f0;
  --ns-sat-bg: #f0f0fd;
  --ns-empty-bg: #fafbfd;
  --ns-radius: 16px;
  --ns-shadow: 0 4px 24px rgba(0, 0, 153, .09), 0 1px 4px rgba(0, 0, 0, .05);
}

.ns-cal-wrap {
  width: 100%;
  max-width: 880px;
  margin: 2rem auto 1rem;
  padding: 0 12px;
}

.ns-page-title {
  text-align: center;
  margin-bottom: 1rem;
}

.ns-page-title h3 {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.6rem, 1.8vw, 1rem);
  font-weight: 400;
  color: var(--ns-eng-gray);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.4;
}

.ns-cal-card {
  background: #fff;
  border-radius: var(--ns-radius);
  box-shadow: var(--ns-shadow);
  overflow: hidden;
  border: 1px solid var(--ns-border);
}

.ns-cal-header {
  background: linear-gradient(135deg, #dce8f8 0%, #eef3fb 50%, #e6eedf 100%);
  padding: clamp(0.7rem, 2.5vw, 1.4rem) clamp(0.7rem, 2.5vw, 1.8rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  border-bottom: 1.5px solid var(--ns-border);
  flex-wrap: wrap;
}

.ns-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
}

.ns-month-gurmukhi {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-weight: 700;
  color: var(--ns-navy);
  line-height: 1;
  display: block;
}

.ns-month-roman {
  font-size: clamp(0.68rem, 1.8vw, 0.88rem);
  color: var(--ns-eng-gray);
  letter-spacing: 0.04em;
  display: block;
}

.ns-year-pill {
  display: inline-block;
  margin-top: 5px;
  background: var(--ns-navy);
  color: #fff;
  font-size: clamp(0.55rem, 1.3vw, 0.68rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
}

.ns-header-meta {
  flex: 1 1 180px;
  align-self: stretch;
  min-height: clamp(80px, 12vw, 115px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-header-meta h4 {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--ns-navy);
  text-align: center;
  opacity: 0.75;
  margin: 0;
}

.ns-header-right {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 8px);
  flex: 0 0 auto;
  align-self: center;
}

.ns-meta-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ns-meta-label {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.6rem, 1.5vw, 0.76rem);
  font-weight: 700;
  color: var(--ns-navy);
  display: block;
}

.ns-meta-val {
  font-size: clamp(0.62rem, 1.5vw, 0.78rem);
  color: var(--ns-eng-gray);
  display: block;
}

.ns-header-ornament {
  font-size: clamp(1.6rem, 5vw, 3rem);
  color: var(--ns-gold);
  opacity: 0.5;
  user-select: none;
  line-height: 1;
  flex-shrink: 0;
  align-self: center;
}

.ns-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table.ns-cal {
  width: 100%;
  min-width: 290px;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0;
}

table.ns-cal thead tr {
  background: var(--ns-header-bg);
}

table.ns-cal thead th {
  padding: clamp(4px, 1.5vw, 9px) 1px;
  text-align: center;
  border-right: 0.5px solid var(--ns-border);
  border-bottom: 1.5px solid var(--ns-border);
  vertical-align: middle;
}

table.ns-cal thead th:last-child {
  border-right: none;
}

.ns-th-g {
  display: block;
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.6rem, 1.8vw, 0.88rem);
  font-weight: 700;
  color: var(--ns-navy);
  line-height: 1.2;
}

.ns-th-e {
  display: block;
  font-size: clamp(0.52rem, 1.3vw, 0.67rem);
  color: var(--ns-eng-gray);
  letter-spacing: 0.03em;
  margin-top: 1px;
}

table.ns-cal tbody tr {
  border-bottom: 0.5px solid var(--ns-border);
}

table.ns-cal tbody tr:last-child {
  border-bottom: none;
}

table.ns-cal tbody td {
  border-right: 0.5px solid var(--ns-border);
  padding: clamp(3px, 1.2vw, 7px) 1px;
  text-align: center;
  vertical-align: top;
  height: clamp(50px, 10vw, 72px);
  transition: background 0.15s;
}

table.ns-cal tbody td:last-child {
  border-right: none;
}

table.ns-cal tbody td:not(.ns-empty):hover {
  background: var(--ns-navy-light) !important;
  cursor: default;
}

table.ns-cal tbody td.ns-sun {
  background: var(--ns-sun-bg);
}

table.ns-cal tbody td.ns-sat {
  background: var(--ns-sat-bg);
}

table.ns-cal tbody td.ns-empty {
  background: var(--ns-empty-bg);
}

.ns-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.ns-date-g {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(1rem, 3.8vw, 1.65rem);
  font-weight: 700;
  color: var(--ns-navy);
  line-height: 1.05;
}

.ns-date-e {
  font-size: clamp(0.58rem, 1.5vw, 0.72rem);
  color: var(--ns-eng-gray);
  line-height: 1.3;
  font-family: "Crimson Pro", serif;
}

.ns-dot {
  width: clamp(3px, 0.8vw, 5px);
  height: clamp(3px, 0.8vw, 5px);
  border-radius: 50%;
  background: var(--ns-gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.ns-tag {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.48rem, 1.1vw, 0.58rem);
  color: var(--ns-gold);
  font-weight: 700;
  line-height: 1.2;
}

.ns-cal-footer {
  background: var(--ns-header-bg);
  border-top: 0.5px solid var(--ns-border);
  font-size: clamp(0.6rem, 1.4vw, 0.72rem);
  color: var(--ns-eng-gray);
  font-family: "Crimson Pro", Georgia, serif;
}

.ns-footer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 14px);
  padding: clamp(6px, 1.8vw, 10px) clamp(10px, 2.5vw, 18px);
}

.ns-footer-row + .ns-footer-row {
  border-top: 0.5px solid var(--ns-border);
}

.ns-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ns-leg-box {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  border: 0.5px solid var(--ns-border);
  flex-shrink: 0;
  display: inline-block;
}

.ns-footer-dates {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2.5vw, 20px);
  align-items: center;
}

.ns-fdi {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ns-fdi-label {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.6rem, 1.5vw, 0.74rem);
  font-weight: 700;
  color: var(--ns-navy);
  display: block;
}

.ns-fdi-val {
  font-size: clamp(0.6rem, 1.4vw, 0.72rem);
  color: var(--ns-eng-gray);
  display: block;
}

.ns-footer-sites {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 16px);
}

.ns-footer-sites a {
  font-size: clamp(0.58rem, 1.4vw, 0.7rem);
  color: var(--ns-navy);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.8;
}

.ns-footer-sites a:hover {
  opacity: 1;
  text-decoration: underline;
}

.ns-fw-sep {
  color: var(--ns-border);
  font-size: 0.8rem;
}

.ns-footer-info {
  font-size: clamp(0.56rem, 1.3vw, 0.68rem);
  color: #aaa;
  font-style: italic;
  margin-left: auto;
}

.ns-disclaimer {
  font-size: 10px;
  color: #ababab;
  padding: 6px clamp(10px, 2.5vw, 18px);
  border-top: 0.5px solid var(--ns-border);
  line-height: 1.5;
  font-family: "Noto Sans Gurmukhi", sans-serif;
}

.events-wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 1.5rem;
  padding: 0 12px;
}

.events-card {
  background: #fff;
  border-radius: var(--ns-radius);
  box-shadow: var(--ns-shadow);
  border: 1px solid var(--ns-border);
  overflow: hidden;
}

.events-section {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ns-border);
}

.events-section:last-child {
  border-bottom: none;
}

.events-section-title {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 700;
  color: #fff;
  background: #0a0a5c;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.events-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 0.5px dashed var(--ns-border);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
}

.events-list li:last-child {
  border-bottom: none;
}

.ev-name {
  font-family: "Noto Sans Gurmukhi", sans-serif;
  color: #1a1a4a;
  flex: 1;
  padding-right: 12px;
  line-height: 1.5;
}

.ev-date {
  font-family: "Crimson Pro", serif;
  color: var(--ns-gold);
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(0.75rem, 1.8vw, 0.88rem);
}

.bottom-tabs {
  max-width: 880px;
  margin: 1.2rem auto 0;
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  position: relative;
}

.bottom-tabs a {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #c8d8ef;
  color: #0a0a5c;
  font-family: "Crimson Pro", serif;
  font-size: clamp(0.72rem, 2vw, 0.9rem);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}

.bottom-tabs a:hover {
  background: #0a0a5c;
  color: #fff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #c8d8ef;
  color: #0a0a5c;
  font-family: "Crimson Pro", serif;
  font-size: clamp(0.72rem, 2vw, 0.9rem);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}

.dropdown-btn:hover {
  background: #0a0a5c;
  color: #fff;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* FIXED */
  left: 0;
  background: #fff;
  border: 1.5px solid #c8d8ef;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 100, 0.13);
  min-width: 200px;
  z-index: 9999;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-family: "Noto Sans Gurmukhi", sans-serif;
  font-size: clamp(0.72rem, 1.8vw, 0.85rem);
  color: #0a0a5c;
  text-decoration: none;
  border-bottom: 0.5px solid #e8edf5;
  transition: background 0.12s;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #e6e6ff;
}

.dropdown-menu a.active {
  background: #0a0a5c;
  color: #fff;
  font-weight: 700;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.month-nav {
  max-width: 880px;
  margin: 1rem auto 2.5rem;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.month-nav a {
  background: #f0f2f7;
  border: 1.5px solid #c8d8ef;
  color: #0a0a5c;
  font-family: "Crimson Pro", serif;
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.month-nav a:hover {
  background: #0a0a5c;
  color: #fff;
}

@media (max-width: 360px) {
  .ns-th-e {
    display: none;
  }
  .ns-header-ornament {
    display: none;
  }
}
@media print {
  .ns-cal-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
:root {
  --deep-blue: #0a2342;
  --mid-blue: #1a3a6b;
  --light-blue: #e8eef7;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --gold-pale: #fdf3e3;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text-dark: #0a2342;
  --text-mid: #3a4a6b;
  --text-light: #6b7a99;
  --border: #dde3ef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Crimson Pro", serif;
}

/* ── NAVBAR ── */
.main-navbar {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(10, 35, 66, 0.08);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}

.nav-link-top {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 18px 14px !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}

.nav-link-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-link-top:hover {
  color: var(--gold) !important;
}

.nav-link-top:hover::after {
  transform: scaleX(1);
}

/* ── MEGA MENU ── */
/* KEY FIX: position relative so dropdown's top:100% is relative to wrapper,
   and the hover zone fully wraps both the link AND the dropdown */
.mega-menu-wrapper {
  position: relative; /* ← was: static */
}

.mega-dropdown {
  position: fixed;
  left: 0;
  right: 0;
  width: auto; /* ← NOT 100vw, let left:0 + right:0 define the width */
  top: auto;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(10, 35, 66, 0.12);
  padding: 32px 0;
  display: none;
  z-index: 999;
}

/* Invisible bridge — fills the border-bottom gap on navbar */
.mega-dropdown::before {
  content: "";
  position: absolute;
  top: -8px; /* covers navbar border-bottom(2px) + dropdown border-top(3px) + 3px buffer */
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.mega-col-title {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px !important;
  margin-bottom: 20px !important;
}

.mega-link {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.mega-link:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* ── STANDARD DROPDOWN ── */
.std-dropdown {
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  padding: 8px 0;
  min-width: 220px;
}

.std-dropdown .dropdown-item {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 7px 20px;
  transition: all 0.2s;
}

.std-dropdown .dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 26px;
}

/* ── SUBMENU FIX ── */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -8px;
  min-width: 160px;
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  padding: 8px 0;
  z-index: 1100;
}

.dropdown-submenu > .dropdown-item::after {
  content: "›";
  float: right;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
  margin-top: 1px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu.open-left .dropdown-menu {
  left: auto;
  right: 100%;
}

.dropdown-submenu .dropdown-menu .dropdown-item {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 6px 18px;
  transition: all 0.2s;
}

.dropdown-submenu .dropdown-menu .dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 24px;
}

/* ── TOGGLER ── */
.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2342' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── MOBILE ── */
@media (max-width: 1199px) {
  .mega-menu-wrapper {
    position: static; /* reset on mobile — dropdown goes full width */
  }
  .mega-dropdown {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-top: 3px solid var(--gold);
  }
  .mega-dropdown::before {
    display: none;
  } /* no bridge needed on mobile */
  .mega-menu-wrapper.mega-open .mega-dropdown {
    display: block;
  }
  .mega-menu-wrapper:hover .mega-dropdown {
    display: none;
  } /* disable CSS hover on mobile */
  .dropdown-submenu .dropdown-menu {
    position: static;
    left: 0;
    top: 0;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    margin-left: 16px;
    margin-top: 0;
    padding: 4px 0;
    display: none;
  }
  .dropdown-submenu.mobile-open > .dropdown-menu {
    display: block;
  }
}
/* ── MISC ── */
.demo-body {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.myNav * {
  font-size: 15px !important;
}

.mega-dropdown {
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
}

.khanda {
  background: url(../../image-gallery/golden-temple/khanda.webp) no-repeat center fixed;
  min-height: 500px;
}

.ptb25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.ptb50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.border-right {
  border-right: 0.01em solid #CCC;
}

.border-left {
  border-left: 0.01em solid #CCC;
}

.bottomDisclosure {
  background: var(--deep-blue);
  border-top: 0.01em solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 10px solid var(--gold);
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ==================== social share buttons starts ========================== */
.social-share-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 8px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #eaeef2;
  max-width: fit-content;
  margin: 20px auto;
}

.social-share-container .share-label {
  color: rgba(0, 36, 74, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #eaeef2;
}

@media (max-width: 480px) {
  .social-share-container .share-label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eaeef2;
    padding-bottom: 8px;
    margin-bottom: 8px;
    text-align: center;
  }
}
.social-share-container .social-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #eaeef2;
  background: white;
}

.social-share-container .social-btn i {
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.social-share-container .social-btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.social-share-container .social-btn.facebook i {
  color: #3b5998;
}

.social-share-container .social-btn.facebook:hover {
  background: #3b5998;
}

.social-share-container .social-btn.facebook:hover i {
  color: white;
}

.social-share-container .social-btn.instagram i {
  color: #e4405f;
}

.social-share-container .social-btn.instagram:hover {
  background: #e4405f;
}

.social-share-container .social-btn.instagram:hover i {
  color: white;
}

.social-share-container .social-btn.x-twitter i {
  color: #000000;
}

.social-share-container .social-btn.x-twitter:hover {
  background: #000000;
}

.social-share-container .social-btn.x-twitter:hover i {
  color: white;
}

.social-share-container .social-btn.linkedin i {
  color: #0077b5;
}

.social-share-container .social-btn.linkedin:hover {
  background: #0077b5;
}

.social-share-container .social-btn.linkedin:hover i {
  color: white;
}

.social-share-container .social-btn.email i {
  color: #7f7f7f;
}

.social-share-container .social-btn.email:hover {
  background: #7f7f7f;
}

.social-share-container .social-btn.email:hover i {
  color: white;
}

.social-share-container .social-btn.telegram i {
  color: #0088cc;
}

.social-share-container .social-btn.telegram:hover {
  background: #0088cc;
}

.social-share-container .social-btn.telegram:hover i {
  color: white;
}

.social-share-container.minimal {
  background: transparent;
  border: none;
  padding: 10px;
  gap: 10px;
}

.social-share-container.minimal .share-label {
  border-right: none;
  color: rgba(0, 36, 74, 0.5);
}

.social-share-container.minimal .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  background: white;
}

.social-share-container.minimal .social-btn i {
  font-size: 1.1rem;
  opacity: 0.7;
}

.social-share-container.minimal .social-btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.social-share-container.minimal .social-btn:hover i {
  opacity: 1;
}

.social-share-container.pill-style {
  background: rgba(248, 249, 250, 0.8);
  border-radius: 40px;
  padding: 10px 25px;
}

.social-share-container.pill-style .social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ddd;
}

.social-share-container.pill-style .social-btn:hover {
  border-color: transparent;
}

.social-share-container.light-bg {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .social-share-container {
    gap: 8px;
    padding: 12px 15px;
  }
  .social-share-container .social-btn {
    width: 38px;
    height: 38px;
  }
  .social-share-container .social-btn i {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .social-share-container {
    width: 100%;
    justify-content: center;
  }
  .social-share-container .social-btn {
    width: 36px;
    height: 36px;
  }
}
/* ==================== social share buttons ends ========================== */
.sectionTitle .borderlr {
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 10px;
  width: 90%;
  margin: 0 auto !important;
  padding: 15px 25px;
}
.sectionTitle .borderlr p {
  text-align: justify !important;
}

.sectionBlock {
  margin-top: 60px;
  margin-bottom: 60px;
}
.sectionBlock p {
  padding-left: 20px;
}

/* ==================== social share buttons ends ========================== */
.ctaContainer {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 0.01em solid #CCC;
  /*background: linear-gradient(0deg, rgba(255, 247, 230, 0.4), rgba(255, 255, 255, 0.2));*/
  padding: 20px;
  text-align: center;
}
.ctaContainer .ctaContainerTop * {
  font-size: 13px !important;
}
.ctaContainer .ctaContainerBottom {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(201, 162, 39, 0.4);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.ctaContainer .ctaContainerBottom .btn {
  min-width: 100%;
  margin: 8px 12px;
}
.ctaContainer .ctaContainerBottom * {
  font-size: 13px !important;
}
.ctaContainer * {
  text-align: center !important;
}
.ctaContainer {
  opacity: 0.7 !important;
}

/* ==================== social share buttons ends ========================== */
.btn-gold-outline {
  padding: 4px 18px;
  border: 0.01em solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  clear: both;
}
.btn-gold-outline:hover {
  background: var(--gold-light);
  color: #fff !important;
}

/* ==================== social share buttons ends ========================== */
.cta-subtitle {
  display: flex;
  align-items: center;
  text-align: center;
  color: #d28c1f; /* your orange tone */
  font-style: italic;
  font-size: 20px;
  margin: 10px 0 15px;
}

.cta-subtitle::before,
.cta-subtitle::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--gold);
  margin: 0 15px;
}

/* ==================== social share buttons ends ========================== */
.myBreadcrumb {
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

/* ==================== social share buttons ends ========================== */
.faqs {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.faqs h3 {
  font-size: 16px;
}
.faqs p {
  border-left: 1px solid #3a4a6b !important;
  padding-left: 20px;
  font-size: 13px;
}

/* ==================== social share buttons ends ========================== */
.shortLi a {
  font-size: 12px;
  line-height: 1.1;
  margin-bottom: 11px;
}

/* ==================== social share buttons ends ========================== */
.sv-tag-bar {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--sv-border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sv-tag-label {
  font-size: 11px;
  color: var(--sv-khaki);
  font-family: var(--sv-font-sans);
}

.sv-tag {
  font-size: 11px;
  background: var(--sv-gold-light);
  color: var(--sv-bark-mid);
  border: 0.5px solid rgba(196, 154, 60, 0.35);
  border-radius: 20px;
  padding: 3px 10px;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none !important;
  font-family: var(--sv-font-sans);
}

.sv-tag:hover {
  background: rgba(196, 154, 60, 0.25);
  color: var(--sv-bark);
}

/* ==================== social share buttons ends ========================== */
.btn-sv-search {
  width: 36px;
  height: 36px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-sv-search:hover {
  background: var(--gold);
  color: white;
}

.myCard {
  /*background-color: rgba(248, 249, 250, 0.6) !important;*/
  /*border: .01em solid #CCC;*/
  border-radius: 10px;
  /*padding: 5px;*/
  margin-bottom: 30px;
}
.myCard ul, .myCard h4 {
  margin: 0 auto;
}
.myCard li {
  font-size: 12px !important;
}
.myCard .badge {
  background-color: #003885;
  width: 70%;
  display: block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
  margin: 0 auto;
}
.myCard i.bi-heart-fill {
  color: #c9a227;
}
.myCard .btn-gold {
  display: inline-block;
  padding: 5px 15px;
  border: 0.1em solid #c9a227;
  color: #1f2933;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.myCard .btn-gold:hover {
  background-color: rgba(197, 164, 91, 0.65);
  color: #ffffff;
  transform: translateY(-2px);
}
.myCard * {
  font-size: 12px;
  font-weight: 500 !important;
  text-align: left;
}
.myCard h3 {
  font-size: 18px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 500 !important;
  color: var(--text-body) !important;
  overflow-x: hidden;
  background-color: rgb(231, 233, 235) !important;
  font-size: var(--body-font);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 400 !important;
}

h2 {
  font-size: 30px;
  color: var(--mid-blue);
}

h3 {
  font-size: 22px;
  color: var(--gold);
}

p {
  text-align: justify;
  font-size: var(--body-font) !important;
}

figcaption {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  /*border-bottom:.01em solid rgba(0,0,0,0.1);*/
  color: inherit !important;
}
a:hover {
  color: var(--gold) !important;
}

@media (max-width: 576px) {
  .hero-search {
    padding: 4px 4px 4px 20px;
  }
  .hero-search, .hero-subscribe {
    gap: 0;
  }
  .hero-subscribe {
    justify-content: space-between;
  }
  .sikhVerselogo1 {
    max-width: 150px;
  }
}
/* ── Chapter Card Grid ── */
.rehat-chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.rehat-chapter-card {
  border: 1px solid rgba(224, 201, 127, 0.4);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 244, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.rehat-chapter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.rehat-chapter-num {
  background: var(--mid-blue);
  color: var(--off-white);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rehat-chapter-body {
  padding: 1rem;
}

.rehat-chapter-body h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #2c1a00;
}

.rehat-chapter-body p {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.btn-rehat {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--mid-blue);
  color: var(--off-white) !important;
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-rehat:hover {
  background: #8b6508;
  color: #fff;
}

/* ── Index Table ── */
.rehat-index-table {
  overflow-x: auto;
  margin-top: 1rem;
}

.rehat-index-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rehat-index-table th {
  background: var(--mid-blue);
  color: #fff;
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-weight: 600;
}

.rehat-index-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid #e9e0cc;
  color: #333;
}

.rehat-index-table tr:hover td {
  background: #fdf8ec;
}

.rehat-index-table a {
  color: #b8860b;
  font-weight: 600;
  text-decoration: none;
}

.rehat-index-table a:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 0.8rem;
}

.faq-item {
  border-bottom: 1px solid #e9dfc5;
  padding: 0.9rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: #2c1a00;
  margin: 0 0 0.4rem;
}

.faq-answer {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .rehat-chapter-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
