@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --kh-blue-900: #0a3d7a;
    --kh-blue-800: #15569a;
    --kh-blue-700: #1d6bc2;
    --kh-sky-100: #eef6ff;
    --kh-sky-200: #d9eafe;
    --kh-red: #db2b39;
    --kh-gold: #f4c44d;
    --kh-ink: #16324f;
    --kh-muted: #5e738c;
    --kh-surface: #ffffff;
    --kh-bg: #f4f9ff;
    --kh-border: rgba(18, 70, 126, 0.12);
    --kh-shadow: 0 24px 60px rgba(10, 61, 122, 0.12);
    --kh-radius-xl: 30px;
    --kh-radius-lg: 22px;
    --kh-radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--kh-ink);
    background:
        radial-gradient(circle at top left, rgba(29, 107, 194, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand strong,
.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.95rem 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.kh-btn-primary {
    background: linear-gradient(135deg, var(--kh-red), #ef4f50);
    color: #fff;
    border: none;
    box-shadow: 0 16px 28px rgba(219, 43, 57, 0.2);
}

.kh-btn-primary:hover {
    color: #fff;
}

.kh-btn-outline,
.kh-btn-outline-light,
.kh-btn-light {
    border: 1px solid transparent;
}

.kh-btn-outline {
    color: var(--kh-blue-900);
    background: #fff;
    border-color: rgba(10, 61, 122, 0.15);
}

.kh-btn-light {
    color: var(--kh-blue-900);
    background: #fff;
}

.kh-btn-outline-light {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
}

.kh-btn-small {
    padding: 0.85rem 1.3rem;
}

.kh-site-header {
    position: relative;
    z-index: 20;
}

.kh-topbar {
    background: linear-gradient(90deg, #0f3e73 0%, #1b67b6 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.kh-topbar-inner,
.kh-topbar-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.kh-topbar-inner {
    justify-content: space-between;
    min-height: 40px;
}

.kh-topbar i {
    margin-right: 0.45rem;
    color: var(--kh-gold);
}

.kh-navbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 74, 134, 0.08);
    padding: 0.55rem 0;
}

.kh-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--kh-blue-900);
}

.kh-brand img,
.kh-footer-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.kh-brand strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.1;
}

.kh-brand span {
    display: block;
    color: var(--kh-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--kh-ink);
    font-weight: 700;
    padding: 0.65rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--kh-blue-800);
}

.kh-nav-cta {
    padding-inline: 1.35rem;
}

.kh-btn-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1.1rem;
    color: var(--kh-blue-900);
    background: #fff;
    border: 1px solid rgba(10, 61, 122, 0.18);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(10, 61, 122, 0.08);
}

.kh-btn-switch:hover,
.kh-btn-switch:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--kh-blue-900), var(--kh-blue-800));
}

.kh-home {
    overflow: hidden;
}

.kh-hero {
    position: relative;
    padding: 1.5rem 0 3rem;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(8, 53, 105, 0.96) 0%, rgba(20, 95, 174, 0.88) 55%, rgba(97, 168, 233, 0.76) 100%);
}

.kh-hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.kh-hero-bg-media::before,
.kh-hero-bg-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
}

.kh-hero-bg-media::before {
    background:
        linear-gradient(90deg, rgba(4, 24, 48, 0.9) 0%, rgba(5, 34, 70, 0.78) 46%, rgba(7, 41, 82, 0.5) 100%),
        linear-gradient(180deg, rgba(4, 25, 50, 0.38) 0%, rgba(4, 25, 50, 0.78) 100%);
}

.kh-hero-bg-media::after {
    background: radial-gradient(circle at 28% 35%, rgba(255, 255, 255, 0.16), transparent 30%);
    mix-blend-mode: screen;
}

.kh-hero-bg-media img,
.kh-hero-bg-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: saturate(1.08) contrast(1.02);
    animation: khHeroBgFade 50s linear infinite;
    animation-delay: var(--kh-bg-delay, 0s);
}

.kh-hero-bg-media video {
    z-index: 1;
    opacity: 0.22;
    animation: none;
    mix-blend-mode: screen;
}

@keyframes khHeroBgFade {
    0%,
    7% {
        opacity: 0;
        transform: scale(1.04);
    }

    11%,
    19% {
        opacity: 0.34;
    }

    25%,
    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.kh-hero > .container {
    position: relative;
    z-index: 2;
}

.kh-hero::before,
.kh-hero::after {
    content: '';
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(2px);
}

.kh-hero::before {
    width: 380px;
    height: 380px;
    top: -130px;
    right: -90px;
}

.kh-hero::after {
    width: 240px;
    height: 240px;
    bottom: -80px;
    left: -60px;
}

.kh-hero-copy {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 560px;
    padding: 1rem 0;
}

.kh-eyebrow,
.kh-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.kh-section-tag {
    background: var(--kh-sky-100);
    color: var(--kh-blue-900);
}

.kh-section-tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.kh-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    margin: 1.25rem 0 1rem;
    font-weight: 800;
    max-width: 10ch;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}

.kh-hero-text {
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 590px;
    color: rgba(255, 255, 255, 0.84);
}

.kh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.kh-hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
    max-width: 640px;
}

.kh-hero-highlights div {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.kh-hero-highlights strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.55rem;
}

.kh-hero-highlights span {
    display: block;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.kh-hero-carousel {
    position: relative;
    width: 100%;
    border-radius: var(--kh-radius-xl);
    overflow: hidden;
    box-shadow: var(--kh-shadow);
}

.kh-hero-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 34, 67, 0.05), rgba(7, 34, 67, 0.4));
}

