*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #1B6EC2;
    --blue-dk: #145499;
    --blue-dkr: #0D3D73;
    --blue-lt: #2E82D4;
    --blue-pale: #EBF3FB;
    --blue-mid: #C2DCF5;
    --navy: #0B1F3A;
    --white: #fff;
    --off: #F7FAFD;
    --gl: #F0F4F8;
    --gm: #8898AA;
    --gd: #4A5568;
    --text: #1A2A3A;
    --bdr: rgba(27, 110, 194, .12);
    --sh-sm: 0 2px 10px rgba(27, 110, 194, .08);
    --sh-md: 0 6px 30px rgba(27, 110, 194, .13);
    --sh-lg: 0 12px 50px rgba(27, 110, 194, .18);
    --r: 12px;
    --rl: 18px
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway', sans-serif
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none
}

/* TOP BAR */
.tb {
    background: var(--blue-dkr);
    color: rgba(255, 255, 255, .82);
    font-size: 12.5px;
    padding: 7px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.tb a {
    color: #A8D0F0
}

.tb a:hover {
    color: #fff
}

.tb-l {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.tb-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em
}

.tb-r {
    display: flex;
    gap: 16px;
    align-items: center
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 2px solid var(--blue-pale);
    box-shadow: 0 2px 16px rgba(27, 110, 194, .07)
}

.hi {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo-img {
    height: 52px;
    width: auto
}

/* Desktop nav */
nav.mn {
    display: flex;
    align-items: center;
    gap: 4px
}

nav.mn>a,
nav.mn .dd>button {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gd);
    padding: 7px 11px;
    border-radius: 7px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: background .17s, color .17s
}

nav.mn>a:hover,
nav.mn .dd>button:hover {
    background: var(--blue-pale);
    color: var(--blue)
}

.dd {
    position: relative
}

.dd:hover .ddm,
.dd:focus-within .ddm {
    display: block
}

.ddm {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1.5px solid var(--blue-pale);
    border-radius: var(--r);
    box-shadow: var(--sh-lg);
    min-width: 230px;
    padding: 8px 0;
    z-index: 500
}

.ddm a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--gd);
    font-weight: 500;
    transition: background .14s, color .14s
}

.ddm a:hover {
    background: var(--blue-pale);
    color: var(--blue)
}

.chev {
    font-size: 10px;
    opacity: .55
}

.hcta {
    display: flex;
    gap: 8px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap
}

.btn-p {
    background: var(--blue);
    color: #fff
}

.btn-p:hover {
    background: var(--blue-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(27, 110, 194, .35)
}

.btn-o {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue)
}

.btn-o:hover {
    background: var(--blue-pale)
}

.btn-wa {
    background: #25D366;
    color: #fff
}

.btn-wa:hover {
    background: #1EB857
}

.btn-w {
    background: #fff;
    color: var(--blue);
    font-weight: 700
}

.btn-w:hover {
    background: #EBF3FB
}

/* Hamburger */
.ham {
    display: none;
    background: none;
    border: 1.5px solid var(--bdr);
    border-radius: 8px;
    cursor: pointer;
    padding: 7px 9px
}

.ham span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    margin: 4px 0;
    border-radius: 2px;
    transition: all .3s
}

/* MOBILE NAV */
.mnav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--navy);
    overflow-y: auto
}

.mnav.open {
    display: block
}

.mnav-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mnav-logo {
    height: 38px;
    filter: brightness(0) invert(1)
}

