:root {
    --bg: #0c1219;
    --bg2: #111923;
    --bg3: #161f2b;
    --teal: #00e6b0;
    --teal-d: rgba(0, 230, 176, 0.08);
    --coral: #ff5c6c;
    --coral-d: rgba(255, 92, 108, 0.07);
    --blue: #3b8bff;
    --gold: #ffd93d;
    --wh: #edf0f4;
    --mu: #f7fbff;
    --dm: #d6dadf;
    --bd: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--wh);
    line-height: 1.65;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 18, 25, 0.92);
    border-bottom: 1px solid var(--bd);
}

.logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 3px;
}

.logo span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--mu);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .3s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-cta {
    padding: 9px 22px;
    background: var(--teal);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

/* SHARED */
section {
    padding: 100px 60px;
}

.alt-bg {
    background: var(--bg2);
}

.label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.title {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 20px;
}

.desc {
    font-size: 17px;
    color: var(--mu);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.75;
}

.btn-p {
    padding: 14px 32px;
    background: var(--teal);
    color: var(--bg);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-p:hover {
    box-shadow: 0 10px 36px rgba(0, 230, 176, .3);
    transform: translateY(-2px);
}

.btn-o {
    padding: 14px 32px;
    background: transparent;
    color: var(--wh);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
}

.btn-o:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.card {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 28px;
    transition: all .3s;
}

.card:hover {
    border-color: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

/* HERO */
.hero {
    min-height: 800px;
    padding: 70px 60px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 230, 176, .06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-left {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--teal-d);
    border: 1px solid rgba(0, 230, 176, .15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
     margin-bottom: 10px; 
}

.badge .dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero h1 {
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    font-family: Georgia, serif;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal);
}

.hero-sub {
    font-size: 18px;
    color: var(--mu);
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ecg-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: ecgdraw 3s ease-in-out infinite;
}

@keyframes ecgdraw {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

.pulse-ring {
    animation: pring 2.5s ease-out infinite;
}

@keyframes pring {
    0% {
        r: 40;
        opacity: .35;
    }

    100% {
        r: 120;
        opacity: 0;
    }
}

/* STAT STRIP */
.stats {
    display: flex;
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    background: var(--bg2);
}

.stat {
    flex: 1;
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--bd);
}

.stat:last-child {
    border-right: none;
}

.stat-v {
    font-size: 40px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    color: var(--coral);
}

.stat-l {
    font-size: 16px;
    color: var(--dm);
    margin-top: 6px;
}

/* MARQUEE */
.mq {
    padding: 12px 0;
    background: var(--teal);
    color: var(--bg);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}

.mq-in {
    display: inline-block;
    animation: mscroll 22s linear infinite;
}

@keyframes mscroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* TWO-COL LAYOUT */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

/* PROBLEM CARDS */
.pcards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pc {
    padding: 22px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all .3s;
}

.pc:hover {
    border-color: rgba(255, 92, 108, .15);
    transform: translateX(4px);
}

.pc-ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pc h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pc p {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.55;
}

/* CHECKUP VISUAL */
.ckup {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 32px;
}

.ckup-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mu);
}

.ckup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ck-item {
    padding: 16px 12px;
    border-radius: 10px;
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border: 1px solid var(--bd);
}

.ck-item.fail {
    border-color: var(--coral);
    background: var(--coral-d);
}

.ck-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.ck-name {
    font-weight: 700;
    font-size: 16px;
}

.ck-test {
    font-size: 10px;
    color: var(--dm);
    margin-top: 2px;
}

/* MCG VS ECG */
.cmp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cmp {
    padding: 36px;
    border-radius: 18px;
    border: 1px solid var(--bd);
    transition:.5s;
}

.cmp.mcg {
    background: linear-gradient(160deg, rgba(0, 230, 176, .04), rgba(0, 230, 176, .01));
    border-color: rgba(0, 230, 176, .1); 
}
.cmp:hover{
    transform:scale(1.05);
}

.cmp.ecg {
    background: var(--bg3);
}

.cmp-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.mcg .cmp-badge {
    background: var(--teal-d);
    color: var(--teal);
}

.ecg .cmp-badge {
    background: rgba(255, 255, 255, .03);
    color: var(--dm);
}

.cmp h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.cmp .d {
    font-size: 16px;
    color: var(--mu);
    margin-bottom: 20px;
    line-height: 1.65;
}

.fl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fl li {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: var(--mu);
    align-items: flex-start;
}

.fl .c {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.mcg .c {
    background: var(--teal-d);
    color: var(--teal);
}

.ecg .c {
    background: var(--coral-d);
    color: var(--coral);
}

/* CLINICAL DATA TABLE */
.clin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    margin-top: 24px;
}

.clin-table th {
    text-align: left;
    font-size: 11px;
    color: var(--dm);
    font-weight: 600;
    padding: 8px 14px;
    letter-spacing: .5px;
}

.clin-table td {
    padding: 12px 14px;
    font-size: 16px;
    background: rgba(0, 0, 0, .2);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
}

.clin-table td:first-child {
    border-left: 1px solid var(--bd);
    border-radius: 8px 0 0 8px;
}

.clin-table td:last-child {
    border-right: 1px solid var(--bd);
    border-radius: 0 8px 8px 0;
}

.bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
    margin-top: 4px;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    padding: 28px 18px;
    border-radius: 16px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    position: relative;
    transition: all .3s;
}

