:root {
  --bg: #f5fbfe;
  --surface: #ffffff;
  --soft: #e8f8fc;
  --ink: #08314c;
  --navy: #004677;
  --muted: #557186;
  --line: #ccecf4;
  --teal: #01a0c7;
  --teal-dark: #004677;
  --teal-soft: #dff7fc;
  --gold: #01a0c7;
  --gold-soft: #e8f8fc;
  --coral: #004677;
  --aqua: #01a0c7;
  --brand-gradient: linear-gradient(135deg, #004677, #01a0c7);
  --brand-gradient-soft: linear-gradient(135deg, rgba(0, 70, 119, 0.1), rgba(1, 160, 199, 0.14));
  --shadow: 0 18px 48px rgba(0, 70, 119, 0.14);
  --shadow-hover: 0 24px 58px rgba(1, 160, 199, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}
body {
    overflow-x: hidden !important;
} 

body {
  font-family: 'DM Sans', sans-serif !important;
  background: #f4f6f8;
  color: #1a1a2e;
  line-height: 1.65;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(1, 160, 199, 0.13), transparent 28%),
    linear-gradient(180deg, #fbfefd 0%, var(--bg) 42%, #f9fbfb 100%);
  color: var(--ink);
  /*font-family: "Inter", Arial, sans-serif;*/
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

 

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(1, 160, 199, 0.16);
  box-shadow: 0 10px 30px rgba(0, 70, 119, 0.06);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  justify-content: center; /* center se change */
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(90deg, #004677, #01a0c7);
  color: #e8f4f2;
  font-size: 15px;
  font-weight: 600;
  flex-wrap: wrap;
}

.topbar-left a {
  margin-right: 18px;
  color: #e8f4f2;
  text-decoration: none;
}

.topbar-right a {
  margin-left: 12px;
  color: #e8f4f2;
  font-size: 14px;
  transition: 0.3s;
}

.topbar-right a:hover {
  color: black;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .topbar {
  font-size: 13px;
}
  
}

.nav {
  position: relative;
  width: min(1240px, calc(100% - 20px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(1, 160, 199, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links > a,
.dropdown-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  padding: 9px 10px;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-links > a:hover,
.dropdown-toggle:hover,
.nav-item.open .dropdown-toggle {
  color: var(--teal);
  background: rgba(1, 160, 199, 0.08);
}

.nav-item {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  width: 210px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(1, 160, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(0, 70, 119, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.wide-menu {
  width: 315px;
}

.dropdown-menu a {
  display: block;
  border-radius: 8px;
  color: var(--ink);
  padding: 10px 11px;
  font-size: 16px;
  line-height: 1.25;
}

.dropdown-menu a:hover {
  background: var(--brand-gradient);
  color: white;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}   

.nav-cta {    
  font-size:16px;
  padding: 10px 10px;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: white !important;
  box-shadow: 0 12px 24px rgba(1, 160, 199, 0.22);    
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(1, 160, 199, 0.18);
  border-radius: 8px;
  background: white;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(245, 251, 254, 0.98), rgba(232, 248, 252, 0.82)),
    url("https://images.unsplash.com/photo-1579154204601-01588f351e67?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #e8f8fc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  /*max-width: 760px;*/
  margin-bottom: 22px;
  font-size: 55px;
  line-height:70px;   
  letter-spacing: 0;
  font-weight:700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight:600;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.22;
}

.condition-card p,
.footer p {
  color: white;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  font-size: 18px;
}

.hero-actions,
.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 30px 0 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn.primary {
  background: var(--brand-gradient);
  color: white;
  box-shadow: 0 14px 30px rgba(1, 160, 199, 0.25);
}

.btn.secondary {
  background: white;
  color: var(--teal-dark);
  border: 1px solid rgba(1, 160, 199, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover {
  box-shadow: 0 18px 36px rgba(1, 160, 199, 0.34);
}

.btn.secondary:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 24px rgba(1, 160, 199, 0.12);
}

.btn.full {
  width: 100%;
}

.quick-stats span {
  flex: 1 1 160px;
  padding: 13px 14px;
  border: 1px solid rgba(1, 160, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.quick-stats strong {
  display: block;
  color: var(--ink);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(1, 160, 199, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.hero-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 160, 199, 0.48);
  box-shadow: var(--shadow-hover);
}

.hero-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  background: var(--soft);
}

.hero-panel div {
  padding: 24px;
}

.hero-panel h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: #004677 !important;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 126px;
}

.muted-section {
  background:
    linear-gradient(180deg, var(--soft), #f5fbfe);
}

.compact-section {
  padding: 64px 0;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 5%, rgba(1, 160, 199, 0.26), transparent 28%),
    linear-gradient(135deg, #004677, #01a0c7);
  color: white;
}

.intro-grid,
.about-grid,
.appointment-grid,
.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 16px;
  font-size: 17px;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.left-title {
  margin-left: 0;
  text-align: left;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.condition-card,
.profile-card,
.why-grid article,
.updates-grid article,
.blog-grid article,
.review-slide,
.appointment-form,
.contact-box {
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(0, 70, 119, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.condition-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(1, 160, 199, 0.14);
  position: relative;
}
.condition-card p{
    color:black;
}

.condition-card::after,
.profile-card::after,
.blog-grid article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 180ms ease;
}

.condition-card:hover,
.profile-card:hover,
.why-grid article:hover,
.blog-grid article:hover,
.appointment-form:hover,
.contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 160, 199, 0.45);
  box-shadow: var(--shadow-hover);
}

.condition-card:hover::after,
.profile-card:hover::after,
.blog-grid article:hover::after {
  opacity: 1;
}

.condition-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
}

.condition-card:nth-child(3n + 2) span {
  background: var(--brand-gradient);
}

.condition-card:nth-child(3n) span {
  background: var(--brand-gradient);
}

.profile-card {
  padding: 30px;
  border: 1px solid rgba(1, 160, 199, 0.16);
  position: relative;
  overflow: hidden;
  height:430px;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(1, 160, 199, 0.2), transparent 35%),
    var(--brand-gradient);
  color: white;
  border-color: rgba(1, 160, 199, 0.32);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #e8f8fc;
  font-weight: 800;
}

.services-premium {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(1, 160, 199, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(1, 160, 199, 0.2), transparent 34%),
    linear-gradient(135deg, #004677, #006b9c 58%, #01a0c7);
  box-shadow: 0 26px 70px rgba(0, 70, 119, 0.22);
}

.services-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(8px);
}

.services-intro h2 {
  color: white;
}

.services-intro p:not(.eyebrow) {
  color: #d8f5fb;
  font-size: 17px;
}

.service-btn {
  margin-top: 28px;
  background: white;
  color: #004677;
  box-shadow: 0 16px 34px rgba(0, 44, 72, 0.18);
}

.service-btn:hover {
  color: black;
  color:white;
  box-shadow: 0 20px 44px rgba(0, 44, 72, 0.24);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-feature {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(0, 70, 119, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-gradient-soft);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-feature span,
.service-feature h3,
.service-feature p {
  position: relative;
}

.service-feature span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(1, 160, 199, 0.24);
}

.service-feature p {
  margin: 0;
  color: var(--muted);
}

.service-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 54px rgba(0, 70, 119, 0.24);
}

.service-feature:hover::before {
  opacity: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-grid article {
  padding: 22px;
  border: 1px solid rgba(1, 160, 199, 0.14);
  border-top: 3px solid var(--teal);
}
.why-grid article p {
  color:black;
}

.review-slider {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.review-slide:hover {
  border-color: rgba(232, 248, 252, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.review-slide p {
  max-width: 820px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.45;
  text-align: center;
}

.review-slide strong {
  display: block;
  color: white;
  text-align: center;
  font-size: 18px;
}

.rating {
  width: max-content;
  margin: 0 auto 18px;
  padding: 7px 12px;
  border: 1px solid rgba(1, 160, 199, 0.42);
  border-radius: 8px;
  background: rgba(1, 160, 199, 0.14);
  color: #bdecf7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 248, 252, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  transform: translateY(-2px);
  border-color: #e8f8fc;
  background: rgba(232, 248, 252, 0.15);
  outline: none;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    width 160ms ease,
    background 160ms ease;
}

.slider-dot.active {
  width: 26px;
  background: var(--teal);
}

.updates-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.updates-grid article {
  min-height: 160px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(0, 70, 119, 0.92), rgba(1, 160, 199, 0.86)),
    url("https://images.unsplash.com/photo-1631815588090-d4bfec5b1ccb?auto=format&fit=crop&w=900&q=80") center/cover;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.updates-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 248, 252, 0.8);
  box-shadow: 0 24px 58px rgba(0, 70, 119, 0.22);
}

.updates-grid span {
  color: #e8f8fc;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.updates-grid strong {
  font-size: 20px;
  line-height: 1.2;
}

.blog-grid article {
  min-height: 155px;
  padding: 10px;
  border: 1px solid rgba(1, 160, 199, 0.16);
  position: relative;
  overflow: hidden;
}

.blog-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 800;
}

.appointment-section {
  background:
    linear-gradient(90deg, rgba(245, 251, 254, 0.96), rgba(232, 248, 252, 0.82)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(1, 160, 199, 0.16);
}

.contact-box strong {
  font-size: 20px;
}

.contact-box span {
  color: var(--muted);
}

.contact-box a {
  color: var(--teal-dark);
  font-weight: 800;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(1, 160, 199, 0.16);
}

label {
    display: grid;
    gap: 7px;
    color: white !important;
    font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(1, 160, 199, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 35, 58, 0.74);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.appointment-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  border: 1px solid rgba(232, 248, 252, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(1, 160, 199, 0.22), transparent 32%),
    var(--brand-gradient);
  color: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.appointment-modal::-webkit-scrollbar {
  width: 8px;
}

.appointment-modal::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.modal-copy {
  padding: 34px 34px 0;
}

.modal-copy h2 {
  max-width: 100%;
  margin-bottom: 12px;
}

.modal-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.modal-form {
  display: grid;
  gap: 16px;
  padding: 24px 34px 34px;
}

.modal-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.modal-form label {
  color: white;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  min-height: 48px;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #e8f8fc;
  box-shadow: 0 0 0 4px rgba(232, 248, 252, 0.18);
}

.modal-submit {
  width: 100%;
  background: white;
  color: #004677;
  box-shadow: 0 14px 34px rgba(0, 70, 119, 0.28);
}

.modal-submit:hover {
  box-shadow: 0 18px 44px rgba(0, 70, 119, 0.38);
}

.modal-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-align: center;
}



@media (max-width: 1040px) {
  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .hero-layout,
  .intro-grid,
  .about-grid,
  .appointment-grid,
  .why-layout,
  .services-premium {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .services-intro {
    min-height: auto;
  }

  .condition-grid,
  .service-showcase,
  .updates-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(0, 70, 119, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .dropdown-toggle {
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 6px 0 10px 12px;
    border: 0;
    border-left: 3px solid var(--teal);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.open .dropdown-menu {
    display: grid;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    transform: none;
  }

  .dropdown-menu a {
    padding: 10px 12px;
    color: var(--muted);
  }

  .dropdown-menu a:hover {
    background: rgba(1, 160, 199, 0.08);
    color: var(--teal);
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    /*width: min(100% - 28px, 1140px);*/
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel img {
    height: 340px;
  }

  .condition-grid,
  .service-showcase,
  .why-grid,
  .updates-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-premium {
    padding: 16px;
  }

  .services-intro,
  .service-feature {
    padding: 20px;
  }

  .condition-card {
    min-height: auto;
  }

  .review-slide {
    padding: 24px;
  }

  .slider-controls {
    gap: 12px;
  }

  .modal-backdrop {
    padding: 10px;
    align-items: start;
  }

  .appointment-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
  }

  .modal-copy {
    padding: 26px 18px 0;
  }

  .modal-form {
    gap: 14px;
    padding: 18px;
  }

  .modal-fields {
    grid-template-columns: 1fr;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
    .nav-cta {
        display: block;
        /*width: 100%;*/
        font-size: 12px !important;
        padding: 11px;
        text-align: center;
        font-weight: 400;
        min-height: 0px;
    }
    
    .profile-card {
        padding: 30px;
        border: 1px solid rgba(1, 160, 199, 0.16);
        position: relative;
        overflow: hidden;
        height: 520px;
        }
    }

/* SECTION */
.mri-review-section{
    width:100%;
    padding:80px 20px;
    background:#f5f9fd;
    position:relative;
}

.mri-container{
    max-width:1200px;
    margin:auto;
}

/* HEADING */
.mri-heading{
    text-align:center;
    margin-bottom:30px;
}
 
.mri-heading h2{
    line-height:1.2;
    /*color:black;*/
    margin-top:22px;
    margin-bottom:20px;
   
}



/* GRID */
.mri-review-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    margin-top:60px;
}

/* CARD */
.mri-step-card{
    background:#fff;
    padding:45px 35px;
    border-radius:24px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    border-top:5px solid #2f6597;
    transition:0.4s ease;
}

.mri-step-card:hover{
    transform:translateY(-8px);
}

/* NUMBER */
.step-number{
    font-size:72px;
    line-height:1;
    font-weight:800;
    margin-bottom:25px;
    color:#2f6597;
    opacity:0.18;
}

/* TITLE */
.mri-step-card h3{
    font-size:20px;
    line-height:1.3;
    color:#2f6597;
    margin-bottom:18px;
    font-weight:700;
}

/* TEXT */
.mri-step-card p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin:0;
}

/* BUTTON */
.mri-btn-wrap{
    text-align:center;
    margin-top:55px;
}

.mri-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:15px 25px;
    border-radius:60px;
    font-size:16px;
    font-weight:700;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(37,211,102,0.25);
}

.mri-btn:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
}

.mri-btn i{
    font-size:26px;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width:991px){

    .mri-heading h2{
        font-size:40px;
    }

    .mri-review-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .mri-step-card{
        padding:35px 28px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:576px){

    .mri-review-section{
        padding:60px 20px;
    }

    .mri-heading h2{
        font-size:30px;
        line-height:1.3;
    }


    .mri-step-card{
        padding:30px 22px;
        border-radius:18px;
    }

    .step-number{
        font-size:56px;
        margin-bottom:18px;
    }

    .mri-step-card h3{
        font-size:22px;
    }

    .mri-step-card p{
        font-size:15px;
        line-height:1.8;
    }

    .mri-btn{
        width:100%;
        justify-content:center;
        padding:16px 20px;
        font-size:17px;    
    }

}
 
 * ===== TRUST BAR ===== */
   
.trust-bar{
  background: black !important;
  padding: 18px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .trust-bar-inner {
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }
}

/*location page */

/* ===== HERO ===== */
 

.btn-wa{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    font-size:16px;
    font-weight:700;
    padding:18px 30px;
    border-radius:16px;
    text-decoration:none;
    transition:0.3s ease;
    box-shadow:0 10px 30px rgba(37,211,102,0.25);
}

.btn-wa:hover{
    transform:translateY(-2px);
}

.btn-call{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-size:16px;
    font-weight:600;
    padding:18px 30px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.2);
    text-decoration:none;
    transition:0.3s ease;
}

.btn-call:hover{
    background:rgba(255,255,255,0.1);
    border-color:rgba(255,255,255,0.4);
}

/* CREDENTIALS */
.credentials-strip{
    display:flex;
    flex-wrap:wrap;    
    gap:14px;
}

.home-banner-style{
    background:linear-gradient(90deg, #004677, #01a0c7) !important;
    padding: 8px 10px !important;
}
  
.credentials-strip span{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:13px;
    color:#dbeafe;
    background:rgba(255,255,255,0.06);
    padding:10px 16px;
    border-radius:40px;
    border: 1px solid white;
}

.credentials-strip span::before{
    content:'';
    width:6px;
    height:6px;
    background:#25D366;
    border-radius:50%;
}

/* RIGHT */
.hero-right{
    position:relative;
    align-self:end;
}

.hero-img-wrap{
    position:relative;
}

.hero-img-wrap img{
    width:100%;
    height:auto;
    object-fit:cover;
    object-position:top;
    border-radius:18px 18px 0 0;
    display:block;
    height:550px;
}

/* STATS */
.stat-cards{
    position:absolute;
    left:-175px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
}

.stat-card{
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:15px 15px;
    color:var(--navy);
    box-shadow:0 10px 35px rgba(0,0,0,0.2);
    min-width:220px;
}

.stat-card .num{
    font-size:25px;
    font-weight:600;   
    line-height:1;
    color:#2f6597;
}

.stat-card .lbl{
    font-size:15px;
    color:#475569;
    margin-top:8px;
    line-height:1.5;
}

/* =========================
   TABLET
========================= */
@media(max-width:991px){

    .hero{
        padding:50px 0 0;
    }

    .hero-inner{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-left{
        padding-bottom:0;
        text-align:center;
    }

    .hero h1{
        max-width:100%;
    }

    .mri-nudge{
        max-width:100%;
    }

    .hero-btns{
        justify-content:center;
    }

    .credentials-strip{
        justify-content:center;
    }

    .hero-right{
        max-width:500px;
        margin:auto;
    }

    .stat-cards{
        left:20px;
        top:auto;
        bottom:20px;
        transform:none;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .hero{
        padding:40px 0 0;
    }

    .hero-left{
        text-align:left;
    }

    .hero h1{
        font-size:35px;
        line-height:40px;
        font-weight: 800;
    }

    .hero-sub{
        font-size:17px;
    }

    .hero-badge{
        font-size:11px;
        padding:8px 14px;
    }

    .mri-nudge{
        padding:18px;
        font-size:15px;
        line-height:1.7;
    }

    .hero-btns{
        flex-direction:column;
    }

    .btn-wa,
    .btn-call{
        width:100%;
        justify-content:center;
        padding:16px 18px;
        font-size:15px;
    }

    .credentials-strip{
        gap:10px;
    }

    .credentials-strip span{
        font-size:12px;
        padding:8px 12px;
    }

    .hero-img-wrap img{
        height:auto;
        max-height:420px;
        object-fit:contain;
    }

    .stat-cards{
        position:relative;
        left:0;
        bottom:0;
        margin-top:-30px;
        padding:0 10px 20px;
    }

    .stat-card{
        min-width:100%;
    }

    .stat-card .num{
        font-size:36px;
    }

}


/* =========================================
   SEO CONTENT SECTION
========================================= */

.seo-content{
    padding:80px 0;
    background:#f8fafc;
}
 
/* PARAGRAPH */
.seo-inner > p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:22px;
}

/* HEADINGS */
.seo-inner h2{
    line-height:1.3;
    font-weight:600;
    color:var(--navy);
    margin:55px 0 24px;
    position:relative;
    padding-bottom:14px;
}

.seo-inner h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:4px;
    background:#2f6597;
    border-radius:20px;
}

.seo-inner h3{
    font-size:15px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#2f6597;
    margin:30px 0 18px;
}

/* =========================================
   PROCEDURE GRID
========================================= */

.seo-procedures-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:30px;
}

.seo-proc-item{
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:16px;
    padding:18px;
    transition:0.3s ease;
}

.seo-proc-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.proc-dot{
    width:10px;
    height:10px;
    background:#25D366;
    border-radius:50%;
    margin-top:7px;
    flex-shrink:0;
}

.seo-proc-item strong{
    display:block;
    font-size:16px;
    line-height:1.5;
    color:var(--navy);
    margin-bottom:4px;
}

.seo-proc-item span{
    font-size:14px;
    line-height:1.7;
    color:#64748b;
}

/* =========================================
   CITY CHIPS
========================================= */

.city-chips{
    display:flex;
    flex-wrap:wrap;
    gap:4px;
    margin:17px 0 21px;
    justify-content: flex-start;
}

.city-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border:1px solid #dbe3ec;
    border-radius:40px;
    padding:10px 18px;
    font-size:14px;
    font-weight:600;
    color:var(--navy);
}

.city-chip::before{
    content:'📍';
    font-size:13px;
}

/* =========================================
   WHATSAPP BOX
========================================= */

.wa-info-box{
    background:rgba(37,211,102,0.07);
    border:1px solid rgba(37,211,102,0.25);
    border-left:5px solid #25D366;
    border-radius:0 16px 16px 0;
    padding:24px;
    font-size:16px;
    line-height:1.9;
    color:#334155;
    margin-top:15px;
}

/* =========================================
   HOSPITAL FEATURES
========================================= */

.hospital-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.hosp-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:12px;
    padding:12px 18px;
    font-size:14px;
    font-weight:600;
    color:var(--navy);
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .seo-content{
        padding:70px 0;
    }

    .seo-procedures-grid{
        grid-template-columns:1fr;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .seo-content{
        padding:60px 0;
    }

    .seo-inner > p{
        font-size:16px;
        line-height:1.8;
    }

    .seo-inner h2{
        font-size:30px;
        margin:45px 0 20px;
        padding-bottom:12px;
    }

    .seo-inner h3{
        font-size:14px;
        line-height:1.5;
    }

    .seo-proc-item{
        padding:16px;
        border-radius:14px;
    }

    .seo-proc-item strong{
        font-size:15px;
    }

    .seo-proc-item span{
        font-size:13px;
    }

    .city-chip{
        font-size:13px;
        padding:8px 14px;
    }

    .wa-info-box{
        padding:18px;
        font-size:15px;
        line-height:1.8;
    }

    .hospital-features{
        gap:10px;
    }

    .hosp-pill{
        width:100%;
        justify-content:flex-start;
        font-size:13px;
        padding:12px 14px;
    }

}

.mri-review-section{
    padding:80px 10;
}

.mri-review-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

.mri-review-label{
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#01a0c7;
    margin-bottom:10px;
}

.mri-review-title{
    font-weight:600;
    color:#0a1628;
    line-height:1.25;
    margin-bottom:16px;
}

.mri-review-subtitle{
    font-size:16px;
    color:#6b7280;
    line-height:1.7;
    
}

.mri-review-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:48px;
}

.mri-review-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:32px 28px;
    position:relative;
    transition:0.3s ease;
}

.mri-review-card:hover{
    box-shadow:0 12px 40px rgba(10,22,40,0.1);
    transform:translateY(-4px);
}

.mri-review-number{
    font-size:48px;
    font-weight:900;
    color:#e2e8f0;
    line-height:1;
    margin-bottom:16px;
}

.mri-review-card h3{
    font-size:18px;
    font-weight:700;
    color:#0a1628;
    margin-bottom:12px;
}

.mri-review-card p{
    font-size:15px;
    color:#6b7280;
    line-height:1.7;
}

.mri-review-cta{
    background:#0a1628;
    border-radius:16px;
    padding:36px 40px;
    margin-top:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
}

.mri-review-cta p{
    color:#e2e8f0;
    font-size:16px;
    font-weight:500;
    max-width:560px;
    line-height:1.7;
}

.mri-review-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#25D366;
    color:#fff;
    font-size:15px;
    font-weight:700;
    padding:14px 24px;
    border-radius:10px;
    transition:0.3s ease;
    text-decoration:none;
}

.mri-review-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(37,211,102,0.35);
}

@media(max-width:768px){

    .mri-review-section{
        padding:56px 10;
    }

    .mri-review-steps{
        grid-template-columns:1fr;
    }

    .mri-review-cta{
        flex-direction:column;
        align-items:flex-start;
        padding:28px 24px;
    }

    .mri-review-btn{
        width:100%;
        justify-content:center;
    }
}

@media(max-width:480px){

    .mri-review-container{
        padding:0 18px;
    }

    .mri-review-card{
        padding:24px 20px;
    }

    .mri-review-number{
        font-size:40px;
    }

    .mri-review-title{
        line-height:1.3;
    }
}
 
 
.section{
    padding:80px 0;
}

.bg-light{
    background:#f7f8fb;
}


.section-label{
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#01a0c7;
    margin-bottom:10px;
}

.section-title-new{
    /*color:#0a1628;*/
    line-height:1.25;
    margin-bottom:16px;
}

.section-sub{
    font-size:16px;
    color:#6b7280;
    line-height:1.7;
    max-width:620px;
}

.services-tabs{
    display:flex;
    gap:8px;
    margin-bottom:32px;
}

.tab-btn{
    padding:10px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    border:2px solid #e5e7eb;
    background:#fff;
    color:#6b7280;
    transition:all 0.2s;
}

.tab-btn.active{
    background:#0a1628;
    color:#fff;
    border-color:#0a1628;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:16px;
}

.service-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:24px;
    transition:0.3s ease;
}

.service-card:hover{
    box-shadow:0 4px 24px rgba(0,0,0,0.08);
    border-color:#1a3a6b;
}

.service-num{
    font-size:11px;
    font-weight:700;
    color:#01a0c7;
    letter-spacing:1px;
    margin-bottom:10px;
}

.service-card h3{
    font-size:20px;
    font-weight:700;
    /*color:#0a1628;*/
    margin-bottom:8px;
    line-height:1.5;
}

.service-card p{
    font-size:15px;
    color:#6b7280;
    line-height:1.7;
    margin-bottom:14px;
}

.service-card ul{
    padding-left:18px;
    margin-bottom:18px;
}

.service-card ul li{
    font-size:14px;
    color:#374151;
    line-height:1.7;
    margin-bottom:6px;
}

.service-learn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    font-weight:600;
    color:#1a3a6b;
    text-decoration:none;
    transition:0.3s ease;
}

.service-learn:hover{
    color:#0a1628;
}

@media(max-width:768px){

    .section{
        padding:56px 10;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-tabs{
        flex-wrap:wrap;
    }

    .tab-btn{
        width:100%;
        text-align:center;
    }
}

@media(max-width:480px){

    .container{
        padding:0 18px;
    }

    .service-card{
        padding:20px;
    }

    .section-title-new{
        line-height:1.3;
    }
}

 

/* ===== WHY CHOOSE SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.why-left img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    display: block;
}

.why-tabs {
    display: flex;
    gap: 4px;
    background: #f7f8fb;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}

.why-tab-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
}

.why-tab-btn.active {
    background: #0a1628;
    color: #fff;
}

.why-tab-content {
    display: none;
}

.why-tab-content.active {
    display: block;
}

.why-tab-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 16px;
}

.credential-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.credential-item:last-child {
    border-bottom: none;
}

.cred-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0a1628, #1a3a6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01a0c7;
    font-size: 16px;
    flex-shrink: 0;
}

.cred-info h4 {
    font-size: 15px;
    font-weight: 700; 
    color: #0a1628;
    margin-bottom: 4px;
    line-height: 1.5;
}

.cred-info p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.credentials-block {
    background: #f7f8fb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid black;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.8;
    color: #374151;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 10px;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0a1628;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    border: 2px solid #0a1628;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-call:hover {
    background: #0a1628;
    color: #fff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .why-left {
        display: none;
    }

    .why-tabs {
        flex-direction: column;
    }

    .why-tab-btn {
        width: 100%;
    }

    .credential-item {
        gap: 12px;
    }

    .cred-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
 
@media (max-width: 480px) {
    .btn-wa,
    .btn-call {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .credentials-block {
        font-size: 12px;
        line-height: 1.7;
    }
}


/* ===== CASE STUDIES SECTION ===== */

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.case-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.case-card:hover {
    box-shadow: 0 16px 48px rgba(10,22,40,0.12);
    transform: translateY(-4px);
}

.case-card-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 100%);
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.case-card-header::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.case-type-badge {
    display: inline-block;
    background: rgba(200,169,110,0.2);
    border: 1px solid rgba(200,169,110,0.5);
    color: #01a0c7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.case-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 6px;
}

.case-card-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.case-card-body {
    padding: 28px;
}

.case-meta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.case-meta-item {
    text-align: center;
}

.case-meta-item .val {
    font-size: 22px;
    font-weight: 800;
    color: #0a1628;
    line-height: 1;
}

.case-meta-item .key {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.case-step-dot {
    width: 32px;
    height: 32px;
    background: #f7f8fb;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #0a1628;
    flex-shrink: 0;
    margin-top: 2px;
}

.case-step-dot.active {
    background: #0a1628;
    border-color: #0a1628;
    color: #fff;
}

.case-step-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
    line-height: 1.5;
}

.case-step-text span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    display: block;
}

.case-outcome {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(10,22,40,0.04), rgba(26,58,107,0.06));
    border-left: 3px solid #01a0c7;
    border-radius: 0 10px 10px 0;
    padding: 14px 16px;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.7;
    font-style: italic;
}

/* ===== BUTTON ===== */

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-card-body {
        padding: 22px;
    }

    .case-card-header {
        padding: 22px;
    }

    .case-meta-row {
        gap: 10px;
    }

    .case-meta-item .val {
        font-size: 18px;
    }

    .btn-wa {
        width: 100%;
        justify-content: center;
    }
}


/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 22px 10px;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.faq-question {
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
    line-height: 1.6;
}

.faq-question:hover {
    background: #f7f8fb;
}

.faq-question .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 0 16px 16px;
    }
}



  .best-orthopedic-doctor-in-lucknow {
  padding:120px 20px;
  background: url('assets/images/loaction/hero-bg-lucknow.png') no-repeat center/cover;
  position: relative;
  color: #fff;
}