.kh-hero-image-main img,
.kh-hero-image-accent img,
.kh-founder-panel img,
.kh-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kh-hero-carousel .carousel-item {
    position: relative;
    min-height: 520px;
    background: rgba(8, 31, 61, 0.18);
}

.kh-hero-slide-frame {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.kh-hero-slide-caption {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: 1.35rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(10, 40, 77, 0.96) 0%, rgba(9, 36, 69, 0.98) 100%);
    color: #fff;
}

.kh-hero-slide-caption h3 {
    margin: 0.55rem 0 0.45rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.kh-hero-slide-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    font-size: 0.95rem;
}

.kh-hero-slide-frame > img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    flex: 0 0 auto;
}

.kh-hero-indicators {
    z-index: 4;
    justify-content: flex-start;
    margin: 0;
    left: 1.5rem;
    right: auto;
    bottom: 8.8rem;
}

.kh-hero-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    margin: 0 0.35rem 0 0;
    background-color: rgba(255, 255, 255, 0.55);
}

.kh-hero-indicators .active {
    background-color: #fff;
}

.kh-hero-control {
    z-index: 4;
    width: 46px;
    height: 46px;
    top: 1.35rem;
    bottom: auto;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    opacity: 1;
}

.kh-hero-control.carousel-control-prev {
    left: auto;
    right: 4.8rem;
}

.kh-hero-control.carousel-control-next {
    right: 1.35rem;
}

.kh-hero-control .carousel-control-prev-icon,
.kh-hero-control .carousel-control-next-icon {
    width: 1.1rem;
    height: 1.1rem;
}

.kh-hero-visual {
    display: grid;
    gap: 1.1rem;
}

.kh-hero-support {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.kh-hero-founder-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(7, 34, 67, 0.12);
}

.kh-hero-image-accent {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: #fff;
}

.kh-hero-support-copy {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.kh-hero-support-copy strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--kh-ink);
    line-height: 1.35;
}

.kh-overlay-card {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 32px rgba(7, 34, 67, 0.16);
    max-width: 250px;
}

.kh-overlay-card strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--kh-ink);
}

.kh-overlay-label {
    color: var(--kh-blue-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    font-weight: 800;
}

.kh-overlay-card-inline {
    position: relative;
    max-width: none;
    min-height: 100%;
    justify-content: center;
}

.kh-action-strip {
    position: relative;
    z-index: 5;
    margin-top: -2rem;
    padding-bottom: 1rem;
}

.kh-action-card,
.kh-action-card-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--kh-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 32px rgba(10, 61, 122, 0.08);
    color: var(--kh-ink);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.kh-action-card-button {
    text-align: left;
    border: 1px solid var(--kh-border);
}

.kh-action-card:hover,
.kh-action-card-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(10, 61, 122, 0.12);
    border-color: rgba(29, 107, 194, 0.24);
    color: var(--kh-ink);
}

.kh-action-card i,
.kh-action-card-button i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--kh-blue-800), var(--kh-blue-700));
}

.kh-action-card h3,
.kh-action-card-button h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 800;
}

.kh-action-card p,
.kh-action-card-button p {
    margin: 0;
    color: var(--kh-muted);
    font-size: 0.92rem;
}

.kh-section {
    padding: 5.5rem 0;
}

.kh-section-alt {
    background: rgba(255, 255, 255, 0.56);
}

.kh-section-title {
    margin: 1rem 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--kh-blue-900);
}

.kh-section-text {
    color: var(--kh-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.kh-founder-text {
    text-align: justify;
}

.kh-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kh-inline-link {
    color: var(--kh-blue-800);
    font-weight: 800;
}

.kh-info-card,
.kh-specialty-card,
.kh-doctor-card,
.kh-founder-panel,
.kh-metric-card,
.kh-footer-cta,
.kh-modal {
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 36px rgba(10, 61, 122, 0.07);
}

.kh-info-card {
    padding: 1.5rem;
    height: 100%;
}

.kh-info-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.kh-info-card p {
    margin: 0;
    color: var(--kh-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.kh-specialty-card {
    height: 100%;
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kh-specialty-card:hover,
.kh-doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(10, 61, 122, 0.12);
}

.kh-specialty-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--kh-blue-800), #5b9de6);
    margin-bottom: 1rem;
}

.kh-specialty-card h3,
.kh-doctor-copy h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.kh-specialty-card p,
.kh-doctor-copy p,
.kh-footer-brand p {
    color: var(--kh-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.kh-specialty-card a {
    color: var(--kh-blue-800);
    font-weight: 800;
}

.kh-founder-panel {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.4rem;
    padding: 1.2rem;
    align-items: center;
}

.kh-founder-panel img {
    border-radius: 22px;
    aspect-ratio: 1 / 1;
}

.kh-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.kh-metric-card {
    padding: 1.6rem;
}

.kh-metric-card strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    color: var(--kh-blue-900);
}

.kh-metric-card span {
    color: var(--kh-muted);
    line-height: 1.7;
}

.kh-doctor-card {
    overflow: hidden;
    height: 100%;
}

.kh-doctor-photo {
    aspect-ratio: 4 / 4.2;
    background: linear-gradient(180deg, var(--kh-sky-100), #fff);
}

.kh-doctor-copy {
    padding: 1.4rem;
}

.kh-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 32px;
    background: linear-gradient(135deg, #0d3f78 0%, #1e6ec4 55%, #72b7f1 100%);
    color: #fff;
    box-shadow: var(--kh-shadow);
}

.kh-cta-banner h2 {
    margin: 0.9rem 0 0.75rem;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
}

.kh-cta-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
}

.kh-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.kh-footer {
    margin-top: 2rem;
    padding-top: 4rem;
    color: #fff;
    background: linear-gradient(180deg, #072a52 0%, #0d437f 100%);
}

.kh-footer h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.kh-footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.kh-footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.kh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.kh-footer-links a,
.kh-footer-contact li {
    color: rgba(255, 255, 255, 0.76);
}

.kh-footer-contact i {
    color: var(--kh-gold);
    width: 18px;
}

.kh-footer-cta {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.kh-footer-cta span {
    display: block;
    color: #9ed0ff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kh-footer-cta strong {
    display: block;
    font-size: 1.25rem;
    margin: 0.55rem 0 1rem;
}

.kh-footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.15rem 0;
}

.kh-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.kh-modal {
    padding: 0.5rem;
}

.kh-modal .modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--kh-blue-900);
}

.page-header {
    position: relative;
    overflow: hidden;
    padding: 1.9rem 0 1.55rem;
    background: linear-gradient(135deg, #0d3f78 0%, #1e6ec4 55%, #76b9f0 100%);
    color: #fff;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.page-header::before {
    width: 180px;
    height: 180px;
    top: -80px;
    right: -40px;
}

.page-header::after {
    width: 110px;
    height: 110px;
    bottom: -45px;
    left: 5%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1,
.page-header h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
}

.page-header p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.98rem, 1.5vw, 1.2rem);
    line-height: 1.45;
}

.kh-page-section {
    padding: 3.5rem 0;
}

.kh-page-shell {
    background: rgba(255, 255, 255, 0.7);
}

.kh-card,
.kh-soft-panel {
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(10, 61, 122, 0.08);
}

.kh-card {
    padding: 1.75rem;
}

.kh-soft-panel {
    padding: 2rem;
}

.kh-split-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
}

