:root {
  --navy: #082c66;
  --navy-2: #0b4186;
  --blue: #0a73bd;
  --red: #ed1c2e;
  --green: #26863b;
  --ink: #11213d;
  --muted: #5f6f88;
  --line: #d9e4f2;
  --soft-blue: #edf7ff;
  --soft-green: #edf9f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 44, 102, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: 100%;
  padding: 10px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(237, 28, 46, 0.04), transparent 28%, rgba(38, 134, 59, 0.04)),
    rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 228, 242, 0.9);
  box-shadow: 0 16px 48px rgba(8, 44, 102, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(217, 228, 242, 1);
  box-shadow: 0 18px 56px rgba(8, 44, 102, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: clamp(230px, 22vw, 350px);
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: max-content;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(217, 228, 242, 0.96);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 14px 34px rgba(8, 44, 102, 0.06);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  overflow: hidden;
  border-radius: 999px;
  padding: 0 15px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 7px auto 7px 7px;
  width: 6px;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a span {
  position: relative;
  z-index: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: var(--soft-blue);
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.site-nav a[href="#contact"]::before {
  background: var(--green);
}

.site-nav .mobile-nav-cta {
  display: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 12px 18px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(237, 28, 46, 0.18);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(217, 228, 242, 0.96);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
  box-shadow: 0 12px 28px rgba(8, 44, 102, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(64px, 8vw, 124px);
  min-height: calc(100vh - 82px);
  padding: clamp(56px, 8vw, 92px) 0 44px;
}

.hero-copy {
  max-width: 580px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: "Poppins", "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(2.75rem, 4.35vw, 4.35rem);
  font-weight: 800;
}

.hero-line {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(1.28rem, 1.8vw, 1.82rem);
  font-weight: 800;
  line-height: 1.16;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-lifestyle {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 570px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid rgba(217, 228, 242, 0.96);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #eef9f0 100%);
  box-shadow: 0 18px 46px rgba(8, 44, 102, 0.1);
}

.pickleball-scene {
  position: relative;
  min-height: 86px;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 242, 0.88);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px) 0 0 / 50% 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px) 0 50% / 100% 50%,
    linear-gradient(135deg, #0a73bd 0%, #082c66 48%, #26863b 100%);
}

.pickleball-scene::before {
  content: "";
  position: absolute;
  inset: 9px auto 9px 50%;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9) 0 6px,
    rgba(255, 255, 255, 0.25) 6px 10px
  );
  transform: translateX(-50%);
}

.pickleball-scene::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
}

.pickle-paddle {
  position: absolute;
  bottom: 15px;
  width: 28px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px 18px 14px 14px;
  transform-origin: 50% 88%;
  box-shadow: 0 10px 18px rgba(6, 22, 51, 0.22);
}

.pickle-paddle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 8px;
  height: 20px;
  border-radius: 5px;
  background: #26374f;
  transform: translateX(-50%);
}

