/* Template additions: extracted from inline page styles and tightened for responsive PHP layout. */
.topbar-email {
  margin-left: 6px;
  font-weight: 600;
}

.footer-logo {
  width: 230px;
}

.banner-one {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.banner-one__video-background,
.banner-one__video-background video,
.banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-one__video-background {
  z-index: 0;
  overflow: hidden;
}

.banner-one__video-background video {
  object-fit: cover;
}

.banner-overlay {
  background-color: #FEF2E3;
  opacity: 0;
  z-index: 1;
  transition: background-color 0.5s ease;
}

.banner-one__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-one__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.banner-one__content {
  flex: 1 1 50%;
  color: #000;
  padding-right: 30px;
}

.banner-one__content h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.banner-one__content p {
  font-size: clamp(17px, 2vw, 22px);
  color: #fefefe;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

.banner-one__image {
  flex: 1 1 40%;
  text-align: right;
}

.banner-one__image img {
  max-width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  margin-top: 50px;
  transition: opacity 0.8s ease;
}

.aqua-btn-wrapper {
  --hue: 30deg;
  --sat: 60%;
  --hue2: 5deg;
  --sat2: 80%;
  --clr: hsl(var(--hue), var(--sat), 90%);
  --clr2: hsl(var(--hue2), var(--sat2), 85%);
  --text: hsla(var(--hue), 70%, 10%, .9);
  --gradgap: 30%;
  --gradoffset: 45%;
}

.aqua-btn {
  font-family: 'Noto Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  max-width: 100%;
  font-size: 20px;
  padding: 1em 1.8em;
  border-radius: 50px;
  border: none;
  color: var(--text);
  background-color: var(--clr);
  background-image: linear-gradient(180deg, var(--clr2) var(--gradgap), transparent calc(100% - var(--gradgap)));
  background-repeat: no-repeat;
  background-position: center var(--gradoffset);
  background-size: 100% 200%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.aqua-btn::before,
.aqua-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  z-index: 0;
}

.aqua-btn::before {
  background-image: radial-gradient(ellipse, hsla(var(--hue), 100%, 90%, .8) 20%, transparent 50%, transparent 200%);
  background-repeat: no-repeat;
  background-size: 200% 80%;
  background-position: center 220%;
  mix-blend-mode: overlay;
  filter: blur(0.1em);
}

.aqua-btn::after {
  background: linear-gradient(180deg, hsla(var(--hue2), 100%, 90%, 0.9), hsla(var(--hue2), calc(var(--sat2)*0.7), 50%, 0.75) 40%, transparent 80%);
  top: 0.1em;
  left: 0.5em;
  right: 0.5em;
  bottom: 1em;
  filter: blur(0.2em);
  mix-blend-mode: screen;
}

.aqua-btn span,
.aqua-btn svg {
  position: relative;
  z-index: 1;
}

.aqua-btn:hover {
  background-position: center calc(var(--gradoffset) - 0.75em);
  transform: translateY(-2px);
}

.aqua-btn:active {
  transform: scale(0.98);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.aqua-btn svg {
  height: 1em;
  width: auto;
  flex: 0 0 auto;
}

@media (max-width: 1199px) {
  .banner-one {
    min-height: auto;
    padding: 70px 0 40px;
  }
}

@media (max-width: 991px) {
  .banner-one__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .banner-one__content {
    padding-right: 0;
  }

  .banner-one__image {
    text-align: center;
  }

  .banner-one__image img {
    max-height: 420px;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .banner-one {
    padding: 48px 0 28px;
  }

  .banner-one__content h2 {
    font-size: 30px;
  }

  .banner-one__content p {
    font-size: 16px;
  }

  .aqua-btn {
    width: 100%;
    font-size: 16px;
    padding: 0.9em 1.1em;
    white-space: normal;
  }
}

.template-page-title {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background-position: center;
  background-size: cover;
}

.about-page-title {
  background-image: url("../images/page-titles/4.jpg");
}

.contact-page-title {
  background-image: url("../images/page-titles/10.jpg");
}

.inner-page-title {
  background-image: url("../images/page-titles/12.jpg");
}

.template-page-title .container {
  position: relative;
  z-index: 2;
}

.template-page-title h1 {
  color: var(--color-white);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.template-page-title p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 0;
}

.template-kicker {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.template-kicker.dark {
  color: var(--color-accent);
}

.template-image-stack {
  position: relative;
  min-height: 560px;
}

.template-image-stack .main-img {
  width: min(520px, 88%);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(10, 25, 49, 0.16);
}

.template-image-stack .float-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 46%);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(10, 25, 49, 0.18);
}

.template-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.template-signature img {
  max-width: 145px;
}

.template-signature strong,
.template-signature span {
  display: block;
}

.template-signature strong {
  color: var(--color-secondary);
}

.template-feature-band {
  padding: 80px 0 50px;
  background: #fff7ef;
}

.template-info-box,
.template-contact-card,
.template-contact-form {
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 10px 36px rgba(10, 25, 49, 0.08);
}

.template-info-box {
  min-height: 260px;
  padding: 36px 30px;
  margin-bottom: 30px;
}

.template-info-icon,
.template-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-primary);
  margin-bottom: 22px;
}

.template-info-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.template-info-box p {
  margin-bottom: 0;
}

.sticky-side-copy {
  position: sticky;
  top: 110px;
}

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

.template-service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 22px;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  color: var(--color-secondary);
  font-weight: 700;
  background: var(--color-white);
}

