﻿:root {
  --white: #FFFFFF;
  --light-gray: #F7F9FC;
  --dark-text: #1A1A1A;
  --muted-text: #5E6A7D;
  --border: #E3EAF4;
  --shadow: 0 18px 50px rgba(0, 88, 200, 0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1440px;
  --container-padding: clamp(32px, 4vw, 48px);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --primary-blue: #073C8B;
  --secondary-blue: #0056C7;
  --green: #21AC43;
  --footer-bg: #0A3D8F;
  --section-pad-v: 52px;
  --page-pad: clamp(36px, 4vw, 58px);
  --page-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark-text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.topbar {
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  background: #043B8A;
  font-size: 11.5px;
  padding-block: 7px;
}

.topbar .container,
.nav .container {
  padding-inline: clamp(36px, 4vw, 58px);
}

.topbar__inner,
.topbar__group,
.social-links,
.nav__inner,
.nav__links,
.hero__actions,
.trust-list,
.section-heading,
.contact-card,
.footer__bottom {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
}

.topbar__group,
.social-links {
  gap: 24px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar iconify-icon {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.social-links {
  flex-shrink: 0;
  gap: 14px;
}

.social-links a {
  justify-content: center;
  gap: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  width: 22px;
  height: 22px;
}

.social-links a iconify-icon {
  color: currentColor;
  font-size: 12px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(227, 234, 244, 0.86);
  box-shadow: 0 6px 16px rgba(16, 68, 126, 0.04);
  transition: all 0.3s ease;
}
.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff; /* Change as needed */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
}

body.header-fixed {
    padding-top: 90px; /* Set equal to your header height */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav__inner {
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 184px;
  width: 184px;
}

.brand__logo {
  object-fit: contain;
  width: 160px;
  height: 48px;
}

.nav__links {
  justify-content: center;
  color: #111A30;
  font-weight: 600;
  line-height: 1;
  font-size: 12px;
  gap: clamp(18px, 2vw, 34px);
}

.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding-block: 28px;
}

.nav__links iconify-icon {
  font-size: 10px;
  transform: translateY(1px);
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--primary-blue);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav__actions .btn--primary {
  border-color: rgba(18, 142, 53, 0.16);
  color: var(--white);
  white-space: nowrap;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #23A944;
  box-shadow: 0 8px 20px rgba(35, 169, 68, 0.28);
  gap: 7px;
}

.nav__actions .btn--primary iconify-icon {
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--primary-blue);
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  place-items: center;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(95, 203, 72, 0.35);
  outline-offset: 2px;
}

.btn--primary {
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: 0 14px 26px rgba(0, 88, 200, 0.18);
}

.btn--primary:hover {
  background: var(--secondary-blue);
}

.nav__actions .btn--primary:hover {
  background: #1a9038;
  transform: translateY(-1px);
}

.btn--green {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 26px rgba(95, 203, 72, 0.20);
}

.btn--light {
  color: var(--primary-blue);
  background: var(--white);
  border-color: var(--border);
}

.hero {
  overflow: hidden;
  min-height: auto;
  background-size: auto, auto;
  padding: 56px 0 48px;
  background-color: #edf5fd;
   background: url("../images/hero_bg.jpg") right top / cover no-repeat;
}

.hero__grid {
  display: grid;
  align-items: start;
  gap: 0;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  padding-inline: 0;
}

.hero__copy {
  /* width: 610px; */
  padding: 0px 20px 30px;
  margin-top: -30px;
}

.hero__eyebrow {
  margin: 0 0 24px;
  color: #4BA33D;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 {
  /* max-width: 500px; */
  color: #0B3477;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 66px;
  line-height: 1.0;
}

/* .hero h1::first-line {
  font-size: 40px;
  line-height: 1.1;
} */

.text-green {
  color: var(--green);
}

.lead,
.hero__lead {
  max-width: 475px;
  margin: 17px 0 0;
  color: #163A73;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
}

.hero__lead strong {
  font-weight: 700;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__btn {
  gap: 9px;
  font-weight: 700;
  box-shadow: none;
  white-space: nowrap;
  min-height: 46px;
  padding: 0 30px;
  font-size: 13.5px;
  border-radius: 10px;
}

.hero__btn iconify-icon {
  font-size: 18px;
}

.hero__btn--primary {
  color: var(--white);
  background: #23A944;
  box-shadow: 0 10px 22px rgba(35, 169, 68, 0.22);
}

.hero__btn--call {
  box-shadow: 0 10px 18px rgba(28, 77, 125, 0.06);
  color: #173C66;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(23, 60, 102, 0.55);
}

.trust-list {
  flex-wrap: nowrap;
  padding: 24px 0 0;
  border-top: 1px solid rgba(19, 65, 115, 0.14);
  list-style: none;
  gap: 20px;
  margin: 26px 0 0;
  padding-top: 20px;
}

.trust-list li {
  display: grid;
  justify-items: center;
  padding: 0;
  color: #c2185b;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
  width: 80px;
  font-size: 11px;
  gap: 6px;
}

.trust-list iconify-icon {
  display: inline-grid;
  place-items: center;
  color: #c2185b;
  width: 34px;
  height: 34px;
  font-size: 32px;
}

.hero__visual {
  position: relative;
  /* width: 830px; */
  margin-top: -52px;
  min-height: 491px;
  background: url("../assets/images/hero-reference-doctors.png") center top / contain no-repeat;
  isolation: isolate;
}

.hero__visual2 {
  position: relative;
  /* width: 830px; */
  margin-top: -57px;
  min-height: 491px;
 
  isolation: isolate;
  display: flex;
  justify-content: center;
}

.hero__visual::before,
.hero__visual::after {
  display: none;
}

.hero__visual > * {
  display: none !important;
}

.hero__visual::before {
  position: absolute;
  right: 7%;
  bottom: 9px;
  width: 68%;
  height: 75%;
  background: rgba(218, 244, 255, 0.58);
  border-radius: 50% 46% 42% 54%;
  content: "";
  z-index: -2;
}

.hero__visual::after {
  position: absolute;
  right: -6%;
  bottom: -21%;
  width: 72%;
  height: 82%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 86, 199, 0.18) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(217, 246, 255, 0.42));
  background-size: 100% 100%;
  border: 2px dashed rgba(0, 86, 199, 0.18);
  border-left: 0;
  border-radius: 999px 0 0 999px;
  content: "";
  opacity: 0.9;
  z-index: -3;
}

.hero__pattern {
  position: absolute;
  pointer-events: none;
}

.hero__pattern--dots {
  top: 91px;
  left: 42%;
  width: 130px;
  height: 100px;
  background-image: radial-gradient(rgba(0, 86, 199, 0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.68;
}

.hero__pattern--cross {
  width: 108px;
  height: 108px;
  opacity: 0.25;
}

.hero__pattern--cross::before,
.hero__pattern--cross::after {
  position: absolute;
  background: #B8DDF7;
  border-radius: 5px;
  content: "";
}

.hero__pattern--cross::before {
  inset: 38px 0;
}

.hero__pattern--cross::after {
  inset: 0 38px;
}

.hero__pattern--cross-left {
  top: 145px;
  left: 3%;
}

.hero__pattern--cross-right {
  top: 122px;
  right: 1%;
}

.hero__logo-orb {
  position: absolute;
  top: 72px;
  left: 51%;
  display: grid;
  width: 151px;
  height: 151px;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 18px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 17px 35px rgba(0, 86, 199, 0.12);
  transform: translateX(-50%);
  z-index: 4;
}

.hero__logo-orb img {
  width: 96px;
  height: 96px;
  border-radius: 25px;
}

.doctor-figure {
  --skin: #EBC7A9;
  --skin-dark: #D8A986;
  --hair: #101321;
  --coat: #F9FCFF;
  --scrub: #C9DDF4;
  position: absolute;
  bottom: 0px;
     width: 271px;
    height: 455px;
    margin: 0;
    z-index: 3;
}

.doctor-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.doctor-figure--female {
  left: 50px;
}

.doctor-figure--male {
  right: 50px;
  --scrub: #DCE7F5;
}

.doctor-figure__halo {
  position: absolute;
  inset: 30px 7px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(232, 246, 255, 0.34));
  border-radius: 999px 999px 26px 26px;
  z-index: -1;
}

.doctor-figure__hair {
  position: absolute;
  top: 2px;
  left: 45px;
  width: 70px;
  height: 78px;
  background: var(--hair);
  border-radius: 35px 35px 28px 28px;
  box-shadow: inset -10px -2px 0 rgba(255, 255, 255, 0.05);
}

.doctor-figure--male .doctor-figure__hair {
  top: 0;
  left: 42px;
  width: 72px;
  height: 42px;
  border-radius: 26px 32px 10px 10px;
  transform: rotate(-2deg);
}

.doctor-figure__head {
  position: absolute;
  top: 25px;
  left: 47px;
  width: 66px;
  height: 78px;
  background: var(--skin);
  border-radius: 45% 45% 48% 48%;
  box-shadow: inset -8px -4px 0 rgba(136, 72, 38, 0.08);
  z-index: 2;
}

.doctor-figure--male .doctor-figure__head {
  top: 26px;
  left: 45px;
  width: 68px;
  height: 76px;
}

.doctor-figure__eye {
  position: absolute;
  top: 33px;
  width: 5px;
  height: 5px;
  background: #141A24;
  border-radius: 50%;
}

.doctor-figure__eye--left {
  left: 20px;
}

.doctor-figure__eye--right {
  right: 20px;
}

.doctor-figure__glasses {
  position: absolute;
  top: 27px;
  left: 12px;
  width: 44px;
  height: 16px;
  border-top: 3px solid #111827;
  border-radius: 8px;
}

.doctor-figure__glasses::before,
.doctor-figure__glasses::after {
  position: absolute;
  top: 0;
  width: 17px;
  height: 12px;
  border: 2px solid #111827;
  border-radius: 5px;
  content: "";
}

.doctor-figure__glasses::before {
  left: 0;
}

.doctor-figure__glasses::after {
  right: 0;
}

.doctor-figure__beard {
  position: absolute;
  right: 13px;
  bottom: 11px;
  left: 13px;
  height: 25px;
  background: #212936;
  border-radius: 0 0 22px 22px;
  opacity: 0.92;
}

.doctor-figure__smile {
  position: absolute;
  left: 27px;
  bottom: 21px;
  width: 14px;
  height: 7px;
  border-bottom: 2px solid #A35E4B;
  border-radius: 0 0 16px 16px;
  z-index: 1;
}

.doctor-figure--male .doctor-figure__smile {
  border-color: #F3C4B1;
  bottom: 18px;
}

.doctor-figure__neck {
  position: absolute;
  top: 91px;
  left: 67px;
  width: 28px;
  height: 28px;
  background: var(--skin-dark);
  border-radius: 0 0 10px 10px;
  z-index: 1;
}

.doctor-figure__torso {
  position: absolute;
  top: 112px;
  left: 26px;
  width: 108px;
  height: 130px;
  background: var(--coat);
  border-radius: 16px 16px 8px 8px;
  box-shadow: inset 0 -24px 0 rgba(210, 226, 241, 0.32), 0 18px 28px rgba(18, 66, 112, 0.08);
  overflow: hidden;
}

.doctor-figure__shirt {
  position: absolute;
  top: 0;
  left: 37px;
  width: 34px;
  height: 72px;
  background: var(--scrub);
  clip-path: polygon(10% 0, 90% 0, 74% 100%, 26% 100%);
}

.doctor-figure__tie {
  position: absolute;
  top: 8px;
  left: 49px;
  width: 12px;
  height: 58px;
  background: #142E55;
  clip-path: polygon(50% 0, 100% 16%, 75% 100%, 25% 100%, 0 16%);
}

.doctor-figure__lapel {
  position: absolute;
  top: 0;
  width: 42px;
  height: 86px;
  background: #FFFFFF;
}

.doctor-figure__lapel--left {
  left: 7px;
  clip-path: polygon(0 0, 100% 0, 48% 100%, 0 74%);
}

.doctor-figure__lapel--right {
  right: 7px;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 52% 100%);
}

.doctor-figure__stethoscope {
  position: absolute;
  top: 19px;
  left: 19px;
  width: 70px;
  height: 57px;
  border: 4px solid #182235;
  border-top: 0;
  border-radius: 0 0 38px 38px;
  opacity: 0.85;
}

.doctor-figure__stethoscope::after {
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #F5FAFF;
  border: 4px solid #182235;
  border-radius: 50%;
  content: "";
}

.doctor-figure__arm {
  position: absolute;
  bottom: 19px;
  width: 82px;
  height: 24px;
  background: var(--coat);
  border-radius: 999px;
  box-shadow: 0 8px 13px rgba(28, 73, 118, 0.08);
  z-index: 4;
}

.doctor-figure__arm--left {
  left: 12px;
  transform: rotate(15deg);
}

.doctor-figure__arm--right {
  right: 8px;
  transform: rotate(-15deg);
}

.hero-doctor-card {
  position: absolute;
  bottom: 20px;
  width: 270px;
  min-height: 118px;
  padding: 15px;
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 26px rgba(16, 72, 131, 0.16);
  z-index: 5;
}

.hero-doctor-card--blue {
  left: 0;
  background: linear-gradient(135deg, #0044B0, #0064D7);
  width: auto;
  height: auto;
  right: 0;
  margin: auto;
}

.hero-doctor-card--green {
  right: 0;
  background: linear-gradient(135deg, #2EA83B, #56C247);
}

.hero-doctor-card h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-doctor-card p,
.hero-doctor-card span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.hero__visual .doctor-figure {
  top: 0;
  bottom: auto;
  height: auto;
}

.hero__visual .doctor-figure--female {
  left: 0;
  width: 304px;
}

.hero__visual .doctor-figure--male {
  right: 0;
  width: 314px;
}

.hero__visual .hero__logo-orb {
  top: 88px;
  left: 52%;
}

.hero__visual .hero-doctor-card {
  bottom: -9px;
}

.hero__visual .hero-doctor-card--blue {
  left: 29px;
}

.hero__visual .hero-doctor-card--green {
  right: 0;
}

.metrics {
  position: relative;
  z-index: 8;
  margin-top: -56px;
  margin-bottom: 0;
}

.metrics__grid {
  display: grid;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(227, 234, 244, 0.86);
  grid-template-columns: repeat(4, 1fr);
  min-height: 116px;
  padding: 24px 40px;
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(27, 72, 118, 0.10);
}

.metric {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 24px);
  padding: 3px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(227, 234, 244, 0.76);
}

.metric:last-child {
  border-right: 0;
}

.metric__icon {
  flex: 0 0 auto;
  color: var(--primary-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
  width: 52px;
  height: 52px;
  font-size: 52px;
}

.metric__icon--green {
  color: var(--green);
}

.metric__icon--rose {
  color: #E25E73;
}

.metric strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  font-size: clamp(30px, 2.4vw, 38px);
  color: var(--primary-blue);
}

.metric span {
  display: block;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  font-size: clamp(12px, 1vw, 14px);
  margin-top: 6px;
  color: #101828;
}

.doctors-section {
  background: var(--white);
  padding: 60px 0 30px;
}

.doctors-shell {
  container-type: inline-size;
  margin-inline: auto;
  width: min(100%, var(--page-max));
  padding-inline: var(--page-pad);
}

.doctors-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.15cqw, 31px);
  margin: 0 auto -3px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.doctors-heading h2 {
  margin: 0;
  color: currentColor;
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(18px, 1.55cqw, 22px);
  letter-spacing: 0.5px;
}

.doctors-heading span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 60, 139, 0.30));
  width: clamp(100px, 10cqw, 155px);
}

