
  
  html {
  scroll-behavior: smooth;
}

:root {
  --rxvh-deep: #0c6870;
  --rxvh-deeper: #124e55;
  --rxvh-text: #1e6974;
  --rxvh-muted: #577b7d;
  --rxvh-mint: #d9ead8;
  --rxvh-mint-strong: #6fb5a5;
  --rxvh-mint-soft: #eef7ef;
  --rxvh-line: rgba(35, 104, 104, .11);
  --rxvh-white: #ffffff;
  --rxvh-yellow: #f4df77;
}

.rxvh-hero,
.rxvh-hero * {
  box-sizing: border-box;
}

.rxvh-hero {
  position: relative;
  width: 100%;
  min-height: min(900px, 100vh);
  padding: clamp(72px, 8vw, 130px) clamp(18px, 5vw, 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--rxvh-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
}

.rxvh-grid {
  position: absolute;
  inset: 0;
  opacity: .7;
  pointer-events: none;

  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.7) 60%, transparent);
}

.rxvh-shell {
  position: relative;
  z-index: 2;
  width: min(1540px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(540px, 1.08fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.rxvh-copy {
  position: relative;
  z-index: 6;
}

.rxvh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: var(--rxvh-text);
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 850;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.rxvh-eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(30, 105, 116, .08);
}

.rxvh-copy h1 {
  max-width: 770px;
  margin: 0;
  color: var(--rxvh-text);
  font-size: clamp(54px, 5.9vw, 67px);
  line-height: .98;
  font-weight: 760;
  letter-spacing: -.062em;
}

.rxvh-title-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.rxvh-copy h1 mark {
  position: relative;
  padding: .12em .18em .16em;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: var(--rxvh-mint-strong);
  font: inherit;
  box-shadow: 0 18px 34px rgba(55, 132, 120, .16);
}

.rxvh-copy h1 mark::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  animation: rxvh-title-shine 5.4s ease-in-out infinite;
}

@keyframes rxvh-title-shine {
  0%, 66% { transform: translateX(-120%) skewX(-18deg); }
  86%, 100% { transform: translateX(130%) skewX(-18deg); }
}

.rxvh-rule {
  width: min(150px, 30%);
  height: 2px;
  margin: 38px auto 29px;
  overflow: hidden;
  background: rgba(30, 105, 116, .18);
}

.rxvh-rule span {
  display: block;
  width: 52%;
  height: 100%;
  background: var(--rxvh-text);
  animation: rxvh-rule-slide 4.2s ease-in-out infinite alternate;
}

@keyframes rxvh-rule-slide {
  to { transform: translateX(92%); }
}

.rxvh-description {
  max-width: 750px;
  margin: 0;
  color: var(--rxvh-text);
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.75;
}

.rxvh-points {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.rxvh-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rxvh-deeper);
  font-size: 13px;
  font-weight: 760;
}

.rxvh-points i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #14734b;
  background: rgba(255,255,255,.76);
  font-size: 11px;
  font-style: normal;
  box-shadow: 0 7px 18px rgba(26, 96, 85, .10);
}

.rxvh-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rxvh-button {
  min-height: 58px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--rxvh-deep);
  border-radius: 14px;
  color: var(--rxvh-deep);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.rxvh-button:hover {
  transform: translateY(-3px);
}

.rxvh-button--primary {
  color: #fff;
  background: var(--rxvh-deep);
  box-shadow: 0 17px 33px rgba(12, 104, 112, .18);
}

.rxvh-button--primary:hover {
  box-shadow: 0 22px 42px rgba(12, 104, 112, .25);
}

.rxvh-button--secondary {
  border-color: rgba(12, 104, 112, .20);
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(8px);
}

.rxvh-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rxvh-play-small {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rxvh-deep);
}

.rxvh-play-small svg {
  width: 18px;
}

.rxvh-trust {
  max-width: 690px;
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  
}

.rxvh-trust__icon {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--rxvh-deep);
  background: rgba(255,255,255,.59);
  box-shadow: 0 13px 26px rgba(34, 92, 84, .09);
}

.rxvh-trust__icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rxvh-trust strong,
.rxvh-trust span {
  display: block;
}

.rxvh-trust strong {
  margin-bottom: 3px;
  color: var(--rxvh-deeper);
  font-size: 13px;
}

.rxvh-trust span {
  color: var(--rxvh-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Video side */
.rxvh-media {
  position: relative;
  min-width: 0;
}

.rxvh-video-card {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.83);
  border-radius: clamp(24px, 3vw, 38px);
  background: rgba(255,255,255,.88);
  box-shadow:
    0 45px 100px rgba(27, 77, 69, .21),
    0 11px 27px rgba(27, 77, 69, .11);
  backdrop-filter: blur(14px);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
  transition: transform 500ms cubic-bezier(.18,.82,.22,1);
}

.rxvh-video-card:hover {
  transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-4px);
}

.rxvh-video-card__top {
  min-height: 57px;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  border-bottom: 1px solid rgba(27, 95, 91, .10);
  background: rgba(255,255,255,.82);
}

.rxvh-browser-dots {
  display: flex;
  gap: 6px;
}

.rxvh-browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.rxvh-browser-dots i:nth-child(1) { background: #ff786f; }
.rxvh-browser-dots i:nth-child(2) { background: #f0c75d; }
.rxvh-browser-dots i:nth-child(3) { background: #68bd87; }

.rxvh-video-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rxvh-deeper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.rxvh-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51b278;
  box-shadow: 0 0 0 5px rgba(81, 178, 120, .12);
  animation: rxvh-live-pulse 2s ease-in-out infinite;
}

@keyframes rxvh-live-pulse {
  50% { box-shadow: 0 0 0 9px rgba(81, 178, 120, 0); }
}

.rxvh-video-card__time {
  min-width: 42px;
  color: var(--rxvh-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.rxvh-video-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(244, 223, 119, .30), transparent 23%),
    linear-gradient(135deg, #cfe2d4, #a4c8ba);
}

.rxvh-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #c6ddd0;
}

.rxvh-video-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(9, 58, 61, .30), transparent 40%),
    radial-gradient(circle at center, transparent 45%, rgba(7, 53, 56, .08));
  transition: opacity 260ms ease;
}

.rxvh-video-card.is-playing .rxvh-video-shade {
  opacity: .24;
}

.rxvh-main-play {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  min-width: 245px;
  padding: 18px 21px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 20px;
  color: #fff;
  background: rgba(8, 70, 74, .75);
  box-shadow: 0 22px 52px rgba(5, 48, 49, .27);
  backdrop-filter: blur(12px);
  font: inherit;
  cursor: pointer;
  transition:
    opacity 250ms ease,
    visibility 250ms ease,
    transform 250ms ease,
    background 250ms ease;
}

.rxvh-main-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(8, 70, 74, .88);
}

.rxvh-video-card.is-playing .rxvh-main-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rxvh-main-play > span {
  width: 61px;
  height: 61px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rxvh-deep);
  background: #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,.16);
}

.rxvh-main-play svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.rxvh-main-play strong,
.rxvh-main-play small {
  display: block;
}

.rxvh-main-play strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.rxvh-main-play small {
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.rxvh-feature-tag {
  position: absolute;
  z-index: 5;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.43);
  border-radius: 14px;
  color: #fff;
  background: rgba(10, 72, 74, .72);
  box-shadow: 0 14px 35px rgba(7, 53, 53, .18);
  backdrop-filter: blur(9px);
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
}

.rxvh-video-card.is-playing .rxvh-feature-tag {
  opacity: .36;
}

.rxvh-feature-tag--one {
  top: 19px;
  left: 19px;
  animation: rxvh-tag-one 4.5s ease-in-out infinite;
}

.rxvh-feature-tag--two {
  right: 19px;
  bottom: 19px;
  animation: rxvh-tag-two 4.8s ease-in-out infinite;
}

@keyframes rxvh-tag-one {
  50% { transform: translateY(-8px); }
}

@keyframes rxvh-tag-two {
  50% { transform: translateY(8px); }
}

.rxvh-feature-tag > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--rxvh-deep);
  background: #dcefe4;
  font-size: 10px;
  font-weight: 900;
}

.rxvh-feature-tag small,
.rxvh-feature-tag strong {
  display: block;
}

.rxvh-feature-tag small {
  margin-bottom: 2px;
  color: #bfe2d3;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.rxvh-feature-tag strong {
  font-size: 11px;
}

.rxvh-video-fallback {
  position: absolute;
  z-index: 8;
  inset: auto 16px 16px;
  padding: 12px 15px;
  display: none;
  border-radius: 12px;
  color: #fff;
  background: rgba(91, 61, 30, .87);
  box-shadow: 0 14px 32px rgba(47, 37, 23, .18);
  backdrop-filter: blur(8px);
}

.rxvh-video-fallback.is-visible {
  display: block;
}

.rxvh-video-fallback strong,
.rxvh-video-fallback span {
  display: block;
}

.rxvh-video-fallback strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.rxvh-video-fallback span {
  color: rgba(255,255,255,.77);
  font-size: 10px;
}

.rxvh-controls {
  min-height: 61px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.88);
}

.rxvh-control-button {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14, 104, 112, .13);
  border-radius: 50%;
  color: var(--rxvh-deep);
  background: #f7fbf8;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.rxvh-control-button:hover {
  transform: scale(1.08);
  background: #edf6f0;
}

.rxvh-control-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rxvh-icon-pause,
.rxvh-icon-volume {
  display: none;
}

.rxvh-video-card.is-playing .rxvh-icon-play,
.rxvh-video-card.is-unmuted .rxvh-icon-muted {
  display: none;
}

.rxvh-video-card.is-playing .rxvh-icon-pause,
.rxvh-video-card.is-unmuted .rxvh-icon-volume {
  display: block;
}

.rxvh-progress {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce9e2;
  cursor: pointer;
}

.rxvh-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rxvh-deep), var(--rxvh-mint-strong));
}