.mnav-x {
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.mnav-bd {
    padding: 8px 0 50px
}

.mnav-cat {
    padding: 10px 20px 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-top: 8px
}

.mnav-a {
    display: flex;
    align-items: center;
    padding: 11px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    gap: 10px;
    border-left: 3px solid transparent;
    transition: all .14s
}

.mnav-a:hover,
.mnav-a.act {
    background: rgba(27, 110, 194, .22);
    color: #fff;
    border-left-color: var(--blue-lt)
}

.mnav-a .mi {
    font-size: 15px;
    opacity: .7;
    flex-shrink: 0
}

.mnav-cta {
    margin: 18px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mnav-cta .btn {
    justify-content: center;
    padding: 13px;
    font-size: 14.5px
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dkr) 50%, #1A4E8A 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 24px 90px
}

.h-pat {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none
}

.h-glow {
    position: absolute;
    right: -80px;
    top: -100px;
    width: 580px;
    height: 580px;
    background: radial-gradient(ellipse, rgba(27, 110, 194, .32) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.hero-in {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1
}

.h-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 18px
}

.h-dot {
    width: 6px;
    height: 6px;
    background: #7EC8F7;
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero h1 {
    font-size: clamp(30px, 4.2vw, 50px);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
    font-weight: 800
}

.hero h1 span {
    color: #7EC8F7
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 26px;
    max-width: 520px;
    line-height: 1.75
}

.hero-acts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 38px
}

.hero-acts .btn {
    padding: 13px 26px;
    font-size: 15px
}

.hbadges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hbadge {
    display: flex;
    align-items: center;
    gap: 9px
}

.hbi {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px
}

.hbadge strong {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 1
}

.hbadge span {
    font-size: 11px;
    color: rgba(255, 255, 255, .5)
}

/* Appt card */
.ac {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--rl);
    padding: 26px 24px
}

.ac h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px
}

.ac-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 18px
}

.af {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.af input,
.af select {
    width: 100%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 11px 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s
}

.af input::placeholder {
    color: rgba(255, 255, 255, .42)
}

.af input:focus,
.af select:focus {
    border-color: #7EC8F7
}

.af select option {
    color: var(--text);
    background: #fff
}

.af .btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 15px;
    background: var(--blue-lt)
}

.af .btn:hover {
    background: var(--blue)
}

.at {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px
}

.at span {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, .7)
}

/* STATS STRIP */
.ss {
    background: var(--blue);
    padding: 0 24px
}

.ss-in {
    max-width: 1240px;
    margin: 0 auto;
    display: flex
}

.sb {
    flex: 1;
    padding: 26px 18px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.sb:last-child {
    border-right: none
}

.sb strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    line-height: 1
}

.sb p {
    font-size: 13px;
    color: rgba(255, 255, 255, .62);
    margin-top: 5px
}

/* SECTIONS */
section {
    padding: 68px 24px
}

.si {
    max-width: 1240px;
    margin: 0 auto
}

.sl {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px
}

.st {
    font-size: clamp(23px, 3.3vw, 36px);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 800
}

.ss2 {
    font-size: 15.5px;
    color: var(--gm);
    max-width: 580px;
    line-height: 1.75
}

.sh {
    margin-bottom: 44px
}

.sh.ctr {
    text-align: center
}

.sh.ctr .ss2 {
    margin: 0 auto
}

/* WHY */
.why-bg {
    background: var(--off)
}

.wg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px
}

.wc {
    background: #fff;
    border-radius: var(--r);
    padding: 24px 20px;
    border: 1.5px solid var(--bdr);
    box-shadow: var(--sh-sm);
    transition: all .22s
}

.wc:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: rgba(27, 110, 194, .28)
}

.wi {
    width: 48px;
    height: 48px;
    background: var(--blue-pale);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 13px
}

.wc h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.wc p {
    font-size: 13.5px;
    color: var(--gm);
    line-height: 1.62
}

/* SERVICES */
.sg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px
}

.svc {
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all .25s;
    display: flex;
    flex-direction: column
}

.svc:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: rgba(27, 110, 194, .3)
}

.svc-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--blue-pale)
}

.svc-bd {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.svc-bd h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px
}

.svc-bd p {
    font-size: 13.5px;
    color: var(--gm);
    flex: 1;
    line-height: 1.65;
    margin-bottom: 14px
}

.svc-lnk {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.svc-lnk:hover {
    color: var(--blue-dk);
    text-decoration: underline
}

/* ABOUT */
.about-bg {
    background: var(--off)
}

.ag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start
}

.ac2 h2 {
    font-size: clamp(22px, 3.2vw, 34px);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
    font-weight: 800
}

.ac2 p {
    font-size: 15px;
    color: var(--gd);
    margin-bottom: 15px;
    line-height: 1.8
}

.cl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 20px
}

.cl li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: var(--gd)
}

