/* ============================================================
   AURA HOSPITALS – GLOBAL STYLESHEET
   Primary: #1565C0  |  Accent: #E65100  |  Dark: #1A2340
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
    --blue: #1565C0;
    --blue-dark: #0D47A1;
    --blue-mid: #1976D2;
    --blue-light: #42A5F5;
    --blue-pale: #E3F0FC;
    --blue-pale2: #C8DFF8;
    --orange: #E65100;
    --orange-light: #FF6D00;
    --orange-pale: #FFF3E0;
    --teal: #00796B;
    --teal-light: #009688;
    --white: #ffffff;
    --gray-bg: #F5F7FA;
    --gray-bg2: #EEF2F7;
    --gray-text: #64748B;
    --gray-border: #E2E8F0;
    --dark: #1A2340;
    --dark2: #0F1729;
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #F59E0B;

    --shadow-sm: 0 2px 12px rgba(21, 101, 192, 0.08);
    --shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
    --shadow-md: 0 6px 32px rgba(21, 101, 192, 0.14);
    --shadow-hover: 0 10px 40px rgba(21, 101, 192, 0.20);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.25);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
}

h4,
h5,
h6,
p,
span,
a,
button,
label,
li,
td,
th {
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--blue-dark);
    color: #fff;
    font-size: 12.5px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
    color: #cfe2ff;
    transition: var(--transition);
}

.topbar a:hover {
    color: #fff;
}

.topbar .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ── MAIN HEADER ── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), var(--shadow-sm);
    transition: box-shadow 0.3s, background 0.3s;
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(21, 101, 192, 0.15);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 13px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--blue-pale);
    color: var(--blue) !important;
}

/* .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s;
}

.nav-link.active::before {
    transform: scaleX(1);
} */

/* Header Buttons */
.btn-emergency-nav {
    background: var(--orange);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 16px;
    border: none;
    animation: pulse-orange 2s infinite;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-emergency-nav:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

.btn-appt-nav {
    background: var(--blue);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12.5px;
    padding: 8px 16px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-appt-nav:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

/* ── BUTTONS GLOBAL ── */
.btn-primary-aura {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 28px;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-aura:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(21, 101, 192, 0.35);
    color: #fff;
}

.btn-orange-aura {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    padding: 12px 28px;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse-orange 2.5s infinite;
}

.btn-orange-aura:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-aura {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 30px;
    font-weight: 600;
    padding: 11px 26px;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-aura:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white-aura {
    background: #fff;
    color: var(--blue);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    padding: 13px 32px;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-white-aura:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--blue-dark);
}

/* ── SECTION UTILITIES ── */
.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
}

.section-title span {
    color: var(--blue);
}

.section-title.light {
    color: #fff;
}

.section-title.light span {
    color: #FF9800;
}

.section-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    border-radius: 2px;
    margin: 16px auto 0;
}

.btn-hero-primary {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    border-radius: 30px;
    padding: 13px 32px;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all .2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn-emergency-hero {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    animation: pulse-orange 2s infinite;
}

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='900' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='800' cy='100' rx='350' ry='200' fill='rgba(255,255,255,0.04)'/%3E%3Cellipse cx='100' cy='180' rx='200' ry='150' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") no-repeat center/cover;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ── CARDS ── */
.card-aura {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    overflow: hidden;
}

.card-aura:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-pale2);
}

/* ── SPECIALITY CARDS ── */
.spec-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1.5px solid var(--gray-border);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.spec-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--blue-pale);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--blue);
    margin: 0 auto 14px;
    transition: var(--transition);
}

.spec-card:hover .spec-icon-wrap {
    background: var(--blue);
    color: #fff;
    transform: scale(1.08);
}

.spec-card h6 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 7px;
    color: var(--dark);
}

.spec-card p {
    font-size: 12.5px;
    color: var(--gray-text);
    line-height: 1.55;
}

.spec-card .learn-more {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── DOCTOR CARDS ── */
.doc-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    background: #fff;
    height: 100%;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.doc-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-pale2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.doc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .doc-photo .placeholder-icon {
    font-size: 80px;
    color: var(--blue);
    opacity: 0.3;
} */

.doc-available {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--success);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.doc-available::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

.doc-info {
    padding: 18px 16px;
}

.doc-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 3px;
}

.doc-dept {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
}

.doc-qual {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 4px;
}

.doc-exp-badge {
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
}