.doctors-heading span:last-child {
  background: linear-gradient(90deg, rgba(7, 60, 139, 0.30), transparent);
}

.doctors-board {
  display: grid;
  min-height: clamp(210px, 16.6cqw, 240px);
  align-items: stretch;
  gap: clamp(16px, 1.72cqw, 25px);
  border: 1px solid rgba(7, 60, 139, 0.075);
  background: #FFFFFF;
  grid-template-columns: minmax(0, 1fr) clamp(198px, 18.5cqw, 267px) minmax(0, 1fr);
  padding: clamp(20px, 2cqw, 30px) clamp(26px, 2.5cqw, 38px);
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(16, 72, 137, 0.05);
}
.doctors-board2{
    display: grid;
    min-height: clamp(210px, 16.6cqw, 240px);
    align-items: stretch;
    gap: clamp(16px, 1.72cqw, 25px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    
}
.doctors-board2 article{
  padding: 30px;
  border: 1px solid rgba(7, 60, 139, 0.075);
  border-radius: 10px;
}

.doctor-spotlight {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: clamp(16px, 1.62cqw, 23px);
  grid-template-columns: clamp(178px, 14.25cqw, 206px) minmax(0, 1fr);
}

.doctor-spotlight__photo {
  width: clamp(176px, 14.05cqw, 203px);
  aspect-ratio: 1;
  align-self: center;
  overflow: hidden;
  background: linear-gradient(180deg, #EEF3F8 0%, #F7FAFC 100%);
  border-radius: 50%;
}
.doctors-board2 .doctor-spotlight__photo{
  border-radius: 10px;
  overflow: visible;
  align-self: normal;


}
.doctor-spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doctors-board2 .doctor-spotlight__photo img{
  min-height: 360px;
}

.doctor-spotlight__content {
  min-width: 0;
  padding-top: 2px;
}

.doctor-spotlight__content h3 {
  margin: 0 0 9px;
  color: var(--doctor-accent);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  font-size: clamp(20px, 1.7cqw, 24px);
  margin-bottom: 10px;
}

.doctor-spotlight__content ul{
  padding: 0;
  list-style-type: none;
}



.doctor-spotlight__meta,
.doctor-spotlight__experience,
.doctor-spotlight__copy{
  margin: 0;
  color: #111B2D;
  font-size: clamp(14px, 0.9cqw, 13px);
  line-height: 1.42;

}

.doctor-spotlight__meta,
.doctor-spotlight__experience {
  font-weight: 700;
}

.doctor-spotlight__experience {
  margin-top: 4px;
}

.doctor-spotlight__copy, .doctor-spotlight__content ul li  {
  max-width: 322px;
  margin-top: clamp(13px, 1.1cqw, 16px);
  color: #263244;
  font-weight: 600;
  font-size: clamp(13px, 0.95cqw, 13.5px);
  line-height: 1.5;
}

.doctor-spotlight__content ul li{
      background-image: url(../images/bullet_icon.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left center;
    padding-left: 25px;
}

.doctor-spotlight__button {
  display: inline-flex;
  min-width: 123px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: clamp(12px, 1.04cqw, 15px);
  color: var(--white);
  background: var(--doctor-accent);
  border-radius: 999px;
  box-shadow: 0 8px 14px color-mix(in srgb, var(--doctor-accent) 16%, transparent);
  font-weight: 800;
  line-height: 1;
  min-height: 36px;
  font-size: 12.5px;
  padding: 0 20px;
}

.doctor-spotlight__button iconify-icon {
  font-size: 14px;
}

.doctor-spotlight--blue {
  --doctor-accent: #075CC5;
}

.doctor-spotlight--green {
  --doctor-accent: #209D39;
}

.doctor-trust-stack {
  display: grid;
  align-content: center;
  gap: clamp(27px, 3.1cqw, 45px);
  padding-inline: clamp(22px, 3.05cqw, 44px);
  border-inline: 1px solid rgba(7, 60, 139, 0.10);
}

.doctor-trust-item {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.25cqw, 18px);
  color: #075CC5;
}

.doctor-trust-item iconify-icon {
  flex: 0 0 auto;
  color: #35A84D;
  font-size: clamp(38px, 3.2cqw, 46px);
}

.doctor-trust-item--shield iconify-icon {
  color: #075CC5;
}

.doctor-trust-item strong {
  color: #075CC5;
  font-weight: 800;
  line-height: 1.25;
  font-size: clamp(13px, 1.1cqw, 16px);
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--light-gray);
}

.section-heading {
  max-width: 680px;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  color: var(--dark-text);
  font-size: clamp(28px, 3vw, 36px);
}

.section-heading p {
  margin: 0;
  color: var(--muted-text);
}

.cards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(30, 70, 112, 0.06);
}