.ck {
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: #fff;
    font-size: 11px
}

.acards {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.acard {
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: var(--r);
    padding: 20px 22px;
    box-shadow: var(--sh-sm)
}

.act {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px
}

.aico {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}

.acard h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy)
}

.acard .asub {
    font-size: 12px;
    color: var(--gm)
}

.acard p {
    font-size: 13px;
    color: var(--gm);
    line-height: 1.65
}

/* DOCTORS */
.dg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px
}

.dc {
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all .22s;
    text-align: center
}

.dc:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md)
}

.dc-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    background: var(--blue-pale)
}

.dc-bd {
    padding: 15px 14px 20px
}

.dc-bd h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px
}

.dc-bd p {
    font-size: 12.5px;
    color: var(--gm);
    line-height: 1.55;
    margin-bottom: 12px
}

.dc-bd a {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600
}

/* REVIEWS */
.rev-bg {
    background: var(--navy);
    overflow: hidden
}

.rev-bg .st {
    color: #fff
}

.rev-bg .sl {
    color: #7EC8F7
}

.rev-bg .ss2 {
    color: rgba(255, 255, 255, .55)
}

.gbar {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r);
    padding: 14px 20px;
    max-width: 360px
}

.gscore {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    line-height: 1
}

.gstars {
    color: #FBBF24;
    font-size: 15px;
    letter-spacing: 2px
}

.gdet p {
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    margin-top: 3px
}

.cw {
    position: relative;
    overflow: hidden
}

.ct {
    display: flex;
    gap: 18px;
    transition: transform .44s cubic-bezier(.4, 0, .2, 1)
}

.rc {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--rl);
    padding: 22px;
    flex-shrink: 0
}

.rs {
    color: #FBBF24;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.rc blockquote {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic
}

.ra {
    display: flex;
    align-items: center;
    gap: 10px
}

.rav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.rn {
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.ri {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4)
}

.cc {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px
}

.cb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.cb:hover {
    background: var(--blue);
    border-color: var(--blue)
}

.cdots {
    display: flex;
    gap: 6px
}

.cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: none;
    cursor: pointer;
    transition: all .2s;
    padding: 0
}

.cdot.on {
    background: var(--blue-lt);
    width: 22px;
    border-radius: 4px
}

/* VIDEOS */
.vid-bg {
    background-color: #e6f2fa;
    /* Soft light blue background as seen in the image */
    padding: 60px 0;
}

/* Grid Layout - 4 Columns on desktop, responsive breakdown */
.vg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 30px;
}

@media (max-width: 1100px) {
    .vg {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 10px;
        padding: 8px;
    }
}

@media (max-width: 860px) {
    .vg {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: 10px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .vg {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 10px;
        padding: 8px;
    }
}

/* Card Container Styles */
.vc-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.vc-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.vc-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vc-card:hover .vc-thumb {
    transform: scale(1.04);
}

/* Overlay Screen hidden by default (opacity: 0) */
.vc-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    /* Elegant darkening effect */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vc-play-btn {
    width: 55px;
    height: 55px;
    background: #ff0000;
    /* Custom YouTube red */
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transform: scale(0.7) translateY(10px);
    /* Starts smaller and offset down */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Snappy bounce effect */
}

/* Pure CSS Triangle for the play button */
.vc-play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #ffffff;
}

.vc-card:hover .vc-play-overlay {
    opacity: 1;
}

.vc-card:hover .vc-play-btn {
    transform: scale(1) translateY(0);
    /* Pops into full size fluidly */
}

.vc-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Patient Info Panel */
.vc-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

/* Rounded Surgery Badge Tag */
.vc-badge {
    align-self: flex-start;
    background-color: #e8f4fd;
    color: #2b70c9;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Patient Name Heading */
.vc-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 4px 0 2px 0;
}

/* Horizontal Metarow (Age, Power, Location) */
.vc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #666666;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: 4px;
}

.vc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Quick inline SVG fallbacks for icons if font-icons aren't used */
.icon-user::before {
    content: "👤";
    font-style: normal;
    opacity: 0.6;
}

.icon-eye::before {
    content: "👁️";
    font-style: normal;
    opacity: 0.6;
}