/* Floating cards */
.rxvh-floating-card {
  position: absolute;
  z-index: 8;
  min-width: 215px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(22, 102, 101, .12);
  border-radius: 16px;
  color: var(--rxvh-deeper);
  background: rgba(255,255,255,.93);
  box-shadow: 0 20px 46px rgba(31, 75, 67, .16);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.rxvh-floating-card--top {
  top: -28px;
  right: -35px;
  animation: rxvh-float-top 4.2s ease-in-out infinite;
}

.rxvh-floating-card--bottom {
  left: -40px;
  bottom: 35px;
  animation: rxvh-float-bottom 4.7s ease-in-out infinite;
}

@keyframes rxvh-float-top {
  50% { transform: translateY(-11px) rotate(1deg); }
}

@keyframes rxvh-float-bottom {
  50% { transform: translateY(11px) rotate(-1deg); }
}

.rxvh-floating-card__icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--rxvh-deep);
  background: #dfeee7;
}

.rxvh-floating-card__icon--green {
  color: #14744a;
  background: #dcf2e4;
}

.rxvh-floating-card__icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rxvh-floating-card small,
.rxvh-floating-card strong {
  display: block;
}

.rxvh-floating-card small {
  margin-bottom: 3px;
  color: var(--rxvh-muted);
  font-size: 9px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.rxvh-floating-card strong {
  font-size: 12px;
}

/* Entrance reveal */
.rxvh-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(.18,.82,.22,1);
}

.rxvh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rxvh-particle {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: rgba(30, 105, 116, .20);
  pointer-events: none;
}

.rxvh-particle--1 {
  width: 7px;
  height: 7px;
  top: 12%;
  left: 16%;
  animation: rxvh-particle-one 7s ease-in-out infinite;
}

.rxvh-particle--2 {
  width: 5px;
  height: 5px;
  top: 38%;
  left: 47%;
  animation: rxvh-particle-two 8s ease-in-out infinite;
}

.rxvh-particle--3 {
  width: 9px;
  height: 9px;
  right: 9%;
  bottom: 16%;
  animation: rxvh-particle-three 9s ease-in-out infinite;
}

@keyframes rxvh-particle-one {
  50% { transform: translate(20px, 25px); opacity: .45; }
}

@keyframes rxvh-particle-two {
  50% { transform: translate(-18px, 30px); opacity: .35; }
}

@keyframes rxvh-particle-three {
  50% { transform: translate(-22px, -20px); opacity: .40; }
}

@media (max-width: 1180px) {
  .rxvh-shell {
    grid-template-columns: minmax(360px, .86fr) minmax(500px, 1.14fr);
    gap: 45px;
  }

  .rxvh-copy h1 {
    font-size: clamp(50px, 5.6vw, 76px);
  }

  .rxvh-video-stage {
    min-height: 370px;
  }

  .rxvh-floating-card--top {
    right: -15px;
  }

  .rxvh-floating-card--bottom {
    left: -15px;
  }
}

@media (max-width: 900px) {
  .rxvh-hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .rxvh-shell {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .rxvh-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .rxvh-eyebrow,
  .rxvh-title-row,
  .rxvh-points,
  .rxvh-actions,
  .rxvh-trust {
    justify-content: center;
  }

  .rxvh-description,
  .rxvh-trust {
    margin-inline: auto;
  }

  .rxvh-media {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .rxvh-video-card {
    transform: none;
  }

  .rxvh-video-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 620px) {
  .rxvh-hero {
    padding: 62px 14px 70px;
  }

  .rxvh-grid {
    background-size: 42px 42px;
  }

  .rxvh-eyebrow {
    margin-bottom: 21px;
    font-size: 10px;
    letter-spacing: .19em;
  }

  .rxvh-copy h1 {
    font-size: clamp(43px, 13vw, 59px);
    line-height: 1;
  }

  .rxvh-title-row {
    margin-top: 12px;
    gap: 9px;
  }

  .rxvh-copy h1 mark {
    border-radius: 10px;
  }

  .rxvh-rule {
    margin: 27px auto 23px;
  }

  .rxvh-description {
    font-size: 16px;
    line-height: 1.68;
  }

  .rxvh-points {
    display: grid;
    justify-items: start;
    width: fit-content;
    margin: 24px auto 0;
  }

  .rxvh-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rxvh-button {
    width: 100%;
  }

  .rxvh-trust {
    align-items: flex-start;
    text-align: left;
  }

  .rxvh-media {
    margin-top: 2px;
  }

  .rxvh-video-card {
    border-width: 5px;
    border-radius: 22px;
  }

  .rxvh-video-card__top {
    min-height: 51px;
    padding: 9px 12px;
  }

  .rxvh-video-card__label {
    font-size: 9px;
  }

  .rxvh-video-stage {
    min-height: 325px;
    aspect-ratio: .98 / 1;
  }

  .rxvh-video {
    object-fit: contain;
  }

  .rxvh-main-play {
    min-width: 205px;
    padding: 15px 16px;
  }

  .rxvh-main-play > span {
    width: 53px;
    height: 53px;
  }

  .rxvh-feature-tag {
    padding: 8px 9px;
  }

  .rxvh-feature-tag--one {
    top: 11px;
    left: 10px;
  }

  .rxvh-feature-tag--two {
    right: 10px;
    bottom: 10px;
  }

  .rxvh-feature-tag strong {
    font-size: 9px;
  }

  .rxvh-controls {
    min-height: 56px;
    padding: 8px 9px;
    gap: 8px;
  }

  .rxvh-control-button {
    width: 36px;
    height: 36px;
  }

  .rxvh-floating-card {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rxvh-hero *,
  .rxvh-hero *::before,
  .rxvh-hero *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}


/* ======================================== */
/* HERO SECTION CSS STARTS HERE             */
/* ======================================== */





.rx-hero-card {
  position: relative;
  z-index: 10;
  max-width: 950px;
  width: 100%;
  padding: 20px 35px;
  border-radius: 28px;
  background: transparent;
  text-align: center;
  animation: rx-cardFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
  box-sizing: border-box;
  margin: 0;
}

@keyframes rx-cardFadeUp {
  from { opacity: 0; transform: translateY(48px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rx-slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.rx-slide-up {
  animation: rx-slideUpFade 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  opacity: 0;
}

.rx-delay-1 { animation-delay: 0.1s; }
.rx-delay-2 { animation-delay: 0.25s; }
.rx-delay-3 { animation-delay: 0.4s; }
.rx-delay-4 { animation-delay: 0.55s; }

.rx-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #2c6975;
  margin-bottom: 28px;
  opacity: 0.9;
}

.rx-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c6975;
  box-shadow: 0 0 10px rgba(44,105,117,0.5);
  animation: rx-blink 2.4s ease-in-out infinite;
}

@keyframes rx-blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.rx-headline {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.5;
  color: #2c6975;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-align: center;
}

.rx-inventory-badge {
  display: inline-block;
  background: #68b2a0;
  color: #ffffff;
  border-radius: 12px;
  padding: 6px 10px 10px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(104,178,160,0.3);
  line-height: 1.2;
  margin-right: 14px;
}

.rx-operations-text {
  display: inline-block;
  font-weight: 800;
  color: #2c6975;
  letter-spacing: -0.02em;
  font-size: inherit;
  line-height: 1.2;
}

.rx-divider {
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, rgba(44,105,117,0.15), #2c6975, rgba(44,105,117,0.15));
  margin: 28px auto;
  border: none;
  opacity: 0.7;
}

.rx-hero-description {
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.8;
  color: #2c6975;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.95;
  text-align: center;
}

.slider-section {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding: 150px 40px 150px;
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  background: #fff;
}

.slider-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.slider-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  padding: 8px 20px;
  box-sizing: border-box;
}

.track {
  display: flex;
  gap: 40px;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1);
  padding: 0 12px;
  cursor: grab;
}

.track:active {
  cursor: grabbing;
}

.track.dragging {
  transition: none;
}

.slide {
  flex: 0 0 calc((100% - 40px) / 2);
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.slide:hover {
  z-index: 5;
  position: relative;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  pointer-events: none;
  border: 1.5px solid #2c6975;
  box-sizing: border-box;
  border-radius: 3px;
}

.arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  user-select: none;
  color: #2c6975;
  font-size: 28px;
  backdrop-filter: none;
  box-shadow: none;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.arrow i {
  font-size: 32px;
  pointer-events: none;
}

.left {
  left: -62px;
}
.right {
  right: -62px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(3px);
  font-family: 'Source Sans 3', sans-serif;
}

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 25px 45px rgba(0,0,0,0.7);
  transition: opacity 0.25s;
  user-select: none;
  -webkit-user-select: none;
}

.caption {
  margin-top: 22px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #f0f0f0;
  background: rgba(15, 15, 25, 0.75);
  padding: 10px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.close {
  position: absolute;
  top: 28px;
  right: 38px;
  font-size: 38px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.2s;
  z-index: 2003;
  line-height: 1;
  background: transparent;
  border: none;
  padding: 12px;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  padding: 22px;
  transition: 0.25s;
  z-index: 2002;
  line-height: 1;
  text-shadow: 0 4px 12px black;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-nav i {
  font-size: 48px;
  pointer-events: none;
}

.lightbox-nav:hover {
  color: white;
  transform: translateY(-50%) scale(1.25);
  text-shadow: 0 0 18px rgba(255,255,255,0.8);
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}
/* ======================================== */
/* HERO SECTION CSS ENDS HERE               */
/* ======================================== */




/* Rx is better than others css starts here  */


.RA-section {

  padding: 4.5rem 2rem 5rem;
  color: #1A1F1E;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.RA-container {
  max-width: 1200px;
  margin: 0 auto;
}

.RA-header {
  text-align: center;
  margin-bottom: 3rem;
}

.RA-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.RA-eyebrow-line {
  width: 40px;
  height: 1px;
  background: #2C6975;
  opacity: 0.4;
}

.RA-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2C6975;
}

.RA-heading {
  font-size: clamp(2.3rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1A1F1E;
  margin: 0;
}

.RA-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.RA-panel {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 30px rgba(44, 105, 117, 0.06);
  border: 1px solid rgba(44, 105, 117, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.RA-panel:hover {
  border-color: rgba(44, 105, 117, 0.2);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 14px 40px rgba(44, 105, 117, 0.1);
}

.RA-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.RA-panel-header-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.RA-panel-header-icon--green {
  background: #F0FDF5;
  color: #15803D;
}

.RA-panel-header-icon--red {
  background: #FFF5F5;
  color: #B91C1C;
}

.RA-panel-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.RA-panel-header-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0F2F36;
  margin: 0;
  line-height: 1.2;
}

.RA-panel-header-desc {
  font-size: 0.9rem;
  color: #5A6D73;
  margin: 0;
  line-height: 1.4;
}

.RA-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

.RA-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
}

.RA-row-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.RA-row-icon-wrap:hover {
  transform: scale(1.08);
}

.RA-row-icon-wrap--green {
  background: #F0FDF5;
  color: #15803D;
}

.RA-row-icon-wrap--red {
  background: #FFF5F5;
  color: #B91C1C;
}

.RA-row-icon {
  font-size: 0.9rem;
}

.RA-row-content {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.RA-row-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #1A2F33;
}

.RA-row-desc {
  font-size: 0.8rem;
  color: #5A6D73;
  line-height: 1.3;
}

.RA-highlight {
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 550;
  font-size: 0.84rem;
}

.RA-highlight--success {
  background: #F0FDF5;
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #14532D;
}

.RA-highlight--danger {
  background: #FFF5F5;
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #7F1D1D;
}

.RA-highlight-icon {
  font-size: 1.1rem;
  opacity: 0.85;
}

@media (max-width: 1200px) {
  .RA-grid { gap: 1.6rem; }
  .RA-panel { padding: 1.6rem 1.4rem; }
}

@media (max-width: 992px) {
  .RA-panel { padding: 1.5rem 1.3rem; }
}

@media (max-width: 768px) {
  .RA-section { padding: 3.5rem 1.5rem 4rem; }
  .RA-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 576px) {
  .RA-section { padding: 2.8rem 1rem 3.2rem; }
  .RA-panel { padding: 1.4rem 1.1rem; border-radius: 16px; }
  .RA-row { padding: 0.45rem 0.6rem; gap: 0.7rem; }
  .RA-row-icon-wrap { width: 32px; height: 32px; }
  .RA-row-icon { font-size: 0.8rem; }
}

@media (max-width: 400px) {
  .RA-eyebrow-text { font-size: 0.72rem; letter-spacing: 0.05em; }
  .RA-panel-header-icon { width: 42px; height: 42px; border-radius: 12px; }
  .RA-panel-header-title { font-size: 1.4rem; }
}


/* Rx is better than others css ends here  */


/* RX How to Works section csss starts here  */


:root {
  --rxaw-ink: #153c3f;
  --rxaw-text: #526f72;
  --rxaw-deep: #0b6670;
  --rxaw-teal: #147f7d;
  --rxaw-mint: #dcefe3;
  --rxaw-mint-soft: #f2f8f3;
  --rxaw-line: #d8e7df;
  --rxaw-white: #ffffff;
  --rxaw-yellow: #f3dd76;
  --rxaw-duration: 5600ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rxaw-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.rxaw-modal-open {
  overflow: hidden;
}

.rxaw-flow {
  position: relative;
  width: 100%;
  padding: clamp(72px, 8vw, 130px) clamp(18px, 5vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 198, 179, .23), transparent 23%),
    linear-gradient(180deg, #f8fbf8 0%, #f0f7f2 100%);
}

.rxaw-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 103, 108, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 103, 108, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 85%, transparent);
}

.rxaw-flow__inner {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  margin-inline: auto;
}

.rxaw-flow__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .62fr);
  gap: clamp(30px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 76px);
}

.rxaw-flow__eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--rxaw-teal);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rxaw-flow__eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.rxaw-flow__heading h2 {
  max-width: 800px;
  margin: 0;
  color: var(--rxaw-ink);
  font-size: clamp(40px, 5vw, 76px);
  line-height: .98;
  font-weight: 650;
  letter-spacing: -.055em;
}