.template-service-pill i {
  color: var(--color-primary);
}

.template-contact-card {
  display: block;
  min-height: 210px;
  padding: 32px 28px;
  margin-bottom: 30px;
  color: var(--bs-gray);
}

.template-contact-card strong,
.template-contact-card span {
  display: block;
}

.template-contact-card strong {
  color: var(--color-secondary);
  font-size: 21px;
  margin-bottom: 10px;
}

.template-contact-card:hover {
  transform: translateY(-4px);
  color: var(--bs-gray);
}

.template-contact-form {
  padding: 42px;
}

.template-contact-form label {
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 8px;
}

.template-contact-form .form-control {
  margin-bottom: 22px;
}

.contact-side-copy {
  padding-right: 30px;
}

.template-content-image {
  position: relative;
  margin-bottom: 30px;
}

.template-content-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(10, 25, 49, 0.14);
}

.template-small-heading {
  color: var(--color-secondary);
  font-size: 22px;
  margin: 24px 0 10px;
}

.template-service-grid.one-column {
  grid-template-columns: 1fr;
  gap: 12px;
}

.template-service-grid.one-column .template-service-pill {
  min-height: 70px;
}

.template-testimonial-card {
  min-height: 260px;
  padding: 36px 32px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 10px 36px rgba(10, 25, 49, 0.08);
}

.template-testimonial-card p {
  color: var(--bs-gray);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.template-testimonial-card strong {
  color: var(--color-secondary);
}

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

.template-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--color-gray-100);
}

.template-gallery-item img,
.template-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.template-gallery-item:hover img {
  transform: scale(1.05);
}

.template-video-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 10px 36px rgba(10, 25, 49, 0.08);
}

.template-video-card > img {
  height: 230px;
}

.template-video-card .video-btn {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}

.template-video-card h3 {
  font-size: 21px;
  padding: 24px;
  margin: 0;
}

@media (max-width: 991px) {
  .template-page-title {
    min-height: 360px;
    padding: 90px 0;
  }

  .template-image-stack {
    min-height: auto;
    margin-bottom: 40px;
  }

  .template-image-stack .float-img {
    position: relative;
    width: 230px;
    margin: -90px 0 0 auto;
    display: block;
  }

  .sticky-side-copy {
    position: static;
    margin-bottom: 35px;
  }

  .contact-side-copy {
    padding-right: 0;
    margin-bottom: 35px;
  }

  .template-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .template-page-title p {
    font-size: 17px;
  }

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

  .template-contact-form {
    padding: 28px 22px;
  }

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

/* Professional inner-page system */
.template-feature-band {
  background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
}

.template-section-title {
  color: var(--color-secondary);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.24;
  margin-bottom: 14px;
}

.template-info-box {
  border: 1px solid rgba(212, 123, 62, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.template-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(10, 25, 49, 0.12);
}

.template-content-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.template-image-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--color-white);
  background: rgba(10, 25, 49, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.template-image-badge strong,
.template-image-badge span {
  display: block;
}

.template-image-badge strong {
  font-size: 18px;
}

.template-image-badge span {
  color: rgba(255, 255, 255, 0.78);
}

.template-service-overview {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.96), rgba(255, 255, 255, 0.95)),
    url("../images/backgrounds/pattern2.png") right center / auto no-repeat;
}