.icon-map::before {
    content: "📍";
    font-style: normal;
    opacity: 0.6;
}

/* FAQ */
.fw {
    max-width: 800px;
    margin: 0 auto
}

.fi {
    border-bottom: 1.5px solid var(--blue-pale)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy)
}

.fq:hover {
    color: var(--blue)
}

.fa2 {
    width: 26px;
    height: 26px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 16px;
    transition: transform .24s
}

.fanstxt {
    font-size: 14.5px;
    color: var(--gd);
    padding: 0 0 18px;
    line-height: 1.8;
    display: none
}

.fi.op .fanstxt {
    display: block
}

.fi.op .fa2 {
    transform: rotate(180deg);
    background: var(--blue);
    color: #fff
}

/* CTA */
.cta-bg {
    background: linear-gradient(135deg, var(--blue-dkr), var(--blue-dk));
    padding: 62px 24px;
    text-align: center
}

.cta-bg h2 {
    font-size: clamp(22px, 3.8vw, 36px);
    color: #fff;
    margin-bottom: 12px
}

.cta-bg p {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 26px
}

.ctabs {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.ctabs .btn {
    padding: 14px 28px;
    font-size: 15px
}

/* ====== BOOTSTRAP-LIKE GRID (only for footer) ====== */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justify-content-center {
    justify-content: center;
}

.col-md-6,
.col-md-5,
.col-md-7,
.col-md-12 {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-5 {
        flex: 0 0 41.6667%;
        max-width: 41.6667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.3333%;
        max-width: 58.3333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.d-flex {
    display: flex;
}

.text-white {
    color: #fff;
}

.mt-3 {
    margin-top: 1rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

/* ====== FOOTER STYLES ====== */
.footer-area {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
    font-size: 14px;
}

.footer-item {
    margin-bottom: 25px;
}

.footer-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #7EC8F7;
}

/* Contact list */
.footer-contact ul li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-size: 13.5px;
}

.footer-contact ul li i {
    width: 22px;
    color: #7EC8F7;
    font-size: 16px;
}

.footer-contact ul li label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 4px;
}

/* Social icons */
.social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    transition: all 0.2s;
    text-decoration: none;
}

.social ul li a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.instagram-color {
    color: #E4405F;
}

.youtube-color {
    color: #FF0000;
}

.facebook-color {
    color: #1877F2;
}

.linkdin-color {
    color: #0A66C2;
}

.twitter-color {
    color: #1DA1F2;
}

.pinterest-color {
    color: #E60023;
}

/* Map */
#mapFrame {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 8px;
}

/* Disclaimer & bottom */
.footer-area .text-white p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

/* copyright-area */
.copyright-area .container {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-area .col-md-5,
    .footer-area .col-md-7,
    .footer-area .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }



    #mapFrame {
        height: 250px;
    }

    .social ul {
        gap: 6px;
    }

    .social ul li a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }


}

/* STICKY */
.stk {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 2px solid var(--blue-pale);
    padding: 9px 14px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(27, 110, 194, .12)
}

.stk .btn {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 10px 6px
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .fg {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {

    nav.mn,
    .hcta .btn-o {
        display: none
    }

    .ham {
        display: block
    }

    .hero-in {
        grid-template-columns: 1fr
    }

    .ac {
        display: none
    }

    .hero {
        padding: 50px 20px 60px
    }

    .ag {
        grid-template-columns: 1fr
    }

    .stk {
        display: flex
    }

    footer {
        padding-bottom: 76px
    }

    .ss-in {
        flex-wrap: wrap
    }

    .sb {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }


}

@media(max-width:640px) {
    .fg {
        grid-template-columns: 1fr
    }

    .tb {
        font-size: 11.5px;
        justify-content: center;
        text-align: center
    }

    .tb-r {
        display: none
    }

    section {
        padding: 50px 16px
    }

    .sg {
        grid-template-columns: 1fr
    }

    .sb {
        flex: 1 1 100%
    }



    .rc {
        min-width: calc(100vw - 60px)
    }

    .hbadges {
        gap: 10px
    }
}

/* Animations */
@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fu {
    animation: fu .6s ease both
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .3s
}