.doctor-card {
  overflow: hidden;
}

.doctor-card__image {
  aspect-ratio: 4 / 3;
  background: #EAF4FF;
}

.doctor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card__body,
.service-card,
.article-card__body,
.testimonial-card {
  padding: 24px;
}

.specialty {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.doctor-card h3,
.service-card h3,
.article-card h3 {
  margin-top: 8px;
  font-size: 20px;
}

.doctor-card p,
.service-card p,
.article-card p,
.testimonial-card p {
  color: var(--muted-text);
  font-size: 14px;
}

.service-card iconify-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--primary-blue);
}

.services-section {
  padding: 30px 0 30px;
  background: #fefefe;
}

.services-shell {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.services-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto 12px;
  text-align: center;
  width: min(560px, 100%);
  margin-bottom: 18px;
}

.services-heading::before,
.services-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e9ebf1;
}

.services-heading h2 {
     margin: 0;
    color: #073C8B;
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: clamp(18px, 1.55cqw, 22px);
    letter-spacing: 0.5px;
}
.services-heading span {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(7, 60, 139, 0.30));
    width: clamp(100px, 10cqw, 155px);
}
.services-heading span:last-child {
    background: linear-gradient(90deg, rgba(7, 60, 139, 0.30), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  min-height: 210px;
  padding: 28px 24px 22px;
  border-radius: 10px;
  border: 1px solid rgba(220, 230, 245, 0.9);
  box-shadow: 0 4px 18px rgba(34, 54, 86, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-tile--consultations {
  color: #2b5b9d;
  background: #f1f8ff;
}

.service-tile--diagnostics {
  color: #3fc165;
  background: #f5fdf8;
}

.service-tile--preventive {
  color: #efa02f;
  background: #fffaf2;
}

.service-tile--procedures {
  color: #8150b8;
  background: #fbf6ff;
}

.service-tile__header {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 46px;
  margin-bottom: 20px;
}

.service-tile__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: currentColor;
  font-size: 44px;
  stroke-width: 1.65;
}

.service-tile--procedures .service-tile__icon {
  width: 42px;
  height: 42px;
  font-size: 42px;
}

.service-tile h3 {
  margin: 0;
  color: currentColor;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  font-size: 16.5px;
}

.service-tile__list , .service-tile ul {
  display: grid;
  margin: 0;
  padding: 0;
  color: #333338;
  font-weight: 600;
  line-height: 1.42;
  list-style: none;
  font-size: 13px;
  gap: 10px;
}

.service-tile__list li, .service-tile ul li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
}
.wpcf7 form.sent .wpcf7-response-output{
  color:#46b450;
}
.service-tile__list li::before, .service-tile ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.75;
  width: 7px;
  height: 7px;
}