.step:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.step-n {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), #00b894);
    color: var(--bg);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step p {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.5;
}

.step-arr {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 16px;
    z-index: 2;
}

/* PATIENT SCENE SVG */
.scene-wrap {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
}

/* DETECT */
.det-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.det {
    padding: 24px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 14px;
    border-left: 3px solid var(--teal);
    transition: all .3s;
}

.det:hover {
    transform: translateX(3px);
}

.det h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.det p {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.55;
}

/* NUMBERS */
.nums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 80px 60px;
}

.num {
    text-align: center;
    padding: 32px 14px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 16px;
}

.num-v {
    font-size: 42px;
    font-weight: 800;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 6px;
}

.num-l {
    font-size: 16px;
    color: var(--dm);
}

/* BENEFITS */
.ben {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bc {
    padding: 28px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 16px;
    display: flex;
    gap: 16px;
    transition: all .3s;
}

.bc:hover {
    border-color: rgba(0, 230, 176, .12);
    transform: translateY(-2px);
}

.bc-ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--coral-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bc h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bc p {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.55;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.tc {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s;
}

.tc:hover {
    border-color: rgba(0, 230, 176, .15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.tc-photo {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tc-photo img{
    width:160px;
    height:160px;
    border-radius: 50%;
}

.tc-photo .init {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--bg);
}

.tc-info {
    padding: 22px;
}

.tc-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
}

.tc-role {
    font-size: 16px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
}

.tc-bio {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.55;
}

/* ADVISORS */
.adv-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.adv {
    padding: 20px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.adv-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

/* TRACTION */
.tract {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tr {
    padding: 24px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 14px;
    border-top: 3px solid var(--teal);
}

.tr h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tr p {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.55;
}

/* QUOTE */
.quote {
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 230, 176, .03), rgba(59, 139, 255, .03));
    border: 1px solid rgba(0, 230, 176, .08);
    border-radius: 18px;
    text-align: center;
    max-width: 780px;
}

.quote-t {
    font-size: 20px;
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.quote-a {
    font-size: 16px;
    color: var(--teal);
    font-weight: 600;
}

.quote-a span {
    color: var(--dm);
    font-weight: 400;
}

/* CTA */
.cta {
    text-align: center;
    padding: 100px 60px;
    position: relative;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 176, .06), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
}

/* FOOTER */
footer {
    padding: 48px 60px 28px;
    border-top: 1px solid var(--bd);
    background: var(--bg2);
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 32px;
}

.f-brand p {
    font-size: 16px;
    color: var(--dm);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 10px;
}

.f-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: 14px;
}

.f-col a {
    display: block;
    color: var(--dm);
    text-decoration: none;
    font-size: 16px;
    padding: 4px 0;
    transition: color .2s;
}

.f-col a:hover {
    color: var(--teal);
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--bd);
    font-size: 16px;
    color: var(--dm);
}

@media(max-width:1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .two-col,
    .cmp-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:900px) {

    section,
    .hero,
    .cta {
        padding-left: 28px;
        padding-right: 28px;
    }

    nav {
        padding: 0 28px;
    }

    footer {
        padding: 40px 28px 24px;
    }

    .nums {
        padding: 60px 28px;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--bd);
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tract {
        grid-template-columns: 1fr;
    }

    .step-arr {
        display: none;
    }

    .det-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {

    .steps,
    .det-grid,
    .ben,
    .cmp-grid,
    .nums,
    .adv-row,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas,
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .f-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        flex: 1 1 100%;
    }
    .nav-links{
        display:none;
    }
    .mcg-ecg{
        grid-template-columns: 100% !important;
        gap: 0;
    }
    
}
.mcg-ecg{
    display:grid;
    grid-template-columns:1fr auto 1fr!important;
    gap:24px;align-items:start;
    margin-bottom:32px;
}
.blog-section {
  background: #0b1a2a;
  padding: 100px 0;
  color: #ffffff;
}

.container {
  width: 85%;
  margin: auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  color: #00f5c4;
  letter-spacing: 3px;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  color: #a5b4c3;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #12253a;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 200, 0.08);
}

.blog-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #00f5c4;
  border-radius: 16px 0 0 16px;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 200, 0.3);
}

