/* Jumbotron */
.jumbotron {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.jumbotron .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.jumbotron .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jumbotron .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: black;
    opacity: 75%;
    z-index: 1;
}

.hero-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jumbotron .hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.jumbotron .hero-text .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-style: italic;
}

@media screen and (max-width: 992px) {
    .jumbotron .hero-text {
        text-align: center;
        margin-bottom: 3rem;
    }

    .jumbotron .hero-text .hero-title {
        font-size: 2.5rem;
    }

    .jumbotron .hero-text .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .jumbotron .hero-text .hero-title {
        font-size: 2rem;
    }

    .jumbotron .hero-text .hero-subtitle {
        font-size: 1rem;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.section-title div {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-us .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.why-us .stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

@media screen and (max-width: 576px) {
    .why-us .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.why-us .stat-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.why-us .stat-item .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.25rem;
}

.why-us .about-image {
    width: 100%;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .why-us .about-image {
        margin-top: 3rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    margin-bottom: 16px
}

.card-header {
    padding: 14px 18px;
    border-bottom: 1px solid #eef2f7;
    font-weight: 700
}

.card-body {
    padding: 18px
}

.muted {
    color: #6b7280
}

#lab-status {
    padding: 60px 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

#lab-status .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.table-wrap {
    margin: 0 auto 40px auto;
    padding: 0 16px;
    overflow-x: auto;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.status-table caption {
    caption-side: top;
    text-align: left;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.status-table th,
.status-table td {
    border: 1px solid #c9c9c9;
    padding: 10px 12px;
    vertical-align: middle;
}

.status-table th {
    background: #f2f4f7;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.status-table td:nth-child(1),
.status-table td:nth-child(3),
.status-table td:nth-child(4),
.status-table td:nth-child(5) {
    text-align: center;
    width: 1%;
    white-space: nowrap;
}

.status-table td:nth-child(2) {
    font-weight: 600;
}