.template-service-pill {
  box-shadow: 0 8px 26px rgba(10, 25, 49, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.template-service-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 123, 62, 0.45);
}

.template-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
}

.template-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--color-secondary);
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(10, 25, 49, 0.06);
}

.template-trust-list i {
  color: var(--color-primary);
  margin-top: 3px;
}

.template-process-section {
  padding: 100px 0;
  background: #f7f9fc;
}

.template-process-list {
  display: grid;
  gap: 18px;
}

.template-process-item {
  display: flex;
  gap: 22px;
  padding: 28px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 10px 34px rgba(10, 25, 49, 0.07);
}

.template-process-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 700;
  background: var(--color-primary);
}

.template-process-item h3 {
  color: var(--color-secondary);
  font-size: 22px;
  margin-bottom: 8px;
}

.template-process-item p {
  margin-bottom: 0;
}

.template-cta-band {
  padding: 76px 0;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(10, 25, 49, 0.96), rgba(115, 58, 19, 0.88)),
    url("../images/backgrounds/1.jpg") center / cover no-repeat;
}

.template-cta-band h2 {
  color: var(--color-white);
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 14px;
}

.template-cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.template-testimonial-card {
  border-top: 4px solid var(--color-primary);
}

.template-testimonial-card p {
  position: relative;
}

.template-testimonial-card p::before {
  content: "“";
  display: block;
  color: var(--color-primary);
  font-size: 54px;
  line-height: 0.7;
  margin-bottom: 10px;
}

.template-gallery-item {
  box-shadow: 0 10px 30px rgba(10, 25, 49, 0.08);
}

.template-detailed-hero {
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 52%, #f3f9ff 100%);
}

.template-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.template-notice-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(239, 118, 36, 0.18);
  border-radius: 8px;
  background: #fff7ef;
  box-shadow: 0 12px 34px rgba(39, 28, 18, 0.07);
}

.template-notice-box h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.template-notice-box p {
  margin-bottom: 0;
  color: #6f6f6f;
}

.template-detail-card {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid #eee3d6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(31, 29, 24, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.template-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 118, 36, 0.35);
  box-shadow: 0 16px 42px rgba(31, 29, 24, 0.09);
}

.template-detail-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(239, 118, 36, 0.1);
  color: #ef7624;
  font-size: 22px;
}

.template-detail-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.template-detail-card p {
  color: #6f6f6f;
  line-height: 1.75;
}

.template-detail-card ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.template-detail-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #5f5f5f;
  font-size: 14px;
  margin-bottom: 10px;
}

.template-detail-card li i {
  color: #ef7624;
  margin-top: 3px;
}

.template-card-price {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f0e5da;
  color: #ef7624;
  font-size: 20px;
  font-weight: 700;
}

.template-faq-list {
  display: grid;
  gap: 14px;
}

.template-faq-item {
  border: 1px solid #eee3d6;
  border-radius: 8px;
  background: #fff;
}

.template-faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: #222;
}

.template-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: #6f6f6f;
}

.template-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.template-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 78px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(239, 118, 36, 0), rgba(239, 118, 36, 0.45), rgba(239, 118, 36, 0));
}

.template-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid #eee3d6;
  border-radius: 8px;
  background: #fff;
}

.template-timeline-item strong {
  color: #ef7624;
  font-size: 15px;
}

.template-timeline-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.template-timeline-item p {
  margin-bottom: 0;
  color: #6f6f6f;
}

.template-sidebar-list li,
.template-sidebar-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #555;
  margin-bottom: 14px;
}

.template-sidebar-list i {
  color: #ef7624;
  margin-top: 4px;
}

.rj-rich-page {
  --rj-orange: #f97316;
  --rj-amber: #f5b23f;
  --rj-ink: #171412;
  --rj-muted: #685f58;
  --rj-line: rgba(130, 92, 54, 0.16);
  --rj-soft: #fff8ef;
  --rj-soft-2: #f7fbff;
  color: var(--rj-ink);
  font-family: "Inter", "Noto Sans Devanagari", var(--font-primary), sans-serif;
  background: #fffaf4;
  overflow: hidden;
}

.rj-rich-page * {
  letter-spacing: 0;
}

.rj-rich-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 18% 22%, rgba(249, 115, 22, 0.13), transparent 34%),
    radial-gradient(circle at 76% 18%, rgba(43, 119, 178, 0.12), transparent 32%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 45%, #f6fbff 100%);
}