.paddle-heart {
  left: 17px;
  background: linear-gradient(160deg, #ed1c2e 0%, #082c66 100%);
  animation: paddle-left 2.4s ease-in-out infinite;
}

.paddle-smile {
  right: 17px;
  background: linear-gradient(160deg, #26863b 0%, #0a73bd 100%);
  animation: paddle-right 2.4s ease-in-out infinite;
}

.pickleball {
  position: absolute;
  top: 35px;
  left: 48px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(8, 44, 102, 0.42) 0 2px, transparent 2.6px),
    radial-gradient(circle at 62% 32%, rgba(8, 44, 102, 0.42) 0 2px, transparent 2.6px),
    radial-gradient(circle at 48% 63%, rgba(8, 44, 102, 0.42) 0 2px, transparent 2.6px),
    #f6d84d;
  box-shadow: 0 8px 16px rgba(8, 44, 102, 0.22);
  animation: pickleball-rally 2.4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.lifestyle-copy p {
  margin-bottom: 0;
}

.lifestyle-kicker {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lifestyle-title {
  margin-top: 5px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.24;
}

.lifestyle-text {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

@keyframes pickleball-rally {
  0% {
    transform: translate(0, 16px) scale(0.96);
  }

  24% {
    transform: translate(24px, -13px) scale(1);
  }

  50% {
    transform: translate(50px, 12px) scale(0.98);
  }

  74% {
    transform: translate(25px, -16px) scale(1);
  }

  100% {
    transform: translate(0, 16px) scale(0.96);
  }
}

@keyframes paddle-left {
  0%,
  100% {
    transform: rotate(-16deg);
  }

  12% {
    transform: rotate(8deg) translateY(-3px);
  }
}

@keyframes paddle-right {
  0%,
  100% {
    transform: rotate(16deg);
  }

  52% {
    transform: rotate(-8deg) translateY(-3px);
  }
}

.hero-media {
  position: relative;
  min-height: clamp(430px, 45vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(217, 228, 242, 0.94);
  border-radius: var(--radius);
  background: var(--soft-blue);
  box-shadow: var(--shadow);
}

.doctor-card img,
.gallery-item img {
  border-radius: var(--radius);
  border: 1px solid rgba(217, 228, 242, 0.94);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-doctors {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 50%;
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(8, 44, 102, 0.08);
}

.service-preview div {
  padding: 24px;
  background: var(--white);
}

.service-preview div:nth-child(2) {
  background: var(--soft-blue);
  border-inline: 1px solid var(--line);
}

.service-preview strong,
.service-preview span {
  display: block;
}

.service-preview strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.06rem;
}

.service-preview span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 720px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  font-weight: 800;
}

.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.services-section {
  padding: 84px 0;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.service-panel {
  display: grid;
  align-content: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.heart-panel {
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
}

.dental-panel {
  background: linear-gradient(180deg, #fff 0%, #f5fbff 100%);
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.heart-panel .panel-icon {
  background: var(--red);
}

.dental-panel .panel-icon {
  background: var(--blue);
}

.panel-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.service-panel h3,
.doctor-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.14;
}

.service-panel p,
.doctor-card p {
  color: var(--muted);
}

.service-list-title {
  margin: 20px 0 14px;
  color: var(--navy) !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-mini-card {
  display: grid;
  align-content: start;
  min-height: 142px;
  padding: 16px;
  border: 1px solid rgba(217, 228, 242, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(8, 44, 102, 0.06);
}

.service-mini-card span {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
}

.dental-panel .service-mini-card span {
  color: var(--blue);
}

.service-mini-card strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.service-mini-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.doctors-section {
  padding: 86px 0 70px;
}

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

.doctor-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 44, 102, 0.07);
}

.doctor-card img {
  width: 100%;
  height: clamp(360px, 34vw, 460px);
  object-position: 50% 42%;
}

.sumit-photo {
  object-position: 50% 43%;
}

.ruchita-photo {
  object-position: 50% 40%;
}

.doctor-role {
  margin-bottom: 4px;
  color: var(--red);
  font-weight: 800;
}

.doctor-qual {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
}

.why-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.why-strip div {
  display: grid;
  place-items: center;
  min-height: 98px;
  padding: 18px;
  color: var(--navy);
  background: var(--soft-green);
  text-align: center;
  font-weight: 800;
  line-height: 1.3;
}

.gallery-section {
  padding: 96px 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 30px;
}

.tab {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 270px;
}

.gallery-item.results img {
  object-position: center;
}

.gallery-item.clinic img {
  object-position: 50% 18%;
}

.gallery-item.smile-portrait img {
  object-position: 50% 54%;
}

.gallery-item.smile-detail img {
  object-position: 50% 44%;
}

.gallery-item figcaption {
  margin-top: 11px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 800;
}

.gallery-item.is-hidden {
  display: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--navy);
  font-weight: 800;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 115, 189, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--navy);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.site-footer img {
  width: 260px;
  height: 82px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    overflow: hidden;
    width: auto;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(217, 228, 242, 0.96);
    border-radius: var(--radius);
    background:
      radial-gradient(circle at 12% 0%, rgba(237, 28, 46, 0.08), transparent 30%),
      radial-gradient(circle at 88% 100%, rgba(38, 134, 59, 0.08), transparent 30%),
      rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 70px rgba(8, 44, 102, 0.16);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open a {
    justify-content: flex-start;
    min-height: 48px;
    border: 1px solid rgba(217, 228, 242, 0.86);
    border-radius: var(--radius);
    padding: 0 16px 0 26px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.78);
  }

  .site-nav.is-open a::before {
    inset: 13px auto 13px 12px;
    opacity: 1;
    transform: scaleY(1);
  }

  .site-nav.is-open .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    padding-left: 16px;
    color: var(--white);
    background: var(--red);
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(237, 28, 46, 0.18);
  }

  .site-nav.is-open .mobile-nav-cta::before {
    display: none;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    gap: 36px;
  }

  .service-preview,
  .service-columns,
  .doctor-grid,
  .why-strip,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-preview div:nth-child(2) {
    border-inline: 0;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 185px;
    height: 58px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .hero-line {
    margin-bottom: 14px;
    font-size: 1.12rem;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-actions,
  .gallery-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-height: 34px;
    padding: 7px 10px;
  }

  .hero-lifestyle {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .pickleball-scene {
    min-height: 74px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-doctors {
    object-position: 48% 50%;
  }

  .service-preview,
  .service-columns,
  .doctor-grid,
  .why-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .service-preview {
    margin-bottom: 56px;
  }

  .services-section,
  .doctors-section,
  .gallery-section,
  .contact-section {
    padding-block: 56px;
  }

  .doctor-card img {
    height: 310px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
