/* ============ DESIGN TOKENS ============ */
:root {
    --brand: #09243c;
    --brand-dark: #061a2e;
    --accent: #b72007;
    --accent-dark: #a8881c;
    --ink: #09243c;
    --ink-soft: #1c3550;
    --paper: #FAF7F3;
    --paper-alt: #F0F4F8;
    --paper-deep: #EDF2F7;
    --cream: #F3ECE5;
    --muted: #5d6b74;
    --line: rgba(9, 36, 60, 0.10);

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --container: 81.25rem;
    /* 1300px */
    --container-narrow: 62rem;
    --gutter: clamp(1.25rem, 3.5vw, 2.75rem);
    --section-y: clamp(5rem, 9vw, 8.5rem);

    --ease-out: cubic-bezier(.22, .61, .36, 1);
    --dur: 350ms;

    --font-serif: 'DM Serif Display', Merriweather, Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-accent: 'Merriweather', Georgia, serif;
}

/* ============ BASE ============ */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--ink);
    line-height: 1.08;
    margin: 0;
    font-weight: 400;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    background: var(--accent);
    color: var(--ink);
}

/* ============ CONTAINERS / LAYOUT ============ */
.container-x {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--section-y);
}

/* ============ TYPOGRAPHY SYSTEM ============ */
.display {
    font-size: clamp(3rem, 6vw, 5.25rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.h2 {
    font-size: clamp(2.25rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    line-height: 1.1;
}

.h4 {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}

.lead {
    font-size: clamp(1.08rem, 1.4vw, 1.22rem);
    color: var(--muted);
    line-height: 1.7;
}

.small {
    font-size: 0.9rem;
    color: var(--muted);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
}

.kicker::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: currentColor;
    opacity: .6;
}

.section-head {
    max-width: 46rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head.center .kicker {
    justify-content: center;
}

.section-head p {
    margin-top: 1.1rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-body);
    padding: .98rem 1.75rem;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--dur) var(--ease-out);
    white-space: nowrap;

}

.btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.btn svg {
    transition: transform var(--dur) var(--ease-out);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -12px rgba(201, 162, 39, .6);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-inverse {
    background: #fff;
    color: var(--ink);
}

.btn-inverse:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .4);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-outline-light:hover {
    border-color: #fff;
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--accent);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--accent-dark);
}

/* ============ CARDS ============ */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
    padding: 20px;
}

.card.hoverable:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -24px rgba(16, 31, 43, .22);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: rgba(201, 162, 39, .10);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    transition: transform var(--dur) var(--ease-out), background var(--dur);
}

.card:hover .feature-icon {
    transform: translateY(-3px) scale(1.04);
    background: rgba(201, 162, 39, .18);
}

/* ============ ANIMATION HELPERS (JS-driven, but safe fallback) ============ */
[data-reveal],
[data-reveal-item],
[data-heading-reveal],
[data-img] {
    will-change: transform, opacity;
}

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
}

.site-header .bar {
    background: var(--paper);
    transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), min-height var(--dur) var(--ease-out);
}

.site-header.is-scrolled .bar {
    background: rgba(250, 247, 243, .88);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(16, 31, 43, .28);
}

.nav-link {
    position: relative;
    font-weight: 600;
    font-size: .93rem;
    color: var(--ink-soft);
    padding: .3rem 0;
    transition: color var(--dur);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 100%;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease-out);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .4rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .3s var(--ease-out), opacity .3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 59;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    padding: 6rem var(--gutter) 2rem;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    padding: .55rem 0;
    border-bottom: 1px solid var(--line);
}

.mobile-menu a:hover {
    color: var(--accent);
}

.brand-text .brand-main {
    font-family: "GT Walsheim Pro", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: rgb(255, 49, 47);
    text-transform: uppercase;
}

.brand-text .brand-sub {
    font-family: var(--font-body);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
}

/* Diagonal light-sweep overlay: strong navy on the left for text legibility,
       opening up to reveal the girls on the right. */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* background: linear-gradient(47deg, rgb(6 26 46 / 72%) 0%, rgba(6, 26, 46, .82) 40%, rgba(6, 26, 46, .30) 64%, rgba(6, 26, 46, .06) 80%); */
    background-color: #00000025;
}



