/* ===================== GLOBAL ===================== */
:root {
  --rtms-header-h: 80px; /* Header height */
  --container: 1200px;
  --pad: 20px;
  --brand: #00a3c4;
  --text: #2c3e50;
  --muted: #666;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

/* ===================== HERO ===================== */
/* Hero Section */
.rtms-hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0 18px;
  margin-top: var(--rtms-header-h);
  height: 50vh;
  min-height: 260px;
  background: #0b1220;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background layers */
.rtms-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  will-change: transform, opacity;
  animation: rtmsZoomSlide 16s infinite;
}

.rtms-hero-bg-1 {
  background-image: url("image/rtmsbanner.jpg");
  animation-delay: 0s;
}

.rtms-hero-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1920&q=80");
  animation-delay: 8s;
}

@keyframes rtmsZoomSlide {
  0%   { opacity: 0; transform: scale(1); }
  5%   { opacity: 1; }
  45%  { opacity: 1; transform: scale(1.12); }
  50%  { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1); }
}

.rtms-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.rtms-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100%);
  padding: 18px 16px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rtms-hero-title {
  margin: 0 0 16px;
  font-size: 33px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: rtmsFadeInUp 1s ease-out;
}

.rtms-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.rtms-hero-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity .2s ease;
}

.rtms-hero-link:hover {
  opacity: .85;
}

.rtms-hero-sep {
  opacity: .8;
}

.rtms-hero-current {
  opacity: .92;
}