.kh-highlight-box {
    border-radius: var(--kh-radius-md);
    padding: 1.5rem;
    height: 100%;
}

.kh-highlight-box h3,
.kh-card h3,
.kh-card h4,
.kh-soft-panel h3,
.kh-soft-panel h4 {
    font-weight: 800;
}

.kh-highlight-box p,
.kh-card p,
.kh-soft-panel p,
.kh-card li {
    color: var(--kh-muted);
    line-height: 1.75;
}

.kh-highlight-primary {
    background: linear-gradient(135deg, #0d3f78, #1e6ec4);
    color: #fff;
}

.kh-highlight-primary p {
    color: rgba(255, 255, 255, 0.82);
}

.kh-highlight-outline {
    border: 1px solid rgba(29, 107, 194, 0.18);
    background: #fff;
}

.kh-grid-cards {
    display: grid;
    gap: 1.25rem;
}

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

.kh-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: var(--kh-sky-100);
    color: var(--kh-blue-800);
}

.kh-doctor-list-card,
.kh-service-tile,
.kh-event-card,
.kh-contact-card,
.kh-appointment-card {
    height: 100%;
}

.kh-doctor-list-card,
.kh-service-tile,
.kh-event-card {
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(10, 61, 122, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kh-doctor-list-card:hover,
.kh-service-tile:hover,
.kh-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 42px rgba(10, 61, 122, 0.12);
}

.kh-service-tile,
.kh-event-card {
    padding: 1.5rem;
}

.kh-service-tile .kh-icon-badge,
.kh-event-card .kh-icon-badge {
    margin-bottom: 1rem;
}

.kh-service-tile h3,
.kh-event-card h3,
.kh-doctor-list-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.kh-service-tile p,
.kh-event-card p,
.kh-doctor-list-card p {
    color: var(--kh-muted);
    margin-bottom: 0;
}

.kh-doctor-list-card {
    overflow: hidden;
}

.kh-doctor-list-image {
    height: 300px;
    background: linear-gradient(180deg, var(--kh-sky-100), #fff);
}

.kh-doctor-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.kh-doctor-list-copy {
    padding: 1.35rem;
    text-align: center;
}

.kh-department-card {
    position: relative;
    overflow: visible;
    border-radius: 20px;
    padding: 1.6rem 1.2rem;
    background: linear-gradient(135deg, #0d3f78 0%, #1f6ec2 100%);
    color: #fff;
    min-height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kh-department-card::before {
    content: '';
    position: absolute;
    inset: auto -20px -35px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.kh-department-card h3 {
    position: relative;
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0.8rem 0 0.9rem;
}

.kh-department-card ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.kh-department-card li {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
}

.kh-department-card li:hover {
    z-index: 12;
}

.kh-department-doctor-list {
    gap: 0.7rem;
}

.kh-department-doctor-with-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.kh-department-doctor-with-card:hover {
    color: #fff;
}

.kh-department-doctor-with-card img {
    position: absolute;
    left: 0;
    bottom: calc(100% + 0.7rem);
    z-index: 8;
    display: block;
    width: min(320px, 86vw);
    height: auto;
    max-width: none;
    max-height: 78vh;
    object-fit: scale-down;
    object-position: top;
    padding: 0;
    border-radius: 12px;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 22px 48px rgba(4, 24, 48, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.kh-department-card li:hover .kh-department-doctor-with-card img,
.kh-department-doctor-with-card.is-preview-visible img,
.kh-department-doctor-with-card:hover img,
.kh-department-doctor-with-card:focus-within img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.kh-card-viewer {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 1.5rem;
    background: rgba(4, 24, 48, 0.78);
}

.kh-card-viewer.is-open {
    display: flex;
}

.kh-card-viewer-panel {
    position: relative;
    width: min(720px, 94vw);
    max-height: 88vh;
}

.kh-card-viewer-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--kh-blue-900);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(4, 24, 48, 0.28);
}

.kh-card-viewer-title {
    position: absolute;
    left: 0;
    top: -2.65rem;
    max-width: calc(100% - 58px);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.kh-card-viewer img {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 28px 68px rgba(4, 24, 48, 0.44);
}

.kh-contact-map {
    overflow: hidden;
    padding: 0;
}

.kh-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.kh-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.kh-meta-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--kh-muted);
}

.kh-meta-list i {
    color: var(--kh-blue-800);
}

.kh-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(219, 43, 57, 0.1);
    color: var(--kh-red);
}

.kh-appointment-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(7, 42, 82, 0.95), rgba(29, 107, 194, 0.92)), url('hospital-bg.jpg') center/cover;
}

.kh-appointment-panel {
    padding: 2rem;
}

.kh-appointment-phone-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.kh-appointment-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(29, 107, 194, 0.16);
    background: var(--kh-sky-100);
    color: var(--kh-blue-900);
    font-weight: 800;
}

