/* ================= HERO SECTION ================= */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 50vh;              /* Hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/hero-banner-image.jpg"); /* apni image ka path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY FOR READABILITY */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-banner .container {
  position: relative;
  z-index: 2;
}

/* HERO HEADING */
.hero-banner-heading {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

/* Section */
.wikipedia-section {
  background: #fff;
}

/* Main H2 */
.wiki-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #030049;
  margin-top: 25px;
}

.wikipedia-listing-count li {
    list-style: auto;
}

.wikipedia-listing-counts li{
  list-style: auto;
  font-weight: bold;
}


/* Sub H2 (formerly H4) */
.wiki-subheading {
  font-size: 20px;
  font-weight: 600;
  margin: 22px 0 12px;
  color: #030049;
}

/* Paragraph */
.wiki-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

/* List */
.wiki-list {
  padding-left: 0px;
  list-style: none;
}

.wiki-list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
  /* list-style: disc; */
}

.wiki-list li::before{
  content: "▸";
  font-size: 18px;
  color: #030049;
}


.list-para{
margin-bottom: 5px;
}

.wiki-subheadings {
    font-size: 20px;
    font-weight: 600;
    margin: 22px 0 4px;
}

/* Right image */
.sidebar-image-box {
  border-radius: 6px;
  overflow: hidden;
}

/* ================= LARGE SCREENS (1600px and down) ================= */
@media (max-width: 1600px) {
  .hero-banner-heading {
    font-size: 44px;
  }
}

/* ================= LAPTOPS (1400px and down) ================= */
@media (max-width: 1400px) {
  .hero-banner-heading {
    font-size: 40px;
  }

  .wiki-heading {
    font-size: 26px;
  }
}

/* ================= SMALL LAPTOPS (1200px and down) ================= */
@media (max-width: 1200px) {
  .hero-banner {
    min-height: 45vh;
  }

  .hero-banner-heading {
    font-size: 36px;
  }

  .wiki-heading {
    font-size: 24px;
  }

  .wiki-text {
    font-size: 15px;
  }
}

/* ================= TABLETS (992px and down) ================= */
@media (max-width: 992px) {
  .hero-banner {
    min-height: 40vh;
  }

  .hero-banner-heading {
    font-size: 32px;
  }

  .wiki-heading {
    font-size: 22px;
  }

  .sidebar-image-box {
    margin-top: 25px;
  }
}

/* ================= SMALL TABLETS (768px and down) ================= */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 35vh;
    padding: 40px 15px;
  }

  .hero-banner-heading {
    font-size: 28px;
  }

  .wiki-heading {
    font-size: 21px;
  }

  .wiki-subheading {
    font-size: 18px;
  }

  .wiki-text {
    font-size: 15px;
  }

  .wiki-list li {
    font-size: 14px;
  }
}

/* ================= MOBILE (767px and down) ================= */
@media (max-width: 767px) {
  .hero-banner {
    min-height: 32vh;
    text-align: center;
  }

  .hero-banner-heading {
    font-size: 24px;
    line-height: 1.3;
  }

   .sidebar-image-box .img-fluid {
    max-width: 60%;
    margin: 0 auto;
    display: block;
  }

  .wiki-heading {
    font-size: 20px;
  }

  .wiki-subheading {
    font-size: 17px;
  }

  .wiki-text {
    font-size: 14px;
  }

  .wiki-list li {
    font-size: 14px;
  }

  .wiki-list li::before {
    margin-right: 6px;
  }
}
