@charset "utf-8"; :root {
    --navy: #003f82;
    --green: #00b059;
    --dark: #0a1220;
    --text: #333;
    --muted: #6b7280;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
}

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--green);
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
    text-wrap: pretty;
}

/* Top bar */
.topbar {
    background: var(--navy);
    color: #cbd5e1;
    font-size: 13px;
    padding: 5px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
}

.topbar-phone:hover {
    color: var(--green);
}

/* Header */
.site-header {
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
}

.site-header.fixed {
    position: fixed;
}

.header-spacer {
    display: none;
    height: 76px;
}

.header-spacer.show {
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.logo {
    /* height: 48px; */
    width: auto;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    padding: 6px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.btn-book {
    position: relative;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 44px 12px 20px;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: background .2s ease;
}

.btn-book:hover {
    background: #009a4d;
    color: #fff;
}

.btn-book-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 5% 18px;
    border-top: 1px solid #eee;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-link {
    padding: 10px 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-book {
    margin-top: 8px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
}

/* Hero */
.hero {
    width: 100%;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,13,26,.92) 0%, rgba(0,13,26,.72) 48%, rgba(0,13,26,.35) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    flex: 1 1 480px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: rgba(0,176,89,.15);
    border: 1px solid rgba(0,176,89,.4);
    color: #8de6f0;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
}

.hero-content h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.18;
}

.hero-sub {
    color: #dbe3ec;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,176,89,.18);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Lead form */
.lead-form-card {
    flex: 1 1 420px;
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
    border-top: 4px solid var(--green);
    scroll-margin-top: 96px;
}

.lead-form-card h3 {
       font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
}

.lead-form-sub {
    color: var(--muted);
    font-size: 14px;
    margin: 8px 0 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
    min-width: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: #8a94a3;
    display: flex;
    pointer-events: none;
}

.input-wrap input, .input-wrap select, .input-wrap textarea {
    width: 100%;
    height: 44px;
    padding: 8px 12px 8px 38px;
    background: #fff;
    border: 1px solid #d7dbe2;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #262626;
    transition: border-color .2s ease, box-shadow .2s ease;
    appearance: none;
}

.input-wrap input[type="date"] {
    cursor: pointer;
}

.input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: .55;
}

.textarea-wrap {
    align-items: flex-start;
}

.textarea-wrap .input-icon {
    top: 14px;
}

.input-wrap textarea {
    height: auto;
    min-height: 76px;
    resize: vertical;
    line-height: 1.5;
}

.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0,176,89,.15);
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #8a94a3;
    border-bottom: 2px solid #8a94a3;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.input-wrap .country-select {
    width: 100%;
    height: 44px;
    padding: 8px 30px 8px 12px;
    background: #fff;
    border: 1px solid #d7dbe2;
    border-radius: 8px;
    font-size: 13px;
    color: #262626;
    appearance: none;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.submit-btn, .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    transition: background .2s ease, transform .2s ease;
}

.submit-btn {
    background: var(--green);
    color: #fff;
    border: none;
}

.submit-btn:hover {
    background: #009a4d;
    transform: translateY(-1px);
}

.call-btn {
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy);
    text-decoration: none;
}

.call-btn:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-1px);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
}

/* Trust bar */
.trust-bar {
    width: 100%;
    padding: 50px 0;
    background: var(--navy);
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1%;
}

.trust-card {
    flex:0 0 24.25%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
}

.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 176, 89, .07);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* box-shadow: 0 4px 14px rgba(0,0,0,.08); */
}

.trust-card strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 3px;
}

.trust-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.trust-card span svg{
    color: var(--green);
}

/* Section heading */
.section-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    max-width: 720px;
    margin: 0 auto 46px;
}

.eyebrow {
    color: var(--green);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-transform: uppercase;
}

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

.section-heading p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

/* Services */
.services-section {
    width: 100%;
    padding: 100px 0;
    background: #f6f8fa;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dde1e7;
    color: var(--navy);
    border: none;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.5px;
    transition: background .2s ease, color .2s ease;
}

.tab-btn:hover {
    background: #e4e8ee;
}

.tab-btn.active {
    background: var(--navy);
    color: #fff;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,176,89,.12);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h3 {
    font-size: 22px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
    justify-content: center;
}

.service-card {
    flex: 0 0 32%;
  
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,.08);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,.14);
}

.service-img {
    width: 100%;
  
    object-fit: cover;
}

.badge-demand {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 5px 10px;
    border-radius: 50px;
}

.service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.service-body h4 {
    font-size: 18px;
}

.service-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.learn-more {
    font-weight: 600;
    font-size: 14px;
    color: var(--green);
}

.learn-more:hover {
    color: var(--navy);
}