/* Overlay */
.best-orthopedic-doctor-in-lucknow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 101, 151, 0.85); /* theme overlay */
}

/* Content above overlay */
.best-orthopedic-doctor-in-lucknow .container {
  position: relative;
  z-index: 2;
}

.best-orthopedic-doctor-in-lucknow h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

.best-orthopedic-doctor-in-lucknow p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #2f6597;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .best-orthopedic-doctor-in-lucknow {
    padding: 50px 15px;
  }

  .best-orthopedic-doctor-in-lucknow h2 {
    font-size: 22px;
  }

  .best-orthopedic-doctor-in-lucknow p {
    font-size: 14px;
  }  
}





/*location page */


/*gallery*/
/* Wrapper */
.gallery-carousel {
    overflow: hidden;
    padding: 40px 0;
    background: white;
}

/* Track */
.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollGallery 28s linear infinite;
    will-change: transform; /* smooth for iPhone */
}

/* Pause on hover (desktop only) */
@media (hover: hover) {
    .gallery-carousel:hover .gallery-track {
        animation-play-state: paused;
    }
}

/* Items */
.gallery-item {
    flex: 0 0 auto;
    width: 260px;
    border-radius: 18px;
    overflow: hidden;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Animation (IMPORTANT FIX) */
@keyframes scrollGallery {
    0% {
        transform: translate3d(0,0,0);
    }
    100% {
        transform: translate3d(-50%,0,0);
    }
}

@media (max-width: 768px) {

    .gallery-track {
        animation: scrollGalleryMobile 22s linear infinite;
    }

    .gallery-item {
        width: 180px;
    }

    .gallery-item img {
        height: 240px;
    }

    @keyframes scrollGalleryMobile {
        0% {
            transform: translate3d(0,0,0);
        }
        100% {
            transform: translate3d(-50%,0,0);
        }
    }
}

 /*gallery*/


/*vedio section */   
.video-testimonials {
    background: #ecf2f5;
    padding: 60px 20px;
    text-align: center;
}

.video-testimonials h2 {
    margin-bottom: 40px;
}

/* Grid */
.video-grid {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card */
.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

/* Hover */
.video-card:hover {
    transform: translateY(-6px);
}

/* Video */
.video-card iframe {
    width: 100%;
    height: 320px;
    border: none;
}
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card iframe {
        height: 240px;
    }
}

/*vedio section */

/*insta */
.updates-section {
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    text-align:center;
}

.updates-title {
    margin-bottom: 30px;
}

/* GRID */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.update-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

/* IMAGE */
.update-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.update-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #0198c0;
}

