:root {
  --primary: #8b5e3c;
  --secondary: #c49a6c;
  --gold: #f4c542;
  --bg: #fff8f0;
  --white: #ffffff;
  --dark: #222;
  --text: #555;
  --border: #ece4d8;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.9;
  font-size: 17px;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/*==========================
SCROLLBAR
==========================*/
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--gold));
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background: #eee;
}

/*==========================
TOP HERO
==========================*/
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 18, 18, 0.55), rgba(18, 18, 18, 0.72)),
    url("/images/sanatan-dharma/mahakavya/mahabharata/bhagavada-geeta/chapter-1/image.webp")
      left center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 950px;
  text-align: center;
  color: #fff;
  padding: 30px;
}

.breadcrumb-1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.breadcrumb-1 a {
  color: #fff;
  transition: 0.3s;
}

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

.hero h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h2 {
  font-size: 34px;
  font-weight: 500;
  color: #ffd76d;
  margin-bottom: 25px;
}

.hero p {
  font-size: 20px;
  max-width: 760px;
  margin: auto;
  opacity: 0.95;
  color: #c5fcda;
}

.hero-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd76d, #f4a300);
  color: #222;
  font-weight: 700;
  transition: 0.35s;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
  transform: translateY(-5px);
}

/*==========================
SECTION
==========================*/
.section {
  padding: 90px 0;
}
.section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-sub {
  text-align: center;
  max-width: 850px;
  margin: auto;
  color: var(--text);
  margin-bottom: 60px;
}

/*==========================
QUICK FACTS
==========================*/

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.fact {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s;
  border: 1px solid var(--border);
}

.fact:hover {
  transform: translateY(-10px);
}

.fact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary);
}

.fact p {
  font-weight: 600;
  color: #444;
}

/*==========================
RESPONSIVE
==========================*/
@media (max-width: 991px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero h2 {
    font-size: 28px;
  }
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h2 {
    font-size: 23px;
  }

  .hero p {
    font-size: 17px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
  }
}

/*==========================
CONTENT BOX
==========================*/