/* Testimonials */
.testimonials-section {
    width: 100%;
    padding: 100px 0;
    background: #f6f8fa;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}

.testimonial-card {
    flex: 0 0 32%;
    /* min-width: 260px; */
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 28px;
    box-shadow: 0 8px 26px rgba(0,0,0,.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quote-mark {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 48px;
    color: rgba(0,176,89,.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: #f5b400;
    font-size: 27px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,63,130,.1);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 12.5px;
}

/* CTA */
.cta-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0px 0 90px;
   
    text-align: center;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
}

.cta-circle-1 {
    width: 380px;
    height: 380px;
    top: -160px;
    left: -120px;
}

.cta-circle-2 {
    width: 280px;
    height: 280px;
    bottom: -140px;
    right: -80px;
}

.cta-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    opacity: .6;
}

.cta-dot-1 {
    top: 60px;
    right: 12%;
}

.cta-dot-2 {
    bottom: 70px;
    left: 10%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(120deg, var(--navy), #002a5c);
    border-radius: 20px;
    padding: 80px 50px;
}

.cta-eyebrow {
    color: #8de6f0;
}

.cta-section h2 {
    color: #fff;
    font-size: 34px;
}

.cta-section p {
    color: #d7e0ea;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.cta-btn-primary {
    position: relative;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 56px 16px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 24px rgba(0,176,89,.35);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    display: inline-flex;
    align-items: center;
}

.cta-btn-primary:hover {
    background: #009a4d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,176,89,.45);
}

.cta-btn-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.cta-btn-secondary {
    border: 1.5px solid rgba(255,255,255,.6);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    width: 100%;
    background-image: url('../images/footer-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 70px 0 30px;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,13,26,.82);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    justify-content: space-between;
}

.footer-col {
    flex: 0 0 28%;
    /* min-width: 220px; */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
}

.footer-col a {
    color: #d5e2f1;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-about p {
    color: #d5e2f1;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-logo {
    /* height: 44px; */
    width: 235px;
    margin-bottom: 4px;
    /* filter: brightness(0) invert(1); */
}

.footer-jci {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.footer-area-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-area-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-area-row p {
    color: #d5e2f1;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

.footer-area-row strong {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    color: #d5e2f1;
    font-size: 14px;
}

.footer-bottom-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7d8898;
    font-size: 13px;
}

/* Back to top */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0,63,130,.15);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity .3s ease, transform .3s ease;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '\2191';
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #0972e1;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--green);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}
.language-top{border: 1px solid #e2e2e2;/* padding: 0px 12px; */border-radius: 50px;display: flex; overflow:hidden }
.language-top a{
    color: #fff;
    border-right: 1px solid #e2e2e2;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
    background: transparent;
}
.top-bar-right{
    display: flex;
    gap: 10px;
    align-items: center;
}
.language-top a:last-child{margin-right:0px;/* padding-right:0px; */border-right:none;}
.language-top a:hover{ background: #fff; color: var(--green);}

table {

  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--navy);
  color: white;
}
.package-section{ padding: 100px 0px; border-bottom: 1px solid #e2e2e2;}






/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 1100px) {
  .trust-card {
    flex: 0 0 49.5%;}
}

@media (max-width: 980px) {
.lead-form-card {
 min-width: 100%;}
 .service-card, .testimonial-card {
    flex: 0 0 49%;}
.testimonial-cards{ justify-content: center;}
}


@media (max-width: 860px) {
    .hamburger-btn {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .topbar-left {
                gap: 3px;
        justify-content: center;
    }

    .topbar-inner {
        justify-content: center;
        text-align: center;
        gap: 4px;
    }

  

}

@media (max-width: 767px) {
    .footer-col {
    flex: 0 0 49%;}
  .footer-about{ flex: 0 0 100%; text-align: center; align-items: center;}

}


@media (max-width: 640px) {
    .hero-inner {
        padding: 48px 0;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .lead-form-card {
        padding: 26px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    .tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

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

    .progress-wrap {
        right: 16px;
        bottom: 16px;
    }
    .service-img {
  
    height: 210px;}
    .topbar-phone {
    display: initial;}
}

@media (max-width: 575px) {
.cta-inner{ padding: 50px 20px;}
.testimonials-section, .services-section { padding: 70px 0;}
.cta-section { padding: 0px 0 70px;}
}

@media (max-width: 480px) {
  .trust-cards{ flex-direction: column; gap: 10px 1%;}
  .service-cards, .testimonial-cards, .top-bar-right{ flex-direction: column;}
  .footer-cols{ flex-direction: column;}
  .footer-about {
       
        text-align: left;
        align-items: start;
    }
.top-bar-right { gap: 4px;}

    
}

/* Specialists */
.specialists-section {
    width: 100%;
    padding: 100px 0;
    background: #fff;
}



.doctor-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
    justify-content: center;
}

.doctor-card {
    flex: 0 0 49%;
  
    display: flex;
    background: #f8fafc;
    border-radius: var(--radius);
    overflow: hidden;
    
    border: 1px solid #edf0f3;
}

.doctor-img {
    width: 42%;
    object-fit: cover;
}

.doctor-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.doctor-body h4 {
    font-size: 20px;
    color: var(--dark);
}

.doctor-specialty {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

.doctor-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    margin: 2px 0 6px;
}

.doctor-badge svg {
    color: #f5b400;
}

.doctor-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.doctor-book-btn {
    margin-top: 10px;
    align-self: flex-start;
    border: 1.5px solid var(--green);
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}

.doctor-book-btn:hover {
    background: var(--green);
    color: #fff;
}

@media (max-width: 640px) {
    .doctor-card {
        flex-direction: column;
    }
    .doctor-img {
        width: 100%;
      
    }
}

/* FAQ */
.faq-section {
    width: 100%;
    padding: 100px 0;
    background: #fff;
}

.faq-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin: 0 auto 46px;
}



.faq-heading p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

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

.faq-item {
    background: #f7f9fb;
    border-radius: 10px;
    border: 1px solid #edf0f3;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: inherit;
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--green);
    transition: transform .2s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer p {
    margin: 0;
    padding: 0 24px 22px;

    font-size: 14.5px;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

@media (max-width: 980px) {
.doctor-cards{ flex-direction: column; }
   
}

s