.kh-appointment-phone:hover {
    color: var(--kh-blue-900);
}

.kh-call-tile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--kh-border);
    background: var(--kh-sky-100);
    color: var(--kh-blue-900);
    font-weight: 800;
}

.kh-call-tile i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kh-blue-800), var(--kh-blue-700));
    color: #fff;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid var(--kh-border) !important;
    box-shadow: 0 12px 28px rgba(10, 61, 122, 0.07) !important;
    border-radius: 1.2rem !important;
    padding: 2rem;
    height: 100%;
}

.hospital-name {
    color: var(--kh-red) !important;
}

.nav-link-footer {
    color: var(--kh-muted);
}

.nav-link-footer:hover {
    color: var(--kh-blue-800);
}

.kns-site {
    --kns-navy: #14213d;
    --kns-navy-2: #22345d;
    --kns-amber: #d99a22;
    --kns-mint: #2fa39a;
    --kns-paper: #fbf7ed;
    --kns-cream: #fffdf7;
    --kns-ink: #18233a;
    --kns-muted: #697183;
    --kns-line: rgba(20, 33, 61, 0.14);
    --kns-shadow: 0 20px 45px rgba(20, 33, 61, 0.1);
    background:
        linear-gradient(rgba(20, 33, 61, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 33, 61, 0.035) 1px, transparent 1px),
        var(--kns-paper);
    background-size: 28px 28px;
    color: var(--kns-ink);
}

.kns-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(20, 33, 61, 0.98);
    border-bottom: 4px solid var(--kns-amber);
    backdrop-filter: blur(14px);
}

.kns-navbar {
    padding: 0.8rem 0;
}

.kns-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
}

.kns-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    padding: 0.35rem;
    border-radius: 8px;
    background: #fff;
}

.kns-brand strong,
.kns-brand small {
    display: block;
}

.kns-brand strong {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.2;
}

.kns-brand small {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.kns-navbar .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.kns-navbar .nav-link:hover,
.kns-navbar .nav-link:focus {
    color: #fff;
}

.kns-menu-toggle {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.9);
}

.kns-btn-primary,
.kns-btn-light,
.kns-btn-outline,
.kns-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 8px;
    min-height: 46px;
    padding-inline: 1.05rem;
    font-weight: 800;
}

.kns-btn-primary {
    background: var(--kns-amber);
    color: #1f1606;
    border: 0;
    box-shadow: 0 14px 26px rgba(217, 154, 34, 0.22);
}

.kns-btn-primary:hover {
    color: #1f1606;
    background: #e5aa3a;
}

.kns-btn-light {
    background: #fff;
    color: var(--kns-navy);
    border: 1px solid var(--kns-line);
}

.kns-btn-light:hover {
    color: var(--kns-navy);
}

.kns-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.kns-btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

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

.kns-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(0.8rem, 1.6vw, 1.5rem) 0;
    color: var(--kns-ink);
    background:
        linear-gradient(90deg, rgba(251, 247, 237, 0.96) 0%, rgba(251, 247, 237, 0.94) 54%, rgba(20, 33, 61, 0.12) 54%, rgba(20, 33, 61, 0.12) 100%);
}

.kns-hero-media {
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
    bottom: 0.8rem;
    width: min(43vw, 640px);
    z-index: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 8px solid #fff;
    box-shadow: var(--kns-shadow);
}

.kns-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 33, 61, 0.08), rgba(20, 33, 61, 0.38));
}

.kns-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: saturate(0.92) contrast(1.05);
}

.kns-hero .container {
    position: relative;
    z-index: 1;
}

.kns-hero .row {
    align-items: flex-start !important;
}

.kns-hero-copy {
    max-width: 720px;
    padding-left: 1.35rem;
    border-left: 6px solid var(--kns-amber);
}

.kns-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    background: rgba(217, 154, 34, 0.16);
    color: #8a5a05;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kns-hero .kns-tag,
.kns-contact .kns-tag {
    background: rgba(217, 154, 34, 0.18);
    color: #7a4c00;
}

.kns-hero p,
.kns-contact p {
    color: var(--kns-muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.kns-hero-copy > p {
    margin: 1rem 0 0;
    max-width: 660px;
}

.kns-hero-actions,
.kns-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.kns-hero-panel,
.kns-card,
.kns-admission-card,
.kns-steps > div {
    border: 1px solid var(--kns-line);
    border-radius: 10px;
    background: rgba(255, 253, 247, 0.96);
    box-shadow: var(--kns-shadow);
}

.kns-hero-panel {
    position: relative;
    margin-top: 0;
    padding: 1.65rem;
    color: #fff;
    background: var(--kns-navy);
    border-color: rgba(255, 255, 255, 0.2);
    border-top: 7px solid var(--kns-amber);
}

.kns-panel-label {
    display: block;
    margin-bottom: 1rem;
    color: var(--kns-amber);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.kns-panel-icon,
.kns-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--kns-navy);
    background: var(--kns-amber);
    font-size: 1.12rem;
}

.kns-hero-panel h2,
.kns-section-head h2,
.kns-title,
.kns-admission-card h2,
.kns-contact h2 {
    font-weight: 800;
    line-height: 1.12;
}

.kns-hero-panel h2 {
    margin: 1rem 0 0.7rem;
    font-size: 1.6rem;
    color: #fff;
}

.kns-hero-panel p,
.kns-card p,
.kns-text,
.kns-admission-card p,
.kns-steps p {
    color: var(--kns-muted);
    line-height: 1.75;
}

.kns-hero-panel p,
.kns-hero-panel .kns-stats span {
    color: rgba(255, 255, 255, 0.74);
}

.kns-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.3rem;
}