.rxaw-flow__heading > p {
  max-width: 540px;
  margin: 0 0 6px;
  color: #000;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
}

.rxaw-flow__experience {
  display: grid;
  grid-template-columns: minmax(220px, .63fr) minmax(520px, 1.65fr) minmax(270px, .75fr);
  align-items: stretch;
  gap: clamp(16px, 2.2vw, 34px);
}

/* Step navigation */
.rxaw-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rxaw-step {
  position: relative;
  width: 100%;
  min-height: 104px;
  padding: 19px 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--rxaw-text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.rxaw-step:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, .56);
}

.rxaw-step.is-active {
  border-color: rgba(20, 127, 125, .15);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 40px rgba(30, 83, 69, .08);
}

.rxaw-step__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e3f1e9;
  color: var(--rxaw-teal);
  font-size: 12px;
  font-weight: 800;
}

.rxaw-step.is-active .rxaw-step__number {
  background: var(--rxaw-deep);
  color: #fff;
}

.rxaw-step__copy {
  min-width: 0;
}

.rxaw-step__copy strong,
.rxaw-step__copy small {
  display: block;
}

.rxaw-step__copy strong {
  margin: 1px 0 7px;
  color: var(--rxaw-ink);
  font-size: 16px;
  line-height: 1.2;
}

.rxaw-step__copy small {
  color: var(--rxaw-text);
  font-size: 12.5px;
  line-height: 1.45;
}

.rxaw-step__progress {
  position: absolute;
  right: 18px;
  bottom: 12px;
  left: 72px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5eeea;
  opacity: 0;
}

.rxaw-step__progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--rxaw-teal);
}

.rxaw-step.is-active .rxaw-step__progress {
  opacity: 1;
}

.rxaw-step.is-active .rxaw-step__progress i {
  animation: rxaw-progress var(--rxaw-duration) linear forwards;
}

@keyframes rxaw-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* Main visual */
.rxaw-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(23, 99, 92, .16);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 38px 90px rgba(35, 80, 66, .13);
  backdrop-filter: blur(14px);
}

.rxaw-stage__top,
.rxaw-stage__footer {
  min-height: 68px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.rxaw-stage__top {
  border-bottom: 1px solid var(--rxaw-line);
}

.rxaw-stage__brand,
.rxaw-stage__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rxaw-text);
  font-size: 12px;
  font-weight: 750;
}

.rxaw-stage__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--rxaw-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.rxaw-stage__status {
  padding: 8px 11px;
  border-radius: 999px;
  background: #edf7f1;
}

.rxaw-stage__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43a96e;
  box-shadow: 0 0 0 5px rgba(67, 169, 110, .12);
}

.rxaw-screen {
  position: relative;
  min-height: 560px;
  padding: clamp(18px, 2.3vw, 34px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 22%, rgba(239, 221, 118, .31), transparent 23%),
    linear-gradient(135deg, #e4f1e6, #c7ddd1);
}

.rxaw-screen::before,
.rxaw-screen::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
}

.rxaw-screen::before {
  width: 250px;
  height: 250px;
  top: -110px;
  right: -70px;
  border: 45px solid rgba(255,255,255,.28);
}

.rxaw-screen::after {
  width: 260px;
  height: 260px;
  bottom: -155px;
  left: -110px;
  background: rgba(255,255,255,.18);
}

.rxaw-slide {
  position: absolute;
  inset: clamp(26px, 4vw, 58px);
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px) scale(.94);
  transition:
    opacity 520ms ease,
    visibility 520ms ease,
    transform 760ms cubic-bezier(.18,.82,.22,1);
}

.rxaw-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.rxaw-slide img {
  width: 100%;
  max-width: 960px;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(26, 72, 63, .23);
  cursor: zoom-in;
}

.rxaw-slide[data-slide="2"] img {
  background: transparent;
  box-shadow: none;
}

.rxaw-screen__open {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 25;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 93, 91, .16);
  border-radius: 50%;
  background: rgba(255,255,255,.91);
  color: var(--rxaw-deep);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(26, 72, 63, .12);
  transition: transform 220ms ease, background 220ms ease;
}

.rxaw-screen__open:hover {
  transform: scale(1.08);
  background: #fff;
}

.rxaw-screen__open svg,
.rxaw-button svg,
.rxaw-control svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rxaw-callout,
.rxaw-metric {
  position: absolute;
  z-index: 20;
  border: 1px solid rgba(14, 91, 88, .12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(37, 77, 68, .16);
  backdrop-filter: blur(9px);
}

.rxaw-callout {
  left: 20px;
  bottom: 22px;
  max-width: min(330px, calc(100% - 110px));
  padding: 13px 16px 13px 13px;
  display: flex;
  gap: 11px;
  align-items: center;
  border-radius: 15px;
}

.rxaw-callout__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #dcefe5;
  color: var(--rxaw-teal);
  font-size: 12px;
  font-weight: 850;
}

.rxaw-callout small,
.rxaw-callout strong {
  display: block;
}

.rxaw-callout small {
  margin-bottom: 3px;
  color: #7b9091;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.rxaw-callout strong {
  color: var(--rxaw-ink);
  font-size: 13px;
}

.rxaw-metric {
  top: 25%;
  right: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  transform: rotate(2deg);
}

.rxaw-metric small,
.rxaw-metric strong {
  display: block;
}

.rxaw-metric small {
  margin-bottom: 3px;
  color: var(--rxaw-text);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.rxaw-metric strong {
  color: var(--rxaw-ink);
  font-size: 14px;
}

.rxaw-stage__footer {
  justify-content: center;
  border-top: 1px solid var(--rxaw-line);
}

.rxaw-stage__mobile-title {
  display: none;
}

.rxaw-control {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rxaw-line);
  border-radius: 50%;
  background: #fff;
  color: var(--rxaw-deep);
  cursor: pointer;
}

.rxaw-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.rxaw-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #bfd0c8;
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease;
}