.rj-rich-symbol {
  position: absolute;
  right: 7%;
  top: 18%;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1;
  color: rgba(249, 115, 22, 0.055);
  font-weight: 800;
  pointer-events: none;
  user-select: none;
}

.rj-rich-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
}

.rj-rich-glow-1 {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 120px;
  background: rgba(249, 115, 22, 0.16);
}

.rj-rich-glow-2 {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: 120px;
  background: rgba(245, 178, 63, 0.14);
}

.rj-rich-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: #8d8278;
  font-size: 13px;
}

.rj-rich-breadcrumb a {
  color: #8d8278;
}

.rj-rich-breadcrumb a:hover {
  color: var(--rj-orange);
}

.rj-rich-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  color: #d95f0b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rj-rich-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rj-orange), var(--rj-amber));
}

.rj-rich-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--rj-ink);
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.04;
  font-weight: 800;
}

.rj-rich-lead,
.rj-rich-muted {
  color: var(--rj-muted);
  font-size: 17px;
  line-height: 1.85;
}

.rj-rich-lead {
  max-width: 650px;
  margin-bottom: 30px;
}

.rj-rich-checks {
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
}

.rj-rich-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #39322d;
  font-size: 15px;
  font-weight: 600;
}

.rj-rich-checks i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--rj-orange);
  font-size: 13px;
}

.rj-rich-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rj-rich-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rj-rich-btn:hover {
  transform: translateY(-2px);
}

.rj-rich-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rj-orange), #ea580c);
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.rj-rich-btn.ghost {
  border: 1px solid rgba(104, 95, 88, 0.22);
  color: #342c26;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(31, 29, 24, 0.06);
}

.rj-rich-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(255, 255, 255, 0.7), rgba(43, 119, 178, 0.22));
  box-shadow: 0 34px 80px rgba(54, 39, 25, 0.18);
}

.rj-rich-visual img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
}

.rj-rich-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(54, 39, 25, 0.16);
}

.rj-rich-float-card.main {
  left: -24px;
  bottom: 32px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 22px;
}

.rj-rich-float-card.main strong {
  color: var(--rj-orange);
  font-size: 30px;
  line-height: 1;
}

.rj-rich-float-card.main span {
  color: var(--rj-muted);
  font-size: 12px;
  font-weight: 700;
}

.rj-rich-float-card.mini {
  right: -22px;
  top: 34px;
  padding: 13px 16px;
  color: #2d251f;
  font-size: 13px;
  font-weight: 800;
}

.rj-rich-float-card.mini i {
  color: var(--rj-orange);
}

.rj-rich-section {
  position: relative;
  padding: 105px 0 75px;
  background: #fff;
}

.rj-rich-section.compact {
  padding: 48px 0;
  background: #fffaf4;
}

.rj-rich-section.tinted {
  background: linear-gradient(180deg, #fffaf4, #fff);
}

.rj-rich-section.process,
.rj-rich-section.form-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(249, 115, 22, 0.09), transparent 34%),
    linear-gradient(135deg, #fff8ef, #f8fbff);
}

.rj-rich-title {
  margin-bottom: 18px;
  color: var(--rj-ink);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.rj-rich-page .template-detail-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--rj-line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82)),
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.09), transparent 36%);
  box-shadow: 0 18px 45px rgba(54, 39, 25, 0.08);
}

.rj-rich-page .template-detail-icon {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(245, 178, 63, 0.13));
}

.rj-rich-page .template-detail-card h3 {
  color: var(--rj-ink);
  font-size: 21px;
  font-weight: 800;
}

.rj-rich-page .template-detail-card p,
.rj-rich-page .template-detail-card li {
  color: var(--rj-muted);
}

.rj-rich-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(54, 39, 25, 0.08);
}

.rj-rich-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--rj-orange);
  background: rgba(249, 115, 22, 0.1);
  font-size: 22px;
}

.rj-rich-notice h3 {
  margin-bottom: 8px;
  color: var(--rj-ink);
  font-weight: 800;
}

.rj-rich-notice p {
  margin: 0;
  color: var(--rj-muted);
  line-height: 1.8;
}

.rj-rich-process-list {
  display: grid;
  gap: 18px;
}

.rj-rich-process-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--rj-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(54, 39, 25, 0.07);
}