.service-tile a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: currentColor;
  font-weight: 700;
  line-height: 1;
  font-size: 13px;
  margin-top: 18px;
}

.service-tile a iconify-icon {
  width: 17px;
  height: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 800;
}

.appointment {
  display: grid;
  align-items: start;
  gap: 40px;
  grid-template-columns: 0.95fr 1.05fr;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #304156;
  font-weight: 700;
}

.check-list iconify-icon {
  flex: 0 0 auto;
  color: var(--green);
  transform: translateY(3px);
}

.appointment-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #304156;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--dark-text);
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.field textarea {
  min-height: 106px;
  resize: vertical;
}

.form-message {
  margin: 0;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 800;
}

.hospital-associations {
  --association-blue: #123f86;
  background: #FFFFFF;
  padding: 30px 0 30px;
}

.hospital-associations__inner {
  /* padding: 5px 40px 12px; */
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
  /* padding-block: 28px 18px; */
}

.hospital-associations h2 {
      margin: 0;
    color: #073C8B;
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: clamp(18px, 1.55cqw, 22px);
    letter-spacing: 0.5px;
}

.hospital-associations span {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(7, 60, 139, 0.30));
    width: clamp(100px, 10cqw, 155px);
}
.hospital-associations span:last-child {
    background: linear-gradient(90deg, rgba(7, 60, 139, 0.30), transparent);
}

.hospital-associations__carousel {
  position: relative;
  overflow: hidden;
  padding: 0 42px 20px;
}
/* 
.hospital-associations__carousel::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 18px;
  z-index: 1;
  width: 42px;
  background: #FFFFFF;
  content: "";
  pointer-events: none;
  display: none;
} */

.hospital-associations .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
}

.hospital-associations__carousel.is-fallback-carousel {
  overflow: hidden;
}

.hospital-associations__carousel.is-fallback-carousel .swiper-wrapper {
  display: flex;
  transition: transform 500ms ease;
  transform: translateX(calc(var(--association-page, 0) * -100%));
}

.hospital-associations__carousel.is-fallback-carousel .hospital-logo {
  flex: 0 0 calc(100% / var(--association-visible, 6));
}

.hospital-logo {
  display: grid;
  align-content: center;
  justify-content: center;
  grid-template-columns: auto auto;
  column-gap: 0px;
  row-gap: 0;
  background: #FFFFFF;
  border: 0px solid #EDF1F6;
  color: var(--association-blue);
  line-height: 1;
  text-align: left;
  min-height: 62px;
  padding: 0px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(19, 63, 134, 0.04);
}

.hospital-logo__mark {
  display: inline-grid;
  width: 29px;
  height: 29px;
  align-self: center;
  align-items: center;
  justify-items: center;
  grid-row: span 2;
  color: currentColor;
}

.hospital-logo__mark iconify-icon {
  font-size: 21px;
}

.hospital-logo__name {
  align-self: end;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  font-size: 20px;
}