.blog-date {
  font-size: 16px;
  color: #00f5c4;
  display: block;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-card p {
  color: #a5b4c3;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.read-more:hover {
  color: #00f5c4;
}

.breadcrumb-section {
  background: #0b1a2a;
  padding: 120px 0 80px;
  color: #ffffff;
  position: relative;
}

.container {
  width: 85%;
  margin: auto;
}

.breadcrumb-content {
  max-width: 900px;
}

.breadcrumb-tag {
  color: #00f5c4;
  letter-spacing: 3px;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

.breadcrumb-title {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb-nav a {
  color: #a5b4c3;
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #00f5c4;
}

.breadcrumb-nav span {
  color: #6c7f93;
}

.breadcrumb-nav .active {
  color: #ffffff;
}


.blog-detail-section {
  background: #0b1a2a;
  padding: 100px 0;
  color: #ffffff;
}

.container {
  width: 85%;
  margin: auto;
}

.blog-detail-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.blog-category {
  color: #00f5c4;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.blog-title {
  font-size: 42px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.blog-intro {
  font-size: 18px;
  color: #a5b4c3;
  margin-bottom: 30px;
  line-height: 1.7;
}

.blog-image img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 30px;
}

.blog-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-content p {
  color: #a5b4c3;
  line-height: 1.8;
  margin-bottom: 20px;
}

blockquote {
  background: #12253a;
  padding: 25px;
  border-left: 4px solid #00f5c4;
  border-radius: 10px;
  margin: 30px 0;
  font-style: italic;
  color: #ffffff;
}

/* Sidebar */

.blog-sidebar {
  padding-top: 40px;
}

.sidebar-widget {
  background: #12253a;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 255, 200, 0.08);
}

.sidebar-widget h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget li {
  margin-bottom: 12px;
}

.sidebar-widget a {
  text-decoration: none;
  color: #a5b4c3;
  transition: 0.3s;
}

.sidebar-widget a:hover {
  color: #00f5c4;
}

/* Responsive */

@media (max-width: 992px) {
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    padding-top: 0;
  }
}

.recent-posts-widget {
  background: #12253a;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 200, 0.08);
}

.widget-title {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.widget-title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 4px;
  background: #00f5c4;
  border-radius: 4px;
}

.recent-post-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.post-date {
  font-size: 16px;
  color: #00f5c4;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.recent-post-item h5 {
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.recent-post-item a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s ease;
}

.recent-post-item:hover {
  transform: translateX(6px);
}

.recent-post-item a:hover {
  color: #00f5c4;
}

nav .logo a{
    color:#fff;
    text-decoration:none;
}

/* ===== NAVBAR ===== */

.navbar {
    background: #0b1a2a;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    color: #00f5c4;
}

/* Nav Links */

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #a5b4c3;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00f5c4;
}

/* CTA */

.nav-cta a {
    background: #00f5c4;
    color: #0b1a2a;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.nav-cta a:hover {
    opacity: 0.85;
}

/* Hide mobile CTA in desktop */
.mobile-cta {
    display: none;
}

/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #12253a;
        flex-direction: column;
        padding: 100px 30px;
        gap: 25px;
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 20px;
    }

    .mobile-cta a {
        display: inline-block;
        background: #00f5c4;
        color: #0b1a2a;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger animation */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


/* ------- */

.med-card {
    background-color: var(--surface-navy);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    padding: 13px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.med-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.status-indicator {
    width: 5px;
    height: 25px;
    background-color: var(--medical-teal);
    border-radius: 10px;
    margin-right: 18px;
}

.med-heading {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

/* New Table Design Container */
.table-frame {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden; /* Clips corners of the table to match frame */
    background-color: var(--table-bg);
}

.clinical-table {
    width: 100%;
    border-collapse: collapse;
}

.header-row {
    background-color: rgba(2, 12, 27, 0.7); /* Darker header section */
}

.col-label {
    text-align: left;
    color: var(--medical-teal);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
   padding: 6px 15px;
    border-bottom: 2px solid var(--border-subtle);
}

.data-row {
    transition: background-color 0.3s ease;
}

.data-row:hover {
    background-color: rgba(0, 242, 195, 0.05); /* Subtle teal glow on hover */
}

.clinical-table td {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.row-category {
    color: var(--medical-teal);
    font-weight: 600;
    font-size: 0.9rem;
    width: 28%;
}

.cell-data {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Remove bottom border for the last row */
.clinical-table tr:last-child td {
    border-bottom: none;
}