.rj-rich-process-item > span {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rj-orange), var(--rj-amber));
  font-weight: 800;
}

.rj-rich-process-item h3,
.rj-rich-timeline-item h3 {
  margin-bottom: 6px;
  color: var(--rj-ink);
  font-size: 20px;
  font-weight: 800;
}

.rj-rich-process-item p,
.rj-rich-timeline-item p {
  margin: 0;
  color: var(--rj-muted);
  line-height: 1.75;
}

.rj-rich-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.rj-rich-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.45), transparent);
}

.rj-rich-timeline-item {
  position: relative;
  width: calc(50% - 34px);
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid var(--rj-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(54, 39, 25, 0.08);
}

.rj-rich-timeline-item:nth-child(even) {
  margin-left: calc(50% + 34px);
}

.rj-rich-timeline-item strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--rj-orange);
  font-weight: 800;
}

.rj-rich-faq-list {
  max-width: 860px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.rj-rich-faq-item {
  border: 1px solid var(--rj-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(54, 39, 25, 0.06);
  overflow: hidden;
}

.rj-rich-faq-item summary {
  cursor: pointer;
  padding: 21px 24px;
  color: var(--rj-ink);
  font-size: 16px;
  font-weight: 800;
}

.rj-rich-faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--rj-muted);
  line-height: 1.8;
}

.rj-rich-form-copy {
  position: sticky;
  top: 120px;
}

.rj-rich-form {
  border-radius: 24px;
  border: 1px solid var(--rj-line);
  box-shadow: 0 24px 60px rgba(54, 39, 25, 0.1);
}

.rj-rich-sidebar-list li,
.rj-rich-sidebar-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #514941;
  font-weight: 700;
  margin-bottom: 14px;
}

.rj-rich-sidebar-list i {
  color: var(--rj-orange);
  margin-top: 3px;
}

.rj-store-page {
  --store-orange: #f97316;
  --store-amber: #f5b23f;
  --store-ink: #171412;
  --store-muted: #6d625a;
  --store-line: rgba(130, 92, 54, 0.16);
  color: var(--store-ink);
  background: #fffaf4;
  font-family: "Inter", "Noto Sans Devanagari", var(--font-primary), sans-serif;
  overflow: hidden;
}

.rj-store-page * {
  letter-spacing: 0;
}

.rj-store-hero {
  position: relative;
  padding: 112px 0 72px;
  background:
    radial-gradient(circle at 20% 18%, rgba(249, 115, 22, 0.13), transparent 34%),
    radial-gradient(circle at 76% 8%, rgba(43, 119, 178, 0.11), transparent 30%),
    linear-gradient(135deg, #fff7ed 0%, #fff 50%, #f7fbff 100%);
}

.rj-store-symbol {
  position: absolute;
  right: 7%;
  top: 12%;
  color: rgba(249, 115, 22, 0.055);
  font-size: clamp(130px, 18vw, 260px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.rj-store-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.rj-store-glow.one {
  width: 280px;
  height: 280px;
  left: -100px;
  top: 80px;
  background: rgba(249, 115, 22, 0.14);
}

.rj-store-glow.two {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: 40px;
  background: rgba(245, 178, 63, 0.14);
}

.rj-store-breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #8d8278;
  font-size: 13px;
  z-index: 1;
}

.rj-store-breadcrumb a {
  color: #8d8278;
}

.rj-store-breadcrumb a:hover {
  color: var(--store-orange);
}

.rj-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  color: #d95f0b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rj-store-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--store-orange), var(--store-amber));
}

.rj-store-hero h1 {
  margin-bottom: 18px;
  color: var(--store-ink);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
  font-weight: 800;
}

.rj-store-hero h1 span {
  color: var(--store-orange);
}

.rj-store-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--store-muted);
  font-size: 18px;
  line-height: 1.8;
}

.rj-store-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 42px auto 0;
  z-index: 1;
}

.rj-store-stats div,
.rj-store-trust div > div {
 /* border: 1px solid var(--store-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(54, 39, 25, 0.08);*/
}
.rj-store-trust div > div h6 { margin-bottom:5px; }

.rj-store-stats div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
}

.rj-store-stats i,
.rj-store-trust i {
  color: var(--store-orange);
}

.rj-store-stats strong {
  color: var(--store-ink);
  font-size: 17px;
}

.rj-store-stats span {
  color: var(--store-muted);
  font-size: 13px;
}

