/* ==========================================================================
   Hope Ortho Clinic — Stylesheet
   Design tokens
   -------------------------------------------------------------------------
   Palette:
     --bg          #F5F2EC  warm clinical paper (not pure white — easier on the eye
                             for long medical reads)
     --surface     #FFFFFF  card / panel surface
     --ink         #16302B  deep teal-charcoal, primary text
     --ink-soft    #4B5F5A  secondary text
     --primary     #0E4B46  clinical teal (trust, scrubs)
     --primary-dk  #082E2B  pressed / hover state of primary
     --accent      #B8823C  brass — the colour of an orthopaedic implant plate,
                             used sparingly for the one warm signal on the page
     --accent-soft #E8D9BC  tint of accent for backgrounds
     --line        #DCD5C4  hairline rule colour

   Type:
     Display — Fraunces (soft optical size): headlines, carries the warmth/
       authority of the brand
     Body    — Public Sans: long-form clinical copy, UI text
     Data    — IBM Plex Mono: stats, figures, the "readout" signature strip
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Public+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --bg: #F5F2EC;
  --surface: #FFFFFF;
  --ink: #16302B;
  --ink-soft: #000000;
  --primary: #0E4B46;
  --primary-dk: #082E2B;
  --accent: #B8823C;
  --accent-soft: #E8D9BC;
  --line: #DCD5C4;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, Segoe UI, sans-serif;
  --font-mono: 'IBM Plex Mono', Menlo, monospace;

  --radius: 10px;
  --shadow: 0 12px 32px -18px rgba(8, 46, 43, 0.35);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--primary-dk);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--alt {
  background: var(--surface);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-bottom: .75em;
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head p {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   Signature element: the "goniometer rule" — orthopaedics measures recovery
   in degrees of motion, so every major section break borrows that idea: a
   thin rule with tick marks like a measuring scale, rather than a plain hr.
   ------------------------------------------------------------------------- */
.rule-scale {
  height: 14px;
  width: 100%;
  background-image: repeating-linear-gradient(to right, var(--line) 0, var(--line) 1px, transparent 1px, transparent 24px);
  background-position: bottom;
  background-size: 100% 1px;
  position: relative;
  margin: 0;
}

.rule-scale::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.rule-scale::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #a2712f;
}

.btn-ghost {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, .5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}


/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: #fff;
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: #fff;
}

.hero p.lede {
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-figure {
  position: relative;
}

.hero-figure img,
.hero-figure .img-placeholder {
  border-radius: 14px 14px 0 0;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  width: 100%;
  height:100%
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    order: -1;
  }
}

/* Vitals readout strip — signature element reused as the hero's closing note */
.vitals-strip {
  background: var(--primary-dk);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.vitals-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.vital {
  flex: 1 1 160px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.vital:last-child {
  border-right: none;
}

.vital .value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--accent-soft);
  font-weight: 600;
}

.vital .label {
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 22px;
}

.card .figure {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card .figure img,
.card .figure .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pillar .num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
}

.condition-card .figure {
  aspect-ratio: 4/3;
}

.condition-card h3 {
  font-size: 1.05rem;
}

/* Doctor profile block */
.profile {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.profile .figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/3.6;
}

.profile .figure img,
.profile .figure .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credential-line {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--primary);
  letter-spacing: .02em;
  margin-bottom: 1em;
}

@media (max-width: 900px) {
  .profile {
    grid-template-columns: 1fr;
  }
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-item {
  padding: 4px 0;
}

.why-item .num {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--accent);
  display: block;
  margin-bottom: .5em;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}

.quote-card svg.mark {
  width: 26px;
  height: 20px;
  fill: var(--accent-soft);
  margin-bottom: 12px;
}

.quote-card .who {
  font-weight: 700;
  margin-top: 14px;
  color: var(--primary-dk);
  font-size: .92rem;
}

.quote-card .stars {
  color: var(--accent);
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: 8px;
}

/* Video grid */
.video-card {
  position: relative;
}

.video-card .figure {
  aspect-ratio: 16/10;
  position: relative;
}

.video-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 46, 43, .28);
}

.video-card .play svg {
  width: 52px;
  height: 52px;
}

.video-card figcaption {
  padding: 12px 4px 0;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* Blog cards */
.blog-card .card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .4em;
}

.blog-card .excerpt {
  font-size: .92rem;
}

.blog-card .read-more {
  font-weight: 700;
  color: var(--primary);
  font-size: .88rem;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dk);
}