.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.stat-chip {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px -24px rgba(23, 36, 46, .35);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .9rem;
}

/* Gold underline accent ahead of the kicker */
.hero-kicker {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.hero-kicker::before {
    content: "";
    width: 2.4rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    opacity: .85;
}

/* Pill-shaped glass trust badges */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 2.2rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .9);
}

.hero-pill svg {
    color: var(--accent);
    flex: 0 0 auto;
}

/* Hero CTA row */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2.5rem;
}

/* Clean trust stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.hero-stats>div {
    background: rgba(9, 36, 60, .5);
    padding: 1.4rem 1.5rem;
}

.hero-stats .stat-num {
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    color: #fff;
}

@media (max-width:720px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ TRUST STRIP ============ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--accent);
}

@media (max-width:720px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ WORLD MAP (decorative) ============ */
.world-map {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    width: min(46vw, 48rem);
    height: min(38vw, 40rem);
    opacity: .5;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .22) 1.5px, transparent 2px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
}

@media (max-width:900px) {
    .world-map {
        opacity: .28;
        right: -8rem;
    }
}

/* ============ HOSPITAL MARQUEE ============ */
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
}

.logo-item {
    flex: 0 0 auto;
    width: 190px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}

.logo-item img {
    height: 46px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(.7);
    transition: filter var(--dur);
}

.marquee:hover .logo-item img {
    filter: grayscale(.4) opacity(.9);
}

.logo-item:hover {
    border-color: rgba(201, 162, 39, .45);
    box-shadow: 0 18px 34px -22px rgba(23, 36, 46, .3);
    transform: translateY(-3px);
}

.logo-item:hover img {
    filter: grayscale(0) opacity(1);
}

.logo-item-dark {
    background: var(--ink);
    border-color: var(--ink);
}

.logo-item-dark img {
    filter: opacity(.8);
}

.logo-item-dark:hover img {
    filter: opacity(1);
}

/* ============ STEPS ============ */
.step-num {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent);
}

.step-line {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
}

.step-line .rail {
    width: 2px;
    background: var(--line);
    flex: 0 0 auto;
    align-self: stretch;
    margin-top: .5rem;
    position: relative;
}

.step-line .rail::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    background: var(--accent);
    height: 0;
    transition: height .6s var(--ease-out);
}