.rj-store-catalog {
  padding: 86px 0;
  background: #fff;
}

.rj-store-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}

.rj-store-filter-card,
.rj-store-help {
  padding: 22px;
  border: 1px solid var(--store-line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86)),
    radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.08), transparent 36%);
  box-shadow: 0 16px 40px rgba(54, 39, 25, 0.07);
}

.rj-store-filter-card h3,
.rj-store-help h4 {
  margin-bottom: 16px;
  color: var(--store-ink);
  font-size: 16px;
  font-weight: 800;
}

.rj-store-filter-list {
  display: grid;
  gap: 8px;
}

.rj-store-filter-list button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #5e554e;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: all 0.2s ease;
}

.rj-store-filter-list button:hover,
.rj-store-filter-list button.active {
  border-color: rgba(249, 115, 22, 0.26);
  color: var(--store-orange);
  background: rgba(249, 115, 22, 0.08);
}

.rj-store-filter-list b {
  color: inherit;
  font-size: 12px;
}

.rj-store-help {
  background: #fff7ed;
}

.rj-store-help p {
  margin: 0;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.8;
}

.rj-store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--store-line);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
}

.rj-store-toolbar p {
  margin: 0;
  color: var(--store-muted);
  font-size: 14px;
  font-weight: 700;
}

.rj-store-toolbar strong {
  color: var(--store-ink);
}

.rj-store-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--store-muted);
  font-size: 14px;
  font-weight: 700;
}

.rj-store-toolbar select {
  min-width: 180px;
  height: 42px;
  border: 1px solid var(--store-line);
  border-radius: 12px;
  background: #fff;
  color: var(--store-ink);
  padding: 0 12px;
}

.rj-store-mobile-filter {
  display: none;
}

.rj-store-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.rj-store-active-filters button {
  padding: 8px 12px;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 999px;
  color: var(--store-orange);
  background: rgba(249, 115, 22, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.rj-store-active-filters .clear {
  border-color: transparent;
  color: var(--store-muted);
  background: transparent;
}

.rj-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rj-store-product {
  overflow: hidden;
  border: 1px solid var(--store-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(54, 39, 25, 0.08);
  animation: rjStoreFadeUp 0.45s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rj-store-product:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 24px 60px rgba(54, 39, 25, 0.12);
}

@keyframes rjStoreFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.rj-store-product-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #f7eee4;
}

.rj-store-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.rj-store-product:hover img {
  transform: scale(1.06);
}

.rj-store-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 20, 12, 0.4), transparent 52%);
  pointer-events: none;
}

.rj-store-chip {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.rj-store-chip.featured {
  left: 14px;
  background: linear-gradient(135deg, var(--store-orange), var(--store-amber));
}

.rj-store-chip.popular {
  right: 14px;
  background: rgba(23, 20, 18, 0.76);
}

.rj-store-product-media button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--store-orange);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.rj-store-product-body {
  padding: 22px;
}

.rj-store-category {
  display: block;
  margin-bottom: 8px;
  color: var(--store-orange);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rj-store-product h3 {
  min-height: 50px;
  margin-bottom: 8px;
  color: var(--store-ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.rj-store-product p {
  min-height: 42px;
  margin-bottom: 14px;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.65;
}

.rj-store-benefits {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.rj-store-benefits span {
  padding: 5px 16px;
  border-radius: 999px;
  color: #675d54;
  background: #fff4e8;
  font-size: 10px;
  font-weight: 800;
}

.rj-store-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(130, 92, 54, 0.13);
}

.rj-store-product-footer small {
  display: block;
  color: #9b9086;
  font-size: 10px;
  font-weight: 800;
}

.rj-store-product-footer strong {
  display: block;
  color: var(--store-orange);
  font-size: 18px;
  line-height: 1.2;
}

.rj-store-product-footer button,
.rj-store-no-results button {
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 12px;
  color: var(--store-orange);
  background: rgba(249, 115, 22, 0.08);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 900;
  transition: all 0.2s ease;
}

.rj-store-product-footer button:hover,
.rj-store-no-results button:hover {
  color: #fff;
  background: var(--store-orange);
}

.rj-store-no-results {
  padding: 80px 20px;
  text-align: center;
}

.rj-store-no-results h3 {
  color: var(--store-ink);
}

.rj-store-no-results p {
  color: var(--store-muted);
}

.rj-store-trust,
.rj-store-cta {
  padding: 72px 0;
  background: linear-gradient(180deg, #fffaf4, #fff);
}

.rj-store-trust div > div {
  min-height: 210px;
  padding: 5px;
  text-align: center;
}

.rj-store-trust h6 {
  font-size: 140%;
}

.rj-store-trust img {
  height:150px;
  margin-bottom:20px;
}

.rj-store-trust i {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}

.rj-store-trust h4 {
  color: var(--store-ink);
  font-weight: 800;
}

.rj-store-trust p {
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.7;
}

.rj-store-cta-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.12), transparent 34%),
    #fff;
  text-align: center;
  box-shadow: 0 24px 65px rgba(54, 39, 25, 0.1);
}

.rj-store-cta-box h2 {
  color: var(--store-ink);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
}

.rj-store-cta-box p {
  max-width: 620px;
  margin: 12px auto 26px;
  color: var(--store-muted);
  line-height: 1.8;
}

.rj-store-cta-box a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--store-orange), #ea580c);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.26);
}