.rxaw-dot.is-active {
  width: 30px;
  background: var(--rxaw-teal);
}

/* Detail panel */
.rxaw-detail {
  padding: clamp(25px, 3vw, 42px) clamp(22px, 2.5vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(23, 99, 92, .13);
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 25px 60px rgba(35, 80, 66, .08);
}

.rxaw-detail__number {
  margin-bottom: 25px;
  color: #b6ccc2;
  font-size: clamp(54px, 5vw, 84px);
  line-height: .8;
  font-weight: 750;
  letter-spacing: -.08em;
}

.rxaw-detail__tag {
  align-self: flex-start;
  margin-bottom: 17px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #dceee4;
  color: var(--rxaw-teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rxaw-detail h3 {
  margin: 0 0 18px;
  color: var(--rxaw-ink);
  font-size: clamp(25px, 2.15vw, 37px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.rxaw-detail > p {
  margin: 0 0 24px;
  color: var(--rxaw-text);
  font-size: 14px;
  line-height: 1.7;
}

.rxaw-detail ul {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.rxaw-detail li {
  position: relative;
  padding-left: 25px;
  color: var(--rxaw-ink);
  font-size: 13px;
  line-height: 1.45;
}

.rxaw-detail li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff4e7;
  color: #167949;
  font-size: 10px;
  font-weight: 900;
}

.rxaw-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rxaw-button {
  min-height: 47px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--rxaw-deep);
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.rxaw-button:hover {
  transform: translateY(-2px);
}

.rxaw-button--primary {
  background: var(--rxaw-deep);
  color: #fff;
}

.rxaw-button--secondary {
  background: transparent;
  color: var(--rxaw-deep);
}

/* Modal */
.rxaw-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  padding: 30px;
  display: grid;
  place-items: center;
  background: rgba(5, 28, 30, .9);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.rxaw-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rxaw-modal__content {
  width: min(1480px, 94vw);
  height: min(880px, 88vh);
  display: grid;
  place-items: center;
  transform: scale(.9);
  transition: transform 320ms cubic-bezier(.18,.82,.22,1);
}

.rxaw-modal.is-open .rxaw-modal__content {
  transform: scale(1);
}

.rxaw-modal__content img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 35px 120px rgba(0,0,0,.45);
}

.rxaw-modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1230px) {
  .rxaw-flow__experience {
    grid-template-columns: minmax(190px, .5fr) minmax(480px, 1.5fr);
  }

  .rxaw-detail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) minmax(270px, .8fr);
    gap: 18px 28px;
    align-items: start;
  }

  .rxaw-detail__number {
    grid-row: 1 / span 4;
    margin: 12px 0 0;
  }

  .rxaw-detail__tag,
  .rxaw-detail h3,
  .rxaw-detail > p {
    grid-column: 2;
  }

  .rxaw-detail ul,
  .rxaw-detail__actions {
    grid-column: 3;
  }

  .rxaw-detail ul {
    grid-row: 1 / span 3;
    margin-top: 12px;
  }
}

@media (max-width: 900px) {
  .rxaw-flow {
    padding-inline: 18px;
  }

  .rxaw-flow__heading {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .rxaw-flow__eyebrow {
    justify-content: center;
  }

  .rxaw-flow__heading h2,
  .rxaw-flow__heading > p {
    margin-inline: auto;
  }

  .rxaw-flow__experience {
    display: flex;
    flex-direction: column;
  }

  .rxaw-stage {
    order: 1;
  }

  .rxaw-steps {
    order: 2;
    width: 100%;
    padding: 3px 2px 10px;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rxaw-steps::-webkit-scrollbar {
    display: none;
  }

  .rxaw-step {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: center;
  }

  .rxaw-detail {
    order: 3;
    display: block;
  }

  .rxaw-detail__number {
    margin: 0 0 25px;
  }

  .rxaw-screen {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .rxaw-flow {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .rxaw-flow__heading {
    margin-bottom: 36px;
  }

  .rxaw-flow__heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .rxaw-stage {
    width: 100%;
    margin-inline: auto;
    border-radius: 22px;
  }

  .rxaw-stage__top {
    min-height: 58px;
    padding: 11px 13px;
  }

  .rxaw-stage__brand > span:last-child {
    display: none;
  }

  .rxaw-stage__status {
    font-size: 10px;
  }

  .rxaw-screen {
    min-height: 390px;
    padding: 14px;
  }

  .rxaw-slide {
    inset: 33px 13px 64px;
  }

  .rxaw-slide img {
    border-radius: 10px;
  }

  .rxaw-screen__open {
    top: 11px;
    right: 11px;
    width: 38px;
    height: 38px;
  }

  .rxaw-callout {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    padding: 10px 12px;
  }

  .rxaw-callout strong {
    font-size: 12px;
  }

  .rxaw-metric {
    display: none;
  }

  .rxaw-stage__footer {
    min-height: 80px;
    padding: 12px 13px;
    justify-content: space-between;
  }

  .rxaw-stage__mobile-title {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .rxaw-stage__mobile-title > span {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--rxaw-deep);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
  }

  .rxaw-stage__mobile-title div {
    min-width: 0;
  }

  .rxaw-stage__mobile-title strong,
  .rxaw-stage__mobile-title small {
    display: block;
    text-align: left;
  }

  .rxaw-stage__mobile-title strong {
    max-width: 220px;
    overflow: hidden;
    color: var(--rxaw-ink);
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .rxaw-stage__mobile-title small {
    display: none;
  }

  .rxaw-dots,
  .rxaw-control--prev {
    display: none;
  }

  .rxaw-control--next {
    flex: 0 0 auto;
  }

  .rxaw-detail {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .rxaw-detail h3 {
    font-size: 29px;
  }

  .rxaw-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rxaw-modal {
    padding: 14px;
  }

  .rxaw-modal__close {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rxaw-slide,
  .rxaw-step,
  .rxaw-button,
  .rxaw-modal,
  .rxaw-modal__content {
    transition: none !important;
    animation: none !important;
  }

  .rxaw-step__progress {
    display: none;
  }
}



/* rx feature section csss starts here  */

    .AX-section {
        padding: 80px 24px;
        font-family: var(--AX-font);
        color: #1A1F1E;
    }

    .AX-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .AX-header {
        text-align: center;
        margin-bottom: 64px;
    }

    .AX-eyebrow {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #12818B;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .AX-heading {
        font-size: 40px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin: 0 0 20px 0;
        color: #1A1F1E;
    }

    .AX-description {
        font-size: 17px;
        line-height: 1.7;
        color: #4a5553;
        max-width: 680px;
        margin: 0 auto;
    }

    .AX-features {
        display: flex;
        flex-direction: column;
    }

    .AX-row {
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 48px 0;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .AX-row.AX-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .AX-row--reverse {
        flex-direction: row-reverse;
    }

    .AX-row__icon {
        flex-shrink: 0;
    }

    .AX-icon-box {
        width: 100px;
        height: 100px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(44, 105, 117, 0.08) 0%, rgba(18, 129, 139, 0.05) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 38px;
        color: #2C6975;
        border: 1px solid rgba(44, 105, 117, 0.12);
        transition: border-color 0.3s ease, transform 0.3s ease;
    }


    .AX-row__content {
        flex: 1;
        min-width: 0;
    }

    .AX-label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        color: #12818B;
        text-transform: uppercase;
        margin-bottom: 8px;
        display: block;
    }

    .AX-row__heading {
        font-size: 28px;
        font-weight: 600;
        letter-spacing: -0.3px;
        margin: 0 0 4px 0;
        color: #1A1F1E;
    }

    .AX-row__subheading {
        font-size: 15px;
        font-weight: 500;
        color: #12818B;
        margin: 0 0 16px 0;
    }

    .AX-row__description {
        font-size: 16px;
        line-height: 1.65;
        color: #4a5553;
        margin: 0 0 20px 0;
    }

    .AX-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .AX-chips span {
        font-size: 13px;
        font-weight: 500;
        padding: 6px 14px;
        border-radius: 100px;
        background: rgba(44, 105, 117, 0.06);
        color: #2C6975;
        border: 1px solid rgba(44, 105, 117, 0.12);
        white-space: nowrap;
    }

    .AX-divider {
        height: 1px;
        background: rgba(44, 105, 117, 0.12);
        width: 100%;
    }

    .AX-mini-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 8px;
    }

    .AX-mini-card {
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(44, 105, 117, 0.12);
        background: rgba(44, 105, 117, 0.02);
        transition: border-color 0.3s ease;
    }

    .AX-mini-card:hover {
        border-color: rgba(44, 105, 117, 0.2);
    }

    .AX-mini-card__title {
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 6px 0;
        color: #1A1F1E;
    }

    .AX-mini-card__text {
        font-size: 14px;
        line-height: 1.55;
        color: #4a5553;
        margin: 0;
    }

    @media (max-width: 1200px) {
        .AX-row {
            gap: 40px;
        }

        .AX-heading {
            font-size: 36px;
        }
    }

    @media (max-width: 992px) {
        .AX-row {
            gap: 32px;
        }

        .AX-row__heading {
            font-size: 24px;
        }

        .AX-icon-box {
            width: 84px;
            height: 84px;
            font-size: 32px;
        }

        .AX-mini-cards {
            gap: 12px;
        }

        .AX-mini-card {
            padding: 16px;
        }
    }

    @media (max-width: 768px) {
        .AX-section {
            padding: 60px 20px;
        }

        .AX-header {
            margin-bottom: 40px;
        }

        .AX-heading {
            font-size: 30px;
        }

        .AX-description {
            font-size: 16px;
        }

        .AX-row,
        .AX-row--reverse {
            flex-direction: column;
            align-items: center;
            gap: 24px;
            padding: 36px 0;
        }

        .AX-row__content {
            text-align: center;
        }

        .AX-row__heading {
            font-size: 22px;
        }

        .AX-icon-box {
            width: 68px;
            height: 68px;
            font-size: 28px;
            border-radius: 14px;
            margin: 0 auto;
        }

        .AX-chips {
            justify-content: center;
        }

        .AX-mini-cards {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .AX-mini-card {
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .AX-section {
            padding: 48px 16px;
        }

        .AX-heading {
            font-size: 26px;
        }

        .AX-row {
            padding: 28px 0;
        }

        .AX-row__heading {
            font-size: 20px;
        }

        .AX-mini-card {
            padding: 14px;
        }
    }

    @media (max-width: 400px) {
        .AX-heading {
            font-size: 24px;
        }

        .AX-chips span {
            font-size: 12px;
            padding: 5px 10px;
        }
    }

/* rx feature section css ends here  */




    /* ======================================== */
    /* AUDITWISE SECTION CSS STARTS HERE        */
    /* ======================================== */
    .rx-section {
      box-sizing: border-box;
      width: 100%;
      max-width: 100vw;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: center;
      gap: 3rem;
      padding: 4rem 6vw;
      background: #e0ecde;
      overflow: hidden;
      margin: 0;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .rx-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .left-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-width: 0;
      overflow: hidden;
      order: 1;
    }

    .right-col {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      min-width: 0;
      order: 2;
    }

    .golden-label {
      display: inline-flex;
      width: fit-content;
      background: rgba(44, 105, 117, 0.08);
      color: #2c6975;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      white-space: nowrap;
    }

    .main-heading {
      font-size: clamp(2rem, 4.2vw, 3.6rem);
      line-height: 1.1;
      font-weight: 800;
      color: #2c6975;
      letter-spacing: -1.5px;
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .description {
      font-size: 1.3rem;
      line-height: 1.7;
      color: #24474d;
      opacity: 0.9;
      max-width: 700px;
      margin: 0;
      word-wrap: break-word;
    }

    .audit-image {
      width: 100%;
      max-width: 100%;
      display: block;
      object-fit: contain;
      border: none;
      box-shadow: none;
      opacity: 0;
      transform: translateX(-60px);
      animation: slideIn 0.9s ease forwards;
      cursor: pointer;
    }

    .image-caption {
      margin-top: 0.8rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: #2c6975;
      letter-spacing: 0.5px;
    }

    .lightbox2 {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    .lightbox2.active {
      display: flex;
    }

    .lightbox2 img {
      max-width: 95vw;
      max-height: 95vh;
      object-fit: contain;
      border-radius: 8px;
    }

    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    /* ======================================== */
    /* AUDITWISE SECTION CSS ENDS HERE          */
    /* ======================================== */

    /* ======================================== */
    /* SAMPLE REPORT SECTION CSS STARTS HERE    */
    /* ======================================== */
    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(20, 18, 16, 0.92);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      cursor: pointer;
    }

    .lightbox-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox-content {
      position: relative;
      max-width: 95vw;
      max-height: 95vh;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: default;
    }

    .lightbox-content img {
      max-width: 95vw;
      max-height: 95vh;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 40px 70px rgba(0,0,0,0.5);
      border: 2px solid rgba(255,255,255,0.15);
      background: #fff;
      padding: 12px;
    }

    .lightbox-close {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 44px;
      height: 44px;
      background: #2c6975;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 300;
      cursor: pointer;
      border: none;
      box-shadow: 0 8px 18px rgba(0,0,0,0.3);
      transition: background 0.3s;
      line-height: 1;
    }

    .lightbox-close:hover {
      background: #68b2a0;
    }

    .ar-section {
      width: 100%;
      padding: 45px 6%;
      background: #fbfaf8;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      min-height: auto;
      margin: 0;
      max-width: 100vw;
    }

    .ar-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(44,105,117,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44,105,117,0.06) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
      -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
      z-index: 0;
      pointer-events: none;
    }

    .ar-container {
      max-width: 1380px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .ar-left {
      display: flex;
      flex-direction: column;
    }

    .ar-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .ar-eyebrow.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ar-eyebrow span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #2c6975;
    }

    .ar-heading {
      font-size: clamp(38px, 4.5vw, 62px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -1.5px;
      color: #1A1F1E;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out 0.15s, transform 0.8s ease-out 0.15s;
    }

    .ar-heading.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ar-heading em {
      display: block;
      font-style: italic;
      color: #2c6975;
    }

    .ar-body {
      font-size: 16px;
      line-height: 1.7;
      color: #7a7060;
      max-width: 520px;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
    }

    .ar-body.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ar-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out 0.45s, transform 0.8s ease-out 0.45s;
    }

    .ar-actions.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ar-btn {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 15px 28px;
      background: #2c6975;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      border-radius: 14px;
      transition: background 0.4s, transform 0.2s;
      border: none;
      cursor: pointer;
    }

    .ar-btn:hover {
      background: #68b2a0;
    }

    .ar-btn-icon {
      width: 26px;
      height: 26px;
      background: #ffffff;
      color: #2c6975;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 600;
    }

    .ar-right {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
    }

    .ar-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .ar-glow {
      position: absolute;
      width: 90%;
      height: 80%;
      background: radial-gradient(ellipse, rgba(104,178,160,.18) 0%, rgba(205,224,201,.06) 70%);
      bottom: -18%;
      left: 5%;
      filter: blur(50px);
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 1.2s ease-out 0.5s, transform 1.2s ease-out 0.5s;
    }

    .ar-glow.visible {
      opacity: 1;
      transform: scale(1);
    }

    .ar-frame {
      background: #fff;
      border-radius: 10px;
      padding: 10px;
      border: 1px solid rgba(44,105,117,.12);
      position: relative;
      z-index: 2;
      box-shadow: 0 20px 35px -10px rgba(44,105,117,.1);
      width: 100%;
      max-width: 680px;
      opacity: 0;
      transform: translateY(50px) scale(0.95);
      transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
    }

    .ar-frame.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .ar-frame-inner {
      border: 1px solid rgba(104,178,160,.15);
      border-radius: 1px;
      overflow: hidden;
      background: #fff;
    }

    .ar-frame-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 6px 8px;
      background: linear-gradient(to bottom, rgba(205,224,201,.25), rgba(205,224,201,.02));
    }

    .ar-frame-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .ar-frame-dot:nth-child(1) { background: #ff6058; }
    .ar-frame-dot:nth-child(2) { background: #ffbd2e; }
    .ar-frame-dot:nth-child(3) { background: #28ca42; }

    .ar-frame-url {
      flex: 1;
      height: 20px;
      background: linear-gradient(90deg, rgba(205,224,201,.6), rgba(104,178,160,.25));
      border-radius: 6px;
      margin-left: 6px;
    }

    .ar-img-wrap {
      position: relative;
      overflow: hidden;
      line-height: 0;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .ar-img-wrap:hover {
      opacity: 0.95;
    }

    .ar-img-wrap img {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center 30%;
    }

    .ar-caption-outside {
      margin-top: 14px;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      color: #2c6975;
      background: rgba(44,105,117,0.07);
      padding: 8px 22px;
      border-radius: 30px;
      letter-spacing: 0.3px;
      display: inline-block;
      align-self: center;
      backdrop-filter: blur(4px);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out 0.7s, transform 0.6s ease-out 0.7s;
    }

    .ar-caption-outside.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* ======================================== */
    /* SAMPLE REPORT SECTION CSS ENDS HERE      */
    /* ======================================== */

  
    /* ======================================== */
    /* RESPONSIVE MEDIA QUERIES START HERE      */
    /* ======================================== */
    @media (hover: hover) and (min-width: 769px) {
      .RX-card:hover::before {
        opacity: 1;
      }
      .RX-card:hover .RX-badge {
        color: #2c6975;
        background: rgba(255,255,255,0.9);
        border-color: rgba(255,255,255,0.6);
      }
      .RX-card:hover .RX-card-icon {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.5);
      }
      .RX-card:hover .RX-card-title { color: rgba(255,255,255,0.9); }
      .RX-card:hover .RX-currency { color: rgba(255,255,255,0.9); }
      .RX-card:hover .RX-amount { color: #ffffff; }
      .RX-card:hover .RX-amount-custom { color: #ffffff; }
      .RX-card:hover .RX-card-subtitle { color: rgba(255,255,255,0.8); }
      .RX-card:hover .RX-card-btn {
        background: #ffffff;
        color: #2c6975;
        border-color: transparent;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      }
      .RX-card:hover {
        box-shadow: 0 20px 64px rgba(44,105,117,0.22), 0 4px 16px rgba(0,0,0,0.10);
      }
      .RX-card:hover .RX-card-canvas { opacity: 1; }
    }

    @media (max-width: 1400px) {
      .rx-hero-card { max-width: 900px; }
      .slider-wrapper { max-width: 1300px; }
      .ar-container { max-width: 1300px; }
      .RX-pricing-section { max-width: 1050px; }
    }

    @media (max-width: 1280px) {
      .rx-hero-card { max-width: 850px; padding: 18px 28px; }
      .rx-headline { font-size: clamp(2.4rem, 6vw, 3.8rem); }
      .track { gap: 32px; }
      .slide { flex: 0 0 calc((100% - 32px) / 2); }
      .slide img { height: 380px; }
      .arrow { width: 46px; height: 46px; font-size: 26px; }
      .left { left: -52px; }
      .right { right: -52px; }
      .ar-container { gap: 50px; }
    }

    @media (max-width: 1200px) {
      .rx-hero-card { max-width: 800px; }
      .rx-blur-left, .rx-blur-right { width: 240px; opacity: 0.16; }
      .RX-pricing-section { max-width: 960px; padding: 50px 16px; }
      .RX-cards-grid { gap: 24px; }
      .RX-card { padding: 40px 28px 36px; }
      .RX-amount { font-size: 3.2rem; }
    }

    @media (max-width: 1024px) {
      .rx-scene { min-height: 70vh; }
      .ar-container { gap: 40px; }
      .RX-pricing-section { max-width: 900px; }
    }

    @media (max-width: 992px) {
      .rx-scene { min-height: 70vh; padding: 30px 16px 90px; }
      .rx-hero-card { max-width: 700px; padding: 16px 24px; }
      .rx-blur-left, .rx-blur-right { width: 180px; opacity: 0.12; }
      .rx-inventory-badge { padding: 4px 24px 8px; margin-right: 10px; }
      .track { gap: 28px; }
      .slide { flex: 0 0 calc((100% - 28px) / 2); }
      .slide img { height: 340px; }
      .arrow { width: 42px; height: 42px; }
      .left { left: -46px; }
      .right { right: -46px; }
      .slider-section { margin-top: -60px; }
      .rx-section { grid-template-columns: 1fr; text-align: center; padding: 3rem 5vw; gap: 2rem; }
      .left-col { order: 2; }
      .right-col { order: 1; align-items: center; }
      .description { max-width: 100%; }
      .audit-image { max-width: 500px; transform: translateX(0); animation: none; opacity: 1; }
      .ar-container { grid-template-columns: 1fr; gap: 40px; }
      .ar-left { align-items: center; text-align: center; }
      .ar-eyebrow { justify-content: center; }
      .ar-body { margin-left: auto; margin-right: auto; }
      .ar-actions { justify-content: center; }
      .ar-right { max-width: 600px; margin: auto; transform: translateY(60px); }
      .ar-right.visible { transform: translateY(0); }
      .ar-frame { max-width: 100%; }
      .RX-pricing-section { max-width: 720px; padding: 50px 20px; }
      .RX-cards-grid { gap: 20px; }
      .RX-card { padding: 36px 24px 32px; border-radius: 18px; }
      .RX-card::before { border-radius: 18px; }
      .RX-card-canvas { border-radius: 18px; }
      .RX-section-title { font-size: 2.4rem; }
      .RX-amount { font-size: 2.8rem; }
      .RX-amount-custom { font-size: 2.4rem; }
    }

    @media (max-width: 768px) {
      .rx-scene { min-height: 65vh; padding: 30px 16px 80px; background: linear-gradient(to right, rgba(44, 105, 117, 0.25) 0%, #cde0c9 15%, #e0ecde 85%, rgba(44, 105, 117, 0.25) 100%); }
      .rx-blur-left, .rx-blur-right { width: 120px; opacity: 0.08; }
      .rx-hero-card { padding: 14px 18px; }
      .rx-headline { font-size: clamp(2rem, 8vw, 3rem); }
      .rx-tag { font-size: 11px; letter-spacing: 0.2em; margin-bottom: 20px; }
      .rx-divider { margin: 22px auto; width: 90px; }
      .rx-description { font-size: 1rem; max-width: 500px; }
      .rx-inventory-badge { display: inline-block; margin-right: 8px; padding: 3px 18px 6px; border-radius: 10px; }
      .track { gap: 20px; }
      .slide { flex: 0 0 calc((100% - 20px) / 1); }
      .slide img { height: 320px; }
      .arrow { width: 38px; height: 38px; font-size: 22px; }
      .left { left: -38px; }
      .right { right: -38px; }
      .lightbox-nav { font-size: 40px; padding: 14px; }
      .slider-section { margin-top: -50px; }
      .ar-section { padding: 50px 30px; }
      .ar-heading { font-size: 40px; }
      .ar-body { font-size: 15px; }
      .RX-pricing-section { padding: 40px 16px; max-width: 100%; }
      .RX-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 20px; width: 100%; }
      .RX-card.RX-featured { transform: none; }
      .RX-card.rx-visible.RX-featured { transform: translateY(0); }
      .RX-section-header { margin-bottom: 40px; }
      .RX-section-title { font-size: 2rem; }
      .RX-card { padding: 32px 24px 28px; }
      .RX-amount { font-size: 2.6rem; }
      .RX-badge { top: 16px; right: 16px; }
    }

    @media (max-width: 640px) {
      .rx-scene { min-height: 60vh; }
      .rx-headline { font-size: 2.2rem; }
      .slide img { height: 300px; }
      .ar-section { padding: 40px 25px; }
      .ar-heading { font-size: 36px; }
    }

    @media (max-width: 576px) {
      .rx-scene { min-height: 60vh; padding: 25px 12px 70px; background: linear-gradient(to right, rgba(44, 105, 117, 0.15) 0%, #cde0c9 10%, #e0ecde 90%, rgba(44, 105, 117, 0.15) 100%); }
      .rx-blur-left, .rx-blur-right { width: 80px; opacity: 0.05; filter: blur(70px); }
      .rx-hero-card { padding: 12px 10px; }
      .rx-headline { font-size: 1.9rem; line-height: 1.3; }
      .rx-inventory-badge { padding: 2px 16px 5px; font-size: 0.9em; margin-right: 6px; border-radius: 8px; }
      .rx-operations-text { font-size: 0.9em; }
      .rx-tag { font-size: 10px; gap: 6px; }
      .rx-description { font-size: 0.9rem; line-height: 1.6; }
      .track { gap: 16px; }
      .slide { flex: 0 0 calc((100% - 16px) / 1); }
      .slide img { height: 350px; }
      .arrow { display: none; }
      .caption { font-size: 1.2rem; padding: 8px 20px; }
      .slider-section { margin-top: -40px; }
      .rx-section { padding: 2rem 1.2rem; }
      .main-heading { font-size: 2rem; }
      .ar-section { padding: 40px 20px; }
      .ar-heading { font-size: 34px; }
      .ar-actions { width: 100%; }
      .ar-btn { width: 100%; justify-content: center; }
      .RX-pricing-section { padding: 40px 12px; }
      .RX-section-title { font-size: 1.8rem; }
      .RX-section-sub { font-size: 0.85rem; }
      .RX-card { padding: 28px 20px 24px; border-radius: 16px; }
      .RX-card::before { border-radius: 16px; }
      .RX-card-canvas { border-radius: 16px; }
      .RX-badge { top: 14px; right: 14px; font-size: 0.55rem; padding: 4px 10px; }
      .RX-amount { font-size: 2.4rem; }
      .RX-amount-custom { font-size: 2.2rem; }
    }

    @media (max-width: 480px) {
      .rx-headline { font-size: 1.7rem; }
      .slide img { height: 300px; }
      .ar-heading { font-size: 30px; }
      .RX-card { padding: 24px 16px 20px; }
      .RX-amount { font-size: 2.2rem; }
    }

    @media (max-width: 360px) {
      .rx-scene { min-height: 55vh; padding: 20px 8px 60px; background: linear-gradient(to right, rgba(44, 105, 117, 0.05) 0%, #cde0c9 5%, #e0ecde 95%, rgba(44, 105, 117, 0.05) 100%); }
      .rx-blur-left, .rx-blur-right { width: 50px; opacity: 0.03; filter: blur(50px); }
      .rx-hero-card { padding: 10px 5px; }
      .rx-headline { font-size: 1.6rem; }
      .rx-inventory-badge { padding: 1px 12px 4px; margin-right: 4px; font-size: 0.8em; border-radius: 6px; }
      .rx-operations-text { font-size: 0.8em; }
      .rx-tag { font-size: 9px; letter-spacing: 0.15em; margin-bottom: 16px; }
      .rx-divider { width: 70px; margin: 16px auto; }
      .rx-description { font-size: 0.8rem; }
      .track { gap: 12px; }
      .slide { flex: 0 0 calc((100% - 12px) / 1); }
      .slide img { height: 280px; }
      .lightbox-nav { font-size: 34px; padding: 8px; }
      .slider-section { margin-top: -35px; }
      .ar-heading { font-size: 28px; }
      .ar-body { font-size: 14px; }
      .RX-pricing-section { padding: 30px 10px; }
      .RX-section-eyebrow { font-size: 0.65rem; padding: 5px 14px; }
      .RX-section-title { font-size: 1.6rem; }
      .RX-card { padding: 20px 14px 18px; border-radius: 14px; }
      .RX-card::before { border-radius: 14px; }
      .RX-card-canvas { border-radius: 14px; }
      .RX-amount { font-size: 2rem; }
      .RX-amount-custom { font-size: 1.8rem; }
      .RX-currency { font-size: 1.1rem; }
      .RX-card-icon { width: 44px; height: 44px; margin-bottom: 20px; }
      .RX-badge { top: 10px; right: 10px; }
    }
    /* ======================================== */
    /* RESPONSIVE MEDIA QUERIES END HERE        */
    /* ======================================== */



        /* ======================================== */
    /* CTA SECTION CSS STARTS HERE        */
    /* ======================================== */

.rx-cta {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      position: relative;
      width: 100%;
      max-width: 1250px;
      margin: 2rem auto;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 1.8rem;
      padding: 3.8rem 4.8rem;
      overflow: hidden;
      isolation: isolate;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3.5rem;
      text-align: left;
      background-color: #9BB9B7;
      background-image: linear-gradient(135deg, #CDE0C9 0%, #9BB9B7 100%);
      border: 1px solid rgba(205, 224, 201, 0.6);
      box-shadow: none;
      transition: all 0.2s ease;
      box-sizing: border-box;
    }

    .rx-cta *,
    .rx-cta *::before,
    .rx-cta *::after {
      box-sizing: border-box;
    }

    .rx-grid-static {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(44, 105, 117, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 105, 117, 0.12) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
    }


    .rx-blob {
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(44, 105, 117, 0.22) 0%, transparent 70%);
      top: 50%;
      right: -20px;
      transform: translateY(-50%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
      animation: rxFloat 7s ease-in-out infinite;
    }

    @keyframes rxFloat {
      0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
      50% { opacity: 0.8; transform: translateY(-50%) scale(1.12); }
    }

    .rx-content {
      position: relative;
      z-index: 2;
      flex: 1 1 auto;
      min-width: 0;
    }

    .rx-heading {
      font-size: 2.4rem;
      font-weight: 800;
      color: #1E4A52;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      white-space: nowrap;
    }

    .rx-heading mark {
      background: none;
      color: #2C6975;
    }

    .rx-description {
      font-size: 1.1rem;
      color: #1E4A52;
      line-height: 1.6;
      max-width: 420px;
      opacity: 0.9;
      font-weight: 500;
      margin: 0;
    }

    .rx-actions {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1.3rem;
      flex-shrink: 0;
      flex-wrap: wrap;
    }

    .rx-bubble-btn {
      --size-letter: 17px;
      padding: 0.85em 2em;
      font-size: var(--size-letter);
      background-color: transparent;
      border: 1.5px solid #2C6975;
      border-radius: 0.35em;
      cursor: pointer;
      overflow: hidden;
      position: relative;
      transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
      font-weight: 600;
      letter-spacing: 0.3px;
      background:#dde6e0 !important;
      backdrop-filter: blur(3px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      white-space: nowrap;
      color: #2C6975;
      font-family: 'Source Sans 3', sans-serif;
      text-decoration: none;
      line-height: 1.3;
      min-width: 180px;
      box-sizing: border-box;
    }

    .rx-bubble-btn .rx-text {
      font-weight: 600;
      color: #2C6975;
      position: relative;
      z-index: 1;
      transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .rx-bubble-btn i {
      font-size: 1.15em;
      color: #2C6975;
      transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
      position: relative;
      z-index: 1;
    }

    .rx-bubble-btn::before,
    .rx-bubble-btn::after {
      content: "";
      width: 150%;
      aspect-ratio: 1/1;
      scale: 0;
      transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
      background-color: #2C6975;
      border-radius: 50%;
      position: absolute;
      translate: -50% -50%;
    }

    .rx-bubble-btn::before {
      top: 0;
      left: 0;
    }

    .rx-bubble-btn::after {
      top: 100%;
      left: 100%;
    }

    .rx-bubble-btn:active {
      scale: 0.97;
      filter: brightness(0.95);
    }

    .rx-bubble-btn:hover::before,
    .rx-bubble-btn:hover::after {
      scale: 1;
    }

    .rx-bubble-btn:hover .rx-text,
    .rx-bubble-btn:hover i {
      color: #ffffff;
      transition: color 400ms cubic-bezier(0.83, 0, 0.17, 1);
    }

    .rx-bubble-btn--primary {
      border-color: #2C6975;
      background-color: rgba(44, 105, 117, 0.25);
      backdrop-filter: blur(6px);
    }

    .rx-bubble-btn--secondary {
      border-color: #2C6975;
      background-color: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(6px);
    }

    /* ========== RESPONSIVE BREAKPOINTS ========== */

    /* Large desktops */
    @media (max-width: 1400px) {
      .rx-cta {
        padding: 3.5rem 4rem;
        gap: 3rem;
      }
    }

    /* Desktops */
    @media (max-width: 1280px) {
      .rx-cta {
        padding: 3.2rem 3.5rem;
        gap: 2.5rem;
      }
      .rx-heading {
        font-size: 2.2rem;
      }
      .rx-bubble-btn {
        --size-letter: 16px;
        padding: 0.8em 1.8em;
        min-width: 170px;
      }
    }

    /* Small desktops */
    @media (max-width: 1200px) {
      .rx-cta {
        padding: 3rem 3rem;
        gap: 2.2rem;
      }
      .rx-bubble-btn {
        min-width: 160px;
      }
    }

    /* Tablets landscape / small laptops */
    @media (max-width: 1024px) {
      .rx-cta {
        padding: 2.8rem 2.8rem;
        gap: 2rem;
      }
      .rx-actions {
        gap: 1rem;
      }
      .rx-bubble-btn {
        --size-letter: 15px;
        padding: 0.75em 1.6em;
        min-width: 150px;
      }
    }

    /* Tablets portrait */
    @media (max-width: 992px) {
      .rx-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        padding: 2.8rem 2.8rem;
        gap: 2.2rem;
        margin: 1.5rem auto;
      }
      .rx-content {
        text-align: left;
        width: 100%;
      }
      .rx-description {
        max-width: 100%;
      }
      .rx-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
      }
      .rx-bubble-btn {
        min-width: 170px;
      }
    }

    /* Tablets */
    @media (max-width: 768px) {
      .rx-cta {
        padding: 2.5rem 2.2rem;
        border-radius: 1.5rem;
        gap: 2rem;
        margin: 1.2rem auto;
        max-width: calc(100% - 2.4rem);
        width: calc(100% - 2.4rem);
      }
      .rx-heading {
        font-size: 2rem;
        white-space: normal;
      }
      .rx-description {
        font-size: 1rem;
      }
      .rx-actions {
        gap: 1rem;
      }
      .rx-bubble-btn {
        --size-letter: 15px;
        padding: 0.8em 1.8em;
        min-width: 160px;
      }
    }

    /* Large mobile */
    @media (max-width: 640px) {
      .rx-cta {
        padding: 2.2rem 1.8rem;
        border-radius: 1.4rem;
        margin: 1rem auto;
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
      }
      .rx-heading {
        font-size: 1.8rem;
      }
      .rx-bubble-btn {
        min-width: 150px;
      }
    }

    /* Mobile landscape / large phones */
    @media (max-width: 576px) {
      .rx-cta {
        padding: 2.2rem 1.8rem;
        border-radius: 1.3rem;
        gap: 1.8rem;
        margin: 1rem auto;
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
      }
      .rx-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.9rem;
      }
      .rx-bubble-btn {
        justify-content: center;
        width: 100%;
        min-width: auto;
        --size-letter: 16px;
        padding: 0.9em 1.8em;
      }
    }

    /* Mobile 480px */
    @media (max-width: 480px) {
      .rx-cta {
        padding: 2rem 1.5rem;
        border-radius: 1.2rem;
        gap: 1.6rem;
        margin: 0.8rem auto;
        max-width: calc(100% - 1.6rem);
        width: calc(100% - 1.6rem);
      }
      .rx-heading {
        font-size: 1.6rem;
      }
      .rx-description {
        font-size: 0.95rem;
      }
      .rx-bubble-btn {
        --size-letter: 15px;
        padding: 0.85em 1.6em;
      }
    }

    /* Mobile 414px */
    @media (max-width: 414px) {
      .rx-cta {
        padding: 1.9rem 1.4rem;
        border-radius: 1.1rem;
        gap: 1.5rem;
        margin: 0.8rem auto;
        max-width: calc(100% - 1.6rem);
        width: calc(100% - 1.6rem);
      }
      .rx-heading {
        font-size: 1.5rem;
      }
      .rx-description {
        font-size: 0.9rem;
      }
      .rx-bubble-btn {
        --size-letter: 15px;
        padding: 0.8em 1.5em;
      }
    }

    /* Mobile 390px */
    @media (max-width: 390px) {
      .rx-cta {
        padding: 1.8rem 1.3rem;
        border-radius: 1rem;
        gap: 1.4rem;
        margin: 0.7rem auto;
        max-width: calc(100% - 1.4rem);
        width: calc(100% - 1.4rem);
      }
      .rx-heading {
        font-size: 1.45rem;
      }
      .rx-description {
        font-size: 0.88rem;
      }
      .rx-bubble-btn {
        --size-letter: 14px;
        padding: 0.8em 1.4em;
      }
    }

    /* Mobile 375px */
    @media (max-width: 375px) {
      .rx-cta {
        padding: 1.7rem 1.2rem;
        border-radius: 1rem;
        gap: 1.3rem;
        margin: 0.6rem auto;
        max-width: calc(100% - 1.4rem);
        width: calc(100% - 1.4rem);
      }
      .rx-heading {
        font-size: 1.4rem;
      }
      .rx-description {
        font-size: 0.85rem;
      }
      .rx-bubble-btn {
        --size-letter: 14px;
        padding: 0.75em 1.3em;
      }
    }

    /* Mobile 360px */
    @media (max-width: 360px) {
      .rx-cta {
        padding: 1.6rem 1.1rem;
        border-radius: 0.9rem;
        gap: 1.2rem;
        margin: 0.5rem auto;
        max-width: calc(100% - 1.2rem);
        width: calc(100% - 1.2rem);
      }
      .rx-heading {
        font-size: 1.35rem;
      }
      .rx-description {
        font-size: 0.82rem;
      }
      .rx-bubble-btn {
        --size-letter: 13px;
        padding: 0.7em 1.2em;
      }
    }

    /* Mobile 320px */
    @media (max-width: 320px) {
      .rx-cta {
        padding: 1.4rem 1rem;
        border-radius: 0.8rem;
        gap: 1.1rem;
        margin: 0.4rem auto;
        max-width: calc(100% - 1rem);
        width: calc(100% - 1rem);
      }
      .rx-heading {
        font-size: 1.25rem;
      }
      .rx-description {
        font-size: 0.78rem;
      }
      .rx-bubble-btn {
        --size-letter: 12px;
        padding: 0.65em 1.1em;
      }
    }




   /* ======================================== */
    /* CTA SECTION CSS ENDS HERE        */
    /* ======================================== */




/* ======================================== */
/* Email & phone SECTION CSS Starts HERE    */
/* ======================================== */

.rx-cta-wrapper {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.rx-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        linear-gradient(#2c6975 1px, transparent 1px),
        linear-gradient(90deg, #2c6975 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.rx-cta-section {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
}

.rx-cta-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.rx-tag-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #68b2a0);
}

.rx-tag-line.right {
    background: linear-gradient(90deg, #68b2a0, transparent);
}

.rx-tag-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #68b2a0;
}

.rx-cta-headline {
    text-align: center;
    margin-bottom: 48px;
}

.rx-cta-headline h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #1e2b2e;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0;
}

.rx-cta-headline h2 em {
    font-style: normal;
    background: linear-gradient(135deg, #2c6975 0%, #68b2a0 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rx-contact-blocks {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}

.rx-contact-block {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: background 0.3s ease;
}

.rx-contact-block:hover {
    background: #f8fbfb;
}

.rx-divider-v {
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        #e2e8f0 20%,
        #e2e8f0 80%,
        transparent 100%
    );
    margin: 32px 0;
}

.rx-block-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #f0f7f5;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease;
}

.rx-contact-block:hover .rx-block-icon {
    transform: scale(1.08);
    background: #e6f3ef;
}

.rx-block-icon svg {
    display: block;
}

.rx-block-type {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #68b2a0;
    margin-bottom: 8px;
}

.rx-block-action {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e2b2e;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
}

.rx-block-desc {
    font-size: 0.82rem;
    font-weight: 400;
    color: #5f6c7a;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
}

.rx-block-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e2b2e;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.rx-block-value:hover {
    color: #2c6975;
}

.rx-block-value .rx-val-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #f0f7f5;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rx-bubbles {
    padding: 0.6em 1.2em;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #cde0c9;
    border-radius: 0.3em;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
    font-weight: 600;
    letter-spacing: 0.3px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: #2c6975;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.rx-bubbles > .text {
    font-weight: 700;
    color: #2c6975;
    position: relative;
    z-index: 1;
    transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

.rx-bubbles::before {
    top: 0;
    left: 0;
}

.rx-bubbles::after {
    top: 100%;
    left: 100%;
}

.rx-bubbles::before,
.rx-bubbles::after {
    content: "";
    width: 150%;
    aspect-ratio: 1/1;
    scale: 0;
    transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
    background-color: #cde0c9;
    border-radius: 50%;
    position: absolute;
    translate: -50% -50%;
}

.rx-bubbles:active {
    scale: 0.98;
    filter: brightness(0.95);
}

.rx-bubbles:hover::before,
.rx-bubbles:hover::after {
    scale: 1;
}

.rx-bubbles:hover > .text {
    color: #212121;
}

.rx-bubbles .rx-btn-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #cde0c9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
    margin-left: 8px;
}

.rx-bubbles:hover .rx-btn-arrow {
    transform: translateX(3px);
}

.rx-email,
.rx-phone {
    /* These classes can be used for specific styling if needed */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .rx-contact-block {
        padding: 36px 36px;
    }
    .rx-block-action {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .rx-cta-wrapper {
        padding: 50px 20px;
    }
    .rx-contact-block {
        padding: 32px 28px;
    }
    .rx-block-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        margin-bottom: 20px;
    }
    .rx-block-action {
        font-size: 1.2rem;
    }
    .rx-block-desc {
        font-size: 0.78rem;
        max-width: 240px;
    }
    .rx-block-value {
        font-size: 0.88rem;
    }
}

@media (max-width: 768px) {
    .rx-contact-blocks {
        grid-template-columns: 1fr;
    }
    .rx-divider-v {
        display: none;
    }
    .rx-contact-block.email {
        border-bottom: 1px solid #e2e8f0;
    }
    .rx-contact-block {
        padding: 32px 28px;
    }
    .rx-cta-headline {
        margin-bottom: 36px;
    }
    .rx-cta-headline h2 {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
    }
    .rx-block-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .rx-cta-wrapper {
        padding: 40px 16px;
    }
    .rx-cta-tag {
        margin-bottom: 20px;
    }
    .rx-cta-headline {
        margin-bottom: 28px;
    }
    .rx-contact-block {
        padding: 28px 22px;
    }
    .rx-block-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .rx-block-action {
        font-size: 1.1rem;
    }
    .rx-block-desc {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }
    .rx-block-value {
        font-size: 0.82rem;
        margin-bottom: 18px;
    }
    .rx-bubbles {
        font-size: 14px;
        padding: 0.5em 1em;
    }
}

@media (max-width: 400px) {
    .rx-cta-wrapper {
        padding: 32px 12px;
    }
    .rx-contact-block {
        padding: 22px 16px;
    }
    .rx-cta-headline h2 {
        font-size: 1.4rem;
    }
    .rx-block-action {
        font-size: 1rem;
    }
    .rx-block-value {
        font-size: 0.75rem;
        gap: 6px;
    }
    .rx-block-value .rx-val-icon {
        width: 22px;
        height: 22px;
        border-radius: 6px;
    }
    .rx-bubbles {
        font-size: 13px;
        padding: 0.45em 0.9em;
    }
    .rx-bubbles .rx-btn-arrow {
        width: 18px;
        height: 18px;
    }
}

/* ======================================== */
/* Email & phone SECTION CSS Ends HERE      */
/* ======================================== */





/* ======================================== */
/* Why choose SECTION CSS Starts HERE    */
/* ======================================== */



#rxsolutions {
 
  padding: 5rem 2.5rem 4rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;

}

#rxsolutions::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(44, 105, 117, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

#rxsolutions::after {
  content: '';
  position: fixed;
  bottom: 10%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(104, 178, 160, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

#rxsolutions .section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

#rxsolutions .tag-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #68b2a0);
}

#rxsolutions .tag-line.right {
  background: linear-gradient(90deg, #68b2a0, transparent);
}

#rxsolutions .tag-text {

  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #68b2a0;
}

#rxsolutions .section-headline {
  text-align: center;
  margin-bottom: 48px;
}

#rxsolutions .section-headline h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #1e2b2e;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  
}

#rxsolutions .section-headline h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #2c6975 0%, #68b2a0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

#rxsolutions .feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#rxsolutions .feat-card {
  background: transparent;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

#rxsolutions .feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #68b2a0, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

#rxsolutions .feat-card:hover::before {
  transform: scaleX(1);
}

#rxsolutions .feat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(104, 178, 160, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
}

#rxsolutions .feat-card:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
}

#rxsolutions .feat-card.visible {
  animation: fadeUp 0.7s ease forwards;
}

#rxsolutions .feat-card:nth-child(1).visible { animation-delay: 0.3s; }
#rxsolutions .feat-card:nth-child(2).visible { animation-delay: 0.45s; }
#rxsolutions .feat-card:nth-child(3).visible { animation-delay: 0.6s; }
#rxsolutions .feat-card:nth-child(4).visible { animation-delay: 0.75s; }

#rxsolutions .feat-card:hover {
  border-color: #68b2a0;
  box-shadow: 0 4px 20px rgba(104, 178, 160, 0.1);
}

#rxsolutions .feat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f0f7f5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #68b2a0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

#rxsolutions .feat-card:hover .feat-num {
  background: #68b2a0;
  color: #ffffff;
  border-color: #68b2a0;
  box-shadow: 0 4px 16px rgba(104, 178, 160, 0.3);
}

#rxsolutions .feat-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e2b2e;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

#rxsolutions .feat-card:hover .feat-title {
  color: #2c6975;
}

#rxsolutions .feat-desc {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 350;
  color: #5f6c7a;
  text-align: justify;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  #rxsolutions {
    max-width: 720px;
    padding: 4.5rem 2rem 3.5rem;
  }
  
  #rxsolutions .feat-grid {
    gap: 18px;
  }
  
  #rxsolutions .feat-card {
    padding: 1.75rem;
  }
}

@media (max-width: 992px) {
  #rxsolutions {
    max-width: 100%;
    padding: 4rem 2rem 3rem;
  }
  
  #rxsolutions .feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  #rxsolutions .feat-card {
    padding: 1.5rem;
  }
  
  #rxsolutions .section-headline h2 {
    font-size: 2.2rem;
  }
  
  #rxsolutions .feat-title {
    font-size: 18px;
  }
  
  #rxsolutions .feat-desc {
    font-size: 13px;
    line-height: 1.65;
  }
}