.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.faq-item.is-open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-a p {
  padding-bottom: 20px;
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid .figure {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gallery-filters button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.gallery-filters button.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--primary-dk);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #B4432F;
}

.field-error {
  color: #B4432F;
  font-size: .8rem;
  margin-top: 4px;
  display: none;
}

.form-field.has-error .field-error {
  display: block;
}

.form-note {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/11;
}

#formStatus {
  margin-top: 14px;
  font-weight: 700;
}

#formStatus.success {
  color: var(--primary);
}

#formStatus.error {
  color: #B4432F;
}

/* CTA band
.cta-band {
  background: var(--primary-dk);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, .78);
  max-width: 560px;
  margin: 0 auto 1.2em;
} */

/* Breadcrumb / page intro (inner pages) */
.page-intro {
  background: var(--primary);
  color: #fff;
  padding: 46px 0;
}

.page-intro .eyebrow {
  color: var(--accent-soft);
}

.page-intro h1 {
  color: #fff;
  margin-bottom: .3em;
}

.breadcrumb {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-mono);
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb span {
  opacity: .6;
  margin: 0 6px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--primary-dk);
  color: rgba(255, 255, 255, .82);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  padding: 6px 0;
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
}

.footer-grid a:hover {
  color: var(--accent-soft);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 14px;
}