.kns-stats div {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
}

.kns-stats strong,
.kns-stats span {
    display: block;
}

.kns-stats strong {
    color: var(--kns-amber);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
}

.kns-stats span {
    font-size: 0.82rem;
}

.kns-section {
    padding: 5.25rem 0;
}

.kns-section-alt {
    background: rgba(255, 253, 247, 0.72);
    border-block: 1px solid rgba(20, 33, 61, 0.08);
}

.kns-section-head {
    max-width: 920px;
    margin-bottom: 2rem;
    padding-left: 1.1rem;
    border-left: 4px solid var(--kns-mint);
}

.kns-section-head h2,
.kns-title,
.kns-admission-card h2,
.kns-contact h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
    color: var(--kns-navy);
}

.kns-section-head p {
    color: var(--kns-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.kns-card {
    height: 100%;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    border-left: 6px solid var(--kns-amber);
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kns-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kns-shadow);
}

.kns-card h3 {
    margin: 0.85rem 0 0.55rem;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--kns-navy);
}

.kns-course-panel,
.kns-course-details,
.kns-facility-grid span {
    border: 1px solid var(--kns-line);
    background: rgba(255, 253, 247, 0.97);
    box-shadow: var(--kns-shadow);
}

.kns-course-panel {
    height: 100%;
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--kns-navy), var(--kns-navy-2));
    border: 0;
}

.kns-course-panel h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.kns-course-panel p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.kns-course-panel .kns-tag {
    background: rgba(217, 154, 34, 0.16);
    color: #ffd783;
}

.kns-course-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: var(--kns-line);
}

.kns-course-details div {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: var(--kns-cream);
}

.kns-course-details span,
.kns-course-details strong {
    display: block;
}

.kns-course-details span {
    margin-bottom: 0.45rem;
    color: var(--kns-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.kns-course-details strong {
    color: var(--kns-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.3;
}

.kns-image-frame {
    overflow: hidden;
    border-radius: 10px;
    border: 8px solid #fff;
    box-shadow: var(--kns-shadow);
}

.kns-image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.kns-feature-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.kns-feature-list div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--kns-ink);
    font-weight: 800;
}

.kns-feature-list i {
    color: var(--kns-mint);
}

.kns-facility-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.kns-facility-grid span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 68px;
    padding: 1rem 1.1rem;
    border-radius: 8px;
    color: var(--kns-ink);
    font-weight: 800;
    border-left: 4px solid var(--kns-mint);
}

.kns-facility-grid i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 7px;
    color: #fff;
    background: var(--kns-navy);
}

.kns-admission-card {
    height: 100%;
    padding: 2rem;
    background: var(--kns-cream);
    border-top: 7px solid var(--kns-amber);
}

.kns-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    height: 100%;
}

.kns-steps > div {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 1rem;
    padding: 1.3rem 1.5rem;
    border-radius: 0;
    box-shadow: none;
}

.kns-steps > div:first-child {
    border-radius: 10px 10px 0 0;
}

.kns-steps > div:last-child {
    border-radius: 0 0 10px 10px;
}

.kns-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--kns-navy);
    color: var(--kns-amber);
    font-weight: 800;
    grid-row: span 2;
}

.kns-steps h3 {
    margin: 0 0 0.35rem;
    font-weight: 800;
    color: var(--kns-navy);
}

.kns-contact {
    padding: 4rem 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(20, 33, 61, 0.97), rgba(34, 52, 93, 0.95)),
        url('hospital-bg.jpg') center/cover;
}

.kns-contact p {
    color: rgba(255, 255, 255, 0.78);
}

.kns-contact h2 {
    color: #fff;
}

.kns-contact .kns-tag {
    background: rgba(217, 154, 34, 0.22);
    color: #ffd98f;
}

.kns-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.kns-footer {
    padding: 1.2rem 0;
    background: #10182d;
    color: rgba(255, 255, 255, 0.74);
}

.kns-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.kns-footer a {
    color: #fff;
    font-weight: 800;
}

/* KNS college-style redesign */
.kns-site {
    --kns-navy: #172554;
    --kns-navy-2: #243b73;
    --kns-amber: #c98212;
    --kns-mint: #1f8a70;
    --kns-paper: #f4f1e8;
    --kns-cream: #fffdf8;
    --kns-ink: #172033;
    --kns-muted: #687284;
    --kns-line: rgba(23, 37, 84, 0.14);
    --kns-shadow: 0 18px 36px rgba(23, 37, 84, 0.11);
    background: var(--kns-paper);
}

.kns-header {
    background: #fffdf8;
    border-bottom: 1px solid var(--kns-line);
    box-shadow: 0 10px 28px rgba(23, 37, 84, 0.08);
}

.kns-navbar {
    padding: 0.55rem 0;
}

.kns-brand {
    color: var(--kns-navy);
}