/* ============ FAQ ============ */
details.faq {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

details.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

details.faq summary::-webkit-details-marker {
    display: none;
}

details.faq .faq-icon {
    transition: transform .3s var(--ease-out);
    color: var(--accent);
    font-size: 1.5rem;
    flex: 0 0 auto;
    line-height: 1;
}

details.faq[open] .faq-icon {
    transform: rotate(45deg);
}

details.faq .faq-body {
    padding: 0 1.5rem 1.4rem;
    color: var(--muted);
    font-size: .95rem;
}

/* ============ FOOTER ============ */
.footer-link {
    color: rgba(255, 255, 255, .55);
    transition: color var(--dur);
}

.footer-link:hover {
    color: #fff;
}

/* ============ ORGANIC DECORATIVE BACKGROUNDS ============ */
/* Shared wrapper that safely contains overflow while shapes sit behind content */
.deco {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.deco>* {
    position: absolute;
}

/* Ensure section content sits above decorations */
[data-deco-section]>.container-x,
[data-deco-section]>.container-narrow {
    position: relative;
    z-index: 1;
}

/* -- Blob (the blob filter draws a smooth, organic curved shape) -- */
.blob {
    border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
}

/* -- Small dotted pattern -- */
.dots {
    background-image: radial-gradient(circle, currentColor 1.6px, transparent 1.9px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
}

/* -- Layered flowing wave (CSS-drawn, feather-light) -- */
.wave {
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* -- Transparent ring / arc -- */
.ring {
    border-radius: 50%;
    border-style: solid;
    border-color: currentColor;
}

/* -- Soft radial glow (airy light wash, no visible edge) -- */
.glow {
    border-radius: 50%;
    filter: blur(20px);
}

/* -- Delicate curved line flourish -- */
.curve {
    border: 1px solid currentColor;
    border-color: transparent transparent currentColor transparent;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Color helpers (accent gold for decorative line/dot shapes) */
.t-brand {
    color: var(--accent);
}

.t-ink {
    color: var(--ink);
}

/* Resize / opacity helpers for responsive control */
.deco-hidden {
    display: none;
}

@media (max-width:720px) {
    .deco-sm-hide {
        display: none;
    }

    /* Faint retained decorations further on small screens */
    .deco>* {
        opacity: .6;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-reveal],
    [data-reveal-item],
    [data-heading-reveal],
    [data-img] {
        opacity: 1 !important;
        transform: none !important;
    }

    .deco>* {
        transform: none !important;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width:1023px) {
    .hamburger {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .cta-desktop {
        display: none;
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width:420px) {
    .brand-text .brand-sub {
        display: none;
    }
    .btn{
        display: none !important;
    }
}

@media (min-width:1024px) {
    .mobile-menu {
        display: none;
    }
}

.hero {
    padding: 0px;
}

/* ============ EXTRACTED INLINE STYLES ============ */
.css-inline-001 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 76px;
}

.css-inline-002 {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.css-inline-003 {
    height: 48px;
    width: auto;
    flex: 0 0 auto;
}

.css-inline-004 {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.css-inline-005 {
    font-size: 1.02rem;
    color: var(--ink);
    letter-spacing: -.01em;
}

.css-inline-006 {
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.css-inline-007 {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.css-inline-008 {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.3rem;
    transition: transform .25s var(--ease-out), box-shadow .25s;
}

.css-inline-009 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 162, 39, .12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.css-inline-010 {
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.css-inline-011 {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('a_IMPROVE_THE_RESOLUTI\ \(1\).jpeg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.css-inline-012 {
    z-index: 2;
}

.css-inline-013 {
    width: 340px;
    height: 340px;
    border-width: 1px;
    opacity: .14;
    top: -150px;
    left: -120px;
    border-color: rgba(255, 255, 255, .5);
}

.css-inline-014 {
    width: 140px;
    height: 110px;
    opacity: .18;
    left: 6%;
    top: 24%;
    color: rgba(255, 255, 255, .6);
}

.css-inline-015 {
    position: relative;
    z-index: 3;
}

.css-inline-016 {
    position: relative;
    z-index: 3;
    max-width: 46rem;
    padding-block: clamp(3rem, 6vw, 5.5rem) 1rem;
}

.css-inline-017 {
    color: var(--accent);
}

.css-inline-018 {
    margin-top: 1.5rem;
    color: #fff;
}

.css-inline-019 {
    color: var(--accent);
    font-style: italic;
}

.css-inline-020 {
    margin-top: 1.6rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, .85);
}

.css-inline-021 {
    margin-top: 5rem;
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.css-inline-022 {
    margin-top: .5rem;
    color: rgba(255, 255, 255, .6);
}

.css-inline-023 {
    background: #fff;
}

.css-inline-024 {
    width: 420px;
    height: 360px;
    background: var(--brand);
    opacity: .045;
    top: -170px;
    left: -160px;
}

.css-inline-025 {
    width: 520px;
    height: 240px;
    background: var(--ink);
    opacity: .035;
    right: -200px;
    bottom: -120px;
}

.css-inline-026 {
    width: 360px;
    height: 170px;
    background: var(--brand);
    opacity: .05;
    right: -120px;
    bottom: -60px;
}

.css-inline-027 {
    width: 150px;
    height: 130px;
    opacity: .12;
    top: 20%;
    right: 4%;
}

.css-inline-028 {
    margin-top: 1.1rem;
}

.css-inline-029 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.css-inline-030 {
    padding: 2.2rem;
}

.css-inline-031 {
    margin-bottom: .8rem;
}

.css-inline-032 {
    background: var(--cream);
}

.css-inline-033 {
    width: 380px;
    height: 340px;
    background: var(--brand);
    opacity: .05;
    top: -150px;
    left: -150px;
}

.css-inline-034 {
    width: 200px;
    height: 170px;
    opacity: .13;
    right: 6%;
    bottom: 12%;
}

.css-inline-035 {
    width: 300px;
    height: 300px;
    border-width: 1px;
    opacity: .07;
    top: -120px;
    right: -100px;
}

.css-inline-036 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.css-inline-037 {
    margin-top: 1.3rem;
    max-width: 30rem;
}

.css-inline-038 {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 2.2rem;
}

.css-inline-039 {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.3rem;
    transition: transform .25s var(--ease-out), box-shadow .25s;
}

.css-inline-040 {
    font-weight: 500;
}

.css-inline-041 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(23, 36, 46, .06);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.css-inline-042 {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.3rem;
}

.css-inline-043 {
    padding: 2.4rem;
}

.css-inline-044 {
    margin-bottom: .3rem;
}

.css-inline-045 {
    margin-bottom: 1.8rem;
}

.css-inline-046 {
    margin-bottom: 1.1rem;
}

.css-inline-047 {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: .4rem;
}

.css-inline-048 {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    font-size: .95rem;
    transition: border-color .25s, box-shadow .25s;
}

.css-inline-049 {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    font-size: .95rem;
}

.css-inline-050 {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    font-size: .95rem;
    background: #fff;
}

.css-inline-051 {
    width: 100%;
    margin-top: .4rem;
}

.css-inline-052 {
    margin-top: .9rem;
    font-size: .9rem;
    color: var(--brand-dark);
    display: none;
}

.css-inline-053 {
    background: var(--paper-alt);
}

.css-inline-054 {
    width: 560px;
    height: 480px;
    background: var(--brand);
    opacity: .05;
    top: 20%;
    right: -180px;
}

.css-inline-055 {
    width: 340px;
    height: 340px;
    border-width: 1px;
    opacity: .08;
    left: -140px;
    bottom: -120px;
}

.css-inline-056 {
    width: 220px;
    height: 220px;
    border-width: 1px;
    opacity: .1;
    left: -80px;
    bottom: -60px;
}

.css-inline-057 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.css-inline-058 {
    max-width: 32rem;
}

.css-inline-059 {
    margin-top: 1.3rem;
}

.css-inline-060 {
    width: 100%;
    aspect-ratio: 14/10;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.css-inline-061 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.css-inline-062 {
    display: flex;
    gap: .85rem;
    padding: 1.35rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.css-inline-063 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
    margin-top: .45rem;
}

.css-inline-064 {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.css-inline-065 {
    width: 520px;
    height: 520px;
    background: var(--accent);
    opacity: .12;
    top: -140px;
    right: -140px;
}

.css-inline-066 {
    width: 460px;
    height: 400px;
    background: var(--accent);
    opacity: .09;
    left: -180px;
    bottom: -160px;
}

.css-inline-067 {
    width: 480px;
    height: 200px;
    background: rgba(201, 162, 39, .16);
    top: -90px;
    left: -160px;
}

.css-inline-068 {
    width: 200px;
    height: 170px;
    opacity: .16;
    right: 6%;
    bottom: 18%;
    color: #fff;
}

.css-inline-069 {
    position: relative;
}

.css-inline-070 {
    max-width: 44rem;
}

.css-inline-071 {
    color: #fff;
    margin-top: 1.1rem;
}

.css-inline-072 {
    color: rgba(255, 255, 255, .6);
    margin-top: 1.1rem;
}

.css-inline-073 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.css-inline-074 {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    background: rgba(255, 255, 255, .03);
}

.css-inline-075 {
    width: 34px;
    height: 34px;
    margin-bottom: 1.1rem;
    color: var(--accent);
}

.css-inline-076 {
    font-weight: 500;
    color: #fff;
}

.css-inline-077 {
    color: rgba(255, 255, 255, .5);
    margin-top: .4rem;
}

.css-inline-078 {
    width: 430px;
    height: 360px;
    background: var(--brand);
    opacity: .045;
    top: -160px;
    right: -150px;
}

.css-inline-079 {
    width: 500px;
    height: 210px;
    background: var(--ink);
    opacity: .03;
    left: -200px;
    bottom: -100px;
}

.css-inline-080 {
    width: 170px;
    height: 150px;
    opacity: .12;
    left: 4%;
    top: 16%;
}

.css-inline-081 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.css-inline-082 {
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
    background: var(--brand);
    border-color: transparent;
    color: #fff;
}

.css-inline-083 {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
}

.css-inline-084 {
    margin-top: .9rem;
    color: #fff;
}

.css-inline-085 {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .75);
}

.css-inline-086 {
    margin: 1.1rem 0 1.6rem;
    color: rgba(255, 255, 255, .92);
}

.css-inline-087 {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.css-inline-088 {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.css-inline-089 {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #fff;
}

.css-inline-090 {
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
}

.css-inline-091 {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.css-inline-092 {
    margin-top: .9rem;
}

.css-inline-093 {
    margin-top: .35rem;
}

.css-inline-094 {
    margin: 1.1rem 0 1.6rem;
}

.css-inline-095 {
    font-weight: 600;
    font-size: 1.1rem;
}

.css-inline-096 {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.css-inline-097 {
    background: var(--paper-deep);
}

.css-inline-098 {
    width: 380px;
    height: 380px;
    background: var(--brand);
    opacity: .05;
    top: -170px;
    left: -150px;
}

.css-inline-099 {
    width: 190px;
    height: 190px;
    border-width: 1px;
    opacity: .09;
    top: -70px;
    right: -40px;
}

.css-inline-100 {
    width: 150px;
    height: 130px;
    opacity: .12;
    right: 8%;
    bottom: 10%;
}

.css-inline-101 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.css-inline-102 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 48rem;
    margin-inline: auto;
}

.css-inline-103 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2rem;
    margin-top: .6rem;
}

.css-inline-104 {
    padding: 2.2rem;
    background: var(--brand);
    border-color: transparent;
    color: #fff;
}

.css-inline-105 {
    color: rgba(255, 255, 255, .7);
}

.css-inline-106 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2rem;
    margin-top: .6rem;
    color: #fff;
}

.css-inline-107 {
    width: 400px;
    height: 340px;
    background: var(--brand);
    opacity: .045;
    top: -150px;
    right: -150px;
}

.css-inline-108 {
    width: 460px;
    height: 190px;
    background: var(--ink);
    opacity: .03;
    left: -190px;
    bottom: -90px;
}

.css-inline-109 {
    width: 160px;
    height: 140px;
    opacity: .11;
    left: 5%;
    top: 22%;
}

.css-inline-110 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.css-inline-111 {
    margin-top: 2rem;
}

.css-inline-112 {
    display: flex;
    flex-direction: column;
}

.css-inline-113 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.css-inline-114 {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
}

.css-inline-115 {
    flex: 1;
    margin-bottom: 1.5rem;
}

.css-inline-116 {
    padding: .35rem 0 2.4rem;
}

.css-inline-117 {
    margin-bottom: .4rem;
}

.css-inline-118 {
    padding: .35rem 0 .4rem;
}

.css-inline-119 {
    padding-block: 4rem;
    background: #fff;
}

.css-inline-120 {
    width: 360px;
    height: 300px;
    background: var(--brand);
    opacity: .04;
    top: -130px;
    right: -140px;
}

.css-inline-121 {
    width: 280px;
    height: 280px;
    border-width: 1px;
    opacity: .07;
    left: -120px;
    top: 40%;
}

.css-inline-122 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.css-inline-123 {
    max-width: 34rem;
    margin: 1.1rem auto 0;
    color: var(--muted);
}

.css-inline-124 {
    width: 360px;
    height: 320px;
    background: var(--brand);
    opacity: .045;
    left: -160px;
    bottom: -140px;
}

.css-inline-125 {
    width: 280px;
    height: 280px;
    border-width: 1px;
    opacity: .07;
    top: -110px;
    right: -90px;
}

.css-inline-126 {
    width: 180px;
    height: 180px;
    border-width: 1px;
    opacity: .09;
    top: -60px;
    right: -40px;
}

.css-inline-127 {
    position: relative;
    z-index: 1;
}

.css-inline-128 {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.css-inline-129 {
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
    padding-block: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.css-inline-130 {
    width: 440px;
    height: 380px;
    background: var(--accent);
    opacity: .08;
    right: -180px;
    top: -160px;
}

.css-inline-131 {
    width: 520px;
    height: 180px;
    background: rgba(201, 162, 39, .12);
    left: -200px;
    bottom: -80px;
}

.css-inline-132 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.css-inline-133 {
    max-width: 22rem;
}

.css-inline-134 {
    height: 56px;
    width: auto;
    opacity: .95;
    margin-bottom: 1.1rem;
}

.css-inline-135 {
    font-size: .95rem;
    line-height: 1.7;
}

.css-inline-136 {
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.1rem;
}

.css-inline-137 {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    font-size: .95rem;
}

.css-inline-138 {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.css-inline-139 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-block: 1.5rem;
    font-size: .85rem;
}

.css-inline-140 {
    font-family: var(--font-serif);
    font-style: italic;
}

.css-inline-141 {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 55;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px -12px rgba(201, 162, 39, .6);
    transition: transform .25s;
}

/* ============ RESPONSIVE LAYOUT ============ */
/* Desktop (1024px+) intentionally keeps the original layout/scale. */

/* Large desktops: keep the original 1300px content width and composition. */
@media (min-width: 1440px) {
    .container-x {
        max-width: var(--container);
    }
}

/* Tablet and below */
@media (max-width: 1023px) {
    :root {
        --gutter: clamp(1.1rem, 3.5vw, 2rem);
        --section-y: clamp(4.25rem, 8vw, 6.5rem);
    }

    .header-inner {
        min-height: 72px !important;
        gap: 1rem !important;
    }

    .header-actions {
        gap: .35rem !important;
    }

    .header-contact {
        padding: .65rem !important;
    }

    .header-contact-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .header-contact .small {
        font-size: .8rem;
    }

    .hero-copy {
        max-width: 42rem !important;
        padding-block: clamp(3.5rem, 10vw, 5rem) 1rem !important;
    }

    .hero-stats-wrap {
        margin-top: 3.5rem !important;
        padding-bottom: 2rem !important;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .contact-grid,
    .clinical-intro-grid,
    .admission-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
    }

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

    .outcome-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .clinical-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .fee-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr !important;
        gap: 2rem !important;
    }

    .hero-background {
        background-position: 58% top !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --gutter: 1rem;
        --section-y: clamp(3.75rem, 12vw, 5rem);
    }

    .container-x,
    .container-narrow {
        width: 100%;
        max-width: none;
    }

    .header-inner {
        min-height: 66px !important;
        padding-inline: 1rem !important;
    }

    .brand-link {
        gap: .6rem !important;
    }

    .brand-link img {
        height: 42px !important;
    }

    .brand-text .brand-main {
        font-size: .9rem !important;
    }

    .brand-text .brand-sub {
        font-size: .58rem !important;
        letter-spacing: .12em !important;
    }

    .header-contact {
        padding: .35rem !important;
        gap: 0 !important;
    }

    .header-contact .small {
        display: none;
    }

    .header-contact-icon {
        width: 38px !important;
        height: 38px !important;
    }

    .hero {
        min-height: auto;
    }

    .hero-background {
        background-position: 62% top !important;
    }

    .hero-copy {
        max-width: none !important;
        padding-block: 4rem 1rem !important;
    }

    .display {
        font-size: clamp(2.65rem, 12vw, 4rem);
        line-height: 1.02;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 2rem !important;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-pills {
        margin-top: 1.6rem !important;
        gap: .45rem;
    }

    .hero-pill {
        font-size: .72rem;
        padding: .45rem .75rem;
    }

    .hero-stats-wrap {
        margin-top: 2.5rem !important;
        padding-bottom: 1.25rem !important;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hero-stats>div {
        padding: 1.05rem .9rem !important;
    }

    .hero-stats .stat-num {
        font-size: 1.55rem;
    }

    .small {
        font-size: .84rem;
    }

    .section-head {
        margin-bottom: 2.25rem;
    }

    .section-head p {
        margin-top: .9rem;
    }

    .why-grid,
    .contact-grid,
    .clinical-intro-grid,
    .outcome-grid,
    .course-grid,
    .clinical-grid,
    .admission-grid {
        grid-template-columns: 1fr !important;
    }

    .why-grid {
        gap: 1rem !important;
    }

    .why-grid .card {
        padding: 1.5rem !important;
    }

    .contact-grid,
    .admission-grid {
        gap: 2.5rem !important;
    }

    .contact-info>div:last-child {
        margin-top: 1.7rem !important;
    }

    .contact-card {
        padding: 1rem !important;
    }

    .contact-card-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .contact-form-card {
        padding: 1.5rem !important;
    }

    .clinical-intro-grid {
        gap: 2rem !important;
        margin-bottom: 2.5rem !important;
    }

    .clinical-grid {
        gap: .75rem !important;
    }

    .clinical-partner {
        padding: 1rem !important;
    }

    .outcome-grid {
        margin-top: 2.25rem !important;
    }

    .outcome-card {
        padding: 1.35rem !important;
    }

    .course-grid {
        gap: 1rem !important;
    }

    .course-card {
        padding: 1.5rem !important;
    }

    .fee-grid {
        grid-template-columns: 1fr !important;
        max-width: 24rem !important;
        gap: .85rem !important;
    }

    .fee-card {
        padding: 1.5rem !important;
    }

    .admission-grid {
        gap: 3rem !important;
    }

    .steps-list {
        padding-left: 0;
    }

    .step-number {
        width: 44px !important;
        height: 44px !important;
    }

    .step-content {
        padding-bottom: 1.8rem !important;
    }

    .partners-section .logo-item {
        width: 160px !important;
        height: 82px !important;
        padding: 1rem !important;
    }

    .partners-section .logo-item img {
        height: 38px !important;
    }

    .faq-list {
        gap: .6rem !important;
    }

    details.faq summary {
        padding: 1.1rem 1rem !important;
        font-size: .92rem;
        align-items: flex-start;
    }

    details.faq .faq-body {
        padding: 0 1rem 1.1rem !important;
        font-size: .88rem;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding-bottom: 2.5rem !important;
    }

    .footer-bottom>div {
        justify-content: center !important;
        text-align: center;
    }

    .floating-whatsapp {
        width: 52px !important;
        height: 52px !important;
        right: 1rem !important;
        bottom: 1rem !important;
    }

    .deco>* {
        max-width: 70vw;
        max-height: 70vw;
    }
}

/* Very small phones */
@media (max-width: 420px) {
    .brand-text .brand-sub {
        display: none !important;
    }

    .hero-copy {
        padding-top: 3.25rem !important;
    }

    .hero-pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-pill {
        width: 100%;
        justify-content: center;
    }

    .hero-stats>div {
        padding: .95rem .75rem !important;
    }

    .hero-stats .small {
        line-height: 1.35;
    }

    .btn {
        padding: .9rem 1.25rem;
    }

    .h2 {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }

    #applynowbtn {
        display: none !important;
    }

    .mobilebtn{
        display: none !important;
    }
}

/* Landscape phones / short viewports */
@media (max-height: 600px) and (max-width: 900px) {
    .hero-copy {
        padding-block: 2.5rem .75rem !important;
    }

    .hero-stats-wrap {
        margin-top: 2rem !important;
    }
}

/* Form controls */
input,
select,
textarea {
    max-width: 100%;
    min-width: 0;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .12);
}

.contact-form-card form .btn {
    min-height: 48px;
}

/* Prevent long words/URLs from forcing horizontal scrolling. */
p,
h1,
h2,
h3,
h4,
a,
span,
div {
    overflow-wrap: anywhere;
}


.callback-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.callback-form .form-group {
    margin-bottom: 0;
}

.callback-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.callback-form .wpcf7-form-control-wrap {
    display: block;
}

.callback-form .form-control {
    width: 100%;
    box-sizing: border-box;
}

.callback-form .wpcf7-submit {
    width: 100%;
}

.callback-form .wpcf7-not-valid-tip {
    margin-top: 0.35rem;
}

.callback-form .wpcf7-response-output {
    margin: 1rem 0 0;
}

.card.contact-form-card{
    padding: 1.5rem 2.5rem;
}
.form-group input{
    border-radius: 5px;
}

.callback-form .form-group input {
    border-radius: 5px;
}


.pxl-select .pxl-select-higthlight{
    border-radius: 5px !important;
}