.update-card:hover img {
    transform: scale(1.05);
}

/* INSTAGRAM BUTTON */
.insta-btn-wrap {
    margin-top: 35px;
}

.insta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.insta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .updates-grid {
        grid-template-columns: 1fr;
    }
}
/*insta */


.top-contact-bar {
    background: linear-gradient(90deg, #2f6597, #1e3a5f);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
}

.top-contact-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Address line */
.address {
    margin-bottom: 8px;
}

/* Phone + Email row */
.contact-flex {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Mobile tweak */
@media (max-width: 480px) {
    .contact-flex {
        gap: 15px;
        font-size: 14px;
    }
}

/*privacy and condition page */
.legal-page-section{
    padding:80px 0;
    background:#f8fafc;
}

.legal-header{
    margin-bottom:40px;
}

.legal-header h1{
    font-size:42px;
    font-weight:800;
    color:#0a1628;
    margin-bottom:15px;
}

.legal-header h1 i{
    color:#01a0c7;
    margin-right:10px;
}

.legal-header p{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
    max-width:850px;
}

.legal-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px;
    margin-bottom:24px;
    box-shadow:0 4px 24px rgba(0,0,0,0.05);
}

.legal-card h2{
    font-size:22px;
    font-weight:700;
    color:#0a1628;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.legal-card h2 i{
    color:#01a0c7;
}

.legal-card p,
.legal-card li{
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
}

.legal-card ul{
    padding-left:20px;
    margin-top:10px;
}

.legal-contact{
    margin-top:18px;
}

.legal-contact p{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:12px;
}

.legal-contact i{
    color:#01a0c7;
    margin-top:4px;
}

.legal-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:25px;
}

.btn-call,
.btn-wa{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 24px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
}

.btn-call{
    background:#0a1628;
    color:#fff;
}

.btn-call:hover{
    background:#1a3a6b;
}

.btn-wa{
    background:#25D366;
    color:#fff;
}

.btn-wa:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .legal-page-section{
        padding:60px 0;
    }

    .legal-header h1{
        font-size:32px;
    }

    .legal-card{
        padding:22px;
    }

    .legal-card h2{
        font-size:19px;
        line-height:1.4;
    }

    .legal-actions{
        flex-direction:column;
    }

    .btn-call,
    .btn-wa{
        width:100%;
        justify-content:center;
    }
}
/*privacy and condition page */

 .blog-hero h1{
     max-width:100% !important;
 }



/*Surgery  pages */


/* ════════ SECTION ════════ */

.tkr-section{
    padding:90px 0;
    background:#f5f9fc;
    overflow:hidden;
}

.tkr-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.tkr-head{
    margin:auto;
    margin-bottom:60px;
}

.tkr-label{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.tkr-head h2{
    line-height:1.2;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.tkr-head h2 span{
    color:#01a0c7;
}

.tkr-head p{
    font-size:16px;
    line-height:1.9;
    color:#516272;
}

/* ════════ WRAPPER ════════ */

.tkr-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:start;
}

/* ════════ LEFT ════════ */

.tkr-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,70,119,0.08);
    margin-bottom:30px;
}

.tkr-card h3{
    font-size:24px;
    margin-bottom:30px;
    color:#004677;
}

.bone-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.bone-item{
    text-align:center;
    padding:25px 15px;
    border-radius:18px;
    border:1px solid #d7e5ef;
    transition:.3s;
    background:#fff;
}

.bone-item:hover{
    transform:translateY(-5px);
    border-color:#01a0c7;
    box-shadow:0 10px 25px rgba(1,160,199,0.12);
}

.bone-icon{
    font-size:42px;
    margin-bottom:14px;
}

.bone-item h4{
    font-size:18px;
    color:#004677;
    margin-bottom:6px;
}

.bone-item p{
    font-size:14px;
    color:#6a7d8e;
}
 
.tkr-info{
    background: #2f6597;
    padding: 15px;
    color: white;
    border-radius: 10px;
    border-left: 6px solid #2f6597;
}