.kns-brand img {
    width: 52px;
    height: 52px;
    border: 1px solid var(--kns-line);
}

.kns-brand strong {
    font-size: clamp(0.92rem, 1.55vw, 1.05rem);
    white-space: nowrap;
}

.kns-brand small {
    color: var(--kns-amber);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kns-navbar .nav-link {
    color: var(--kns-navy);
    font-size: 0.9rem;
}

.kns-navbar .nav-link:hover,
.kns-navbar .nav-link:focus {
    color: var(--kns-amber);
}

.kns-btn-outline {
    color: var(--kns-navy);
    border-color: var(--kns-line);
}

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

.kns-hero {
    padding: 0 0 2.75rem;
    background:
        linear-gradient(180deg, rgba(23, 37, 84, 0.05), transparent 42%),
        var(--kns-paper);
}

.kns-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 265px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.kns-hero-media::after {
    background:
        linear-gradient(90deg, rgba(23, 37, 84, 0.78), rgba(23, 37, 84, 0.22)),
        linear-gradient(180deg, transparent 62%, rgba(244, 241, 232, 0.96));
}

.kns-hero .container {
    margin-top: -5.25rem;
}

.kns-hero .row {
    align-items: stretch !important;
}

.kns-hero-copy,
.kns-hero-panel {
    height: 100%;
    border-radius: 6px;
    background: var(--kns-cream);
    border: 1px solid var(--kns-line);
    box-shadow: var(--kns-shadow);
}

.kns-hero-copy {
    max-width: none;
    padding: 1.65rem 1.75rem;
    border-left: 8px solid var(--kns-amber);
}

.kns-hero-copy > p {
    max-width: none;
    margin: 1rem 0 0;
    color: var(--kns-ink);
    font-size: 1rem;
    line-height: 1.75;
}

.kns-tag {
    border-radius: 4px;
    background: rgba(201, 130, 18, 0.13);
    color: #8a5200;
}

.kns-hero .kns-tag {
    background: rgba(201, 130, 18, 0.14);
    color: #8a5200;
}

.kns-hero-actions {
    margin-top: 1.25rem;
}

.kns-hero-panel {
    padding: 1.5rem;
    color: var(--kns-ink);
    background: #fff;
    border-top: 8px solid var(--kns-navy);
}

.kns-panel-label {
    color: var(--kns-amber);
}

.kns-panel-icon {
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--kns-navy);
}

.kns-hero-panel h2 {
    color: var(--kns-navy);
    font-size: 1.38rem;
}

.kns-hero-panel p,
.kns-hero-panel .kns-stats span {
    color: var(--kns-muted);
}

.kns-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.kns-stats div {
    display: block;
    padding: 0.8rem;
    border: 1px solid var(--kns-line);
    border-radius: 6px;
    background: #f8f5ec;
}

.kns-stats strong {
    color: var(--kns-navy);
    font-size: 1.3rem;
}

.kns-section {
    padding: 4rem 0;
}

.kns-section-alt {
    background: #fffaf0;
}

.kns-section-head {
    max-width: 980px;
    padding: 0;
    border-left: 0;
}

.kns-section-head h2,
.kns-title,
.kns-admission-card h2,
.kns-contact h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.kns-card,
.kns-course-panel,
.kns-course-details,
.kns-admission-card,
.kns-steps > div,
.kns-facility-grid span {
    border-radius: 6px;
}

.kns-card {
    padding: 1.25rem;
    border-left: 0;
    border-top: 5px solid var(--kns-amber);
    background: #fff;
}

.kns-card i {
    color: #fff;
    background: var(--kns-navy);
}

.kns-course-panel {
    background: #fff;
    color: var(--kns-ink);
    border: 1px solid var(--kns-line);
    border-top: 7px solid var(--kns-amber);
}

.kns-course-panel h2 {
    color: var(--kns-navy);
}

.kns-course-panel p {
    color: var(--kns-muted);
}

.kns-course-panel .kns-tag {
    color: #8a5200;
}

.kns-course-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kns-course-details div {
    display: block;
    min-height: 118px;
}

.kns-image-frame {
    border-radius: 6px;
    border: 0;
}

.kns-facility-grid span {
    background: #fff;
    border-left: 0;
    border-top: 4px solid var(--kns-mint);
}

.kns-admission-card {
    background: #fff;
    border-top-color: var(--kns-navy);
}

.kns-steps {
    gap: 0.75rem;
}

.kns-steps > div {
    border-top: 4px solid var(--kns-amber);
}

.kns-steps > div:first-child,
.kns-steps > div:last-child {
    border-radius: 6px;
}

.kns-contact {
    background:
        linear-gradient(135deg, rgba(23, 37, 84, 0.95), rgba(36, 59, 115, 0.94)),
        url('hospital-bg.jpg') center/cover;
}

.kns-footer {
    background: #101a3a;
}

.kci-site {
    --kci-rose: #b91c3b;
    --kci-rose-dark: #7f102b;
    --kci-plum: #4c1d55;
    --kci-gold: #f6c85f;
    --kci-blush: #fff5f7;
    --kci-ink: #2f1d2d;
    --kci-muted: #746273;
    --kci-line: rgba(185, 28, 59, 0.16);
    background: linear-gradient(180deg, #fff8fa 0%, #f8f2fb 100%);
    color: var(--kci-ink);
}

.kci-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--kci-line);
    backdrop-filter: blur(14px);
}

.kci-navbar {
    padding: 0.7rem 0;
}

.kci-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--kci-rose-dark);
}

.kci-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.kci-brand strong,
.kci-brand small {
    display: block;
}

.kci-brand strong {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.2;
}

.kci-brand small {
    color: var(--kci-muted);
    font-weight: 700;
}