.doc-timing {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── QUICK ACTION CARDS ── */
.qa-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    height: 100%;
}

.qa-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-pale2);
}

.qa-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.qa-icon.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.qa-icon.orange {
    background: var(--orange-pale);
    color: var(--orange);
}

.qa-icon.teal {
    background: #E0F2F1;
    color: var(--teal);
}

.qa-card:hover .qa-icon.blue {
    background: var(--blue);
    color: #fff;
}

.qa-card:hover .qa-icon.orange {
    background: var(--orange);
    color: #fff;
}

.qa-icon.bl {
    background: var(--blue-pale);
    color: var(--blue);
}

.qa-icon.or {
    background: var(--orange-pale);
    color: var(--orange);
}

.qa-card h6 {
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 7px;
}

.qa-card p {
    font-size: 12.5px;
    color: var(--gray-text);
    line-height: 1.55;
}

/* ── PACKAGE CARDS ── */
.pkg-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--gray-border);
    transition: var(--transition);
    position: relative;
    background: #fff;
    height: 100%;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.pkg-header {
    padding: 26px 24px;
}

.pkg-header.blue {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
}

.pkg-header.orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.pkg-header.teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.pkg-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.pkg-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-body);
}

.pkg-price span {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.pkg-body {
    padding: 22px 24px;
}

.pkg-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--dark);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-bg2);
}

.pkg-item:last-of-type {
    border-bottom: none;
}

.pkg-item i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.badge-popular {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* ── TESTIMONIAL CARDS ── */
.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 60px;
    color: var(--blue-pale2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-stars {
    color: var(--warning);
    font-size: 13px;
    margin-bottom: 12px;
    margin-top: 2em;
}

.testi-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.testi-role {
    font-size: 12px;
    color: var(--gray-text);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* ── INFRASTRUCTURE ── */
.infra-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.infra-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.infra-card .num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-body);
    display: block;
}

.infra-card .lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 5px;
}

.infra-card .icon {
    font-size: 30px;
    color: #FF9800;
    margin-bottom: 14px;
}

.bg-dark-section {
    padding: 72px 0;
    background: var(--dark);
}

/* ── ICU DASHBOARD ── */
.icu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 24px 22px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: 100%;
}

.icu-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.icu-card h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
}

.icu-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.icu-stat:last-child {
    border-bottom: none;
}

.icu-stat .lbl {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
}

.icu-stat .val {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}

.bg-gray {
    padding: 72px 0;
    background: var(--gray-bg);
}

/* ── DIAGNOSTICS ── */
.diag-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1.5px solid transparent;
    height: 100%;
}

.diag-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diag-icon {
    font-size: 38px;
    color: var(--blue);
    margin-bottom: 14px;
    transition: var(--transition);
}

.diag-card:hover .diag-icon {
    transform: scale(1.12);
}

.diag-card h6 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
}

.diag-card p {
    font-size: 12.5px;
    color: var(--gray-text);
}

/* ── CONTACT CARDS ── */
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    height: 100%;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-pale2);
}

.contact-card .ci {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 14px;
    display: block;
}

.contact-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: var(--gray-text);
}

/* ── FORMS ── */
.form-control-aura,
.form-select-aura {
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    background: #fff;
    width: 100%;
    font-family: var(--font-body);
}

.form-control-aura:focus,
.form-select-aura:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
    outline: none;
}

.form-label-aura {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
}

/* Appointment form blue wrap */
.appt-form-wrap {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: #fff;
}

.appt-form-wrap .form-control,
.appt-form-wrap .form-select {
    border: none;
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.appt-form-wrap .form-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 6px;
}
.btn-book {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 15px;
    border: none;
    width: 100%;
    transition: background .2s;
}
.btn-book:hover {
    background: var(--orange-light);
}
/* ── ANIMATIONS ── */
@keyframes pulse-orange {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, .35);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(230, 81, 0, 0);
    }
}