.tkr-info p{
    font-size:16px;
    line-height:1.9;
    color:white;
    margin-bottom:18px;
}

/* ════════ RIGHT PANEL ════════ */

.implant-panel{
    background:linear-gradient(135deg,#004677,#01a0c7);
    padding:40px;
    border-radius:28px;
    color:#fff;
    position:sticky;
    top:30px;
    overflow:hidden;
}

.implant-panel::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    right:-80px;
    top:-80px;
}

.implant-head{
    position:relative;
    z-index:2;
}

.implant-head h3{
    font-size:28px;
    margin-bottom:12px;
}

.implant-head p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.8);
    margin-bottom:30px;
}

.implant-panel ul{
    list-style:none;
    padding:0;
    margin:0;
    position:relative;
    z-index:2;
}

.implant-panel ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    line-height:1.7;
    font-size:15px;
}

.implant-panel ul li span{
    width:24px;
    height:24px;
    min-width:24px;
    border-radius:50%;
    background:#fff;
    color:#01a0c7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    margin-top:2px;
}

.result-box{
    margin-top:35px;
    padding:22px;
    border-radius:18px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    line-height:1.8;
    font-size:15px;
    position:relative;
    z-index:2;
}

.result-box strong{
    display:block;
    margin-bottom:6px;
    font-size:18px;
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .tkr-wrapper{
        grid-template-columns:1fr;
    }

    .implant-panel{
        position:relative;
        top:0;
    }

    .tkr-head h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .tkr-section{
        padding:65px 0;
    }

    .tkr-head{
        margin-bottom:40px;
    }

    .tkr-head h2{
        font-size:30px;
    }

    .tkr-head p{
        font-size:15px;
    }

    .tkr-card{
        padding:25px 20px;
    }

    .bone-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .bone-item{
        padding:22px 15px;
    }

    .implant-panel{
        padding:30px 24px;
        border-radius:22px;
    }

    .implant-head h3{
        font-size:24px;
    }

    .result-box{
        padding:18px;
    }
}

@media(max-width:480px){

    .tkr-head h2{
        font-size:26px;
    }

    .tkr-card h3{
        font-size:20px;
    }

    .bone-icon{
        font-size:34px;
    }

    .implant-head h3{
        font-size:22px;
    }
}


 

/* ════════ SECTION ════════ */

.candidate-section{
    padding:90px 0;
    background:#f7fbfe;
}

.candidate-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.candidate-head{
    text-align:center;
    margin:auto;
    margin-bottom:60px;
}

.candidate-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.candidate-head h2{
    line-height:1.2;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.candidate-head h2 span{
    color:#01a0c7;
}

.candidate-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ GRID ════════ */

.candidate-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* ════════ CARD ════════ */

.candidate-card{
    background:#fff;
    border-radius:22px;
    padding:28px 24px;
    border:1px solid #dbe7f0;
    box-shadow:0 8px 28px rgba(0,70,119,0.06);
    transition:.35s;
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.candidate-card:hover{
    transform:translateY(-5px);
    border-color:#01a0c7;
    box-shadow:0 14px 34px rgba(1,160,199,0.12);
}

.candidate-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.candidate-content h3{
    font-size:19px;
    color:#004677;
    margin-bottom:10px;
    line-height:1.4;
}

.candidate-content p{
    font-size:14px;
    line-height:1.8;
    color:#607080;
}

/* ════════ NOTE BOX ════════ */

.candidate-note{
    margin-top:50px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    border-radius:28px;
    padding:35px;
    display:flex;
    align-items:flex-start;
    gap:22px;
    overflow:hidden;
    position:relative;
}

.candidate-note::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    right:-90px;
    top:-90px;
}

.candidate-note-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:20px;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    backdrop-filter:blur(10px);
    position:relative;
    z-index:2;
}

.candidate-note-content{
    position:relative;
    z-index:2;
}

.candidate-note-content h4{
    font-size:28px;
    color:#fff;
    margin-bottom:12px;
}

.candidate-note-content p{
    font-size:15px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .candidate-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .candidate-head h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .candidate-section{
        padding:65px 0;
    }

    .candidate-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .candidate-head{
        margin-bottom:40px;
    }

    .candidate-head h2{
        font-size:30px;
    }

    .candidate-head p{
        font-size:15px;
    }

    .candidate-card{
        padding:24px 20px;
        gap:15px;
    }

    .candidate-icon{
        width:52px;
        height:52px;
        min-width:52px;
        font-size:20px;
        border-radius:15px;
    }

    .candidate-content h3{
        font-size:18px;
    }

    .candidate-note{
        padding:28px 24px;
        flex-direction:column;
    }

    .candidate-note-content h4{
        font-size:24px;
    }
}

@media(max-width:480px){

    .candidate-head h2{
        font-size:26px;
    }

    .candidate-card{
        flex-direction:column;
    }

    .candidate-icon{
        margin-bottom:5px;
    }

    .candidate-note-icon{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:26px;
    }

    .candidate-note-content h4{
        font-size:22px;
    }
}



/* ════════ SECTION ════════ */