.footer-brand .img-placeholder {
  height: 40px;
  width: 150px;
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.social-row svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 400;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ==========================================================================
   Image placeholder handling (real photos not yet added — see /images/README.md)
   ========================================================================== */
.img-placeholder {
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: .74rem;
  font-family: var(--font-mono);
  padding: 10px;
  min-height: 80px;
}

.img-placeholder::after {
  content: attr(data-label);
}

/* Utility */
.center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mt-lg {
  margin-top: 40px;
}

.text-accent {
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/*==================================================
                HEADER
==================================================*/

.top-header {
  position: relative;
  z-index: 999;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

/*================ TOP BAR ================*/

.top-bar {
  background: #0b4c92;
  color: #fff;
  /* padding: 5px 0; */
  font-size: 14px;
}

.top-bar .container {
  max-width: 1200px;
  margin: auto;
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-left a,
.top-right a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.top-left a:hover,
.top-right a:hover {
  color: #ffd54f;
}

.top-right a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  justify-content: center;
}

.top-right a:hover {
  background: #fff;
  color: #0b4c92;
}

/*================ NAVBAR ================*/

.navbar-section {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.navbar-section .container {
  max-width: 1500px;
  /* margin: auto; */
  /* padding: 15px 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*================ LOGO ================*/
@media (max-width: 991px) {
    .logo img {
      width: 165px;
    }}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo img {
  width: 70%;
  height: auto;
}

.logo-content h2 {
  margin: 0;
  color: #0b4c92;
  font-size: 28px;
  font-weight: 700;
}

.logo-content p {
  margin-top: 4px;
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

/*================ NAVIGATION ================*/

.navbar {
  margin-left: auto;
  margin-right: 180px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 70px;
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  transition: .3s;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: #0b4c92;
}

/*================ DROPDOWN ================*/

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 0;
  list-style: none;

  box-shadow: 0 12px 35px rgba(0, 0, 0, .15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: .35s ease;

  z-index: 9999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 13px 22px;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: .3s;
}

.dropdown-menu li a:hover {
  background: #0b4c92;
  color: #fff;
  padding-left: 28px;
}

/*================ APPOINTMENT BUTTON ================*/

.header-btn {
  display: flex;
  align-items: center;
}

.appointment-btn {
  background: #0b4c92;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: .3s;
  width:207px
}

.appointment-btn:hover {
  background: #08386d;
  transform: translateY(-2px);
}

/*================ RESPONSIVE ================*/

@media(max-width:992px) {

  .top-bar {
    display: none;
  }

  .navbar-section .container {
    flex-direction: column;
    gap: 20px;
  }

  .navbar {
    width: 100%;
    margin: 0;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nav-menu>li>a {
    height: auto;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid #eee;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

}

@media(max-width:768px) {

  .logo {
    flex-direction: column;
    text-align: center;
  }

  .logo-content h2 {
    font-size: 24px;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .appointment-btn {
    width: 100%;
    justify-content: center;
  }

}

/*==============================
Mobile Navigation
==============================*/

.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:30px;
    color:#0b4c92;
    cursor:pointer;
}

@media(max-width:991px){

.navbar-section .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;

}

.logo img{

    width:220px;

}

.menu-toggle{

    display:block;
    z-index:1002;

}

.header-btn{

    display:none;

}

.navbar{

    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:#fff;

    transition:.35s;

    z-index:1001;

    box-shadow:-10px 0 25px rgba(0,0,0,.15);

}

.navbar.active{

    right:0;

}

.nav-menu{

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:90px 30px;

    gap:22px;

}

.nav-menu li{

    width:100%;

}

.nav-menu li a{

    width:100%;
    height:auto;
    padding:12px 0;
    display:block;

}

}


.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  margin: 15px 0;
  font-size: 40px;
}

.section-heading p {
  color: #666;
  line-height: 1.8;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.doctor-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .4s;
}

.doctor-card:hover {
  transform: translateY(-10px);
}

.doctor-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.doctor-content {
  padding: 30px;
}

.doctor-content h3 {
  color: #0b4c92;
  margin-bottom: 10px;
  font-size: 30px;
}

.designation {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.doctor-content small {
  display: block;
  color: #0b4c92;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.doctor-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.doctor-btn {
  display: inline-block;
  background: #0b4c92;
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: .3s;
}

.doctor-btn:hover {
  background: #06325f;
}

@media(max-width:992px) {

  .doctor-grid {
    grid-template-columns: 1fr;
  }

}



/*==================== FOOTER ====================*/

.footer{

    background:#0A3B73;

    color:#fff;

    padding-top:70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.3fr 1.5fr;

    gap:50px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    margin-bottom:25px;

}

.footer-logo img{

    width:75px;

}

.footer-logo h3{

    color:#fff;

    margin:0;

    font-size:28px;

}

.footer-logo span{

    color:#d8e7f7;

    font-size:13px;

}

.footer-col p{

    color:#d8e7f7;

    line-height:1.9;

    margin-bottom:30px;

}

.footer-col h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

    position:relative;

}

.footer-col h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#27AE60;

}

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col ul li{

    margin-bottom:15px;

}

.footer-col ul li a{

    color:#d8e7f7;

    text-decoration:none;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#27AE60;

    padding-left:8px;

}

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

}

.contact-info i{

    color:#27AE60;

    font-size:18px;

    margin-top:4px;

    min-width:20px;

}

.contact-info span{

    line-height:1.8;

    color:#d8e7f7;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:rgba(255,255,255,.1);

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#27AE60;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    background:#082d57;

    padding:20px 0;

}

.footer-bottom .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

    color:#d8e7f7;

}

.footer-bottom a{

    color:#27AE60;

    text-decoration:none;

    font-weight:600;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.footer-bottom .container{

flex-direction:column;

text-align:center;

}

}


/* ==========================================
   SERVICES PAGE
========================================== */

.service-block{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    align-items:center;
}

.service-block.reverse{
    direction:rtl;
}

.service-block.reverse .service-content,
.service-block.reverse .service-image{
    direction:ltr;
}

.service-content h2{
    font-size:38px;
    color:#12345b;
    margin-bottom:20px;
    line-height:1.3;
}

.service-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:18px;
}

.service-content ul{
    margin-top:25px;
    padding:0;
}

.service-content ul li{
    list-style:none;
    margin-bottom:14px;
    color:#333;
    font-weight:500;
    font-size:16px;
}

.service-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.service-image img{
    width:100%;
    display:block;
    transition:.5s;
}

.service-image:hover img{
    transform:scale(1.08);
}

/* ==========================================
WHY CHOOSE
========================================== */

.section-head{
    text-align:center;
    margin-bottom:60px;
}

.section-head h2{
    font-size:40px;
    color:#12345b;
    margin:15px 0;
}

.section-head p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.grid{
    display:grid;
    gap:30px;
}

.grid-3{
    grid-template-columns:repeat(3,1fr);
}

.card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.card h3{
    color:#12345b;
    margin-bottom:15px;
}

.card p{
    color:#000000;
    line-height:1.8;
}

/* ==========================================
FAQ
========================================== */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.faq-q{
    width:100%;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#12345b;
    transition:.3s;
}

.faq-q:hover{
    background:#0A4D8C;
    color:#fff;
}

.faq-q span{
    font-size:28px;
    transition:.3s;
}

.faq-a{
    padding:0 30px 25px;
}

.faq-a p{
    color:#666;
    line-height:1.8;
}

/* ==========================================
CTA
========================================== */

.cta-band{
    background:var(--primary-dk);
    color:#fff;
    text-align:center;
    /* border-radius:25px; */
    /* margin:80px auto; */
}

.cta-band h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.cta-band p{
    max-width:750px;
    margin:auto auto 35px;
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.9);
}

.cta-band .btn{
    display:inline-block;
    background:#fff;
    color:#0A4D8C;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta-band .btn:hover{
    background:#12345b;
    color:#fff;
}

/* ==========================================
Responsive
========================================== */

@media(max-width:992px){

.service-block{
    grid-template-columns:1fr;
    gap:40px;
}

.service-block.reverse{
    direction:ltr;
}

.grid-3{
    grid-template-columns:repeat(2,1fr);
}

.service-content h2{
    font-size:32px;
}

.section-head h2{
    font-size:34px;
}

.cta-band h2{
    font-size:34px;
}

}

@media(max-width:768px){

.grid-3{
    grid-template-columns:1fr;
}

.service-content h2{
    font-size:28px;
}

.section-head h2{
    font-size:30px;
}

.faq-q{
    font-size:16px;
    padding:18px 20px;
}

.faq-a{
    padding:0 20px 20px;
}

.cta-band{
    border-radius:18px;
}

.cta-band h2{
    font-size:28px;
}

}

/*==================================================
            SERVICES SECTION
==================================================*/

.services-section{
    padding:90px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title .eyebrow{
    display:inline-block;
    color:#0A4D8C;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    color:#0A4D8C;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}


/*==================================================
            LAYOUT
==================================================*/

.services-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:45px;
    align-items:flex-start;
}


/*==================================================
            LEFT MENU
==================================================*/

.services-menu{
    position:sticky;
    top:120px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-btn{
    width:100%;
    border:none;
    background:#fff;
    color:#333;
    padding:18px 22px;
    margin-bottom:12px;
    border-radius:12px;
    cursor:pointer;
    text-align:left;
    display:flex;
    align-items:center;
    gap:15px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.service-btn:last-child{
    margin-bottom:0;
}

.service-btn i{
    width:22px;
    color:#0A4D8C;
    font-size:18px;
}

.service-btn:hover{
    background:#eef6ff;
    color:#0A4D8C;
    transform:translateX(6px);
}

.service-btn.active{
    background:#0A4D8C;
    color:#fff;
}

.service-btn.active i{
    color:#fff;
}


/*==================================================
            RIGHT CONTENT
==================================================*/

.services-content{
    position:relative;
}

.service-item{
    display:none;
    animation:fadeUp .45s ease;
}

.service-item.active{
    display:block;
}

.service-item img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-item h2{
    font-size:38px;
    color:#0A4D8C;
    margin-bottom:20px;
}

.service-item p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.service-item ul{
    padding:0;
    margin:0 0 35px;
}

.service-item ul li{
    list-style:none;
    margin-bottom:15px;
    color:#444;
    font-weight:500;
    font-size:16px;
}

.service-item .btn{
    display:inline-block;
    background:#0A4D8C;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-item .btn:hover{
    background:#06325b;
    transform:translateY(-3px);
}


/*==================================================
            IMAGE HOVER
==================================================*/

.service-item img{
    transition:.4s;
}

.service-item img:hover{
    transform:scale(1.02);
}


/*==================================================
            ANIMATION
==================================================*/

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:992px){

.services-layout{
    grid-template-columns:1fr;
}

.services-menu{
    position:relative;
    top:0;
}

.service-item img{
    height:380px;
}

.section-title h2{
    font-size:34px;
}

.service-item h2{
    font-size:30px;
}

}

@media(max-width:768px){

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

.section-title h2{
    font-size:28px;
}

.section-title p{
    font-size:15px;
}

.services-menu{
    padding:15px;
}

.service-btn{
    font-size:15px;
    padding:15px;
}

.service-item img{
    height:250px;
    border-radius:15px;
}

.service-item h2{
    font-size:26px;
}

.service-item p{
    font-size:15px;
}

.service-item ul li{
    font-size:15px;
}

.service-item .btn{
    width:100%;
    text-align:center;
}

}


.section-head{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
}

.section-head h2{
    margin:15px 0;
}

.section-head p{
    color:#000000;
    line-height:1.8;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

@media(max-width:768px){

.gallery-item img{

    height:220px;

}

}