h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Oswald", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Poppins", "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
div,
span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
/* banner start  */

/* .hb-hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.hb-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hb-hero-img {
  width: 100%;
  height: 420px;
  display: block;
}

@media (max-width: 768px) {
  .hb-hero-img {
    height: 260px;
  }
}
@media (max-width: 480px) {
  .hb-hero-img {
    height: 200px;
  }
} */

/* banner end  */

/* Unique scoped CSS names used throughout: prefix 'pc-' */
.pc-products-section {
  max-width: 1350px;
  margin: 40px auto;
  padding: 0 18px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* Centered heading with decorative border */
.pc-top-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0b1220;
  position: relative;
  padding-bottom: 18px;
}
.pc-top-heading::after {
  content: "";
  display: block;
  width: 140px;
  height: 6px;
  margin: 8px auto 0;
  border-radius: 8px;
  background: #b31a33;
}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.pc-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12),
    /* strong deep shadow */ 0 4px 10px rgba(15, 23, 42, 0.08); /* soft spread shadow */
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.pc-card-media {
  width: 100%;
  height: 300px;
  aspect-ratio: 16/10;
  display: block;

  background: #f3f4f6;
}

.pc-card-body {
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pc-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}
.pc-card:hover .pc-card-title {
  color: #b31a33;
}

/* PDF image icon */
.pc-pdf-img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  cursor: pointer;
}

/* Modal */
.pc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.6);
  z-index: 9999;
  padding: 18px;
}
.pc-modal.is-open {
  display: flex;
}

.pc-modal-content {
  width: 100%;
  max-width: 920px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.5);
  position: relative;
}

.pc-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eef2f7;
}
.pc-modal-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-modal-title {
  font-weight: 700;
  font-size: 15px;
  color: #0b1220;
}

.pc-modal-close {
  background: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}

.pc-modal-main {
  display: flex;
  gap: 18px;
  padding: 18px;
}
.pc-modal-img {
  flex: 1;
  min-width: 260px;
  height: 450px;

  border-radius: 8px;
  background: #f8fafc;
}
.pc-modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-modal-info h3 {
  font-size: 30px;
}
.pc-modal-info p {
  color: #394151;
}

/* Button style */
.pc-pdf-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #b31a33;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.pc-pdf-btn:hover {
  background: #6b0314;
}

/* Responsive: mobile -> 1 column */
@media (max-width: 900px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-modal-main {
    flex-direction: column;
  }
  .pc-modal-img {
    max-height: 360px;
  }
}
@media (max-width: 520px) {
  .pc-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .pc-top-heading {
    font-size: 20px;
  }
  .pc-modal-content {
    max-width: 94%;
  }
}

.fa-file-pdf {
  color: #ef4444;
  font-size: 30px;
}

/* exlpore more categories secton start  */
.darshan-explore-more-root {
  margin: 0; /* ensure no default margin from body affects layout */
  background-color: #f7f8fb;
  color: #0f1724;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 32px;
  box-sizing: border-box;
}

.darshan-section-container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

/* Heading centered with decorative border underneath */
.darshan-heading-row {
  display: flex;
  align-items: center;
  justify-content: center; /* centered heading */
  gap: 12px;
  margin-bottom: 18px;
  flex-direction: column;
}

.darshan-section-heading {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.2px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px; /* space for decorative border */
}

/* decorative border under heading (beautiful) */
.darshan-section-heading::after {
  content: "";
  display: block;
  width: 140px;
  height: 6px;
  margin: 8px auto 0;
  border-radius: 6px;
  background-color: #850000;
  box-shadow: 0 6px 18px rgba(15, 20, 36, 0.06);
}

/* Carousel frame */
.darshan-carousel-frame {
  position: relative;
  background: transparent;
}

.darshan-viewport {
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.darshan-track {
  display: flex;
  gap: 16px;
  padding: 16px;
  transition: transform 450ms cubic-bezier(0.22, 0.9, 0.35, 1);
  will-change: transform;
  align-items: stretch;
}

/* Card */
.darshan-category-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  flex: 0 0 calc(50% - 8px); /* desktop: show 2 */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 220px;
  text-align: center;
}

.darshan-card-image-wrap {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
}

.darshan-card-image-wrap img {
  width: 100%;
  height: 100%;

  display: block;
  transform-origin: center;
  transition: transform 350ms ease;
}

.darshan-category-card:hover .darshan-card-image-wrap img {
  transform: scale(1.04);
}

.darshan-card-meta {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.darshan-card-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #0f1724;
}

/* Controls (left/right) */
.darshan-control-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  cursor: pointer;
  z-index: 4;
  border: 1px solid rgba(15, 20, 36, 0.04);
}

.darshan-control-button:active {
  transform: translateY(-50%) scale(0.98);
}

.darshan-control-left {
  left: 8px;
}
.darshan-control-right {
  right: 8px;
}

.darshan-control-button svg {
  width: 28px;
  height: 28px;
  fill: #8d0000;
}

/* Dots */
.darshan-dots-wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.darshan-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 20, 36, 0.12);
}
.darshan-dot.darshan-dot-active {
  background: #490000;
  transform: scale(1.15);
}

/* Responsive rules */
@media (max-width: 900px) {
  .darshan-category-card {
    flex: 0 0 calc(100% - 16px);
  } /* mobile: show 1 */
}

/* Accessibility focus */
.darshan-control-button:focus {
  outline: 3px solid rgba(15, 106, 242, 0.14);
  outline-offset: 2px;
}

/* explore nore categories section end  */

.darshan-category-card a {
  text-decoration: none;
}

.pc-enquiry-btn {
  background: #25d366; /* WhatsApp green */
  cursor: pointer;
}

.pc-enquiry-btn:hover {
  filter: brightness(0.95);
}
.pc-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pc-enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width: 420px) {
  .darshan-section-heading {
    font-size: 1.2rem;
  }
}