@keyframes pulse-blue {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(21, 101, 192, .3);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(21, 101, 192, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.step-n {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-box h6{
    font-weight: 700;
}
/* ── STATUS DOTS ── */
.dot-online {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    animation: blink 1.4s infinite;
}

.dot-orange {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    animation: blink 1.4s infinite;
}

/* ── INSURANCE LOGOS ── */
.ins-logo {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--gray-text);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 68px;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.ins-logo:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ── BLOG CARDS ── */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: #fff;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 190px;
    object-fit: cover;
    width: 100%;
}

.blog-img-placeholder {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-body {
    padding: 20px 18px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 8px;
    display: block;
}

.blog-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 10px;
    color: var(--dark);
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--blue);
}

.blog-meta {
    font-size: 12px;
    color: var(--gray-text);
}

/* ── FLOATING BUTTONS ── */
.float-emergency {
    position: fixed;
    bottom: 92px;
    right: 20px;
    z-index: 2000;
    background: var(--orange);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(230, 81, 0, 0.5);
    animation: pulse-orange 2s infinite;
    text-decoration: none;
    transition: var(--transition);
}

.float-emergency:hover {
    background: var(--orange-light);
    color: #fff;
    transform: scale(1.1);
}

.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 2000;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ── CHATBOT ── */
.chatbot-wrap {
    position: fixed;
    bottom: 164px;
    right: 20px;
    z-index: 1999;
}

.chatbot-btn {
    background: var(--blue);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    animation: pulse-blue 2.5s infinite;
    transition: var(--transition);
}

.chatbot-btn:hover {
    background: var(--blue-dark);
    transform: scale(1.08);
}

.chatbot-popup {
    display: none;
    position: absolute;
    bottom: 65px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #fff;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-body {
    padding: 14px 14px 8px;
    font-size: 13px;
    color: var(--gray-text);
    max-height: 260px;
    overflow-y: auto;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid var(--gray-border);
    gap: 6px;
}

.chatbot-input input {
    flex: 1;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 9px 13px;
    font-size: 13px;
    outline: none;
    font-family: var(--font-body);
}

.chatbot-input input:focus {
    border-color: var(--blue);
}

.chatbot-input button {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 9px 13px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background: var(--blue-dark);
}

.chat-msg-user {
    margin-top: 8px;
    text-align: right;
}

.chat-msg-user span {
    background: var(--blue);
    color: #fff;
    padding: 7px 12px;
    border-radius: 16px 16px 4px 16px;
    font-size: 12.5px;
    display: inline-block;
    max-width: 85%;
}

.chat-msg-bot {
    margin-top: 8px;
    text-align: left;
}

.chat-msg-bot span {
    background: var(--gray-bg);
    color: var(--dark);
    padding: 7px 12px;
    border-radius: 16px 16px 16px 4px;
    font-size: 12.5px;
    display: inline-block;
    max-width: 85%;
}

/* ── SEARCH BAR ── */
.search-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    border-top: 1px solid var(--gray-border);
}

.search-bar.active {
    display: block;
    animation: fadeUp 0.2s ease;
}

.search-bar input {
    width: 100%;
    border: 2px solid var(--blue);
    border-radius: 30px;
    padding: 12px 22px;
    font-size: 15px;
    outline: none;
    font-family: var(--font-body);
}

/* ── BACK TO TOP ── */
#backTop {
    position: fixed;
    bottom: 164px;
    left: 20px;
    z-index: 1999;
    background: #fff;
    color: var(--blue);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--blue-pale2);
    transition: var(--transition);
}

#backTop:hover {
    background: var(--blue);
    color: #fff;
}

/* ── FOOTER ── */
footer {
    background: var(--dark2);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 24px;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    line-height: 2.1;
    display: block;
    transition: var(--transition);
}

footer a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    margin-top: 44px;
    padding-top: 22px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-right: 8px;
    transition: var(--transition);
    text-decoration: none !important;
}