@keyframes rtmsFadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ✅ Desktop + Laptop: 1024px aur upar */
@media (min-width: 1024px) {
  .rtms-hero-section {
    margin-top: 176px;
    height: 50vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rtms-hero-title {
    font-size: 33px;
  }
  .rtms-hero-breadcrumb {
    font-size: 13px;
  }
}

/* ✅ Tablet: 768px – 1023px (WHITE SPACE FIX) */
@media (min-width: 768px) and (max-width: 1023px) {
  .rtms-hero-section {
    margin-top: 66px;
    padding: 15px 16px;
    height: 50vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rtms-hero-title {
    font-size: 30px;
  }
  .rtms-hero-breadcrumb {
    font-size: 12px;
  }
}

/* ✅ Mobile: 275px – 767px (WHITE SPACE FIX) */
@media (min-width: 275px) and (max-width: 767px) {
  .rtms-hero-section {
    margin-top: 66px;
    padding: 12px 10px;
    height: 40vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rtms-hero-title {
    font-size: 20px;
    margin-top: 22px;
  }
  .rtms-hero-breadcrumb {
    font-size: 11px;
    padding: 8px 10px;
  }
}

/* ✅ Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rtms-hero-bg {
    animation: none !important;
    transform: none;
  }
  .rtms-hero-title,
  .rtms-hero-breadcrumb {
    animation: none;
  }
}


/* ===================== SECTION 1 ===================== */
.rtms-section-1{
  width: 100%;
  background: #f9f9f9;
  padding: clamp(36px, 5vw, 80px) var(--pad);
  margin-top: 0;
}

.rtms-section-1-container{
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(18px, 3.5vw, 50px);
  align-items: start;
}

/* ── LEFT CONTENT ── */
.rtms-section-1-heading{
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.2;
}
.rtms-section-1-heading span{ color: var(--brand); }

.rtms-section-1-text{
  font-size: clamp(14px, 1.6vw, 16px);
  color: #555;
  margin: 0 0 14px;
  line-height: 1.75;
}

.rtms-section-1-highlight{
  background: #e8f5e9;
  padding: 14px 16px;
  border-left: 4px solid #4caf50;
  margin-top: 14px;
  border-radius: 10px;
}
.rtms-section-1-highlight p{
  margin: 0;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.65;
  color: var(--text);
}

/* ── IMAGE GRID ── */
.rtms-section-1-images{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 14px;
  align-content: start;
}

/* ── BASE wrapper ── */
.rtms-section-1-image-wrapper{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  cursor: pointer;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
}

/* ── ALL images base ── */
.rtms-section-1-image,
.rtms-section-1-image-alt{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.rtms-section-1-image{ transition: transform .6s ease; }
.rtms-section-1-image-alt{
  opacity: 0;
  transition: opacity .6s ease;
}

@media (hover:hover) and (pointer:fine){
  .rtms-section-1-image-wrapper:hover .rtms-section-1-image{ transform: scale(1.06); }
  .rtms-section-1-image-wrapper:hover .rtms-section-1-image-alt{ opacity: 1; }
}

/* ══════════════════
   Image 1 — chair (spans both rows)
══════════════════ */
.rtms-section-1-images .rtms-section-1-image-wrapper:first-child{
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
  background: #000;
}
.rtms-section-1-images .rtms-section-1-image-wrapper:first-child .rtms-section-1-image,
.rtms-section-1-images .rtms-section-1-image-wrapper:first-child .rtms-section-1-image-alt{
  object-fit: cover;
  object-position: center center;
}

/* ══════════════════
   Image 2 — infographic
   wrapper transparent, shadow/radius on img
══════════════════ */
.rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2){
  aspect-ratio: 1 / 1;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image,
.rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image-alt{
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  overflow: hidden;
}

/* ══════════════════
   Image 3 — doctors
══════════════════ */
.rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3){
  aspect-ratio: 4 / 3;
  background: #000;
}
.rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3) .rtms-section-1-image,
.rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3) .rtms-section-1-image-alt{
  object-fit: cover;
  object-position: center center;
}

/* ══════════════════════════════════════
   1024px
══════════════════════════════════════ */
@media (max-width: 1024px){
  .rtms-section-1-container{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child{
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: 3 / 4;
  }
  .rtms-section-1-image-wrapper{
    aspect-ratio: 1 / 1;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2){
    aspect-ratio: 1 / 1;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image,
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image-alt{
    object-fit: cover;
    object-position: center center;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3){
    aspect-ratio: 4 / 3;
  }
}

/* ══════════════════════════════════════
   768px
══════════════════════════════════════ */
@media (max-width: 768px){
  .rtms-section-1-container{
    grid-template-columns: 1fr;
  }
  .rtms-section-1-images{
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child{
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child .rtms-section-1-image,
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child .rtms-section-1-image-alt{
    object-position: center center;
  }
  .rtms-section-1-image-wrapper{
    aspect-ratio: 4 / 3;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2){
    aspect-ratio: 1 / 1;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image,
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image-alt{
    object-fit: cover;
    object-position: center center;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3){
    aspect-ratio: 4 / 3;
  }
}

/* ══════════════════════════════════════
   520px
══════════════════════════════════════ */
@media (max-width: 520px){
  .rtms-section-1{
    padding: 34px 16px;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child, .rtms-section-1-image-wrapper{
      height: 375px;
  }
  .rtms-section-1-images{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child,
  .rtms-section-1-image-wrapper{
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child{
    aspect-ratio: 4 / 3;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child .rtms-section-1-image,
  .rtms-section-1-images .rtms-section-1-image-wrapper:first-child .rtms-section-1-image-alt{
    object-fit: cover;
    object-position: center center;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2){
    aspect-ratio: 1 / 1;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image,
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(2) .rtms-section-1-image-alt{
    object-fit: cover;
    object-position: center center;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3){
    aspect-ratio: 4 / 3;
  }
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3) .rtms-section-1-image,
  .rtms-section-1-images .rtms-section-1-image-wrapper:nth-child(3) .rtms-section-1-image-alt{
    object-fit: cover;
    object-position: center center;
  }
}
/* ===================== CONDITIONS ===================== */
.conditions-section {
  width: 100%;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  margin-top: 0;
}

.conditions-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.conditions-header {
  text-align: center;
  margin-bottom: clamp(22px, 4vw, 44px);
  padding: 0 10px;
}
body .conditions-title {
  font-size: 21px;
  font-weight: 800;
  color: black !important;
  margin: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.conditions-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 90px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

.conditions-subtitle {
  margin: 22px auto 0;
  max-width: 760px;
  font-size: 13px;
  color: #566;
  line-height: 1.75;
  padding: 0 12px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.condition-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 163, 196, .25);
  border-color: var(--brand);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.condition-card:hover .condition-badge {
  background: var(--brand);
  color: #fff;
  transform: scale(1.05);
}

.condition-icon {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  display: block;
  border-radius: 10px; /* Rounded corners */
}

.condition-name {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: var(--text);
  margin: 6px 0 10px;
  text-align: center;
}

.condition-description {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #667;
  line-height: 1.7;
  margin: 0;
}

.condition-badge {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  background: #e0f7fc;
  color: var(--brand);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 800;
  margin-top: 16px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

/* Image will no longer rotate */
.condition-card .condition-icon img {
  object-fit: cover; /* Ensures the image covers the full area */
  width: 100%; /* Makes the image fill the entire width of the card */
  height: 100%; /* Keeps the image aspect ratio intact */
  border-radius: 10px; /* Applies rounded corners to the image */
}


/* ===================== SECTION 3: HOW IT WORKS ===================== */
/* General Section Styles */
.rtms-section-3 {
  width: 100%;
  padding: clamp(60px, 6vw, 80px) var(--pad);
  background: #fff;
  margin-top: 0;
}

.rtms-section-3-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

/* Header */
.rtms-section-3-header {
  text-align: center;
  margin-bottom: 40px;
}

.rtms-section-3-title {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin: 0 0 15px;
  position: relative;
  display: inline-block;
}

.rtms-section-3-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

.rtms-section-3-subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--muted);
  margin: 25px auto 0;
  max-width: 800px;
  padding: 0 15px;
}

/* Process Section */
.rtms-section-3-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 50px;
}

.rtms-section-3-step {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rtms-section-3-step:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 10px 30px rgba(0,163,196,.2);
  background: #fff;
}

.rtms-section-3-step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,163,196,.3);
  transition: transform .4s ease;
}

.rtms-section-3-step:hover .rtms-section-3-step-number {
  transform: scale(1.12) rotate(360deg);
}

.rtms-section-3-step-icon {
  font-size: 42px;
}

.rtms-section-3-step-title {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.rtms-section-3-step-description {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Treatment Visualization Section */
.rtms-section-3-illustration {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
  border-radius: 20px;
  padding: 40px 20px;
  margin-top: 40px;
}

.rtms-section-3-illustration-title {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: black;
  margin: 0 0 55px;
}

.rtms-section-3-diagram {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.rtms-section-3-visual {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.treatment-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.rtms-section-3-visual-caption {
  text-align: center;
  color: var(--muted);
  font-size: clamp(12px, 2vw, 14px);
  margin: 15px 0 0;
  padding: 0 10px;
}

/* Info Section */
.rtms-section-3-info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  align-items: center;
}

.rtms-section-3-info-item {
  background: #fff;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  transition: all .25s ease;
}

.rtms-section-3-info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0,163,196,.2);
}

.rtms-section-3-info-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 10px;
  font-size: 13px;
}

.rtms-section-3-info-title {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.rtms-section-3-info-text {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .rtms-section-3-process {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .rtms-section-3-diagram {
    flex-direction: column;
    align-items: center;
  }

  .rtms-section-3-info {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .rtms-section-3-header {
    padding: 0 15px;
  }

  .rtms-section-3-title {
    font-size: clamp(20px, 6vw, 30px);
  }

  .rtms-section-3-subtitle {
    font-size: clamp(12px, 3vw, 16px);
  }

  .rtms-section-3-step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .rtms-section-3-step-title {
    font-size: 16px;
  }

  .rtms-section-3-step-description {
    font-size: 12px;
  }
}


/* ===================== TREATMENT PROCESS ===================== */
.rtms-process{
  padding: clamp(60px, 6vw, 70px) 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(0, 166, 190, .10), transparent 60%),
    linear-gradient(to bottom, #ffffff, #f6fbfd);
  margin-top: 0;
}
.rtms-container{
  width: min(var(--container), 92%);
  margin: 0 auto;
}
.rtms-head{
  text-align:center;
  max-width: 900px;
  margin: 0 auto 40px;
}
.rtms-title{
  margin: 0 0 10px;
  font-size: clamp(24px, 5vw, 46px);
  font-weight: 800;
  color: #1f2d3d;
}
.rtms-subtitle{
  margin: 0 auto;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  color: #6b7c93;
  padding: 0 15px;
}

.rtms-steps{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.rtms-step{
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  align-items: start;
}

.rtms-badge{
  width:66px; height:66px;
  border-radius:999px;
  background: rgba(0, 166, 190, .12);
  display:grid;
  place-items:center;
  border: 1px solid rgba(0, 166, 190, .22);
  box-shadow: 0 12px 30px rgba(0, 40, 60, .08);
}
.rtms-num{
  width:46px; height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color:#fff;
  font-weight:800;
  font-size:18px;
}

.rtms-card{
  width:100%;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(15, 60, 85, .08);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 18px 45px rgba(10, 35, 55, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rtms-card h3{ margin:0 0 8px; font-size: clamp(16px, 2.5vw, 18px); color:#1f2d3d; }
.rtms-card p{ margin:0 0 10px; color:#6b7c93; line-height:1.55; font-size: clamp(13px, 2vw, 14px); }
.rtms-card ul{ margin:0; padding-left:18px; color:#4f647a; font-size: clamp(13px, 2vw, 14px); line-height:1.55; }

.rtms-step:hover .rtms-card{
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(10, 35, 55, .12);
  border-color: rgba(0, 166, 190, .25);
}
.rtms-step.is-active .rtms-card{
  border-color: rgba(0, 166, 190, .35);
  box-shadow: 0 22px 60px rgba(0, 166, 190, .18);
}

.rtms-cta{ margin-top:35px; display:flex; justify-content:center; }
.rtms-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 28px;
  border-radius:999px;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: transform .2s ease, filter .2s ease;
  width:100%;
  max-width:300px;
}
.rtms-btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }


/* ===================== SECTION 5: SAFETY ===================== */
.rtms-section-5{
  width:100%;
  padding: clamp(60px, 6vw, 80px) var(--pad);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
  margin-top: 0;
}
.rtms-section-5-container{ width: min(var(--container), 100%); margin: 0 auto; }

.rtms-section-5-header{ text-align:center; margin-bottom:40px; }
.rtms-section-5-title{
  font-size: 28px;
  font-weight:700;
  color: var(--text);
  margin: 0 0 15px;
  line-height:1.2;
}
.rtms-section-5-title span{ color: var(--brand); }
.rtms-section-5-subtitle{
  font-size: clamp(14px, 2.5vw, 18px);
  color:#555;
  max-width:700px;
  margin:0 auto;
  line-height:1.6;
  padding: 0 15px;
}

.rtms-section-5-grid{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto 30px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.rtms-section-5-card{
  background:#fff;
  padding: 25px 20px;
  border-radius:16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border: 2px solid transparent;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.rtms-section-5-card::before{
  content:"";
  position:absolute;
  top:0; left:0;
  width:100%; height:4px;
  background: linear-gradient(90deg, var(--brand) 0%, #00bcd4 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.rtms-section-5-card:hover::before{ transform: scaleX(1); }
.rtms-section-5-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,163,196,.15);
  border-color: var(--brand);
}

.rtms-section-5-icon{
  width:70px; height:70px;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
  color:#fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.rtms-section-5-card:hover .rtms-section-5-icon{
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,163,196,.4);
}

.rtms-section-5-card-title{
  font-size: clamp(18px, 3vw, 22px);
  font-weight:700;
  color: var(--text);
  margin: 0 0 12px;
}
.rtms-section-5-card-text{
  font-size: clamp(13px, 2vw, 15px);
  color: var(--muted);
  line-height:1.7;
  margin:0;
}

/* Note */
.rtms-section-5-note{
  background:#fff;
  border-left: 6px solid var(--brand);
  border-radius:16px;
  padding: 25px 20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  box-shadow: 0 8px 24px rgba(255,167,38,.12);
}
.rtms-section-5-note-icon{
  width:50px; height:50px;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin: 0 auto;
}
.rtms-section-5-note-title{
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight:700;
  color:#000;
  margin: 0 0 12px;
  text-align:center;
}
.rtms-section-5-note-text{
  font-size: clamp(14px, 2.5vw, 16px);
  color:#555;
  margin: 0 0 15px;
  font-weight:600;
}
.rtms-section-5-note-list{
  list-style:none;
  padding:0;
  margin:0 0 15px;
}
.rtms-section-5-note-list li{
  font-size: clamp(13px, 2vw, 15px);
  color: var(--muted);
  padding-left:24px;
  margin-bottom:10px;
  position:relative;
  line-height:1.6;
}
.rtms-section-5-note-list li::before{
  content:"•";
  position:absolute;
  left:8px;
  color:#000;
  font-size:18px;
  font-weight:700;
}
.rtms-section-5-note-footer{
  font-size: clamp(13px, 2vw, 15px);
  color:#555;
  font-style: italic;
  margin: 0;
  padding-top:10px;
  border-top: 1px solid rgba(255,167,38,.2);
}


/* ===================== SECTION 6: rTMS VS MED ===================== */
.rtms-section-6{
  width:100%;
  padding: clamp(60px, 6vw, 80px) var(--pad);
  background:#fff;
  margin-top: 0;
}

.rtms-section-6-container{
  width: min(var(--container), 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap:40px;
  align-items:start;
}

.rtms-section-6-heading{
  font-size: 28px;
  font-weight:700;
  color: var(--text);
  margin: 0 0 25px;
  text-align:center;
}
.rtms-section-6-heading span{ color: var(--brand); }

.rtms-section-6-comparison{
  display:grid;
  grid-template-columns: 1fr; /* ← hamesha single column */
  gap:20px;
  margin-bottom:25px;
}

.rtms-section-6-block{
  background:#f8f9fa;
  padding:20px;
  border-radius:12px;
  border-left: 4px solid var(--brand);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rtms-section-6-block:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,163,196,.12);
}

.rtms-section-6-subtitle{
  font-size: clamp(18px, 3vw, 22px);
  font-weight:700;
  color: var(--brand);
  margin: 0 0 15px;
  display:flex;
  align-items:center;
  gap:10px;
}
.rtms-section-6-subtitle-alt{ color:#e65100; }

.rtms-section-6-list{
  list-style:none;
  padding:0;
  margin:0;
}
.rtms-section-6-list li{
  font-size: clamp(13px, 2vw, 15px);
  color:#555;
  padding-left:24px;
  margin-bottom:10px;
  position:relative;
  line-height:1.6;
}
.rtms-section-6-list li::before{
  content:"✓";
  position:absolute;
  left:6px;
  color: var(--brand);
  font-size:15px;
  font-weight:700;
}
.rtms-section-6-list-alt li::before{
  content:"•";
  color:#e65100;
  font-size:18px;
}

.rtms-section-6-note{
  background: linear-gradient(135deg, #e3f5f9 0%, #d1ecf1 100%);
  padding:18px;
  border-radius:10px;
  border-left: 4px solid var(--brand);
}
.rtms-section-6-note p{
  margin:0;
  font-size: clamp(13px, 2vw, 14px);
  color: var(--text);
  line-height:1.7;
}

.rtms-section-6-image-wrapper{
  width:100%;
}

.rtms-section-6-image-container{
  width:100%;
  max-width:500px;
  aspect-ratio: 1;
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  margin: 0 auto;
}
.rtms-section-6-image{
  width:115%;
  height:100%;
  object-fit:cover;
}

.rtms-section-6-badge{
  position:absolute;
  bottom:15px;
  right:15px;
  background: linear-gradient(135deg, var(--brand) 0%, #00bcd4 100%);
  color:#fff;
  padding:10px 16px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size: clamp(12px, 2vw, 14px);
  box-shadow: 0 8px 20px rgba(0,163,196,.4);
}

/* ── Tablet (768px+) ── */
@media (min-width: 768px) {
  .rtms-section-6-container{
    grid-template-columns: 1fr 1fr; /* content left, image right */
    gap: 50px;
    align-items: start;
  }

  .rtms-section-6-content{
    order: 1;
  }

  /* Image sticky — fix rehti hai */
  .rtms-section-6-image-wrapper{
    order: 2;
    position: sticky;
    top: 100px;
    align-self: start;
  }

  .rtms-section-6-heading{
    text-align: left;
    font-size: clamp(24px, 3vw, 32px);
  }

  /* ← Comparison blocks hamesha ek ke niche ek */
  .rtms-section-6-comparison{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rtms-section-6-image-container{
    max-width: 100%;
  }
}

/* ── Laptop / Desktop (1024px+) ── */
@media (min-width: 1024px) {
  .rtms-section-6-container{
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }

  .rtms-section-6-image-wrapper{
    position: sticky;
    top: 110px;
    align-self: start;
  }

  .rtms-section-6-heading{
    font-size: clamp(28px, 2.5vw, 36px);
  }

  /* ← Yahan bhi 1fr — side by side nahi honge */
  .rtms-section-6-comparison{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===================== SECTION 7: WHY CHOOSE ===================== */
.rtms-section-7{
  width:100%;
  padding: clamp(60px, 6vw, 80px) 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: clip;
  margin-top: 0;
}

.rtms-section-7-container{
  width: min(1200px, 100%);
  margin: 0 auto;
}

.rtms-section-7-header{
  text-align:center;
  margin-bottom: 24px;
}

.rtms-section-7-title{
  font-size: 28px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 10px;
}
.rtms-section-7-title span{ color:#00a3c4; }

.rtms-section-7-subtitle{
  font-size: clamp(14px, 2.5vw, 18px);
  color: #666;
  margin: 0;
}

.rtms-section-7-intro{
  background:#fff;
  border-radius: 16px;
  padding: 18px 18px;
  border-left: 5px solid #00a3c4;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  margin: 20px auto 28px;
}

.rtms-section-7-text{
  margin:0;
  font-size: clamp(14px, 2.5vw, 16px);
  color:#556;
  line-height: 1.8;
}

.rtms-section-7-layout{
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 22px;
  align-items: start;
}

.rtms-section-7-col{
  display: grid;
  gap: 16px;
}

.rtms-section-7-image-wrapper{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.rtms-section-7-image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rtms-section-7-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
}

.rtms-section-7-card{
  background:#fff;
  padding: 18px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rtms-section-7-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,163,196,.14);
  border-color: rgba(0,163,196,.25);
}

.rtms-section-7-card-icon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
     background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-bottom: 12px;
}
.rtms-section-7-card-icon svg{ width: 28px; height: 28px; }

.rtms-section-7-card-title{
  margin: 0 0 8px;
  font-size: clamp(16px, 2.3vw, 18px);
  font-weight: 800;
  color:#2c3e50;
}

.rtms-section-7-card-text{
  margin: 0;
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.7;
  color:#667;
}

.rtms-section-7-stats{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rtms-section-7-stat-card{
  text-align:center;
  background: rgba(0,0,0,.65);
  color: #fff;
  padding: 12px 10px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.rtms-section-7-stat-number{
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #00bcd4;
  margin-bottom: 4px;
}

.rtms-section-7-stat-label{
  font-size: clamp(11px, 1.6vw, 13px);
  letter-spacing: .4px;
  text-transform: uppercase;
  opacity: .95;
}

.rtms-section-7-cta{
  text-align:center;
  margin-top: 26px;
}

.rtms-section-7-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
 
  padding: 14px 32px;
  background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color:#fff;
  font-weight: 800;
  text-decoration:none;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0,163,196,.22);
  transition: transform .25s ease, box-shadow .25s ease;
  width: 100%;
  max-width: 360px;
}

.rtms-section-7-button:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,163,196,.32);
}

@media (max-width: 992px){
  .rtms-section-7-layout{
    grid-template-columns: 1fr;
  }

  .rtms-section-7-stats{
    grid-template-columns: 1fr;
  }
}


/* ===================== FAQ ===================== */
/* ===================== FAQ ===================== */
.faq-section {
  padding: clamp(60px, 6vw, 80px) 0;
  background: linear-gradient(to bottom, #fff, #f6fbfd);
  margin-top: 0;
}
.faq-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
}

.faq-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: #1f2d3d;
}
.faq-subtitle {
  margin: 0 auto;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  color: #6b7c93;
  padding: 0 15px;
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(15, 60, 85, .10);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 35, 55, .06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 700;
  color: #1f2d3d;
}
.faq-question:hover {
  background: rgba(0, 166, 190, .06);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 166, 190, .30);
  text-align: center;
  line-height: 22px;
  font-size: 22px;
  font-weight: bold;
  color: #00a6be;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  color: #6b7c93;
  line-height: 1.65;
  font-size: clamp(13px, 2vw, 14px);
}

/* Expand/Collapse Answer */
.faq-question[aria-expanded="true"] .faq-icon {
  content: "-";
  transform: rotate(45deg);
}
.faq-question[aria-expanded="false"] .faq-icon {
  content: "+";
  transform: rotate(0deg);
}

.faq-cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}
.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
     background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: transform .2s ease, filter .2s ease;
  width: 100%;
  max-width: 300px;
}
.faq-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Expand/Collapse Answer */
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 200px; /* adjust as necessary */
}


/* ===================== CTA ===================== */
.rtms-cta-section{
  padding: clamp(60px, 6vw, 70px) 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(0,166,190,.12), transparent 60%),
    linear-gradient(to bottom, #ffffff, #f6fbfd);
  margin-top: 0;
}
.rtms-cta-container{ width: min(1100px, 92%); margin: 0 auto; }

.rtms-cta-box{
  border-radius:22px;
  padding:25px 20px;
  background: linear-gradient(135deg, rgba(0,166,190,.18), rgba(0,166,190,.06));
  border: 1px solid rgba(0,166,190,.25);
  box-shadow: 0 22px 60px rgba(10, 35, 55, .10);
}
.rtms-cta-content{ max-width:820px; margin:0 auto; text-align:center; }
.rtms-cta-title{
  margin: 0 0 10px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight:900;
  color:#1f2d3d;
}
.rtms-cta-text{
  margin: 0 auto 16px;
  color:#5f7387;
  line-height:1.65;
  font-size: clamp(14px, 2.5vw, 15px);
  max-width:760px;
  padding: 0 10px;
}
.rtms-cta-actions{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:12px;
}
.rtms-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: transform .2s ease, filter .2s ease;
  width:100%;
  max-width:300px;
}
.rtms-cta-btn-primary{
 background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color:#fff;
  border:1px solid transparent;
}
.rtms-cta-btn-secondary{
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
  color:#fff;
  border: 1px solid rgba(0,166,190,.25);
}
.rtms-cta-btn:hover{ transform: translateY(-2px); filter: brightness(1.04); }


/* ===================== RESPONSIVE ===================== */
@media (min-width: 600px){
  .conditions-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 768px){
  .rtms-section-1-container{ grid-template-columns: 1fr 1fr; }
  .rtms-section-1-images{
    grid-template-columns: 1fr 1fr;
    height: 450px;
    max-width: 640px;
    margin: 0 auto;
  }
  .rtms-section-1-image-wrapper{ height: 220px; }
  .rtms-section-1-image-wrapper:first-child{ grid-row: 1 / 3; height: 450px; }

  .rtms-section-3-process{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rtms-section-3-diagram{ grid-template-columns: 1fr 1fr; }

  .rtms-steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rtms-section-5-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }

  .rtms-section-6-container{ grid-template-columns: 1fr 1fr; }
  .rtms-section-7-bottom-cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rtms-section-7-expertise{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rtms-cta-actions{ flex-direction: row; }

  .rtms-section-5-note{ flex-direction: row; padding: 30px 35px; }
  .rtms-section-5-note-icon{ width:60px; height:60px; margin:0; }
  .rtms-section-5-note-title{ text-align:left; }
}

@media (min-width: 1024px){
  .conditions-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px; }
  .rtms-section-3-process{ grid-template-columns: repeat(4, minmax(0,1fr)); }

  .rtms-section-3-process{ position: relative; }
  .rtms-section-3-process::before{
    content:"";
    position:absolute;
    top:60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, #00d4ff 100%);
    z-index: 0;
  }
  .rtms-section-3-step{ position: relative; z-index: 1; }

  .rtms-steps{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .rtms-section-5-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .rtms-section-7-grid{ grid-template-columns: 1fr 1.5fr; gap: 60px; }
}

@media (max-width: 480px){
  .rtms-section-1{ padding: 34px 16px; }
  .rtms-section-1-image-wrapper{ height: 220px; }
  .conditions-section{ padding: 36px 16px; }
}