.hospital-logo small {
  align-self: start;
  color: inherit;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.hospital-logo--motherland .hospital-logo__name {
  font-size: 9px;
}

.hospital-logo--numed .hospital-logo__name,
.hospital-logo--nexis .hospital-logo__name {
  font-size: 19px;
}

.hospital-logo--max .hospital-logo__name {
  font-size: 22px;
}

.hospital-logo--medanta {
  color: #707986;
}

.hospital-logo--medanta .hospital-logo__name {
  color: #7E858D;
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
}

.hospital-logo--medanta small {
  color: #8D949C;
}

.hospital-logo--yatharth .hospital-logo__mark {
  color: #087F8F;
}

.hospital-logo--motherland .hospital-logo__mark {
  color: #005AA7;
}

.hospital-logo--numed .hospital-logo__mark {
  color: #0D4D98;
}

.hospital-logo--nexis .hospital-logo__mark {
  color: #F16A2D;
}

.hospital-logo--max .hospital-logo__mark {
  color: #0C7A9E;
}

.hospital-logo__mark--circle {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hospital-logo__mark--plus {
  border: 2px solid currentColor;
  border-radius: 9px;
}

.hospital-logo__mark--shield {
  width: 30px;
  height: 32px;
  color: #FFFFFF;
  background: linear-gradient(145deg, #006DA5, #0B3E7E);
  border-radius: 4px 4px 12px 12px;
}

.hospital-logo__mark--blocks,
.hospital-logo__mark--cluster,
.hospital-logo__mark--steps {
  position: relative;
  display: block;
}

.hospital-logo__mark--blocks i,
.hospital-logo__mark--cluster i,
.hospital-logo__mark--steps i {
  position: absolute;
  display: block;
  border-radius: 2px;
  content: "";
}

.hospital-logo__mark--blocks i {
  width: 8px;
  height: 8px;
  background: #0C63B0;
}

.hospital-logo__mark--blocks i:nth-child(1) {
  top: 2px;
  left: 12px;
  background: #1CB3A8;
}

.hospital-logo__mark--blocks i:nth-child(2) {
  top: 11px;
  left: 3px;
}

.hospital-logo__mark--blocks i:nth-child(3) {
  top: 11px;
  left: 12px;
}

.hospital-logo__mark--blocks i:nth-child(4) {
  top: 20px;
  left: 12px;
  background: #264A91;
}

.hospital-logo__mark--cluster i {
  width: 7px;
  height: 7px;
  background: #F0602F;
  border-radius: 50%;
}

.hospital-logo__mark--cluster i:nth-child(1) {
  top: 4px;
  left: 11px;
}

.hospital-logo__mark--cluster i:nth-child(2) {
  top: 11px;
  left: 4px;
  background: #FFC23B;
}

.hospital-logo__mark--cluster i:nth-child(3) {
  top: 11px;
  left: 18px;
  background: #E9473D;
}

.hospital-logo__mark--cluster i:nth-child(4) {
  top: 18px;
  left: 11px;
  background: #26A65B;
}

.hospital-logo__mark--cluster i:nth-child(5) {
  top: 11px;
  left: 11px;
  background: #1F78C8;
}

.hospital-logo__mark--steps i {
  width: 8px;
  background: #D44A3D;
  border-radius: 1px;
}

.hospital-logo__mark--steps i:nth-child(1) {
  top: 3px;
  left: 4px;
  height: 24px;
}

.hospital-logo__mark--steps i:nth-child(2) {
  top: 9px;
  left: 12px;
  height: 18px;
  background: #B7BBC0;
}

.hospital-logo__mark--steps i:nth-child(3) {
  top: 15px;
  left: 20px;
  height: 12px;
  background: #8F969E;
}

.hospital-associations__arrow {
  display: none !important;
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  color: #8DA2C7;
  background: #FFFFFF;
  border: 2px solid #D9E3F3;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(20, 60, 120, 0.06);
  cursor: pointer;
  width: 34px;
  height: 34px;
  top: 34px;
}

.hospital-associations__arrow:disabled {
  opacity: 1;
  cursor: default;
}

.hospital-associations__arrow iconify-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.hospital-associations__arrow--prev {
  left: 0;
}

.hospital-associations__arrow--next {
  right: 0;
}

.hospital-associations__pagination.swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.hospital-associations__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  background: #D5DCE8;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

.hospital-associations__pagination .swiper-pagination-bullet-active {
  background: #0A5FC8;
}

.patient-testimonials {
  --testimonial-blue: #123f86;
  background: #FFFFFF;
}

.patient-testimonials__inner {
  padding: 4px 40px 9px;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
  padding-block: 28px 18px;
}

.patient-testimonials h2 {
        margin: 0;
    color: #073C8B;
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: clamp(18px, 1.55cqw, 22px);
    letter-spacing: 0.5px;
}

.patient-testimonials__carousel {
  position: relative;
  overflow: hidden;
  padding: 0 78px;
}

.patient-testimonials__carousel::before,
.patient-testimonials__carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 78px;
  background: #FFFFFF;
  content: "";
  pointer-events: none;
}

.patient-testimonials__carousel::before {
  left: 0;
}

.patient-testimonials__carousel::after {
  right: 0;
}

.patient-testimonials .swiper-wrapper {
  align-items: stretch;
}

.patient-testimonials__carousel.is-fallback-carousel .swiper-wrapper {
  display: flex;
  gap: 26px;
  transition: transform 500ms ease;
  transform: translateX(calc(var(--testimonial-page, 0) * -100%));
}

.patient-testimonials__carousel.is-fallback-carousel .patient-review {
  flex: 0 0 calc((100% - ((var(--testimonial-visible, 3) - 1) * 26px)) / var(--testimonial-visible, 3));
}

.patient-review {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E9EEF6;
  color: #162034;
  height: auto;
  min-height: 162px;
  padding: 20px 26px 18px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(19, 63, 134, 0.04);
}

.patient-review__stars {
  display: flex;
  gap: 2px;
  color: #FFB20E;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  font-size: 16px;
  margin-bottom: 12px;
}

.patient-review p {
  max-width: calc(100% - 88px);
  margin: 0 0 12px;
  color: #1C2433;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.patient-review strong {
  display: block;
  color: var(--testimonial-blue);
  font-weight: 800;
  line-height: 1.2;
  font-size: 11px;
}

.patient-review img {
  position: absolute;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: #F6F1D9;
  width: 52px;
  height: 52px;
  right: 20px;
  bottom: 24px;
}

.patient-testimonials__arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  color: #8DA2C7;
  background: #FFFFFF;
  border: 2px solid #D9E3F3;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(20, 60, 120, 0.06);
  cursor: pointer;
  top: 58px;
  width: 34px;
  height: 34px;
}

.patient-testimonials__arrow:disabled {
  opacity: 1;
  cursor: default;
}

.patient-testimonials__arrow iconify-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.patient-testimonials__arrow--prev {
  left: 38px;
}

.patient-testimonials__arrow--next {
  right: 38px;
}

.patient-testimonials__pagination.swiper-pagination {
  display: none;
  bottom: 0;
  justify-content: center;
  gap: 5px;
}

.patient-testimonials__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  background: #D5DCE8;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

.patient-testimonials__pagination .swiper-pagination-bullet-active {
  background: #0A5FC8;
}

.contact-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 9%, rgba(35, 169, 68, 0.12) 0 120px, transparent 121px),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 52%, #F4F9FF 100%);
}

.contact-page-heading {
  padding: 48px 0 22px;
  background: transparent;
}

.contact-page-heading .container {
  width: min(calc(100% - 128px), 1440px);
  padding-inline: 0;
}

.contact-page-heading .eyebrow {
  margin-bottom: 10px;
  color: #23A944;
}

.contact-page-heading h1 {
  max-width: 810px;
  color: #073C8B;
  font-family: var(--font-body);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1.02;
}

.contact-page-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 15px 0 0;
  color: #40516C;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-banner {
  padding: 0 0 34px;
}