.social-icon:hover {
    background: var(--blue);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ── FILTER PILLS ── */
.filter-pills .btn {
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border: 1.5px solid var(--gray-border);
    color: var(--dark);
    background: #fff;
    transition: var(--transition);
}

.filter-pills .btn.active,
.filter-pills .btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* ── PROGRESS / BED BARS ── */
.bed-progress {
    margin-bottom: 16px;
}

.bed-progress .lbl-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

.bed-progress .progress {
    height: 9px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
}

.bed-progress .progress-bar {
    border-radius: 9px;
}

.bar-blue {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.bar-orange {
    background: linear-gradient(90deg, var(--orange), #FF9800);
}

/* ── STAT BADGES ── */
.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    color: #fff;
    backdrop-filter: blur(6px);
}

/* ── STEPS / PROCESS ── */
.step-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.step-card h6 {
    font-weight: 700;
    font-size: 14px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray-text);
}

/* ── TABS ── */
.nav-tabs-aura {
    border: none;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-tabs-aura .nav-link {
    border: 1.5px solid var(--gray-border) !important;
    border-radius: 30px !important;
    color: var(--dark) !important;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 20px !important;
    background: #fff !important;
    transition: var(--transition);
}

.nav-tabs-aura .nav-link.active,
.nav-tabs-aura .nav-link:hover {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
}

/* ── TABLE ── */
.table-aura {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-aura thead tr th {
    background: var(--blue);
    color: #fff;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

.table-aura thead tr th:first-child {
    border-radius: 10px 0 0 0;
}

.table-aura thead tr th:last-child {
    border-radius: 0 10px 0 0;
}

.table-aura tbody tr td {
    padding: 12px 16px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--gray-border);
    vertical-align: middle;
}

.table-aura tbody tr:hover td {
    background: var(--blue-pale);
}

/* ── ACCORDION ── */
.accordion-aura .accordion-button {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--dark);
    background: #fff;
    border-radius: var(--radius-sm) !important;
}

.accordion-aura .accordion-button:not(.collapsed) {
    background: var(--blue-pale);
    color: var(--blue);
    box-shadow: none;
}

.accordion-aura .accordion-button::after {
    filter: none;
}

.accordion-aura .accordion-item {
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

/* ── DROPDOWN ── */
.dropdown-menu {
    border: none !important;
    box-shadow: var(--shadow-hover) !important;
    border-radius: var(--radius) !important;
    padding: 10px !important;
    animation: fadeUp 0.2s ease;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    padding: 9px 14px;
    color: var(--dark);
    transition: var(--transition);
    font-family: var(--font-body);
}

.dropdown-item:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

/* ── ALERT / TOAST ── */
.alert-aura-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #166534;
    padding: 14px 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-aura-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    color: #991b1b;
    padding: 14px 18px;
    font-size: 14px;
}

/* ── BADGE ── */
.badge-blue {
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-orange {
    background: var(--orange-pale);
    color: var(--orange);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-green {
    background: #DCFCE7;
    color: #166534;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ── LOADING SPINNER ── */
.spinner-aura {
    width: 40px;
    height: 40px;
    border: 3px solid var(--blue-pale2);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin-slow 0.8s linear infinite;
}

/* ── SECTION SPACINGS ── */
.section-pad {
    padding: 76px 0;
}

.section-pad-sm {
    padding: 52px 0;
}

/* ── HERO SECTION ── */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 45%, var(--blue-mid) 100%);
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='1200' height='700' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='1000' cy='350' rx='500' ry='420' fill='rgba(255,255,255,0.04)'/%3E%3Cellipse cx='200' cy='600' rx='350' ry='280' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='600' cy='100' r='150' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") no-repeat center/cover;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.hero-stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    display: block;
    font-family: var(--font-body);
}

.hero-stat .lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-dark);
    font-size: 13px;
    color: var(--dark);
    position: absolute;
}

.hero-card.c1 {
    bottom: 56px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}

.hero-card.c2 {
    top: 36px;
    right: -10px;
    animation: float 4.5s ease-in-out infinite 0.5s;
}

.hero-card .ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-card .ico.bl {
    background: var(--blue-pale);
    color: var(--blue);
}

.hero-card .ico.or {
    background: var(--orange-pale);
    color: var(--orange);
}

.hero-right-image {
    position: absolute;
}

.hero-right-image img {
    width: 400px;
    margin-top: 30px;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 1.8s ease-in-out infinite;
}

/* ── ABOUT SECTION FEATURES ── */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    margin-bottom: 14px;
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--blue-pale2);
    box-shadow: var(--shadow);
}