.kci-navbar .nav-link {
    color: var(--kci-ink);
    font-weight: 800;
}

.kci-navbar .nav-link:hover,
.kci-navbar .nav-link:focus {
    color: var(--kci-rose);
}

.kci-menu-toggle {
    border-color: var(--kci-line);
}

.kci-btn-primary,
.kci-btn-light,
.kci-btn-outline,
.kci-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
}

.kci-btn-primary {
    background: linear-gradient(135deg, var(--kci-rose), #e34f69);
    color: #fff;
    border: 0;
    box-shadow: 0 16px 32px rgba(185, 28, 59, 0.2);
}

.kci-btn-primary:hover {
    color: #fff;
}

.kci-btn-light {
    background: #fff;
    color: var(--kci-rose-dark);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.kci-btn-light:hover {
    color: var(--kci-rose-dark);
}

.kci-btn-outline {
    background: transparent;
    color: var(--kci-rose-dark);
    border: 1px solid var(--kci-line);
}

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

.kci-btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.kci-btn-outline-light:hover {
    color: var(--kci-rose-dark);
    background: #fff;
}

.kci-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0 4.5rem;
    color: #fff;
    background: linear-gradient(135deg, #40102d 0%, #95193a 55%, #dc4963 100%);
}

.kci-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kci-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(52, 13, 37, 0.92), rgba(127, 16, 43, 0.78));
}

.kci-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: saturate(0.95) contrast(1.04);
}

.kci-hero .container {
    position: relative;
    z-index: 1;
}

.kci-hero-copy {
    max-width: 720px;
}

.kci-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(185, 28, 59, 0.11);
    color: var(--kci-rose-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.kci-hero .kci-tag,
.kci-contact .kci-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.kci-hero h1 {
    margin: 1.2rem 0 1rem;
    font-size: clamp(2.55rem, 5.6vw, 5.25rem);
    line-height: 1;
    font-weight: 800;
    max-width: 760px;
}

.kci-hero p,
.kci-contact p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.8;
}

.kci-hero-actions,
.kci-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.kci-hero-panel,
.kci-card,
.kci-service-panel,
.kci-service-grid,
.kci-facility-grid span {
    border: 1px solid var(--kci-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 45px rgba(86, 22, 57, 0.1);
}

.kci-hero-panel {
    padding: 2rem;
    color: var(--kci-ink);
}

.kci-panel-icon,
.kci-card i,
.kci-service-grid i,
.kci-facility-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--kci-rose), #e34f69);
}

.kci-panel-icon,
.kci-card i {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1.35rem;
}

.kci-hero-panel h2,
.kci-section-head h2,
.kci-title,
.kci-service-panel h2,
.kci-contact h2 {
    font-weight: 800;
    line-height: 1.12;
}

.kci-hero-panel h2 {
    margin: 1rem 0 0.7rem;
    font-size: 1.65rem;
}

.kci-hero-panel p,
.kci-card p,
.kci-text,
.kci-service-panel p,
.kci-service-grid span {
    color: var(--kci-muted);
    line-height: 1.75;
}

.kci-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.3rem;
}

.kci-stats div {
    padding: 0.9rem;
    border-radius: 16px;
    background: var(--kci-blush);
}

.kci-stats strong,
.kci-stats span {
    display: block;
}

.kci-stats strong {
    color: var(--kci-rose-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kci-stats span {
    color: var(--kci-muted);
    font-size: 0.82rem;
}

.kci-section {
    padding: 5rem 0;
}

.kci-section-alt {
    background: rgba(255, 255, 255, 0.72);
}

.kci-section-head {
    max-width: 830px;
    margin-bottom: 2rem;
}

.kci-section-head h2,
.kci-title,
.kci-service-panel h2,
.kci-contact h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.kci-section-head p {
    color: var(--kci-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.kci-card {
    height: 100%;
    padding: 1.55rem;
}

.kci-card h3 {
    margin: 1rem 0 0.65rem;
    font-size: 1.12rem;
    font-weight: 800;
}

.kci-service-panel {
    height: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, #fff 0%, #fff5f7 100%);
}

.kci-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    height: 100%;
    overflow: hidden;
    background: var(--kci-line);
}

.kci-service-grid div {
    min-height: 150px;
    padding: 1.3rem;
    background: #fff;
}

.kci-service-grid i {
    width: 42px;
    height: 42px;
    margin-bottom: 0.8rem;
    border-radius: 14px;
}

.kci-service-grid strong,
.kci-service-grid span {
    display: block;
}

.kci-service-grid strong {
    color: var(--kci-rose-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.06rem;
    line-height: 1.3;
}

.kci-service-grid span {
    margin-top: 0.45rem;
}

.kci-image-frame {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--kci-line);
    box-shadow: 0 22px 50px rgba(86, 22, 57, 0.12);
}

.kci-image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.kci-journey-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.kci-journey-list div {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--kci-line);
}

.kci-journey-list span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--kci-rose);
    color: #fff;
    font-weight: 800;
}

.kci-journey-list strong {
    color: var(--kci-ink);
}

.kci-facility-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.kci-facility-grid span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 72px;
    padding: 1rem 1.1rem;
    color: var(--kci-ink);
    font-weight: 800;
}

.kci-facility-grid i {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 13px;
}

.kci-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.kci-gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid var(--kci-line);
    box-shadow: 0 18px 38px rgba(86, 22, 57, 0.1);
    background: #fff;
}