.contact-banner__container {
  position: relative;
  display: grid;
  width: min(calc(100% - 128px), 1440px);
  min-height: 300px;
  align-items: stretch;
  gap: clamp(26px, 5vw, 76px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  padding: 0;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 75% 22%, rgba(92, 210, 113, 0.42) 0 120px, transparent 121px),
    linear-gradient(135deg, #073C8B 0%, #0056C7 58%, #128B39 100%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(7, 60, 139, 0.18);
  isolation: isolate;
}

.contact-banner__container::before {
  position: absolute;
  top: -34%;
  right: -9%;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.contact-banner__container::after {
  position: absolute;
  right: 33%;
  bottom: -48px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  content: "";
  opacity: 0.72;
  z-index: -1;
}

.contact-banner__content {
  display: grid;
  align-content: center;
  max-width: 680px;
  padding: 46px 0 46px 46px;
}

.contact-banner__label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-banner h2 {
  max-width: 620px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: clamp(25px, 2.8vw, 39px);
  font-weight: 800;
  line-height: 1.12;
}

.contact-banner p {
  max-width: 590px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-banner__actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #073C8B;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 9px;
  box-shadow: 0 12px 22px rgba(4, 39, 88, 0.14);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-banner__actions a:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

.contact-banner__actions iconify-icon {
  color: #23A944;
  font-size: 17px;
}

.contact-banner__visual {
  position: relative;
  min-height: 300px;
  align-self: stretch;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
}

.contact-banner__visual::before {
  position: absolute;
  right: -18%;
  bottom: -32%;
  width: 118%;
  height: 118%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50% 0 0 0;
  content: "";
}

.contact-banner__visual img {
  position: absolute;
  right: -4%;
  bottom: -18px;
  width: min(112%, 610px);
  max-width: none;
  filter: drop-shadow(0 24px 34px rgba(7, 28, 63, 0.22));
}

.contact-banner__note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  padding: 12px 14px;
  color: #102A4E;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 10px;
  box-shadow: 0 16px 28px rgba(8, 39, 86, 0.18);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-banner__note iconify-icon {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #FFFFFF;
  background: #23A944;
  border-radius: 50%;
  font-size: 15px;
}

.contact-banner__note--hours {
  top: 30px;
  left: 28px;
}

.contact-banner__note--care {
  right: 28px;
  bottom: 28px;
}

.contact-appointment {
  padding: 28px 0 52px;
}

.contact-appointment__container {
  min-height: 344px;
  padding: 30px;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding-block: 0;
}

.contact-care-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 0;
  padding: 36px 40px 36px 20px;
  background: #FFFFFF;
  border: none;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: unset;
  column-gap: unset;
}

.contact-care-card__copy {
  width: 100%;
  position: relative;
  z-index: 1;
}

.contact-care-card h1,
.contact-care-card h2,
.contact-booking-card h2 {
  margin: 0;
  color: #073C8B;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.contact-care-card h1,
.contact-care-card h2 {
  font-size: 24px;
  letter-spacing: 0.8px;
}

.contact-benefits {
  display: grid;
  /* margin: 24px 0 0; */
  padding: 0;
  color: #161B24;
  font-weight: 600;
  line-height: 1.1;
  list-style: none;
  font-size: 14px;
  gap: 10px;
  margin-top: 20px;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  min-height: auto;
  gap: 12px;
  padding: 2px 0;
}

.contact-benefits iconify-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  font-size: 22px;
  color: #39A844;
}

.contact-care-card__mark {
  align-self: center;
  justify-self: unset;
  margin: 0px auto 0;
  width: 260px;
  height: 260px;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-care-card__mark img {
  object-position: left center;
  width: 260px;
  /* height: 130px; */
  max-width: none;
  object-fit: contain;
  filter: none;
  transform: none;
}

.contact-booking-card {
  display: grid;
  align-content: start;
  min-height: 337px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 36px 28px;
  border-radius: 18px;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 38%),
    #004DB8;
  margin-right: 20px;
}

.contact-booking-card h2 {
  font-size: 24px;
  color: #F4F8FF;
}
.wpcf7-form{
  margin-top: 30px;
}
.contact-booking-form {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.contact-booking-form__row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-booking-form__row.cf7{
  display: block;
}
.contact-booking-form__row.cf7 p{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-booking-form__row.cf7 p .contact-field{
  margin-bottom: 10px;
}

.contact-field {
  position: relative;
  display: block;
}

.contact-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  color: #192135;
  background: #FFFFFF;
  border: 1px solid #BFD1ED;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(84, 185, 72, 0.9);
  box-shadow: 0 0 0 4px rgba(84, 185, 72, 0.14);
}

.contact-field input {
  padding: 0 17px;
  height: 48px;
  min-height: 48px;
  border-radius: 9px;
  font-size: 13.5px;
}

.contact-field textarea {
  padding: 14px 17px;
  resize: none;
  height: 76px;
  min-height: 76px;
  border-radius: 9px;
  margin-bottom: 5px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #6B7280;
  opacity: 1;
}

.contact-field--date input {
  padding-right: 46px;
}

.contact-field--date iconify-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #767C88;
  font-size: 18px;
  pointer-events: none;
  transform: translateY(-50%);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
      border-color: #ffb900;
      color: #ffb900;
}
.contact-field
.contact-booking-form__submit, input[type="submit"] {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #F4FFF0;
  border: 0;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
  height: 46px;
  min-height: 46px;
  font-size: 14.5px;
  border-radius: 9px;
  background: #54B948;
  box-shadow: 0 14px 28px rgba(24, 129, 51, 0.26);
}

.contact-booking-form__submit:hover {
  transform: translateY(-2px);
  background: #45A93C;
}

.contact-booking-form__submit iconify-icon {
  font-size: 18px;
}

.contact-booking-form__message {
  margin: 0;
  color: #F4FFF0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-booking-form__message:empty {
  display: none;
}

.testimonial-card {
  display: grid;
  gap: 16px;
}

.stars {
  color: #F6A609;
}

.patient {
  display: flex;
  align-items: center;
  gap: 12px;
}

.patient__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--primary-blue);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.patient strong,
.patient span {
  display: block;
}

.patient span {
  color: var(--muted-text);
  font-size: 13px;
}

.article-card {
  overflow: hidden;
}

.article-card__image {
  aspect-ratio: 16 / 10;
  background: #DCEEFF;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
}

.latest-articles {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding: 32px 0 44px;
}

.latest-articles::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #FFFFFF;
  content: "";
}