.about-feature .fi {
    font-size: 22px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h6 {
    font-weight: 700;
    font-size: 14px;
}

.about-feature p {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
    height: 320px;
    background: linear-gradient(135deg, var(--blue-pale), var(--gray-bg2));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--blue);
    opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .section-pad {
        padding: 56px 0;
    }

    .appt-form-wrap {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-card {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .section-pad {
        padding: 48px 0;
    }

    .appt-form-wrap {
        padding: 26px 18px;
    }

    .chatbot-popup {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .float-emergency,
    .float-whatsapp,
    .chatbot-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ── UTILITY ── */
.text-blue {
    color: var(--blue) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.bg-blue-pale {
    background: var(--blue-pale) !important;
}

.bg-dark-grad {
    background: linear-gradient(135deg, var(--dark2), var(--dark));
}

.rounded-aura {
    border-radius: var(--radius) !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.ls-1 {
    letter-spacing: 1px;
}

.overflow-hidden {
    overflow: hidden;

}

:root {
    --blue: #1565C0;
    --blue-dark: #0D47A1;
    --blue-light: #1976D2;
    --blue-pale: #E3F0FC;
    --orange: #E65100;
    --orange-light: #FF6D00;
    --orange-pale: #FFF3E0;
    --white: #ffffff;
    --gray-bg: #F5F7FA;
    --gray-text: #64748B;
    --dark: #1A2340;
    --shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
    --shadow-hover: 0 8px 36px rgba(21, 101, 192, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

h4,
h5,
h6,
p,
span,
a,
button,
label,
li {
    font-family: 'DM Sans', sans-serif;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--blue-dark);
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
}

.topbar a {
    color: #cfe2ff;
    text-decoration: none;
}

.topbar a:hover {
    color: #fff;
}

/* ── STICKY HEADER ── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 2px 20px rgba(21, 101, 192, 0.10);
    transition: box-shadow .3s;
}

.navbar-brand img {
    height: 52px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 10px !important;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.nav-link:hover {
    background: var(--blue-pale);
    color: var(--blue) !important;
}

.btn-emergency {
    background: var(--orange);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border: none;
    animation: pulse-orange 2s infinite;
}

.btn-emergency:hover {
    background: var(--orange-light);
}

.btn-appt {
    background: var(--blue);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border: none;
    transition: background .2s;
}

.btn-appt:hover {
    background: var(--blue-dark);
}

@keyframes pulse-orange {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, .4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(230, 81, 0, 0);
    }
}


/* Mega menu */
.mega-menu .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 12px;
    border: none;
}

.mega-menu {
    position: static;
}

.mega-menu-content {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 25px 30px;
    border-radius: 14px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    padding: 2em !important;
}

@media (min-width: 992px) {
    .mega-menu:hover .dropdown-menu {
        display: block;
    }
}

.mega-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.mega-list i {
    font-size: 16px;
    width: 22px;
    text-align: center;
}

.mega-list li:hover {
    color: #1565C0;
    transform: translateX(5px);
}

.mega-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
}

.mega-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mega-card .btn {
    border-radius: 20px;
    font-size: 13px;
}

ul.mega-list li i.bl {
    color: var(--blue);
}
ul.mega-list li i.or {
    color: var(--orange);
}

p.small {
    font-size: 14px;
    color: #646464;
    font-weight: 100;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mega-grid {
        grid-template-columns: 1fr;
    }
}

/* Container must be relative */
.mega-menu-content {
    position: relative;
    overflow: hidden;
}

/* Background moving logo */
.mega-bg-animation {
    position: absolute;
    width: 120px;
    height: 120px;
    background: url('../images/favicon.ico') no-repeat center/contain;
    opacity: 0.05; /* very light */
    pointer-events: none;

    animation: zigzagMove 30s linear infinite;
}

/* Zig-zag animation */
@keyframes zigzagMove {
    0% {
        left: -10%;
        top: 0%;
        transform: rotate(0deg);
    }
    25% {
        left: 30%;
        top: 50%;
    }
    50% {
        left: 60%;
        top: 10%;
    }
    75% {
        left: 85%;
        top: 60%;
    }
    100% {
        left: 110%;
        top: 10%;
    }
}
/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 45%, #1976D2 100%);
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='900' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='750' cy='300' rx='420' ry='380' fill='rgba(255,255,255,0.04)'/%3E%3Cellipse cx='150' cy='500' rx='300' ry='250' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") no-repeat center/cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: #fff;
    line-height: 1.18;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    font-family: 'DM Sans', sans-serif;
}

.hero-stat .lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-img-wrap {
    position: relative;
    text-align: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-hover);
    font-size: 13px;
    color: var(--dark);
    position: absolute;
}

.hero-card.c1 {
    bottom: 60px;
    left: -20px;
}

.hero-card.c2 {
    top: 40px;
    right: -10px;
}

.hero-card .ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-card .ico.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.hero-card .ico.orange {
    background: var(--orange-pale);
    color: var(--orange);
}

.hero-main-img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    height: 480px;
}

.btn-hero-primary {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    border-radius: 30px;
    padding: 13px 32px;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all .2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn-emergency-hero {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    animation: pulse-orange 2s infinite;
}

/* ── SECTION HEADINGS ── */
.section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--dark);
}

.section-title span {
    color: var(--blue);
}

/* ── QUICK ACTIONS ── */
.quick-actions {
    padding: 56px 0;
    background: var(--gray-bg);
}

.qa-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    border: 1px solid transparent;
    cursor: pointer;
    height: 100%;
}