.content-box {
  background: #fff;
  border-radius: 22px;
  padding: 45px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.content-box p {
  margin-bottom: 22px;
  color: #555;
  font-size: 18px;
}

.highlight {
  background: linear-gradient(90deg, #fff6d5, #fff);
  border-left: 6px solid var(--gold);
  padding: 25px;
  border-radius: 14px;
  margin: 35px 0;
}

.highlight h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.toc-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.toc-card:hover {
  transform: translateY(-6px);
}

.toc-card span {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.toc-card h3 {
  color: var(--primary);
  font-size: 20px;
}

/*==========================================
        CHAPTER SUMMARY
==========================================*/

.gsr-summary-section {
  padding: 90px 20px;

  background: linear-gradient(180deg, #fffdf7 0%, #fff8ec 100%);
}

.gsr-summary-card {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 220px 1fr;

  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);

  border: 1px solid rgba(191, 148, 74, 0.18);
}

.gsr-summary-side {
  background: linear-gradient(180deg, #8d5524, #5f3819);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  padding: 50px 20px;

  position: relative;
}

.gsr-summary-side::after {
  content: "";

  position: absolute;

  right: 0;

  top: 0;

  width: 5px;

  height: 100%;

  background: #ffd26a;
}

.gsr-summary-icon {
  width: 95px;

  height: 95px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 46px;

  margin-bottom: 22px;

  border: 2px solid rgba(255, 255, 255, 0.25);
}

.gsr-summary-side span {
  font-size: 18px;

  letter-spacing: 1px;

  opacity: 0.95;
}

.gsr-summary-content {
  padding: 60px;
}

.gsr-heading span {
  color: #a26b1f;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 15px;
}

.gsr-heading h2 {
  margin: 12px 0 35px;

  font-size: 42px;

  color: #44250f;

  line-height: 1.2;
}

.gsr-summary-content article {
  display: grid;

  gap: 22px;
}

.gsr-summary-content p {
  font-size: 18px;

  line-height: 2;

  color: #444;

  text-align: justify;
}

.gsr-summary-content strong {
  color: #8d5524;
}

@media (max-width: 992px) {
  .gsr-summary-card {
    grid-template-columns: 1fr;
  }

  .gsr-summary-side {
    padding: 45px 25px;
  }

  .gsr-summary-side::after {
    display: none;
  }

  .gsr-summary-content {
    padding: 40px 30px;
  }

  .gsr-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .gsr-summary-section {
    padding: 70px 15px;
  }

  .gsr-summary-content {
    padding: 30px 22px;
  }

  .gsr-heading h2 {
    font-size: 28px;
  }

  .gsr-summary-content p {
    font-size: 16px;

    line-height: 1.9;
  }

  .gsr-summary-icon {
    width: 75px;

    height: 75px;

    font-size: 34px;
  }
}

/*==========================================
        BATTLE BACKGROUND
==========================================*/

.gsr-background-section {
  padding: 90px 20px;

  background: #fffdf8;
}

.gsr-section-heading {
  max-width: 900px;

  margin: auto;

  text-align: center;

  margin-bottom: 60px;
}

.gsr-section-heading span {
  display: inline-block;

  color: #9b6b26;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.gsr-section-heading h2 {
  font-size: 42px;

  color: #47270f;

  margin: 15px 0 20px;
}

.gsr-section-heading p {
  font-size: 18px;

  line-height: 1.9;

  color: #555;
}

.gsr-background-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  max-width: 1200px;

  margin: auto;
}

.gsr-bg-card {
  background: #fff;

  border-radius: 24px;

  padding: 35px;

  border: 1px solid rgba(180, 130, 60, 0.15);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

  position: relative;

  transition: 0.35s;
}

.gsr-bg-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.gsr-bg-number {
  width: 58px;

  height: 58px;

  border-radius: 50%;

  background: linear-gradient(135deg, #d6a84e, #8d5524);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 20px;

  margin-bottom: 22px;
}

.gsr-bg-card h3 {
  color: #5b3517;

  font-size: 24px;

  margin-bottom: 15px;
}

.gsr-bg-card p {
  color: #555;

  line-height: 1.9;

  font-size: 17px;

  text-align: justify;
}

@media (max-width: 900px) {
  .gsr-background-grid {
    grid-template-columns: 1fr;
  }

  .gsr-section-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .gsr-background-section {
    padding: 70px 15px;
  }

  .gsr-bg-card {
    padding: 28px;
  }

  .gsr-section-heading h2 {
    font-size: 28px;
  }

  .gsr-section-heading p {
    font-size: 16px;
  }

  .gsr-bg-card h3 {
    font-size: 21px;
  }

  .gsr-bg-card p {
    font-size: 16px;
  }
}

/*==========================================================
            MAIN CHARACTERS
==========================================================*/

.gsr-characters {
  padding: 90px 20px;

  background: #fffaf3;
}

.gsr-container {
  max-width: 1250px;

  margin: auto;
}

.gsr-section-title {
  max-width: 850px;

  margin: auto;

  text-align: center;

  margin-bottom: 60px;
}

.gsr-section-title span {
  display: inline-block;

  background: #fff2d7;

  color: #8b5a1f;

  padding: 8px 18px;

  border-radius: 40px;

  font-weight: 700;

  margin-bottom: 18px;
}

.gsr-section-title h2 {
  font-size: 42px;

  color: #44230d;

  margin-bottom: 18px;
}

.gsr-section-title p {
  color: #666;

  line-height: 1.9;

  font-size: 18px;
}

.gsr-character-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 28px;
}

.gsr-character-card {
  background: #fff;

  border-radius: 24px;

  padding: 35px;

  border: 1px solid #eadcc3;

  transition: 0.35s;

  position: relative;

  overflow: hidden;
}

.gsr-character-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 6px;

  background: linear-gradient(90deg, #c58a33, #ffcf75);
}

.gsr-character-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.gsr-icon {
  width: 75px;

  height: 75px;

  border-radius: 50%;

  background: #fff5e2;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  margin-bottom: 22px;
}

.gsr-character-card h3 {
  color: #4b2d13;

  margin-bottom: 8px;

  font-size: 28px;
}

.gsr-character-card span {
  display: inline-block;

  color: #a56616;

  font-weight: 700;

  margin-bottom: 18px;
}

.gsr-character-card p {
  color: #555;

  line-height: 1.9;

  text-align: justify;
}

.featured {
  border: 2px solid #d59b43;

  background: linear-gradient(180deg, #fffef9, #fff5df);
}

.featured .gsr-icon {
  background: #f5d99c;
}

@media (max-width: 768px) {
  .gsr-section-title h2 {
    font-size: 30px;
  }

  .gsr-section-title p {
    font-size: 16px;
  }

  .gsr-character-card {
    padding: 28px;
  }

  .gsr-character-card h3 {
    font-size: 24px;
  }
}

/*=========================================================
        MAIN EVENTS
=========================================================*/

.gsr-events-section {
  padding: 90px 20px;

  background: #fcf8f1;
}

.gsr-container {
  max-width: 1200px;

  margin: auto;
}

.gsr-section-heading {
  text-align: center;

  max-width: 820px;

  margin: 0 auto 70px;
}

.gsr-section-heading span {
  display: inline-block;

  background: #fff3d6;

  color: #8a5d20;

  padding: 8px 18px;

  border-radius: 30px;

  font-weight: 700;

  margin-bottom: 18px;
}

.gsr-section-heading h2 {
  font-size: 42px;

  color: #4a2d12;

  margin-bottom: 20px;
}

.gsr-section-heading p {
  color: #666;

  line-height: 1.9;

  font-size: 18px;
}

.gsr-events-timeline {
  position: relative;

  margin-left: 35px;
}

.gsr-events-timeline::before {
  content: "";

  position: absolute;

  left: 24px;

  top: 0;

  width: 4px;

  height: 100%;

  background: linear-gradient(#d9a54a, #8b5e34);
}

.gsr-event-card {
  display: flex;

  gap: 25px;

  margin-bottom: 40px;

  position: relative;
}

.gsr-event-number {
  min-width: 52px;

  height: 52px;

  border-radius: 50%;

  background: linear-gradient(135deg, #d9a54a, #9b6229);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  z-index: 2;

  box-shadow: 0 0 0 6px #fcf8f1;
}

.gsr-event-content {
  flex: 1;

  background: #fff;

  border-radius: 18px;

  padding: 25px 28px;

  border: 1px solid #ecdcc0;

  transition: 0.35s;
}

.gsr-event-content:hover {
  transform: translateX(8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gsr-event-content h3 {
  color: #4a2d12;

  margin-bottom: 12px;

  font-size: 24px;
}

.gsr-event-content p {
  color: #555;

  line-height: 1.9;

  text-align: justify;
}

@media (max-width: 768px) {
  .gsr-events-timeline {
    margin-left: 10px;
  }

  .gsr-section-heading h2 {
    font-size: 30px;
  }

  .gsr-event-content {
    padding: 20px;
  }

  .gsr-event-content h3 {
    font-size: 20px;
  }

  .gsr-event-content p {
    font-size: 15px;
  }
}

/*=========================================================
            MAIN TEACHINGS
=========================================================*/

.gsr-teachings-section {
  padding: 90px 20px;

  background: linear-gradient(180deg, #fffdf8, #fff6eb);
}

.gsr-container {
  max-width: 1200px;

  margin: auto;
}

.gsr-section-heading {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 60px;
}

.gsr-section-heading span {
  display: inline-block;

  background: #fff1d2;

  color: #9a6423;

  padding: 8px 18px;

  border-radius: 30px;

  font-weight: 700;

  margin-bottom: 18px;
}

.gsr-section-heading h2 {
  font-size: 42px;

  color: #4d2d10;

  margin-bottom: 18px;
}

.gsr-section-heading p {
  color: #666;

  line-height: 1.9;

  font-size: 18px;
}

.gsr-teaching-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 28px;
}

.gsr-teaching-card {
  background: #fff;

  border-radius: 22px;

  padding: 32px;

  border: 1px solid #eadcc3;

  transition: 0.35s;
}

.gsr-teaching-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.gsr-teaching-icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #fff3db;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 32px;

  margin-bottom: 20px;
}

.gsr-teaching-card h3 {
  color: #4b2b12;

  margin-bottom: 15px;

  font-size: 24px;
}

.gsr-teaching-card p {
  color: #555;

  line-height: 1.9;

  text-align: justify;
}

@media (max-width: 768px) {
  .gsr-section-heading h2 {
    font-size: 30px;
  }

  .gsr-section-heading p {
    font-size: 16px;
  }

  .gsr-teaching-card {
    padding: 25px;
  }

  .gsr-teaching-card h3 {
    font-size: 21px;
  }

  .gsr-teaching-card p {
    font-size: 15px;
  }
}

/*==========================
CHARACTERS
==========================*/

.character-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 28px;

  margin-top: 50px;
}

.character {
  background: #fff;

  padding: 35px;

  border-radius: 20px;

  text-align: center;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);

  transition: 0.35s;
}

.character:hover {
  transform: translateY(-8px);
}

.character .icon {
  width: 90px;

  height: 90px;

  margin: auto;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 42px;

  background: linear-gradient(135deg, #ffe9a6, #f4c542);

  margin-bottom: 22px;
}

.character h3 {
  margin-bottom: 12px;

  color: #8b5e3c;

  font-size: 24px;
}

.character p {
  font-size: 16px;

  color: #555;
}


/*=========================================================
        MODERN RELEVANCE
=========================================================*/

.gsr-life-section{

    padding:90px 20px;

    background:linear-gradient(180deg,#fff8ef,#fffdfb);

}

.gsr-life-heading{

    max-width:850px;

    margin:auto;

    text-align:center;

    margin-bottom:60px;

}

.gsr-life-heading span{

    display:inline-block;

    background:#fff2d8;

    color:#9b6320;

    padding:8px 20px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:18px;

}

.gsr-life-heading h2{

    font-size:42px;

    color:#4d2d11;

    margin-bottom:20px;

}

.gsr-life-heading p{

    color:#666;

    line-height:1.9;

    font-size:18px;

}

.gsr-life-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

}

.gsr-life-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    border:1px solid #ead8b8;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.gsr-life-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#d8a74f,#8b5d2d);

}

.gsr-life-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.gsr-life-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#fff4de;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

}

.gsr-life-card h3{

    color:#4b2d13;

    font-size:24px;

    margin-bottom:15px;

}

.gsr-life-card p{

    color:#555;

    line-height:1.9;

    text-align:justify;

}

@media(max-width:768px){

.gsr-life-heading h2{

font-size:30px;

}

.gsr-life-heading p{

font-size:16px;

}

.gsr-life-card{

padding:28px;

}

.gsr-life-card h3{

font-size:21px;

}

.gsr-life-card p{

font-size:15px;

}

}
/*==========================
CTA
==========================*/

.cta-box {
  background: linear-gradient(135deg, #8b5e3c, #5f3d23);

  color: #fff;

  padding: 60px;

  border-radius: 25px;

  text-align: center;

  margin-top: 70px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
  font-size: 40px;

  margin-bottom: 20px;
}

.cta-box p {
  font-size: 19px;

  max-width: 850px;

  margin: auto;

  opacity: 0.95;
}

.cta-btn {
  display: inline-block;

  margin-top: 35px;

  padding: 16px 38px;

  background: #ffd76d;

  color: #222;

  font-weight: 700;

  border-radius: 50px;

  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

/*==========================
FAQ
==========================*/

.faq-wrap {
  max-width: 900px;

  margin: auto;
}

.faq-item {
  background: #fff;

  margin-bottom: 18px;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);
}

.faq-question {
  padding: 22px 28px;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 20px;

  font-weight: 600;

  color: var(--primary);
}

.faq-question span {
  font-size: 30px;

  transition: 0.3s;
}

.faq-answer {
  display: none;

  padding: 0 28px 28px;

  font-size: 17px;

  color: #555;

  line-height: 1.9;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active span {
  transform: rotate(45deg);
}

/*==========================

NEXT CHAPTER

==========================*/

.next-chapter {
  margin-top: 80px;

  background: linear-gradient(135deg, #fff, #fff9ed);

  padding: 45px;

  border-radius: 25px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);
}

.next-btn {
  padding: 15px 35px;

  background: linear-gradient(135deg, #f4c542, #d99800);

  border-radius: 40px;

  font-weight: 700;

  color: #222;

  transition: 0.3s;
}

.next-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .next-chapter {
    flex-direction: column;

    text-align: center;
  }
}

/* Modern colorful chapter redesign */
:root {
  --primary: #3a0ca3;
  --secondary: #118ab2;
  --gold: #ffd166;
  --bg: #fff8ea;
  --white: #ffffff;
  --dark: #1f2937;
  --text: #5b6472;
  --border: rgba(31, 41, 55, 0.12);
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.1);
  --radius: 8px;
  --saffron: #ff9f1c;
  --marigold: #ffd166;
  --rose: #ef476f;
  --peacock: #118ab2;
  --leaf: #06d6a0;
  --indigo: #3a0ca3;
  --violet: #7209b7;
  --cream: #fff8ea;
  --paper: #ffffff;
  --ink: #1f2937;
  --muted: #5b6472;
  --line: rgba(31, 41, 55, 0.12);
  --shadow-strong: 0 28px 70px rgba(31, 41, 55, 0.18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  background:
    linear-gradient(180deg, #fff8ea 0%, #f7fbff 38%, #fff6fa 74%, #fff8ea 100%);
  color: var(--ink);
  font-family: "Poppins", "Noto Sans Devanagari", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.container,
.gsr-container {
  margin: auto;
  max-width: none;
  width: min(1180px, 92%);
}

::-webkit-scrollbar-track {
  background: #f3ead8;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose), var(--saffron), var(--peacock));
  border-radius: 999px;
}

.hero {
  background:
    linear-gradient(120deg, rgba(18, 24, 38, 0.9), rgba(58, 12, 163, 0.72) 48%, rgba(17, 138, 178, 0.58)),
    url("/images/sanatan-dharma/mahakavya/mahabharata/bhagavada-geeta/chapter-1/image.webp") left center / cover no-repeat;
  min-height: 92vh;
  padding: 120px 16px 96px;
}

.hero::after {
  background: linear-gradient(to top, var(--cream), rgba(255, 248, 234, 0));
  height: 130px;
}

.hero-content {
  max-width: 980px;
  padding: 0;
}

.breadcrumb-1 {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  display: inline-flex;
  gap: 9px;
  margin-bottom: 28px;
  opacity: 1;
  padding: 10px 18px;
}

.breadcrumb-1 a,
.breadcrumb-1 strong,
.breadcrumb-1 span {
  color: #fff;
  font-size: 14px;
}

.breadcrumb-1 a:hover {
  color: var(--marigold);
}

.hero-tag {
  align-items: center;
  background: linear-gradient(135deg, var(--marigold), var(--saffron));
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(255, 159, 28, 0.35);
  color: #2b1700;
  display: inline-flex;
  font-size: 30px;
  height: 70px;
  justify-content: center;
  margin-bottom: 14px;
  width: 70px;
}

.hero-kicker {
  color: #fff4bb;
  display: block;
  font-weight: 800;
  margin: 0 auto 16px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.hero-title-accent {
  color: var(--marigold);
}

.hero p {
  color: #ebfff8;
  font-size: 20px;
  margin: auto;
  max-width: 780px;
}

.hero-shloka {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: #ffe5ef;
  font-weight: 700;
  margin: 22px auto;
  padding: 16px 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.hero-btn,
.next-btn {
  align-items: center;
  background: linear-gradient(135deg, var(--marigold), var(--saffron));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(255, 159, 28, 0.28);
  color: #241500;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: 0;
  min-height: 52px;
  padding: 13px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn.secondary {
  background: linear-gradient(135deg, var(--leaf), var(--peacock));
  box-shadow: 0 16px 32px rgba(17, 138, 178, 0.28);
  color: #ffffff;
}

.hero-btn:hover,
.next-btn:hover {
  box-shadow: 0 22px 44px rgba(31, 41, 55, 0.18);
  transform: translateY(-4px);
}

.section,
.gsr-summary-section,
.gsr-background-section,
.gsr-characters,
.gsr-events-section,
.gsr-teachings-section,
.gsr-life-section {
  padding: 88px 0;
}

.section:nth-of-type(2),
.gsr-background-section,
.gsr-events-section,
.faq-section {
  background: linear-gradient(180deg, rgba(17, 138, 178, 0.08), rgba(255, 255, 255, 0.92));
}

.gsr-summary-section,
.gsr-teachings-section,
.next-chapter {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(6, 214, 160, 0.12), rgba(239, 71, 111, 0.12));
}

.gsr-characters,
.gsr-life-section,
.shloka-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(114, 9, 183, 0.07));
}

.section-title,
.gsr-section-heading h2,
.gsr-section-title h2,
.gsr-life-heading h2,
.shloka-header h2 {
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub,
.gsr-section-heading p,
.gsr-section-title p,
.gsr-life-heading p,
.shloka-header p {
  color: var(--muted);
  font-size: 18px;
  margin: auto;
  max-width: 850px;
  text-align: center;
}

.section-sub {
  margin-bottom: 54px;
}

.gsr-section-heading,
.gsr-section-title,
.gsr-life-heading,
.shloka-header {
  margin: 0 auto 58px;
  max-width: 900px;
  text-align: center;
}

.gsr-section-heading span,
.gsr-section-title span,
.gsr-life-heading span,
.shloka-header span {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.95), rgba(239, 71, 111, 0.18));
  border: 1px solid rgba(239, 71, 111, 0.18);
  border-radius: 999px;
  color: #7a2f00;
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 16px;
  padding: 8px 18px;
  text-transform: none;
}

.toc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.toc-card,
.gsr-bg-card,
.gsr-character-card,
.gsr-event-content,
.gsr-teaching-card,
.gsr-life-card,
.shloka-card,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.toc-card {
  min-height: 126px;
  padding: 24px;
}

.toc-card::before,
.gsr-character-card::before,
.gsr-teaching-card::before,
.gsr-life-card::before,
.shloka-card::before {
  background: var(--card-color, var(--saffron));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.toc-card:nth-child(2n),
.gsr-character-card:nth-child(2n),
.gsr-teaching-card:nth-child(2n),
.gsr-life-card:nth-child(2n),
.shloka-card:nth-child(2n) {
  --card-color: var(--peacock);
}

.toc-card:nth-child(3n),
.gsr-character-card:nth-child(3n),
.gsr-teaching-card:nth-child(3n),
.gsr-life-card:nth-child(3n),
.shloka-card:nth-child(3n) {
  --card-color: var(--rose);
}

.toc-card:nth-child(4n),
.gsr-character-card:nth-child(4n),
.gsr-teaching-card:nth-child(4n),
.gsr-life-card:nth-child(4n),
.shloka-card:nth-child(4n) {
  --card-color: var(--leaf);
}

.toc-card:hover,
.gsr-bg-card:hover,
.gsr-character-card:hover,
.gsr-event-content:hover,
.gsr-teaching-card:hover,
.gsr-life-card:hover,
.shloka-card:hover {
  border-color: rgba(17, 138, 178, 0.32);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.toc-card span {
  color: var(--card-color, var(--saffron));
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

.toc-card h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.gsr-summary-card {
  background: var(--paper);
  border: 1px solid rgba(58, 12, 163, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: 230px 1fr;
  margin: auto;
  max-width: 1260px;
  overflow: hidden;
}

.gsr-summary-side {
  align-items: center;
  background: linear-gradient(180deg, var(--indigo), var(--violet));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 20px;
  text-align: center;
}

.gsr-summary-side::after {
  display: none;
}

.gsr-summary-icon,
.gsr-icon,
.gsr-teaching-icon,
.gsr-life-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.9), rgba(6, 214, 160, 0.42));
  border-radius: 999px;
  display: flex;
  justify-content: center;
}

.gsr-summary-icon {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  font-size: 44px;
  height: 92px;
  margin-bottom: 20px;
  width: 92px;
}

.gsr-summary-side span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.gsr-summary-content {
  padding: 54px;
}

.gsr-heading span {
  color: var(--rose);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.gsr-heading h2 {
  color: var(--ink);
  font-size: 40px;
  line-height: 1.25;
  margin: 10px 0 30px;
}

.gsr-summary-content article {
  display: grid;
  gap: 20px;
}

.gsr-summary-content p,
.gsr-bg-card p,
.gsr-character-card p,
.gsr-event-content p,
.gsr-teaching-card p,
.gsr-life-card p {
  color: var(--muted);
  text-align: justify;
}

.gsr-summary-content strong {
  color: var(--indigo);
}

.gsr-background-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gsr-bg-card {
  padding: 34px;
}

.gsr-bg-number,
.gsr-event-number {
  align-items: center;
  background: linear-gradient(135deg, var(--rose), var(--saffron));
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  font-weight: 900;
  justify-content: center;
}

.gsr-bg-number {
  height: 58px;
  margin-bottom: 22px;
  width: 58px;
}

.gsr-bg-card h3,
.gsr-character-card h3,
.gsr-event-content h3,
.gsr-teaching-card h3,
.gsr-life-card h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 13px;
}

.gsr-character-grid,
.gsr-teaching-grid,
.gsr-life-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.gsr-character-card,
.gsr-teaching-card,
.gsr-life-card {
  padding: 34px;
}

.gsr-character-card.featured,
.featured {
  background: linear-gradient(135deg, #ffffff, rgba(255, 209, 102, 0.2), rgba(6, 214, 160, 0.12));
  border-color: rgba(255, 159, 28, 0.45);
}

.gsr-icon,
.gsr-teaching-icon,
.gsr-life-icon {
  font-size: 32px;
  height: 72px;
  margin-bottom: 20px;
  width: 72px;
}

.gsr-character-card span {
  color: var(--peacock);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 14px;
}

.gsr-events-timeline {
  margin-left: 34px;
  position: relative;
}

.gsr-events-timeline::before {
  background: linear-gradient(180deg, var(--rose), var(--saffron), var(--leaf), var(--peacock));
  border-radius: 999px;
  content: "";
  height: 100%;
  left: 24px;
  position: absolute;
  top: 0;
  width: 4px;
}

.gsr-event-card {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
  position: relative;
}

.gsr-event-number {
  box-shadow: 0 0 0 8px #eef8ff;
  flex: 0 0 52px;
  height: 52px;
  position: relative;
  z-index: 1;
}

.gsr-event-content {
  flex: 1;
  padding: 26px 28px;
}

.shloka-section {
  padding-top: 92px;
}

.shloka-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 22px;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--rose) rgba(255, 209, 102, 0.25);
}

.shloka-card {
  flex: 0 0 174px;
  min-height: 126px;
  padding: 24px 18px 20px;
  scroll-snap-align: start;
  text-align: center;
}

.shloka-grid::-webkit-scrollbar {
  height: 10px;
}

.shloka-grid::-webkit-scrollbar-track {
  background: rgba(255, 209, 102, 0.24);
  border-radius: 999px;
}

.shloka-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--rose), var(--saffron), var(--peacock));
  border-radius: 999px;
}

.shloka-card span {
  color: var(--card-color, var(--saffron));
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 4px;
}

.shloka-card strong {
  color: var(--ink);
  display: block;
  font-size: 19px;
}

.shloka-card small {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.faq-wrap {
  margin: auto;
  max-width: 900px;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: 800;
  gap: 18px;
  justify-content: space-between;
  list-style: none;
  padding: 22px 26px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span {
  align-items: center;
  background: linear-gradient(135deg, var(--marigold), var(--rose));
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 25px;
  height: 34px;
  justify-content: center;
  transition: transform 0.25s ease;
  width: 34px;
}

.faq-answer {
  color: var(--muted);
  display: block;
  padding: 0 26px 24px;
}

.faq-item[open] .faq-question span {
  transform: rotate(45deg);
}

.next-chapter {
  align-items: center;
  border: 1px solid rgba(255, 159, 28, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 0;
  padding: 42px;
}

.next-chapter h2 {
  color: var(--indigo);
  font-size: 28px;
}

.next-title {
  color: #7a2f00;
  font-size: 32px;
  line-height: 1.3;
  margin-top: 12px;
}

.next-description {
  color: var(--muted);
  margin-top: 14px;
  max-width: 760px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: 86vh;
    padding: 110px 16px 82px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .gsr-summary-card {
    grid-template-columns: 1fr;
  }

  .gsr-summary-side {
    padding: 34px 20px;
  }

  .gsr-background-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section,
  .gsr-summary-section,
  .gsr-background-section,
  .gsr-characters,
  .gsr-events-section,
  .gsr-teachings-section,
  .gsr-life-section {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .breadcrumb-1 {
    border-radius: var(--radius);
  }

  .hero-btn,
  .next-btn {
    width: 100%;
  }

  .section-title,
  .gsr-section-heading h2,
  .gsr-section-title h2,
  .gsr-life-heading h2,
  .shloka-header h2,
  .gsr-heading h2 {
    font-size: 30px;
  }

  .section-sub,
  .gsr-section-heading p,
  .gsr-section-title p,
  .gsr-life-heading p,
  .shloka-header p {
    font-size: 16px;
  }

  .gsr-summary-content,
  .gsr-bg-card,
  .gsr-character-card,
  .gsr-teaching-card,
  .gsr-life-card,
  .next-chapter {
    padding: 26px;
  }

  .gsr-events-timeline {
    margin-left: 8px;
  }

  .gsr-event-card {
    gap: 16px;
  }

  .gsr-event-content {
    padding: 22px;
  }

  .next-chapter {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-tag {
    font-size: 26px;
    height: 60px;
    width: 60px;
  }

  .toc-card,
  .shloka-card,
  .faq-question {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gsr-event-number {
    flex-basis: 46px;
    height: 46px;
  }

  .gsr-events-timeline::before {
    left: 21px;
  }
}