@media (max-width: 768px) {
  #rxsolutions {
    padding: 3rem 1.5rem 2.5rem;
  }
  
  #rxsolutions .feat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  #rxsolutions .feat-card {
    padding: 1.5rem;
  }
  
  #rxsolutions .section-headline {
    margin-bottom: 36px;
  }
  
  #rxsolutions .section-headline h2 {
    font-size: 1.9rem;
  }
  
  #rxsolutions .tag-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }
  
  #rxsolutions .feat-num {
    width: 32px;
    height: 32px;
    font-size: 12px;
    margin-bottom: 1.25rem;
  }
  
  #rxsolutions .feat-title {
    font-size: 17px;
    margin-bottom: 0.6rem;
  }
  
  #rxsolutions .feat-desc {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }
}

@media (max-width: 576px) {
  #rxsolutions {
    padding: 2.5rem 1.25rem 2rem;
  }
  
  #rxsolutions .section-tag {
    margin-bottom: 20px;
    gap: 8px;
  }
  
  #rxsolutions .tag-line {
    max-width: 50px;
  }
  
  #rxsolutions .tag-text {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }
  
  #rxsolutions .section-headline {
    margin-bottom: 30px;
  }
  
  #rxsolutions .section-headline h2 {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
  }
  
  #rxsolutions .feat-grid {
    gap: 12px;
  }
  
  #rxsolutions .feat-card {
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  #rxsolutions .feat-num {
    width: 30px;
    height: 30px;
    font-size: 11px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  #rxsolutions .feat-title {
    font-size: 16px;
  }
  
  #rxsolutions .feat-desc {
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (max-width: 400px) {
  #rxsolutions {
    padding: 2rem 1rem 1.5rem;
  }
  
  #rxsolutions .section-tag {
    margin-bottom: 16px;
    gap: 6px;
  }
  
  #rxsolutions .tag-line {
    max-width: 35px;
  }
  
  #rxsolutions .tag-text {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }
  
  #rxsolutions .section-headline {
    margin-bottom: 24px;
  }
  
  #rxsolutions .section-headline h2 {
    font-size: 1.35rem;
  }
  
  #rxsolutions .feat-grid {
    gap: 10px;
  }
  
  #rxsolutions .feat-card {
    padding: 1.15rem;
    border-radius: 10px;
  }
  
  #rxsolutions .feat-num {
    width: 28px;
    height: 28px;
    font-size: 10px;
    border-radius: 8px;
    margin-bottom: 0.85rem;
  }
  
  #rxsolutions .feat-title {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
  
  #rxsolutions .feat-desc {
    font-size: 11px;
    line-height: 1.5;
  }
}



/* ======================================== */
/* Why choose SECTION CSS Ends HERE    */
/* ======================================== */

#pricingSection {
  scroll-margin-top: 80px; 
}


#sampleReportSection{
    
      scroll-margin-top: 120px;
}



#contactSection{
    
      scroll-margin-top: 120px;
}