.qa-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-pale);
}

.qa-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.qa-icon.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.qa-icon.orange {
    background: var(--orange-pale);
    color: var(--orange);
}

.qa-card h6 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.qa-card p {
    font-size: 13px;
    color: var(--gray-text);
}

/* ── SPECIALITIES ── */
.specialities {
    padding: 72px 0;
    background: #fff;
}

.spec-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 18px;
    border: 1.5px solid #E8EFF8;
    transition: all .25s;
    cursor: pointer;
    text-align: center;
    height: 100%;
}

.spec-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.spec-icon {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 12px;
}

.spec-card h6 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--dark);
}

.spec-card p {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
}

.spec-card .learn-more {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}


#specGrid {
    max-height: 650px;
    overflow-y: auto;
    padding-right: 5px;
}

/* nice scrollbar */
#specGrid::-webkit-scrollbar {
    width: 6px;
}
#specGrid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* ── STATS INFRASTRUCTURE ── */
.infrastructure {
    padding: 72px 0;
    background: linear-gradient(135deg, #0D47A1, #1976D2);
}

.infra-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: background .25s;
}

.infra-card:hover {
    background: rgba(255, 255, 255, 0.14);
}

.infra-card .num {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
}

.infra-card .lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.infra-card .icon {
    font-size: 28px;
    color: var(--orange-light);
    margin-bottom: 12px;
}

/* ── OT SECTION ── */
.ot-section {
    padding: 72px 0;
    background: var(--gray-bg);
}

.ot-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: var(--shadow);
    height: 100%;
}

.ot-feature .fi {
    font-size: 22px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.ot-feature h6 {
    font-weight: 700;
    font-size: 14px;
}

.ot-feature p {
    font-size: 13px;
    color: var(--gray-text);
}

/* ── DOCTORS ── */
.doctors {
    padding: 72px 0;
    background: #fff;
}

.doc-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #E8EFF8;
    transition: transform .25s, box-shadow .25s;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.doc-photo {
    height: 220px;
    background: linear-gradient(135deg, #E3F0FC, #C8DFF8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-photo i {
    font-size: 80px;
    color: var(--blue);
    opacity: .35;
}

.doc-info {
    padding: 18px;
}

.doc-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
}

.doc-dept {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
}

.doc-exp {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 4px;
}

.doc-badge {
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

/* ── DIAGNOSTICS ── */
.diagnostics {
    padding: 72px 0;
    background: var(--gray-bg);
}

.diag-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .25s;
    border: 1.5px solid transparent;
}

.diag-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}

.diag-card i {
    font-size: 36px;
    color: var(--blue);
    margin-bottom: 14px;
}

.diag-card h6 {
    font-weight: 700;
    font-size: 14px;
}

.diag-card p {
    font-size: 12px;
    color: var(--gray-text);
}

/* ── APPOINTMENT BOOKING ── */
.appt-section {
    padding: 72px 0;
    background: #fff;
}