.knee-procedure-section{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.knee-procedure-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.knee-procedure-head{
    text-align:center;
    margin:auto;
    margin-bottom:70px;
}

.knee-procedure-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.knee-procedure-head h2{
    line-height:1.2;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.knee-procedure-head h2 span{
    color:#01a0c7;
}

.knee-procedure-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ TIMELINE ════════ */    

.knee-process-wrap{
    position:relative;
    max-width:100%;
    margin:auto;
}

.knee-process-wrap::before{
    content:'';
    position:absolute;
    left:42px;
    top:0;
    bottom:0;
    width:3px;
    background:linear-gradient(to bottom,#004677,#01a0c7);
    border-radius:10px;
}

/* ════════ CARD ════════ */

.knee-process-card{   
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:20px;
}

.knee-process-card:last-child{
    margin-bottom:0;
}

/* ════════ NUMBER ════════ */

.knee-step-number{
    width:86px;
    height:86px;
    min-width:86px;
    border-radius:50%;
    background:#fff;
    border:3px solid #01a0c7;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    box-shadow:0 10px 30px rgba(0,70,119,0.08);
    transition:.35s;
}

.knee-process-card:hover .knee-step-number{
    background:linear-gradient(135deg,#004677,#01a0c7);
    border-color:transparent;
    transform:translateY(-5px);
}

.knee-step-number span{
    font-size:26px;
    font-weight:700;
    color:#004677;
    transition:.35s;
}

.knee-process-card:hover .knee-step-number span{
    color:#fff;
}

/* ════════ CONTENT ════════ */

.knee-step-content{
    flex:1;
    background:#f8fbfe;
    border:1px solid #dce7ef;
    border-radius:28px;
    padding:20px;
    transition:.35s;
    box-shadow:0 8px 24px rgba(0,70,119,0.05);
}

.knee-process-card:hover .knee-step-content{
    transform:translateX(5px);
    border-color:#01a0c7;
    box-shadow:0 16px 38px rgba(1,160,199,0.12);
}

.knee-step-top{
    margin-bottom:18px;
}

.knee-step-label{
    display:inline-block;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#01a0c7;
    margin-bottom:10px;
}

.knee-step-content h3{
    font-size:28px;
    line-height:1.3;
    color:#004677;
}

.knee-step-content p{
    font-size:15px;
    line-height:1.95;
    color:#607080;
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .knee-procedure-head h2{
        font-size:40px;
    }

    .knee-step-content h3{
        font-size:24px;
    }
}

@media(max-width:767px){

    .knee-procedure-section{
        padding:65px 0;
    }

    .knee-procedure-head{
        margin-bottom:45px;
    }

    .knee-procedure-head h2{
        font-size:30px;
    }

    .knee-procedure-head p{
        font-size:15px;
    }

    .knee-process-wrap::before{
        left:24px;
    }

    .knee-process-card{
        gap:16px;
        margin-bottom:28px;
    }

    .knee-step-number{
        width:50px;
        height:50px;
        min-width:50px;
        border-width:2px;
    }

    .knee-step-number span{
        font-size:16px;
    }

    .knee-step-content{
        padding:24px 20px;
        border-radius:22px;
    }

    .knee-step-content h3{
        font-size:20px;
    }

    .knee-step-content p{
        font-size:14px;
        line-height:1.85;
    }
}

@media(max-width:480px){

    .knee-procedure-head h2{
        font-size:26px;
    }

    .knee-step-content{
        padding:22px 18px;
    }

    .knee-step-content h3{
        font-size:18px;
    }

    .knee-step-label{
        font-size:10px;
    }
}




/* ════════ SECTION ════════ */

.fast-track-section{
    padding:90px 0;
    background:#f7fbfe;
    overflow:hidden;
}

.fast-track-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.fast-track-head{
    margin:auto;
    text-align:center;
    margin-bottom:65px;
}

.fast-track-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.fast-track-head h2{
    line-height:1.2;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.fast-track-head h2 span{
    color:#01a0c7;
}

.fast-track-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ GRID ════════ */

.fast-track-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* ════════ CARD ════════ */

.fast-track-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    border:1px solid #dce8f1;
    box-shadow:0 10px 28px rgba(0,70,119,0.05);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.fast-track-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#004677,#01a0c7);
}

.fast-track-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(1,160,199,0.12);
    border-color:#01a0c7;
}

/* TOP */

.fast-track-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:24px;
}

.fast-track-badge{
    background:linear-gradient(135deg,#004677,#01a0c7);
    color:#fff;
    padding:9px 16px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.fast-track-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#eef7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* CONTENT */

.fast-track-card h3{
    font-size:24px;
    line-height:1.35;
    color:#004677;
    margin-bottom:14px;
}

.fast-track-card p{
    font-size:15px;
    line-height:1.9;
    color:#607080;
}

/* ════════ CASE BOX ════════ */

.fast-track-case{
    margin-top:60px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    border-radius:32px;
    padding:40px;
    display:flex;
    align-items:flex-start;
    gap:24px;
    position:relative;
    overflow:hidden;
}

.fast-track-case::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    right:-100px;
    top:-100px;
}

.fast-track-case-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:22px;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    position:relative;
    z-index:2;
}

.fast-track-case-content{
    position:relative;
    z-index:2;
}

.fast-track-case-content span{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.72);
    margin-bottom:12px;
}

.fast-track-case-content p{
    font-size:16px;
    line-height:1.95;
    color:rgba(255,255,255,0.88);
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .fast-track-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .fast-track-head h2{
        font-size:40px;
    }

    .fast-track-card h3{
        font-size:21px;
    }
}

@media(max-width:767px){

    .fast-track-section{
        padding:65px 0;
    }

    .fast-track-head{
        margin-bottom:45px;
    }

    .fast-track-head h2{
        font-size:30px;
    }

    .fast-track-head p{
        font-size:15px;
    }

    .fast-track-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .fast-track-card{
        padding:24px 20px;
        border-radius:22px;
    }

    .fast-track-top{
        margin-bottom:18px;
    }

    .fast-track-icon{
        width:50px;
        height:50px;
        font-size:24px;
        border-radius:15px;
    }

    .fast-track-card h3{
        font-size:19px;
    }

    .fast-track-card p{
        font-size:14px;
        line-height:1.8;
    }

    .fast-track-case{
        margin-top:40px;
        padding:28px 24px;
        flex-direction:column;
        border-radius:24px;
    }

    .fast-track-case-icon{
        width:60px;
        height:60px;
        min-width:60px;
        border-radius:18px;
        font-size:28px;
    }

    .fast-track-case-content p{
        font-size:14px;
        line-height:1.85;
    }
}

@media(max-width:480px){

    .fast-track-head h2{
        font-size:26px;
    }

    .fast-track-card h3{
        font-size:18px;
    }

    .fast-track-badge{
        font-size:11px;
        padding:8px 14px;
    }
}




/* ════════ SECTION ════════ */

.knee-types-section{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.knee-types-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.knee-types-head{
    margin:auto;
    text-align:center;
    margin-bottom:55px;
}

.knee-types-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.knee-types-head h2{
    line-height:1.2;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.knee-types-head h2 span{
    color:#01a0c7;
}

.knee-types-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ TABLE WRAP ════════ */

.knee-types-table-wrap{
    overflow-x:scroll;
    -webkit-overflow-scrolling:touch;
    border-radius:30px;
    border:1px solid #dbe7f0;
    box-shadow:0 14px 40px rgba(0,70,119,0.06);
    background:#fff;
}

/* SCROLLBAR */

.knee-types-table-wrap::-webkit-scrollbar{
    height:6px;
}

.knee-types-table-wrap::-webkit-scrollbar-track{
    background:#dfeaf2;
    border-radius:20px;
}

.knee-types-table-wrap::-webkit-scrollbar-thumb{
    background:linear-gradient(90deg,#004677,#01a0c7);
    border-radius:20px;
}

/* ════════ TABLE ════════ */

.knee-types-table{
    width:100%;
    border-collapse:collapse;
    min-width:750px;
}

/* HEAD */

.knee-types-table thead{
    background:linear-gradient(135deg,#004677,#01a0c7);
}

.knee-types-table thead th{
    padding:24px 28px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-align:left;
    letter-spacing:.5px;
}

/* BODY */

.knee-types-table tbody tr{
    border-bottom:1px solid #e3edf5;
    transition:.3s;
}

.knee-types-table tbody tr:last-child{
    border-bottom:none;
}

.knee-types-table tbody tr:hover{
    background:#f5fbff;
}

.knee-types-table tbody td{
    padding:24px 28px;
    vertical-align:top;
    font-size:15px;
    line-height:1.9;
    color:#607080;
}

/* LEFT TITLE */

.knee-type-title{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:18px;
    font-weight:700;
    color:#004677;
    line-height:1.5;
}

.knee-type-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:16px;
    background:#eef7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .knee-types-head h2{
        font-size:40px;
    }
}

@media(max-width:767px){

    .knee-types-section{
        padding:65px 0;
    }

    .knee-types-head{
        margin-bottom:40px;
    }

    .knee-types-head h2{
        font-size:30px;
    }

    .knee-types-head p{
        font-size:15px;
    }

    .knee-types-table-wrap{
        overflow-x:scroll;
        padding-bottom:8px;
    }

    .knee-types-table{
        min-width:650px;
    }

    .knee-types-table thead th{
        padding:18px 20px;
        font-size:14px;
    }

    .knee-types-table tbody td{
        padding:18px 20px;
        font-size:14px;
        line-height:1.8;
    }

    .knee-type-title{
        font-size:16px;
        gap:10px;
    }

    .knee-type-icon{
        width:44px;
        height:44px;
        min-width:44px;
        border-radius:12px;
        font-size:20px;
    }
}

@media(max-width:480px){

    .knee-types-head h2{
        font-size:26px;
    }

    .knee-types-table{
        min-width:580px;
    }
}



/* ════════ SECTION ════════ */

.ns-alt-section{
    padding:90px 0;
    background:#f6fafc;
    overflow:hidden;
}

.ns-alt-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.ns-alt-head{
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.ns-alt-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.ns-alt-head h2{
    font-size:48px;
    line-height:1.2;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:700;
}

.ns-alt-head h2 span{
    color:#01a0c7;
}

.ns-alt-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ GRID ════════ */

.ns-alt-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* ════════ CARD ════════ */

.ns-alt-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:34px 28px;
    border:1px solid #dce8f1;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,70,119,0.05);
}

.ns-alt-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#004677,#01a0c7);
}

.ns-alt-card:hover{
    transform:translateY(-8px);
    border-color:#01a0c7;
    box-shadow:0 20px 40px rgba(1,160,199,0.14);
}

/* ICON */

.ns-alt-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:24px;
    box-shadow:0 10px 24px rgba(1,160,199,0.25);
}

/* CONTENT */

.ns-alt-card h3{
    font-size:24px;
    color:#004677;
    margin-bottom:14px;
    line-height:1.3;
}

.ns-alt-card p{
    font-size:15px;
    line-height:1.9;
    color:#607080;
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .ns-alt-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ns-alt-head h2{
        font-size:40px;
    }

    .ns-alt-card h3{
        font-size:21px;
    }
}

@media(max-width:767px){

    .ns-alt-section{
        padding:65px 0;
    }

    .ns-alt-head{
        margin-bottom:42px;
    }

    .ns-alt-head h2{
        font-size:30px;
    }

    .ns-alt-head p{
        font-size:15px;
    }

    .ns-alt-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .ns-alt-card{
        padding:28px 22px;
        border-radius:24px;
    }

    .ns-alt-icon{
        width:58px;
        height:58px;
        border-radius:18px;
        font-size:28px;
        margin-bottom:18px;
    }

    .ns-alt-card h3{
        font-size:19px;
    }

    .ns-alt-card p{
        font-size:14px;
        line-height:1.8;
    }
}

@media(max-width:480px){

    .ns-alt-head h2{
        font-size:26px;
    }
}



/* ════════ SECTION ════════ */

.why-dr-section{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.why-dr-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.why-dr-head{
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.why-dr-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.why-dr-head h2{
    line-height:1.25;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.why-dr-head h2 span{
    color:#01a0c7;
}

.why-dr-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ GRID ════════ */

.why-dr-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:start;
}

/* ════════ LEFT SIDE ════════ */

.why-dr-left{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.why-dr-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:28px;
    background:#f8fcff;
    border:1px solid #dce8f1;
    border-radius:26px;
    transition:.35s;
}

.why-dr-box:hover{
    transform:translateY(-6px);
    border-color:#01a0c7;
    box-shadow:0 18px 35px rgba(1,160,199,0.12);
}

/* ICON */

.why-dr-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:22px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 10px 24px rgba(1,160,199,0.22);
}

/* CONTENT */

.why-dr-content h3{
    font-size:24px;
    line-height:1.4;
    color:#004677;
    margin-bottom:10px;
}

.why-dr-content p{
    font-size:15px;
    line-height:1.9;
    color:#607080;
} 

/* ════════ RIGHT CARD ════════ */

.why-dr-card{
    background:linear-gradient(135deg,#004677,#01a0c7);
    border-radius:32px;
    padding:30px;
    position:sticky;
    top:20px;
    overflow:hidden;
}

.why-dr-card::before{
    content:'';
    position:absolute;
    right:-70px;
    top:-70px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
}

.why-dr-card h3{
    font-size:30px;
    color:#fff;
    margin-bottom:28px;
    position:relative;
    z-index:2;
}

/* LIST */

.why-dr-list{
    list-style:none;
    padding:0;
    margin:0;
    position:relative;
    z-index:2;
}

.why-dr-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:14px 0;
    color:rgba(255,255,255,0.88);
    font-size:15px;
    line-height:1.8;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.why-dr-list li:last-child{
    border-bottom:none;
}

.why-dr-list li span{
    width:26px;
    height:26px;
    min-width:26px;
    border-radius:50%;
    background:#fff;
    color:#01a0c7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    margin-top:2px;
}

/* HIGHLIGHT */

.why-dr-highlight{
    margin-top:28px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:24px;
    padding:22px;
    display:flex;
    gap:16px;
    align-items:flex-start;
    position:relative;
    z-index:2;
}

.why-dr-highlight-icon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:18px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.why-dr-highlight p{
    color:rgba(255,255,255,0.88);
    font-size:15px;
    line-height:1.8;
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .why-dr-grid{
        grid-template-columns:1fr;
    }

    .why-dr-head h2{
        font-size:40px;
    }

    .why-dr-card{
        position:relative;
        top:auto;
    }
}

@media(max-width:767px){

    .why-dr-section{
        padding:65px 0;
    }

    .why-dr-head{
        margin-bottom:42px;
    }

    .why-dr-head h2{
        font-size:30px;
    }

    .why-dr-head p{
        font-size:15px;
    }

    .why-dr-grid{
        gap:22px;
    }

    .why-dr-box{
        padding:22px;
        border-radius:22px;
        gap:16px;
    }

    .why-dr-icon{
        width:56px;
        height:56px;
        min-width:56px;
        border-radius:18px;
        font-size:28px;
    }

    .why-dr-content h3{
        font-size:19px;
    }

    .why-dr-content p{
        font-size:14px;
        line-height:1.8;
    }

    .why-dr-card{
        padding:28px 24px;
        border-radius:26px;
    }  
     
    .why-dr-card h3{
        font-size:24px;
        margin-bottom:22px;
    }

    .why-dr-list li{
        font-size:14px;
        line-height:1.8;
        gap:12px;
        display: inline-block;
    }

    .why-dr-highlight{
        padding:18px;
        border-radius:20px;
    }

    .why-dr-highlight-icon{
        width:48px;
        height:48px;
        min-width:48px;
        border-radius:14px;
        font-size:24px;
    }

    .why-dr-highlight p{
        font-size:14px;
    }
}

@media(max-width:480px){

    .why-dr-head h2{
        font-size:26px;
    }

    .why-dr-box{
        flex-direction:column;
    }

    .why-dr-highlight{
        flex-direction:column;
    }
}



/* ════════ SECTION ════════ */

.knee-risk-section{
    padding:90px 0;
    background:#f7fbfe;
    overflow:hidden;
}

.knee-risk-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ════════ HEADING ════════ */

.knee-risk-head{
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.knee-risk-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(1,160,199,0.12);
    color:#01a0c7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.knee-risk-head h2{
    line-height:1.25;
    color:#0d1f2d;
    margin-bottom:18px;
    font-weight:600;
}

.knee-risk-head h2 span{
    color:#01a0c7;
}

.knee-risk-head p{
    font-size:16px;
    line-height:1.9;
    color:#607080;
}

/* ════════ WRAPPER ════════ */

.knee-risk-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:32px;
    align-items:start;
}

/* ════════ LEFT SIDE ════════ */

.knee-risk-left{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.knee-risk-card{
    background:#ffffff;
    border:1px solid #dce8f1;
    border-radius:24px;
    padding:15px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    transition:.35s;
    box-shadow:0 10px 24px rgba(0,70,119,0.05);
}

.knee-risk-card:hover{
    transform:translateY(-5px);
    border-color:#01a0c7;
    box-shadow:0 18px 36px rgba(1,160,199,0.12);
}

/* ICON */

.knee-risk-icon{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:20px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 10px 20px rgba(1,160,199,0.22);
}

/* CONTENT */

.knee-risk-content h3{
    font-size:22px;
    color:#004677;
    margin-bottom:8px;
    line-height:1.3;
}

.knee-risk-content p{
    font-size:15px;
    line-height:1.85;
    color:#607080;
}

/* ════════ RIGHT SIDE ════════ */

.knee-risk-highlight{
    position:sticky;
    top:20px;
    background:linear-gradient(135deg,#004677,#01a0c7);
    border-radius:34px;
    padding:40px;
    overflow:hidden;
}

.knee-risk-highlight::before{
    content:'';
    position:absolute;
    right:-70px;
    top:-70px;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
}

/* BADGE */

.knee-risk-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.18);
    color:#ffffff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

/* RIGHT CONTENT */

.knee-risk-highlight h3{
    font-size:34px;
    line-height:1.3;
    color:#ffffff;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.knee-risk-highlight p{
    font-size:15px;
    line-height:1.95;
    color:rgba(255,255,255,0.82);
    position:relative;
    z-index:2;
}

/* POINTS */

.knee-risk-points{
    margin-top:28px;
    display:flex;
    flex-direction:column;
    gap:14px;
    position:relative;
    z-index:2;
}

.knee-risk-point{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 16px;
    border-radius:18px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:rgba(255,255,255,0.9);
    font-size:14px;
    line-height:1.7;
}

.knee-risk-point span{
    width:24px;
    height:24px;
    min-width:24px;
    border-radius:50%;
    background:#ffffff;
    color:#01a0c7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

/* ════════ RESPONSIVE ════════ */

@media(max-width:991px){

    .knee-risk-wrapper{
        grid-template-columns:1fr;
    }

    .knee-risk-head h2{
        font-size:40px;
    }

    .knee-risk-highlight{
        position:relative;
        top:auto;
    }
}

@media(max-width:767px){

    .knee-risk-section{
        padding:65px 0;
    }

    .knee-risk-head{
        margin-bottom:42px;
    }

    .knee-risk-head h2{
        font-size:30px;
    }

    .knee-risk-head p{
        font-size:15px;
    }

    .knee-risk-wrapper{
        gap:24px;
    }

    .knee-risk-card{
        padding:20px;
        border-radius:20px;
        gap:14px;
    }

    .knee-risk-icon{
        width:52px;
        height:52px;
        min-width:52px;
        border-radius:16px;
        font-size:24px;
    }

    .knee-risk-content h3{
        font-size:18px;
    }

    .knee-risk-content p{
        font-size:14px;
        line-height:1.8;
    }

    .knee-risk-highlight{
        padding:30px 24px;
        border-radius:26px;
    }

    .knee-risk-highlight h3{
        font-size:26px;
    }

    .knee-risk-highlight p{
        font-size:14px;
        line-height:1.85;
    }

    .knee-risk-point{
        font-size:13px;
        padding:12px 14px;
    }
}

@media(max-width:480px){

    .knee-risk-head h2{
        font-size:26px;
    }

    .knee-risk-card{
        flex-direction:column;
    }

    .knee-risk-highlight h3{
        font-size:22px;
    }
}


/*cta*/


.consult-cta-sec{
    padding:90px 20px;
    background:#eef2f6;
}

.consult-cta-wrap{
    max-width:1248px;
    margin:auto;
    background:linear-gradient(135deg,#005a88,#0f95be);
    border-radius:34px;
    padding:70px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    overflow:hidden;
    position:relative;
}

/* BACKGROUND SHAPES */

.consult-cta-wrap::before{
    content:'';
    position:absolute;
    width:230px;
    height:230px;
    border-radius:50%;
    background:rgba(0,0,0,0.08);
    top:-85px;
    left:38%;
}

.consult-cta-wrap::after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    right:-170px;
    bottom:-170px;
}

/* CONTENT */

.consult-cta-content{
    max-width:620px;
    position:relative;
    z-index:2;
}

.consult-mini-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.72);
    margin-bottom:22px;
}

.consult-mini-title::before{
    content:'';
    width:20px;
    height:2px;
    background:rgba(255,255,255,0.5);
    border-radius:2px;
}

.consult-cta-content h2{
    line-height:1.1;
    color:#ffffff;
    margin-bottom:24px;
    font-weight:600;
}

.consult-cta-content h2 span{
    display:block;
}

.consult-location{
    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
    margin-bottom:26px;
}

/* CONTACT BOX */

.consult-contact-box{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    background:rgba(0,0,0,0.18);
    padding:18px 20px;
    border-radius:18px;
    width:max-content;
    max-width:100%;
    margin-bottom:24px;
}

.consult-contact-box a{
    color:#ffffff;
    font-size:15px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.consult-contact-box a:hover{
    color:#d8f5ff;
}

.consult-contact-box i{
    color:#ff5a4e;
    font-size:14px;
}

.consult-email{
    width:100%;
}

/* REVIEW */

.consult-review-text{
    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
    max-width:600px;
}

/* BUTTONS */

.consult-cta-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

.consult-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.35s;
    white-space:nowrap;
}

.whatsapp-btn{
    background:#2fd45a;
    color:#ffffff;
    box-shadow:0 10px 30px rgba(47,212,90,0.28);
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    background:#24c44d;
}

.call-btn{
    border:2px solid rgba(255,255,255,0.35);
    color:#ffffff;
    background:transparent;
}

.call-btn:hover{
    background:rgba(255,255,255,0.12);
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .consult-cta-wrap{
        flex-direction:column;
        align-items:flex-start;
        padding:55px 35px;
    }

    .consult-cta-content h2{
        font-size:44px;
    }

    .consult-cta-buttons{
        width:100%;
    }
}

@media(max-width:767px){

    .consult-cta-sec{
        padding:60px 15px;
    }

    .consult-cta-wrap{
        padding:40px 24px;
        border-radius:26px;
        gap:30px;
    }

    .consult-cta-content h2{
        font-size:34px;
    }

    .consult-location,
    .consult-review-text{
        font-size:14px;
    }

    .consult-contact-box{
        width:100%;
        padding:16px;
        gap:12px;
    }

    .consult-contact-box a{
        font-size:14px;
    }

    .consult-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .consult-btn{
        width:100%;
        font-size:15px;
        padding:16px 20px;
    }
}

@media(max-width:480px){

    .consult-cta-content h2{
        font-size:28px;
    }

    .consult-contact-box{
        flex-direction:column;
    }
}


/*cta*/


    .acl-symptoms-section {
        padding: 80px 0;
        background: #fff;
    }

    .acl-symptoms-section .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

    .acl-symptoms-head {
        margin-bottom: 50px;
    }

    .acl-label {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 50px;
        background: rgba(47, 101, 151, 0.08);
        color: #2f6597;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
        border: 1px solid rgba(47, 101, 151, 0.2);
    }

    .acl-symptoms-head h2 {
        line-height: 1.3;
        font-weight: 600;
        color: #111;
        margin-bottom: 18px;
    }

    .acl-symptoms-head h2 span {
        color: #2f6597;
    }

    .acl-symptoms-head p {
        max-width: 700px;
        margin: auto;
        color: #555;
        line-height: 1.8;
        font-size: 17px;
    }

    .acl-symptoms-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .acl-symptom-card {
        background: #fff;
        border: 1px solid rgba(47, 101, 151, 0.15);
        border-radius: 22px;
        padding: 35px 28px;
        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .acl-symptom-card::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #2f6597, #4a86bd);
        left: 0;
        top: 0;
        transform: scaleX(0);
        transition: 0.4s ease;
    }

    .acl-symptom-card:hover::before {
        transform: scaleX(1);
    }

    .acl-symptom-card:hover {
        transform: translateY(-8px);
        border-color: #2f6597;
        box-shadow: 0 18px 40px rgba(47, 101, 151, 0.12);
    }

    .acl-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: rgba(47, 101, 151, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        border: 1px solid rgba(47, 101, 151, 0.15);
        transition: 0.4s ease;
    }

    .acl-icon i {
        font-size: 28px;
        color: #2f6597;
    }

    .acl-symptom-card:hover .acl-icon {
        background: #2f6597;
    }

    .acl-symptom-card:hover .acl-icon i {
        color: #fff;
    }

    .acl-symptom-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #111;
        margin-bottom: 14px;
    }

    .acl-symptom-card p {
        color: #666;
        line-height: 1.8;
        margin: 0;
        font-size: 15px;
    }

    .acl-note-box {
        margin-top: 40px;
        padding: 28px 30px;
        border-radius: 22px;
        background: linear-gradient(90deg, #2f6597, #3d7ab3);
        color: #fff;
        line-height: 1.9;
        font-size: 16px;
    }

    .acl-note-box strong {
        font-weight: 700;
    }

    @media (max-width: 991px) {
        .acl-symptoms-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }

        .acl-symptoms-head h2 {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .acl-symptoms-section {
            padding: 60px 0;
        }

        .acl-symptoms-wrapper {
            grid-template-columns: 1fr;
        }

        .acl-symptoms-head h2 {
            font-size: 28px;
        }

        .acl-symptom-card {
            padding: 28px 22px;
        }

        .acl-note-box {
            padding: 24px 22px;
        }
    }
    
    
    .acl-diagnosis-section {
        padding: 90px 0;
        background: #f8fbff;
    }

    .acl-diagnosis-section .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

    .acl-diagnosis-head {
        margin-bottom: 55px;
    }

    .acl-diagnosis-label {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 50px;
        background: rgba(47, 101, 151, 0.08);
        border: 1px solid rgba(47, 101, 151, 0.15);
        color: #2f6597;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .acl-diagnosis-head h2 {
        line-height: 1.3;
        font-weight: 600;
        color: #111;
        margin-bottom: 18px;
    }

    .acl-diagnosis-head h2 span {
        color: #2f6597;
    }

    .acl-diagnosis-head p {
        max-width: 760px;
        margin: auto;
        color: #555;
        line-height: 1.8;
        font-size: 17px;
    }

    .acl-diagnosis-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .acl-diagnosis-box {
        background: #fff;
        border-radius: 24px;
        padding: 35px;
        border: 1px solid rgba(47, 101, 151, 0.12);
        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .acl-diagnosis-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #2f6597, #4a86bd);
        transform: scaleY(0);
        transition: 0.4s ease;
        transform-origin: top;
    }

    .acl-diagnosis-box:hover::before {
        transform: scaleY(1);
    }

    .acl-diagnosis-box:hover {
        transform: translateY(-8px);
        border-color: #2f6597;
        box-shadow: 0 20px 45px rgba(47, 101, 151, 0.12);
    }

    .acl-box-top {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 35px;
    }

    .acl-box-icon {
        width: 75px;
        height: 75px;
        border-radius: 20px;
        background: rgba(47, 101, 151, 0.08);
        border: 1px solid rgba(47, 101, 151, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }

    .acl-box-icon i {
        font-size: 30px;
        color: #2f6597;
    }

    .acl-diagnosis-box:hover .acl-box-icon {
        background: #2f6597;
    }

    .acl-diagnosis-box:hover .acl-box-icon i {
        color: #fff;
    }

    .acl-mini-title {
        display: block;
        color: #2f6597;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .acl-box-top h3 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #111;
    }

    .acl-diagnosis-item {
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px dashed rgba(47, 101, 151, 0.2);
    }

    .acl-diagnosis-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .acl-diagnosis-item h4 {
        font-size: 20px;
        font-weight: 700;
        color: #111;
        margin-bottom: 10px;
    }

    .acl-diagnosis-item p {
        margin: 0;
        color: #666;
        line-height: 1.8;
        font-size: 15px;
    }

    .acl-mri-review-box {
        margin-top: 45px;
        background: linear-gradient(90deg, #2f6597, #3e79b0);
        border-radius: 28px;
        padding: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .acl-mri-content span {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        background: rgba(255,255,255,0.15);
        padding: 8px 14px;
        border-radius: 50px;
        margin-bottom: 16px;
        color: #fff;
    }

    .acl-mri-content h3 {
        color: #fff;
        font-size: 34px;
        margin-bottom: 14px;
        font-weight: 700;
    }

    .acl-mri-content p {
        color: rgba(255,255,255,0.9);
        line-height: 1.8;
        max-width: 700px;
        margin: 0;
    }

    .acl-mri-btn a {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        color: #2f6597;
        text-decoration: none;
        padding: 16px 28px;
        border-radius: 14px;
        font-weight: 700;
        transition: 0.4s ease;
    }

    .acl-mri-btn a:hover {
        transform: translateY(-4px);
        background: #111;
        color: #fff;
    }

    @media (max-width: 991px) {

        .acl-diagnosis-grid {
            grid-template-columns: 1fr;
        }

        .acl-diagnosis-head h2 {
            font-size: 34px;
        }

        .acl-mri-review-box {
            padding: 35px 28px;
        }
    }

    @media (max-width: 767px) {

        .acl-diagnosis-section {
            padding: 65px 0;
        }

        .acl-diagnosis-head h2 {
            font-size: 28px;
        }

        .acl-diagnosis-box {
            padding: 28px 24px;
        }

        .acl-box-top {
            flex-direction: column;
            align-items: flex-start;
        }

        .acl-mri-content h3 {
            font-size: 28px;
        }

        .acl-mri-btn a {
            width: 100%;
            justify-content: center;
        }
    }


    .acl-treatment-section {
        padding: 90px 0;
        background: #fff;
    }

    .acl-treatment-section .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

    .acl-treatment-head {
        margin-bottom: 55px;
    }

    .acl-treatment-tag {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 50px;
        background: rgba(47, 101, 151, 0.08);
        border: 1px solid rgba(47, 101, 151, 0.15);
        color: #2f6597;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .acl-treatment-head h2 {
        line-height: 1.3;
        font-weight: 600;
        color: #111;
        margin-bottom: 18px;
    }

    .acl-treatment-head h2 span {
        color: #2f6597;
    }

    .acl-treatment-head p {
        max-width: 760px;
        margin: auto;
        color: #555;
        line-height: 1.8;
        font-size: 17px;
    }

    .acl-treatment-layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: stretch;
    }

    .acl-treatment-card {
        background: #fff;
        border: 1px solid rgba(47, 101, 151, 0.12);
        border-radius: 28px;
        overflow: hidden;
        transition: 0.4s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .acl-treatment-card:hover {
        transform: translateY(-8px);
        border-color: #2f6597;
        box-shadow: 0 20px 50px rgba(47, 101, 151, 0.12);
    }

    .acl-treatment-top {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 35px;
        background: linear-gradient(90deg, rgba(47, 101, 151, 0.06), rgba(47, 101, 151, 0.02));
        border-bottom: 1px solid rgba(47, 101, 151, 0.08);
    }

    .acl-treatment-icon {
        width: 78px;
        height: 78px;
        border-radius: 20px;
        background: #2f6597;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.4s ease;
    }

    .acl-treatment-icon i {
        color: #fff;
        font-size: 32px;
    }

    .acl-treatment-card:hover .acl-treatment-icon {
        transform: rotate(-8deg) scale(1.05);
    }

    .acl-treatment-top span {
        display: inline-block;
        color: #2f6597;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .acl-treatment-top h3 {
        font-size: 28px;
        line-height: 1.4;
        margin: 0;
        color: #111;
        font-weight: 700;
    }

    .acl-treatment-content {
        padding: 35px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .acl-main-points {
        padding: 0;
        margin: 0 0 30px;
        list-style: none;
    }

    .acl-main-points li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 18px;
        color: #555;
        line-height: 1.8;
        font-size: 15px;
    }

    .acl-main-points li::before {
        content: "\f058";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #2f6597;
    }

    .acl-sub-box {
        background: #f8fbff;
        border: 1px solid rgba(47, 101, 151, 0.12);
        border-radius: 20px;
        padding: 28px;
        margin-bottom: 28px;
    }

    .acl-sub-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #111;
    }

    .acl-sub-box ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .acl-sub-box ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 16px;
        color: #666;
        line-height: 1.8;
        font-size: 15px;
    }

    .acl-sub-box ul li:last-child {
        margin-bottom: 0;
    }

    .acl-sub-box ul li::before {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 1px;
        color: #2f6597;
    }

    .acl-warning-box {
        background: linear-gradient(90deg, #2f6597, #3f7bb3);
        color: #fff;
        border-radius: 18px;
        padding: 24px;
        line-height: 1.9;
        font-size: 15px;
    }

    .acl-warning-box strong {
        font-weight: 700;
    }

    .acl-reconstruct-box {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .acl-reconstruct-item {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 22px;
        border-radius: 18px;
        background: #f8fbff;
        border: 1px solid rgba(47, 101, 151, 0.1);
        transition: 0.4s ease;
    }

    .acl-reconstruct-item:hover {
        background: #2f6597;
        transform: translateX(6px);
    }

    .acl-reconstruct-item i {
        font-size: 22px;
        color: #2f6597;
        margin-top: 3px;
        transition: 0.4s ease;
    }

    .acl-reconstruct-item p {
        margin: 0;
        color: #444;
        line-height: 1.8;
        font-size: 15px;
        transition: 0.4s ease;
    }

    .acl-reconstruct-item:hover i,
    .acl-reconstruct-item:hover p {
        color: #fff;
    }

    .acl-appointment-box {
        margin-top: auto;
        background: linear-gradient(90deg, #2f6597, #3f7bb3);
        border-radius: 22px;
        padding: 30px;
        margin-top: 30px;
    }

    .acl-appointment-content span {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 14px;
        line-height: 1.4;
    }

    .acl-appointment-content p {
        color: rgba(255,255,255,0.9);
        line-height: 1.8;
        margin-bottom: 24px;
        font-size: 15px;
    }

    .acl-appointment-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        color: #2f6597;
        text-decoration: none;
        padding: 15px 28px;
        border-radius: 14px;
        font-weight: 700;
        transition: 0.4s ease;
    }

    .acl-appointment-btn:hover {
        background: #111;
        color: #fff;
        transform: translateY(-4px);
    }

    @media (max-width: 991px) {

        .acl-treatment-layout {
            grid-template-columns: 1fr;
        }

        .acl-treatment-head h2 {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {

        .acl-treatment-section {
            padding: 65px 0;
        }

        .acl-treatment-head h2 {
            font-size: 28px;
        }

        .acl-treatment-top {
            flex-direction: column;
            align-items: flex-start;
            padding: 28px;
        }

        .acl-treatment-content {
            padding: 28px;
        }

        .acl-treatment-top h3 {
            font-size: 24px;
        }

        .acl-sub-box {
            padding: 22px;
        }

        .acl-reconstruct-item {
            padding: 18px;
        }

        .acl-appointment-box {
            padding: 24px;
        }

        .acl-appointment-content span {
            font-size: 24px;
        }

        .acl-appointment-btn {
            width: 100%;
            justify-content: center;
        }
    }


    .cartilage-restoration-section{
    padding: 40px 0;
}

.cr-box{
    background: #ffffff;
    border-left: 6px solid #2f6597;
    padding: 25px 28px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin: auto;
}

.cr-box h2{
    margin-bottom: 12px;
    color: #222;
}

.cr-box p{
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* Hover effect */
.cr-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-left-color: black;
}

/* Responsive */
@media (max-width: 768px){
    .cr-box{
        padding: 18px 20px;
        border-left-width: 5px;
    }

    .cr-box h2{
        font-size: 20px;
    }

    .cr-box p{
        font-size: 15px;
    }
}


/* NEW LEFT SIDE CARTILAGE LAYOUT */

.cartilage-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.cartilage-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #edf1f5;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.cartilage-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(90deg, #004677, #01a0c7);
}

.cartilage-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.cartilage-icon{
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(47, 101, 151, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cartilage-content h4{
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 700;
    color: #111;
}

.cartilage-content p{
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.full-width{
    grid-column: span 2;
}

/* RESPONSIVE */

@media(max-width:768px){

    .cartilage-grid{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .full-width{
        grid-column: span 1;
    }

    .cartilage-item{
        padding: 16px;
        border-radius: 14px;
        gap: 14px;
    }

    .cartilage-icon{
        min-width: 52px;
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 12px;
    }

    .cartilage-content h4{
        font-size: 17px;
    }

    .cartilage-content p{
        font-size: 14px;
        line-height: 1.6;
    }

}

/*Surgery  pages */



/* =========================
   THERAPY
========================= */

.regen-therapy-section {
    padding: 90px 20px;
    background: #f7fbfd;
    overflow: hidden;
}

.regen-therapy-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* LEFT */

.regen-therapy-left {
    background: linear-gradient(135deg, #0d5c75, #01a0c7);
    padding: 45px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.regen-therapy-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(6px);
}

.regen-therapy-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
}

.regen-therapy-left h3 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 700;
}

.regen-therapy-left p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
}

.regen-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.regen-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.regen-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    margin-top: 8px;
    flex-shrink: 0;
}

.regen-point span {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

/* RIGHT */

.regen-therapy-right {
    padding: 10px 0;
}

.regen-label {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(1,160,199,0.12);
    color: #01a0c7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.regen-therapy-right h2 {
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 25px;
}

.regen-therapy-right p {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

.regen-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 35px;
}

.regen-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    border-bottom: 4px solid #01a0c7;
}

.regen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.regen-card h4 {
    font-size: 21px;
    color: #0f172a;
    margin-bottom: 14px;
    font-weight: 700;
}

.regen-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .regen-therapy-container {
        grid-template-columns: 1fr;
    }

    .regen-therapy-right h2 {
        font-size: 38px;
    }

    .regen-therapy-left,
    .regen-therapy-right {
        padding: 35px;
    }

}

@media (max-width: 767px) {

    .regen-therapy-section {
        padding: 70px 15px;
    }

    .regen-therapy-left,
    .regen-therapy-right {
        padding: 28px;
        border-radius: 22px;
    }

    .regen-therapy-right h2 {
        font-size: 30px;
    }

    .regen-therapy-left h3 {
        font-size: 26px;
    }

    .regen-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
   
    .regen-card {
        padding: 22px;
    }

    .regen-therapy-icon {
        width: 72px;
        height: 72px;
    }

    .regen-therapy-icon svg {
        width: 36px;
        height: 36px;
    }

}

/* =========================
   CONDITIONS SECTION
========================= */

.rcx-conditions{
background:var(--off-white);
}

.rcx-cond-wrap{
max-width:1100px;
margin:0 auto;
padding:72px 24px;
}

/* HEADER */
.rcx-cond-head{
text-align:center;
margin-bottom:48px;
}

.rcx-section-label{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(1, 160, 199, 0.12);
    color: #01a0c7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}



.rcx-section-title{
line-height:1.25;
color:var(--black);
margin-bottom:14px;
}

.rcx-section-sub{
font-size:15px;
color:var(--text-mid);
max-width:620px;
margin:0 auto;
line-height:1.7;
}

/* GRID */
.rcx-cond-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

/* CARD */
.rcx-cond-box{
background:var(--white);
border:1.5px solid var(--border);
border-radius:18px;
padding:26px;
display:flex;
align-items:flex-start;
gap:18px;
transition:border-color .25s,box-shadow .25s,transform .2s;
cursor:default;
border:1px solid black;
}

.rcx-cond-box:hover{
border-color:var(--brand-cyan);
box-shadow:0 6px 24px rgba(1,160,199,0.12);
transform:translateY(-3px);
border:1px solid #0191b9;
}

/* ICON */
.rcx-cond-icon{
width:46px;
height:46px;
flex-shrink:0;
background:rgba(1,160,199,0.08);
border:1.5px solid rgba(1,160,199,0.25);
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
}

.rcx-cond-icon i{
font-size:18px;
color:var(--brand-cyan);
}

/* CONTENT */
.rcx-cond-content h3{
font-size:15px;
font-weight:600;
line-height:1.45;
color:var(--black);
margin-bottom:6px;
}

.rcx-cond-content p{
font-size:15px;
color:var(--text-mid);
line-height:1.7;
}

.rcx-cond-badge{
display:inline-block;
margin-top:10px;
font-size:11px;
font-weight:600;
letter-spacing:.06em;
color:var(--brand-dark);
background:rgba(0,70,119,0.08);
border:1px solid rgba(0,70,119,0.2);
border-radius:50px;
padding:3px 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

.rcx-cond-wrap{
padding:60px 20px;
}

.rcx-cond-grid{
grid-template-columns:1fr 1fr;
gap:16px;
}

.rcx-cond-box{
padding:22px;
}

}

@media(max-width:520px){

.rcx-cond-grid{
grid-template-columns:1fr;
}

.rcx-cond-box{
padding:20px;
gap:14px;
}

.rcx-cond-icon{
width:42px;
height:42px;
}

.rcx-cond-icon i{
font-size:16px;
}

.rcx-cond-content h3{
font-size:14px;
}

.rcx-cond-content p{
font-size:14.8px;
}

}


/* PROCESS STEPS (UPDATED - NO BLACK BACKGROUND) */

.sct-process{
    background:var(--off-white);
}

.sct-process-inner{
    max-width:1200px;
    margin:0 auto;
    padding:80px 24px;
}

/* HEADER */

.sct-process-header{
    text-align:center;
    margin-bottom:56px;
}

.sct-process-header .sct-section-title{
    color:var(--black);
}

.sct-process-header .sct-section-sub{
    color:var(--text-mid);
    max-width:750px;
    margin:0 auto;
}

/* LABEL FIX (your requested correction style) */
.sct-process-label{
    display:inline-block;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(1,160,199,0.12);
    color:var(--brand-cyan);
    font-size:13px;
    font-weight:700;
    letter-spacing:0.6px;
    text-transform:uppercase;
    margin-bottom:20px;
    border:1px solid rgba(1,160,199,0.25);
}

/* STEPS GRID */

.sct-steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:24px;
    position:relative;
}

/* remove line (clean modern look) */
.sct-steps::before{
    display:none;
}

/* STEP CARD */

.sct-step{
    text-align:center;
    padding:24px 16px;
    background:var(--white);
    border:1.5px solid var(--border);
    border-radius:var(--radius-lg);
    transition:0.3s ease;
    position:relative;
}

.sct-step:hover{
    transform:translateY(-6px);
    border-color:var(--brand-cyan);
    box-shadow:0 12px 28px rgba(1,160,199,0.12);
}

/* NUMBER CIRCLE */

.sct-step-num{
    width:78px;
    height:78px;
    border-radius:50%;
    background:rgba(1,160,199,0.08);
    border:2px solid rgba(1,160,199,0.35);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    transition:0.3s ease;
}

.sct-step:hover .sct-step-num{
    background:rgba(1,160,199,0.15);
    border-color:var(--brand-cyan);
    transform:scale(1.05);
}

.sct-step-num span{
    font-size:1.3rem;
    color:var(--brand-cyan);
    font-weight:600;
    line-height:1;
}

.sct-step-num small{
    font-size:9px;
    color:var(--text-mid);
    letter-spacing:0.08em;
    text-transform:uppercase;
    margin-top:2px;
}

/* TEXT */

.sct-step h3{
    font-size:15px;
    font-weight:600;
    color:var(--black);
    margin-bottom:10px;
}

.sct-step p{
    font-size:13px;
    color:var(--text-mid);
    line-height:1.7;
}

/* TAG */

.sct-step-time{
    display:inline-block;
    margin-top:12px;
    font-size:11px;
    color:var(--brand-dark);
    background:rgba(1,160,199,0.10);
    border:1px solid rgba(1,160,199,0.25);
    border-radius:50px;
    padding:4px 10px;
}

.sct-step{   
    text-align:center;
    padding:24px 16px;
    background:var(--white);

    /* DEFAULT BORDER (FIXED) */
    border:2px solid rgba(1,160,199,0.18);

    border-radius:var(--radius-lg);
    transition:0.3s ease;
    position:relative;
    border-radius: 15px;  
}

/* HOVER BORDER (FIXED PROPERLY) */
.sct-step:hover{
    transform:translateY(-6px);

    border:2px solid var(--brand-cyan);

    box-shadow:0 12px 28px rgba(1,160,199,0.15);
}

/* optional extra glow border effect */
.sct-step::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:inherit;
    border:2px solid transparent;
    transition:0.3s ease;
}

.sct-step:hover::after{
    border-color:rgba(1,160,199,0.35);
}


/* RESPONSIVE */

@media(max-width:768px){

    .sct-steps{
        grid-template-columns:1fr;
    }

    .sct-process-inner{
        padding:60px 16px;
    }

}

/* =========================
   COMPARE TABLE (UPDATED)
========================= */

.cmp-compare{
    background:var(--white);
}

.cmp-compare-inner{
    max-width:900px;
    margin:0 auto;
    padding:72px 24px;
}

/* HEADER */

.cmp-compare-header{
    text-align:center;
    margin-bottom:42px;
}

/* TABLE WRAP (RESPONSIVE FIX) */
.cmp-table-wrap{
    width:100%;
    overflow-x:auto;
}

/* TABLE */

.cmp-table{
    width:100%;
    border-collapse:collapse;

    border-radius:var(--radius-lg);
    overflow:hidden;

    box-shadow:0 2px 20px rgba(0,0,0,0.08);
    border:1px solid var(--border);
}

/* HEADER */

.cmp-table thead{
    background:linear-gradient(90deg,#004677,#01a0c7);
}

.cmp-table th{
    padding:16px 20px;
    text-align:left;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.04em;
    color:rgba(255,255,255,0.85);
}

.cmp-table th:first-child{
    color:rgba(255,255,255,0.55);
    font-weight:400;
}

.cmp-stem-head{
    color:#a8e8f5;
}

/* BODY */

.cmp-table tbody tr{
    border-bottom:1px solid var(--border);
    transition:0.2s ease;
}

.cmp-table tbody tr:hover{
    background:var(--off-white);
}

.cmp-table tbody tr:last-child{
    border-bottom:none;
}

.cmp-table td{
    padding:15px 20px;
    font-size:14px;
    color:var(--text-mid);
}

/* FIRST COLUMN */

.cmp-table td:first-child{
    font-weight:500;
    color:var(--black);
    background:rgba(245,247,249,0.6);
}

/* STEM VALUE */

.cmp-stem-val{
    color:var(--black);
    font-weight:500;
}

/* TAGS */

.cmp-tag-yes{
    display:inline-flex;
    align-items:center;
    gap:5px;

    color:#1a6e42;
    background:#e8f7f0;

    border-radius:50px;
    padding:4px 10px;

    font-size:12px;
    font-weight:600;

    border:1px solid rgba(26,110,66,0.2);
}

.cmp-tag-no{
    display:inline-flex;
    align-items:center;
    gap:5px;

    color:#7a2d2d;
    background:#fdeaea;

    border-radius:50px;
    padding:4px 10px;

    font-size:12px;
    font-weight:600;

    border:1px solid rgba(122,45,45,0.2);
}

/* NOTE */

.cmp-note{
    font-size:13px;
    color:var(--text-light);
    text-align:center;
    margin-top:18px;
    font-style:italic;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .cmp-compare-inner{
        padding:60px 16px;
    }

    .cmp-table th,
    .cmp-table td{
        padding:12px 14px;
        font-size:13px;
    }

}

/* COMPARE TABLE FIXED */
.sc-compare {
  background: var(--white);
}

.sc-compare-inner {
  max-width: 1200px;   
  margin: 0 auto;
  padding: 72px 24px;
}

.sc-compare-header {
  text-align: center;
  margin-bottom: 42px;
}

/* TABLE WRAP (RESPONSIVE FIX) */
.sc-table-wrap {
  overflow-x: auto;
}

/* TABLE CORE */
.sc-compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

/* HEADER */
.sc-compare-table thead {
  background: linear-gradient(90deg, #004677, #01a0c7);
}

.sc-compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sc-col-primary {
  color: #a8e8f5;
}

/* ROW BORDER (IMPORTANT FIX) */
.sc-compare-table tbody tr {
  border-bottom: 1px solid #808080;
  transition: all 0.2s ease;
}

/* HOVER FIX (BORDER + BACKGROUND BOTH) */
.sc-compare-table tbody tr:hover {
  background:#efefefa6;
  border-left: 3px solid #01a0c7;
}

/* CELLS */
.sc-compare-table td {
  padding: 15px 20px;
  font-size: 14px;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
}

/* last column fix */
.sc-compare-table td:last-child,
.sc-compare-table th:last-child {
  border-right: none;
}

/* first column highlight */
.sc-compare-table td:first-child {
  font-weight: 500;
  color: var(--black);
  background: rgb(245 247 249);
}

/* TAGS */
.sc-tag-yes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1a6e42;
  background: #e8f7f0;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #bfe8d2;
}

.sc-tag-no {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7a2d2d;
  background: #fdeaea;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #f5bcbc;
}

/* NOTE */
.sc-note {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  margin-top: 18px;
  font-style: italic;
}
.sc-section-label{
        display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(1, 160, 199, 0.12);
    color: var(--brand-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(1, 160, 199, 0.25);
}


/* MOBILE */
@media (max-width: 768px) {
  .sc-compare-inner {
    padding: 50px 16px;
  }

  .sc-compare-table th,
  .sc-compare-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

.stemcell-check-section{
    padding: 60px 20px;
    background: #f7f9fc;
}

.stemcell-container{
    max-width: 1200px;
    margin: auto;
}

.stemcell-header{
    text-align: center;
    margin-bottom: 40px;
}

.stemcell-header h2{
    margin-bottom: 10px;
}

.stemcell-header p{
    max-width: 700px;
    margin: auto;
    color: #555;
}

.stemcell-grid{
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* LEFT */
.stemcell-info{
    flex: 2;
}

.stemcell-box{
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.stemcell-box h3{
    margin-bottom: 15px;
}

.stemcell-box ul{
    padding-left: 18px;
}

.stemcell-box li{
    margin-bottom: 10px;
    color: #444;
}

/* RIGHT */
.stemcell-cta{
    flex: 1;
}

.cta-card{
    position: sticky;
    top: 20px;
    background: linear-gradient(90deg, #2f6597, #434748);
    color: #fff;
    padding: 25px;
    border-radius: 14px;
}

.cta-card h3{
    margin-bottom: 10px;
}

.cta-highlight{
    margin: 15px 0;
    font-weight: 600;
}

.cta-btn{
    display: inline-block;
    background: #fff;
    color: #2f6597;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE */
@media(max-width: 768px){
    .stemcell-grid{
        flex-direction: column;
    }

    .cta-card{
        position: relative;
        top: auto;
    }
}


.gkp-mri-section{
    padding:80px 0;
    background:#f7f9fc;
}

.gkp-mri-head{
    text-align:center;
    max-width:850px;
    margin:auto auto 50px;
}

.gkp-mri-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e8eef5;
    color:#2f6597;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.gkp-mri-head h2{
    font-size:44px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:18px;
}

.gkp-mri-head h2 span{
    color:#2f6597;
}

.gkp-mri-head p{
    font-size:17px;
    line-height:1.8;
    color:#555;
}

.gkp-mri-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.gkp-mri-card{
    background:#fff;
    padding:30px 22px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.gkp-mri-card:hover{
    transform:translateY(-5px);
}

.gkp-step-no{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#2f6597;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    margin-bottom:22px;
}

.gkp-mri-card h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:14px;
    color:#111;
}

.gkp-mri-card p{
    font-size:15px;
    line-height:1.8;
    color:#555;
}

.gkp-mri-bottom{
    margin-top:45px;
    background:#fff;
    padding:30px;
    border-radius:24px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.gkp-mri-bottom-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#2f6597;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.gkp-mri-bottom-content h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:12px;
    color:#111;
}

.gkp-mri-bottom-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin:0;
}

.gkp-mri-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.gkp-mri-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 32px;
    border-radius:60px;
    background:#25D366;
    color:#fff;
    font-size:17px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.gkp-mri-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

@media(max-width:1100px){

    .gkp-mri-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .gkp-mri-section{
        padding:60px 0;
    }

    .gkp-mri-head h2{
        font-size:32px;
    }

    .gkp-mri-grid{
        grid-template-columns:1fr;
    }

    .gkp-mri-bottom{
        flex-direction:column;
    }

    .gkp-mri-bottom-icon{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:24px;
    }

    .gkp-mri-bottom-content h4{
        font-size:22px;
    }

}

/* ── QUALIFICATIONS ── */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.qual-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
  border-bottom: 4px solid #00bcd4;
}


.qual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.qual-card:hover {
  box-shadow: 0 8px 32px rgba(27,79,138,.12);
  transform: translateY(-2px);
}

.qual-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.qual-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
}

.qual-sub {
  font-size: 15.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.qual-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .qual-grid {
    grid-template-columns: 1fr;
  }

  .qual-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {

  .qual-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .qual-card {
    border-radius: 10px;
    padding: 18px;
  }

  .qual-icon {
    font-size: 26px;
  }

  .qual-title {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .qual-sub,
  .qual-desc {
    font-size: 12px;
  }
}