.kci-contact {
    padding: 4rem 0;
    color: #fff;
    background: linear-gradient(135deg, #3b0d29 0%, #95193a 100%);
}

.kci-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.kci-footer {
    padding: 1.2rem 0;
    background: #2a071c;
    color: rgba(255, 255, 255, 0.74);
}

.kci-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.kci-footer a {
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .kh-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--kh-border);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
    }

    .kh-btn-switch,
    .kh-nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .kns-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--kns-line);
        border-radius: 10px;
        background: #fff;
    }

    .kns-navbar .navbar-collapse .nav-link {
        color: var(--kns-navy);
    }

    .kns-navbar .navbar-collapse .kns-btn-outline {
        color: var(--kns-navy);
        border-color: var(--kns-line);
    }

    .kci-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--kci-line);
        border-radius: 20px;
        background: #fff;
    }
}

@media (max-width: 991.98px) {
    .kh-hero {
        padding-top: 1.25rem;
    }

    .kh-hero-visual {
        min-height: 460px;
    }

    .kh-founder-panel {
        grid-template-columns: 1fr;
    }

    .kh-hero-support {
        grid-template-columns: 1fr;
    }

    .kh-split-card {
        grid-template-columns: 1fr;
    }

    .kh-cta-banner,
    .kh-footer-bottom-inner,
    .kh-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .kns-contact-inner,
    .kns-footer .container,
    .kci-contact-inner,
    .kci-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .kns-steps {
        grid-template-columns: 1fr;
    }

    .kns-hero {
        background: var(--kns-paper);
    }

    .kns-hero-media {
        position: relative;
        inset: auto;
        width: 100%;
        height: 240px;
        margin-bottom: 1.25rem;
    }

    .kns-hero-panel {
        margin-top: 1rem;
    }

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

    .kci-service-grid,
    .kci-facility-grid,
    .kci-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .kh-hero h1 {
        max-width: none;
    }

    .kh-hero-highlights,
    .kh-metric-grid {
        grid-template-columns: 1fr;
    }

    .kh-hero-visual {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .kh-hero-carousel,
    .kh-hero-image-accent {
        position: static;
    }

    .kh-hero-carousel {
        inset: auto;
    }

    .kh-hero-carousel .carousel-item {
        min-height: 320px;
    }

    .kh-hero-slide-caption {
        padding: 1.1rem 1rem 1.2rem;
    }

    .kh-hero-indicators {
        left: 1rem;
        bottom: 7.8rem;
    }

    .kh-hero-slide-frame > img {
        height: 250px;
    }

    .kh-hero-control.carousel-control-prev {
        right: 4.1rem;
    }

    .kh-hero-control.carousel-control-next {
        right: 1rem;
    }

    .kh-hero-founder-card {
        grid-template-columns: 72px 1fr;
    }

    .kh-hero-image-accent {
        width: 72px;
        height: 72px;
    }

    .kh-overlay-card-inline {
        max-width: none;
    }

    .kh-section {
        padding: 4rem 0;
    }

    .kh-page-section {
        padding: 2.75rem 0;
    }

    .page-header {
        padding: 1.45rem 0 1.2rem;
    }

    .page-header::before {
        width: 120px;
        height: 120px;
        top: -55px;
    }

    .page-header::after {
        width: 80px;
        height: 80px;
        bottom: -30px;
    }

    .kh-cta-banner {
        padding: 1.75rem;
        border-radius: 26px;
    }

    .kh-grid-cards.kh-grid-2,
    .kh-appointment-phone-grid {
        grid-template-columns: 1fr;
    }

    .kh-doctor-list-image {
        height: 260px;
    }

    .kns-brand img {
        width: 48px;
        height: 48px;
    }

    .kns-hero,
    .kns-section,
    .kns-contact {
        padding: 2.5rem 0;
    }

    .kns-hero {
        padding: 1.75rem 0 2.25rem;
    }

    .kns-hero-copy {
        padding-left: 1rem;
    }

    .kns-stats {
        grid-template-columns: 1fr;
    }

    .kns-course-details,
    .kns-facility-grid {
        grid-template-columns: 1fr;
    }

    .kns-course-details div,
    .kns-steps > div {
        grid-template-columns: 1fr;
    }

    .kns-steps span {
        grid-row: auto;
    }

    .kns-contact-actions,
    .kns-contact-actions .btn,
    .kns-hero-actions,
    .kns-hero-actions .btn {
        width: 100%;
    }

    .kci-brand img {
        width: 48px;
        height: 48px;
    }

    .kci-hero,
    .kci-section,
    .kci-contact {
        padding: 3.25rem 0;
    }

    .kci-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.35rem);
    }

    .kci-stats,
    .kci-service-grid,
    .kci-facility-grid,
    .kci-gallery-grid {
        grid-template-columns: 1fr;
    }

    .kci-contact-actions,
    .kci-contact-actions .btn,
    .kci-hero-actions,
    .kci-hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .kns-hero {
        padding: 0 0 2rem;
    }

    .kns-hero-media {
        height: 220px;
        margin-bottom: 0;
    }

    .kns-hero .container {
        margin-top: -3.5rem;
    }

    .kns-hero-panel {
        margin-top: 0;
    }

    .kns-course-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .kns-brand {
        min-width: 0;
    }

    .kns-brand strong {
        white-space: normal;
        font-size: 0.88rem;
    }

    .kns-brand small {
        font-size: 0.68rem;
    }

    .kns-hero {
        padding: 0 0 1.5rem;
    }

    .kns-hero-media {
        height: 180px;
    }

    .kns-hero .container {
        margin-top: -2.5rem;
    }

    .kns-hero-copy,
    .kns-hero-panel {
        padding: 1.15rem;
    }

    .kns-hero-copy {
        border-left-width: 5px;
    }

    .kns-stats {
        grid-template-columns: 1fr;
    }

    .kns-section {
        padding: 2.75rem 0;
    }
}