.rj-store-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.rj-store-modal.open {
  display: flex;
}

.rj-store-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 20, 18, 0.58);
  backdrop-filter: blur(6px);
}

.rj-store-modal-card {
  position: relative;
  width: min(100%, 480px);
  max-height: 92vh;
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--store-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(23, 20, 18, 0.26);
}

.rj-store-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--store-muted);
  background: #fff3e6;
  font-size: 22px;
}

.rj-store-modal-card h3 {
  margin-bottom: 4px;
  color: var(--store-ink);
  font-weight: 800;
}

.rj-store-modal-card p,
.rj-store-modal-card small {
  color: var(--store-muted);
}

.rj-store-modal-card label {
  display: block;
  margin: 14px 0 6px;
  color: var(--store-ink);
  font-size: 12px;
  font-weight: 900;
}

.rj-store-modal-card input,
.rj-store-modal-card textarea {
  width: 100%;
  border: 1px solid var(--store-line);
  border-radius: 13px;
  padding: 12px 14px;
  color: var(--store-ink);
  background: #fffaf4;
}

.rj-store-modal-card button[type="submit"] {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  background: var(--store-orange);
  font-weight: 900;
}

@media (max-width: 991px) {
  .rj-store-sidebar {
    position: static;
    margin-bottom: 28px;
  }

  .rj-store-stats,
  .rj-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .template-trust-list {
    grid-template-columns: 1fr;
  }

  .template-process-section {
    padding: 70px 0;
  }

  .template-process-list {
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  .template-image-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-width: 0;
  }

  .template-process-item {
    display: block;
  }

  .template-process-item > span {
    margin-bottom: 16px;
  }

  .template-notice-box {
    flex-direction: column;
  }

  .template-timeline::before {
    display: none;
  }

  .template-timeline-item {
    grid-template-columns: 1fr;
  }

  .rj-rich-hero {
    min-height: auto;
    padding: 84px 0 60px;
  }

  .rj-rich-hero h1 {
    font-size: 40px;
  }

  .rj-rich-visual {
    margin-top: 40px;
  }

  .rj-rich-visual img {
    height: 420px;
  }

  .rj-rich-float-card.main,
  .rj-rich-float-card.mini {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
  }

  .rj-rich-float-card.mini {
    display: none;
  }

  .rj-rich-section {
    padding: 76px 0 48px;
  }

  .rj-rich-process-item {
    grid-template-columns: 1fr;
  }

  .rj-rich-timeline::before {
    left: 12px;
  }

  .rj-rich-timeline-item,
  .rj-rich-timeline-item:nth-child(even) {
    width: auto;
    margin-left: 34px;
  }

  .rj-rich-notice {
    grid-template-columns: 1fr;
  }

  .rj-store-hero {
    padding: 86px 0 54px;
  }

  .rj-store-stats,
  .rj-store-grid {
    grid-template-columns: 1fr;
  }

  .rj-store-sidebar {
    position: static;
    margin-bottom: 26px;
  }

  .rj-store-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .rj-store-toolbar label {
    justify-content: space-between;
  }

  .rj-store-toolbar select {
    flex: 1;
    min-width: 0;
  }

  .rj-store-product h3,
  .rj-store-product p,
  .rj-store-benefits {
    min-height: 0;
  }

  .rj-store-cta-box {
    padding: 32px 22px;
  }
}