.latest-articles__container {
  text-align: center;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.latest-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.latest-article-card {
  overflow: hidden;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid #E1E8F1;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(24, 59, 97, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.latest-article-card__image {
  background: #E8EEF3;
  height: 160px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.latest-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-article-card__body {
  height: auto;
  min-height: 0;
  padding: 16px 20px 18px;
}

.latest-article-card h3 {
  margin: 0;
  color: #171C25;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.25;
}

.latest-article-card__meta {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #6F7681;
  font-weight: 600;
  line-height: 1;
  margin-top: 10px;
  font-size: 12px;
}

.latest-article-card__meta span + span {
  position: relative;
}

.latest-article-card__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 3px;
  height: 3px;
  background: #6F7681;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.latest-articles__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #073C8B;
  background: #FFFFFF;
  border: 2px solid #A9BFE2;
  font-weight: 800;
  line-height: 1;
  margin-top: 24px;
  min-width: 196px;
  height: 42px;
  border-radius: 999px;
  font-size: 13.5px;
  border-color: #A9BFE2;
  box-shadow: 0 4px 12px rgba(7, 60, 139, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.latest-articles__button iconify-icon {
  font-size: 16px;
}

.contact-strip {
  padding: 34px 0;
  background: var(--primary-blue);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.contact-card {
  align-items: flex-start;
  gap: 12px;
}

.contact-card iconify-icon {
  flex: 0 0 auto;
  color: var(--green);
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card span {
  opacity: 0.78;
  font-size: 13px;
}

.footer {
  position: relative;
  min-height: 264px;
  overflow: visible;
  color: rgba(255, 255, 255, 0.86);
  background: #0A3D8F;
  padding: 40px 0 28px;
}

.footer__container {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.footer__grid {
  display: grid;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  /* grid-template-columns: 210px 130px 230px 280px 230px; */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 28px;
}

.footer h4 {
  margin: 0 0 13px;
  letter-spacing: 0;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.footer p {
  margin: 0;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.footer li {
  font-size: 14px;
  line-height: 1.4;
}

.footer a {
  transition: color 160ms ease, background-color 160ms ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #0a3d88;
  background: #ffffff;
  border: 2px solid rgba(137, 220, 255, 0.9);
  border-radius: 50%;
}

.footer-logo__mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-logo__text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.footer-logo__text strong {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 19px;
}

.footer-logo__text small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer__brand p {
  max-width: 220px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.55);
  transition: background 160ms ease, border-color 160ms ease;
}

.footer__socials iconify-icon {
  font-size: 12px;
}

.footer__nav a,
.footer__contact a,
.footer__contact > span,
.footer__bottom {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid > .footer__nav:nth-of-type(1) {
  transform: translateX(8px);
}

.footer__grid > .footer__nav:nth-of-type(2) {
  transform: none;
}

.footer__contact {
  transform: none;
  display: grid;
  gap: 11px;
  margin: 0;
  font-style: normal;
}

.footer__newsletter {
  transform: none;
}

.footer__contact a,
.footer__contact > span {
  display: flex;
  align-items: flex-start;
  line-height: 1.35;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.80);
  gap: 10px;
}

.footer__icon {
  flex: 0 0 16px;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  transform: translateY(1px);
}

.footer__newsletter p {
  max-width: 225px;
  margin-bottom: 18px;
}

.newsletter {
  display: flex;
  overflow: hidden;
  background: var(--white);
  width: 240px;
  height: 40px;
  border-radius: 6px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 16px;
  color: #10345f;
  border: 0;
  outline: 0;
  font-weight: 600;
  line-height: 1;
  font-size: 13px;
}

.newsletter input::placeholder {
  color: #8b9bae;
}

.newsletter button {
  display: inline-grid;
  height: 100%;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 0;
  cursor: pointer;
  flex: 0 0 44px;
  background: #4db848;
}

.newsletter button iconify-icon {
  font-size: 18px;
}

.footer__bottom {
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom nav {
  display: flex;
  gap: 32px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.80);
}

.footer-float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  color: var(--white);
  border-radius: 50%;
}

.footer-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.footer-float--whatsapp {
  left: 17px;
  bottom: 21px;
  background: #25d366;
  border: 4px solid rgba(255, 255, 255, 0.7);
}

.footer-float--phone {
  right: 17px;
  bottom: 21px;
  background: #1688ff;
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(135deg, #EFF7FF, #FAFFFB);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
}

.page-hero p {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted-text);
}

.placeholder-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.topbar__group {
  gap: 20px;
}

.hero__lead {
  font-size: 22px;
  margin-top: 14px;
  line-height: 1.35;
}

.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(34, 54, 86, 0.10);
}

.contact-care-card h2 {
     margin: 0;
    color: #073C8B;
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: clamp(18px, 1.55cqw, 22px);
    letter-spacing: 0.5px;
}

.latest-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(24, 59, 97, 0.12);
}

.latest-articles__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(7, 60, 139, 0.14);
}

.footer li,
.footer__nav a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.80);
}

.footer__nav a:hover {
  color: #fff;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom a:hover {
  color: #fff;
}



.repocean-footer{
  display: none !important;
}
.repocean-slider-main .repocean-slider-box-parent .next-arrow{
  right: -40px !important;
}
.repocean-slider-main .repocean-slider-box-parent .prev-arrow{
  left:-40px !important;
}

/* blog css */
.breadcrumb-section{
  margin: 50px 0px 20px;
}
.breadcrumb-section a, .breadcrumb-section span{
  font-size: 12px;
}
.breadcrumb-section span svg{
width: 12px;
vertical-align: middle;
}

.lifestyle-banner {
    position: relative;
    width: 100%;
    max-width: 1560px;
    height: auto;
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    /* background: #f7fbff; */
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* =========================================
    RIGHT IMAGE
========================================= */

.image-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 53%;
    height: 100%;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================================
    LEFT CONTENT BACKGROUND
========================================= */

.content-section {
    position: relative;
    z-index: 5;
    width: 61%;
    height: 100%;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/*
  * Green curved border.
  * This sits behind the white content panel.
  */
.green-curve {
    position: absolute;
    z-index: 4;
    top: -9%;
    left: -4%;
    width: 66%;
    height: 118%;
    border-radius: 0 52% 52% 0;
    border-right: 8px solid #13ad4c;
    pointer-events: none;
}

/* =========================================
    DECORATIVE DOTS
========================================= */

.dots {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 7;
    width: 140px;
    height: 100px;
    opacity: 0.55;

    background-image:
        radial-gradient(circle, #b4ddfa 2px, transparent 2.5px);

    background-size: 22px 22px;
}

/* =========================================
    DECORATIVE PLUS SIGNS
========================================= */

.plus {
    position: absolute;
    z-index: 7;
    color: #d9edfc;
    font-size: 76px;
    font-weight: 600;
    line-height: 1;
    user-select: none;
}

.plus-top {
    top: 42px;
    left: 42%;
}

.plus-bottom {
    bottom: 30px;
    left: 22%;
    font-size: 60px;
}

/* =========================================
    CATEGORY LABEL
========================================= */

.category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 24px;
    margin-bottom: 25px;

    border-radius: 30px;

    background: linear-gradient(
        180deg,
        #16b742 0%,
        #079d35 100%
    );

    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================
    HEADING
========================================= */

.title {
    max-width: 700px;
    margin-bottom: 35px;
    color: #07377e;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -1.8px;
}

.title .green {
    color: #0ca63c;
}

/* =========================================
    DESCRIPTION
========================================= */

.description {
    max-width: 700px;
    margin-bottom: 30px;

    color: #252b35;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.75;
}

/* =========================================
    SEPARATOR
========================================= */

.separator {
    width: 620px;
    max-width: 100%;
    height: 1px;
    margin: 0 0 25px;

    border: none;
    background: #d7dde5;
}

/* =========================================
    META INFORMATION
========================================= */

.meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;

    color: #20232a;
    font-size: 18px;
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.meta-item i {
    color: #07377e;
    font-size: 25px;
}

.dot-separator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b9c5d6;
}

.blog-content{
    margin-top:45px;
}

.blog-content p{
    /* font-size:19px; */
    /* line-height:1.9; */
    /* color:#555; */
    /* margin-bottom:28px; */
    margin: 20px 0px;
}

.blog-content h2{
    color:#0D2F7B;
    margin:45px 0 18px;
    font-size:34px;
}

.blog-content img{
    width:100%;
    border-radius:15px;
    margin:30px 0;
}

blockquote{
    margin:60px 0;
    padding:45px;
    background:#F3F8FF;
    border-left:6px solid #0D57D8;
    border-radius:16px;
    text-align:center;
    font-size:32px;
    color:#0D2F7B;
    font-weight:700;
}

blockquote span{
    display:block;
    /* margin-top:20px; */
    /* color:#666; */
    font-size:18px;
    font-weight:500;
}

.page_header {
    background-color: #ebf5fe;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;

}
.about_dr_manisha_singh .page_header, .about_dr_abhishek_narayan .page_header {
  background-size: contain;
}

.blog .page_header{
      background-color: #f2f5fd;
}
.page_header__content{
  min-height: 500px;
  background-repeat: no-repeat;
  background-position: right;
  flex-direction: column;
  justify-content: center; /* Vertical Center */
  align-items: flex-start; /* Keep text left aligned */
  display: flex;
  padding: 0px 20px;
}
.page_header__title{
    /* max-width: 500px; */
    color: #0B3477;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 50px;
    line-height: 1.0;
        margin-bottom: 30px;
}
.page_header__title span{
  color: var(--green);
  display: block;
}
.page_header__description{
    max-width: 75%;
    margin-bottom: 30px;
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

/* ===========================
   VARIABLES
=========================== */

:root {

    --primary:#0E4AA8;
    --secondary:#27B54A;

    --text:#202124;
    --muted:#6d7786;

    --border:#E7EBF2;

    --bg:#ffffff;

    --radius:18px;

    --shadow:0 10px 30px rgba(0,0,0,.06);

    --container:1440px;

    --transition:.3s ease;

}

/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:system-ui,-apple-system,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;

}

img{
    width:100%;
    display:block;
}

.container{

    width:100%;
    max-width:var(--container);
    margin:auto;
    padding-inline:40px;

}

/* ===========================
 HERO
=========================== */

.hero__container{

    display:grid;
    grid-template-columns:1fr 520px;
    align-items:center;
    gap:60px;
        background-position: right;
    background-repeat: no-repeat;
    background-size: contain;

}

.hero__content{

    padding:80px 0;

}

.breadcrumb{

    display:flex;
    gap:12px;
    margin-bottom:30px;
    font-size:14px;

}

.breadcrumb a{

    color:var(--primary);
    text-decoration:none;

}

.hero__title{

    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;

}

.hero__title span{

    display:block;
    color:var(--secondary);

}

.hero__description{

    max-width:470px;
    color:var(--muted);
    font-size:19px;

}

.hero__image{

    align-self:end;

}

/* ===========================
 HEADING
=========================== */

.packages{

    padding:70px 0;

}

.section-heading{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;

}

.section-heading h2{

    font-size:40px;
    color:var(--primary);

}

.section-heading span{

    color:var(--secondary);

}

.section-heading__line{

    width:140px;
    height:2px;
    background:#d9e2f2;

}

.section-heading__text{

    max-width:760px;
    margin:20px auto 50px;
    text-align:center;
    color:var(--muted);

}

/* ===========================
 CARD
=========================== */

.packages__grid{

      display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    gap: 30px;

}

.package-card{

border:1px solid var(--border);

border-radius:20px;

overflow:hidden;

background:#fff;

box-shadow:var(--shadow);

transition:var(--transition);

position: relative;

padding-bottom: 100px;
}

.package-card:hover{

    transform:translateY(-6px);

}

.package-card__body{

    padding:30px;

}

.package-card__header{

    display:flex;
    gap:18px;
    align-items:center;
    margin-bottom:30px;

}

.package-card__icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#edf5ff;
    display:grid;
    place-items:center;
    color:var(--primary);
    font-size:34px;

}

.package-card__title{

    color:var(--primary);
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    font-size: 16.5px;
    text-transform: capitalize;

}

.package-card__content h4{

    color:var(--secondary);
    margin-bottom:10px;
    margin-top:25px;

}

.package-card__content ul{

    padding-left:20px;

}

.package-card__content li{

    margin-bottom:0px;
    color:#555;
    font-size:14px;

}

.vials{

    list-style:none;
    padding:0;

}

.vials li{

    display:flex;
    align-items:center;
    gap:10px;
    background: none;
      font-weight: 600;

}

.vials span{

    width:10px;
    height:10px;
    border-radius:50%;

}

.gel{
    background:#ffd400;
}
.vials li.gel{
  color:#ffd400;

}

.edta{
    background:#7f37ff;
}
.vials li.edta{
  color:#7f37ff;

}

.fluoride{
    background:#333;
}
.vials li.fluoride{
  color:#333;

}

.urine{
    background:#999;
}
.vials li.urine{
  color:#999;

}

.package-card__footer{

display:flex;

justify-content:space-between;

align-items:center;

border-top:1px solid var(--border);

padding:20px 30px;

position: absolute;

bottom: 0;

width: 100%;
}

.package-card__report{

    display:flex;
    gap:10px;
    align-items:center;
    color:var(--muted);
    font-size:14px;

}

.package-card__report iconify-icon{

    color:var(--primary);
    font-size:24px;

}

.package-card__report strong{
  display: block;
}

.package-card__price{

    font-size:34px;
    color:var(--primary);
    font-weight:700;

}
ul.vials{
  padding-left: 0px;
}


/* ===========================
 RESPONSIVE
=========================== */


.award-card .service-tile__header{
      margin-bottom: 0;
    min-height: auto;
    display: block;
    text-align: center;
}
.award-card .service-tile{
  min-height: 220px;
    padding: 20px;
    background-color: #ffffff;
}
.award-card .service-tile img{
  width: 80px;
  margin: 0px auto 20px;
}
.award-card .service-tile h3{
  font-size: 16px;
  font-weight: 600;
}
.award-card .service-tile span{
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

/*Doctor profile*/
/* Image */
.doctor-section{
  margin: 50px;
}
.doctor-image{
    position:relative;
}

.doctor-image img{
    width:420px;
    display:block;
    border-radius:18px;
        float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.experience-badge{
    position:absolute;
    right:-20px;
    bottom:25px;
    width:110px;
    background:#fff;
    border-radius:16px;
    padding:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.experience-badge h2{
    color:#1f57d6;
    font-size:40px;
    font-weight:700;
    line-height:1;
    margin-bottom:8px;
}

.experience-badge p{
    font-size:14px;
    color:#666;
    line-height:1.5;
}

/* Content */

.sub-title{
    color:#4CAF50;
    font-size:15px;
    font-weight:600;
}

.doctor-content h2{
    margin:10px 0 20px;
    font-size:42px;
    font-weight:700;
}

.doctor-content h2 span{
    color:#073c8b;
    display:block;
}
.about_dr_manisha_singh .doctor-content h2 span{
  color:#209d39;
}

.doctor_description{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.doctor-content p{
  color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.doctor-list{
    list-style:none;
    margin-bottom:35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.doctor-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    color:#444;
    border:1px solid #999999;
    border-radius: 10px;
    padding:10px;
}

.doctor-list iconify-icon{
    color:#073c8b;
    margin-top:4px;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:5px;
    background:#073c8b;
    color:#fff;
    padding:16px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#0d45c0;
}

/* Right Side */

.doctor-info{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.info-box{
    display:flex;
    gap:18px;
    align-items:center;
    padding:18px;
    border-radius:14px;
    background:#f9fbff;
}

.info-box:last-child{
    margin-bottom:0;
}

.icon{
    width:55px;
    height:55px;
    background:#eef4ff;
    color:#1557d5;
    border-radius:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.info-box span{
    color:#073c8b;
    font-size:14px;
    display:block;
    margin-bottom:5px;
}

.info-box h4{
    font-size:13px;
    font-weight:normal;
}



/*contact us info */

.contact_us .doctors-board2 article{
  display: block;
  border:0px;
}

.contact_us_page_wrapper .contact-booking-form__row.cf7 p{
  display: block;
}
.contact_us_page_wrapper .contact-field textarea{
  height: 150px;
}
.contact_us .contact-info-wrapper{
  margin-top: 0px;
}

.contact-info-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin:40px 0;
}

.contact-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 5px 18px rgba(0,0,0,.04);
    display: block;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-icon{
    width: 40px;
    height: 40px;
    border-radius:50%;
    margin: 0 auto 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 20px;
    color:#2E73FF;
    background:rgba(46,115,255,.08);
}

/* Different colors for each card */

.contact-card:nth-child(2) .contact-icon{
    color:#2FA84F;
    background:rgba(47,168,79,.10);
}

.contact-card:nth-child(3) .contact-icon{
    color:#7A3FE4;
    background:rgba(122,63,228,.10);
}

.contact-card:nth-child(4) .contact-icon{
    color:#F57C20;
    background:rgba(245,124,32,.10);
}

.contact-card h3{
    margin:0 0 15px;
    font-size: 18pxpx;
    font-weight:700;
    color:#1b3b7b;
}

.contact-details{
    color:#606c80;
    font-size: 13px;
    line-height: 1.5;
}

.contact-details p{
    margin:0;
}

.contact-details a{
    color:#606c80;
    text-decoration:none;
    transition:.3s;
}

.contact-details a:hover{
    color:#2E73FF;
}

.contact-details br{
    display:block;
    margin-bottom:8px;
    content:"";
}
.page_contact__title{
  color: #0B3477;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.0;
    margin-bottom: 10px;
}
.page_contact__title span{
  color: #21ac43;
}
.page_contact__content p{
  margin-bottom: 30px;
    color: #252b35;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

/*why Choose us */
.blog-content ul{
  margin-left: 20px
}