.appt-form-wrap {
    background: linear-gradient(135deg, #0D47A1, #1976D2);
    border-radius: 24px;
    padding: 48px 40px;
    color: #fff;
}

.appt-form-wrap .form-control,
.appt-form-wrap .form-select {
    border-radius: 10px;
    border: none;
    padding: 13px 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.appt-form-wrap .form-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.btn-book-now {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 15px;
    border: none;
    width: 100%;
    transition: background .2s;
}

.btn-book-now:hover {
    background: var(--orange-light);
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 72px 0;
    background: var(--blue-pale);
}

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testi-stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-author {
    font-weight: 700;
    font-size: 14px;
}

.testi-role {
    font-size: 12px;
    color: var(--gray-text);
}

/* ── HEALTH PACKAGES ── */
.packages {
    padding: 72px 0;
    background: #fff;
}

.pkg-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid #E8EFF8;
    transition: all .25s;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.pkg-header {
    padding: 24px;
}

.pkg-header.bl {
    background: linear-gradient(135deg, #1565C0, #1976D2);
}

.pkg-header.or {
    background: linear-gradient(135deg, #E65100, #FF6D00);
}

.pkg-header.tl {
    background: linear-gradient(135deg, #00796B, #009688);
}
.badge-pop {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}
.pkg-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.pkg-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.pkg-price span {
    font-size: 13px;
    font-weight: 400;
    opacity: .8;
}

.pkg-body {
    padding: 20px 24px;
}

.pkg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    padding: 5px 0;
}

.pkg-item i {
    color: var(--blue);
    flex-shrink: 0;
}

.badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* ── ICU DASHBOARD ── */
.icu-section {
    padding: 72px 0;
    background: var(--dark);
}

.icu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(10px);
}

.icu-card h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icu-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.icu-stat:last-child {
    border-bottom: none;
}

.icu-stat .lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.icu-stat .val {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.dot-online {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    margin-right: 6px;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* ── INSURANCE ── */
.insurance {
    padding: 56px 0;
    background: var(--gray-bg);
}

.ins-logo {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--gray-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 70px;
}

/* ── BLOG ── */
.blog {
    padding: 72px 0;
    background: #fff;
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .25s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.blog-img-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img-placeholder.p1 {
    background: linear-gradient(135deg, #E3F0FC, #C8DFF8);
}

.blog-img-placeholder.p2 {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.blog-img-placeholder.p3 {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.blog-body {
    padding: 20px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 8px;
    display: block;
}

.blog-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-meta {
    font-size: 12px;
    color: var(--gray-text);
}

/* ── CONTACT ── */
.contact {
    padding: 72px 0;
    background: var(--gray-bg);
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-card i {
    font-size: 26px;
    color: var(--blue);
    margin-bottom: 12px;
}

.contact-card h6 {
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-text);
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 24px;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
    display: block;
    transition: color .2s;
    margin-bottom: 6px;
}

footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin-right: 8px;
    transition: all .2s;
    text-decoration: none !important;
}

.social-icon:hover {
    background: var(--blue);
    color: #fff;
}

/* ── FLOATING BUTTONS ── */
.float-emergency {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 2000;
    background: var(--orange);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(230, 81, 0, 0.5);
    animation: pulse-orange 2s infinite;
    text-decoration: none;
}

.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 2000;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}

/* ── AI CHAT BOT ── */
.chatbot-wrap {
    position: fixed;
    bottom: 160px;
    right: 20px;
    z-index: 1999;
}

.chatbot-btn {
    background: var(--blue);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    border: none;
}

.chatbot-popup {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.chatbot-header {
    background: var(--blue);
    color: #fff;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
}

.chatbot-body {
    padding: 14px;
    font-size: 13px;
    color: var(--gray-text);
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #E8EFF8;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #E8EFF8;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
}

.chatbot-input button {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 6px;
}

/* ── SEARCH MODAL ── */
.search-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1100;
}

.search-bar.active {
    display: block;
}

.search-bar input {
    width: 100%;
    border: 2px solid var(--blue);
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 15px;
    outline: none;
}

/* ── BACK TO TOP ── */
#backTop {
    position: fixed;
    bottom: 160px;
    left: 20px;
    z-index: 1999;
    background: var(--blue-pale);
    color: var(--blue);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow);
    border: none;
    transition: background .2s;
}

#backTop:hover {
    background: var(--blue);
    color: #fff;
}

/* ── COUNTER ANIMATION ── */
.counter {
    font-family: 'DM Sans', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width:768px) {
    .hero {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-img-wrap {
        margin-top: 36px;
    }

    .hero-main-img {
        height: 280px;
        max-width: 100%;
    }

    .hero-card {
        display: none;
    }

    .appt-form-wrap {
        padding: 28px 20px;
    }
}

/* ── TABS ── */
.spec-filters .btn {
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border: 1.5px solid #E8EFF8;
    color: var(--dark);
    background: #fff;
    transition: all .2s;
}

.spec-filters .btn.active,
.spec-filters .btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.bg-blue-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #0D47A1, #1976D2);
}

/* progress bar beds */
.bed-progress {
    margin-bottom: 16px;
}

.bed-progress .label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 5px;
}

.bed-progress .progress {
    height: 10px;
    border-radius: 10px;
    background: #E8EFF8;
}

.bed-progress .progress-bar {
    background: linear-gradient(90deg, #1565C0, #42A5F5);
    border-radius: 10px;
}

.bed-progress .progress-bar.orange {
    background: linear-gradient(90deg, #E65100, #FF9800);
}
}