/* ============================================================
   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);
} */

/* Normal dropdown (About, News etc.) */
ul.dropdown-menu.mega-list {
    padding: 2em 1em !important;
}

ul.dropdown-menu.mega-list li {
    padding: 0;
}

.dropdown-item:hover {
    background: transparent !important;
    color: var(--blue) !important;
}


/* 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 rgb(0 0 0 / 20%);
    background: var(--orange);
    color: var(--white);
}

.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) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-link: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;
}


.home-specgrid {
    max-height: 650px;
    overflow-y: auto;
    padding-right: 5px;
}

/* nice scrollbar */
.home-specgrid::-webkit-scrollbar {
    width: 6px;
}

.home-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);
}


/* ===== BREADCRUMB SECTION (HEADER MATCH STYLE) ===== */
.page-breadcrumb {
    position: relative;
    background: linear-gradient(135deg, #1e4fa3, #2d6cdf);
    padding: 60px 0;
    overflow: hidden;
    color: #fff;
}

.page-breadcrumb::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.page-breadcrumb::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
}

.page-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.breadcrumb {
    background: transparent;
    font-size: 14px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #FF9800;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .page-breadcrumb {
        text-align: center;
        padding: 40px 0;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

/* ===== MAP SECTION ===== */
.map-section {
    background: #f8fbff;
    padding: 60px 0 0;
}

.map-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.map-header p {
    font-size: 14px;
    color: #64748b;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 0 20px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }

    .map-wrapper {
        margin: 0 10px;
    }
}


/* About */
.about-mini-card {
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.mini-icon.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.mini-icon.orange {
    background: var(--orange-pale);
    color: var(--orange);
}

.about-mini-card:hover .mini-icon.blue {
    background: var(--blue);
    color: #fff;
}

.about-mini-card:hover .mini-icon.orange {
    background: var(--orange);
    color: #fff;
}

/* COUNTER WRAP */
.counter-card {
    background: #fff;
    backdrop-filter: blur(0px);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgb(0 0 0 / 8%);
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 160px;
}

.counter-item h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 5px 0;
    color: var(--dark);
}

.counter-item p {
    font-size: 13px;
    color: var(--gray-text);
}

.divider {
    width: 1px;
    height: 50px;
    background: var(--gray-border);
}

@media(max-width:768px) {
    .counter-card {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        display: none;
    }
}

/* Values SEction */
.values-timeline .timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* Vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue-pale2);
}

/* Item */
.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 70px;
}

/* Icon */
.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
}

/* Content */
.timeline-content {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(21,101,192,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 40px rgba(21,101,192,0.12);
}
.timeline-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--gray-text);
}

.values-timeline {
    position: relative;
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
    z-index: 1;
    background-attachment: fixed;
}

.values-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 66%);
    z-index: -1;
}
.values-highlight {
    text-align: center;
    margin-top: 40px;
    font-weight: 700;
    font-size: 20px;
    color: var(--blue);
}


/* Awards */
/* HERO */
.awards-hero-min {
    padding: 80px 0;
    background: #f8fbff;
}

/* CENTER SHOWCASE */
.awards-showcase {
    position: relative;
    padding: 100px 0;
    background: #fff;
}

.award-center {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.award-center img {
    width: 80px;
    margin-bottom: 15px;
}

.award-center h2 {
    font-weight: 800;
}

/* FLOATING PANELS */
.award-panels {
    position: relative;
    margin-top: 60px;
}

.panel {
    width: 280px;
    padding: 20px;
    border-radius: 16px;
    background: #f5f9ff;
    position: relative;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.panel.left {
    transform: translateX(-60px);
}

.panel.right {
    transform: translateX(60px);
    background: #0f3c88;
    color: #fff;
}

.panel span {
    font-size: 12px;
    opacity: 0.7;
}

/* GALLERY */
.awards-gallery {
    overflow: hidden;
}

.gallery-row {
    display: flex;
}

.gallery-row img {
    width: 25%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-row img:hover {
    transform: scale(1.1);
}

/* IMPACT */
.awards-impact {
    padding: 80px 0;
    background: linear-gradient(135deg,#0f3c88,#1e63d5);
    color: #fff;
}

/* FILTER */
.gallery-filter {
    padding: 30px 0;
    background: #f8fbff;
}

.filter-btn {
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    background: #eaf2ff;
    font-size: 13px;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--blue);
    color: #fff;
}

/* CARD */
.gallery-card {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}


/* STATS */
.achievements-stats {
    background: #0f3c88;
    color: #fff;
    padding: 60px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    flex: 1;
    min-width: 150px;
}

.stat-box h2 {
    font-size: 36px;
    font-weight: 800;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.8;
}

/* IMPACT */
.impact-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.impact-text h2 {
    font-weight: 800;
}

/* STRIP */
.achievements-highlight {
    background: linear-gradient(135deg,#1e63d5,#0f3c88);
    color: #fff;
    padding: 60px 0;
}

/* =========================================
   PREMIUM APPOINTMENT SECTION
========================================= */
.appointment-card{
    background:#fff;
    border-radius:30px;
    padding:55px;
    border:1px solid #edf2f7;
    box-shadow:
        0 10px 30px rgba(15,23,42,.04),
        0 1px 2px rgba(15,23,42,.06);
    position:relative;
    overflow:hidden;
}

.appointment-card::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:260px;
    height:260px;
    background:rgba(37,99,235,.05);
    border-radius:50%;
}

.section-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#ff6b00;
    text-transform:uppercase;
    margin-bottom:15px;
    display:inline-block;
}
.appointment-card .form-label{
    font-size:14px;
    font-weight:600;
    color:#24345d;
    margin-bottom:10px;
}

.appointment-card .form-control,
.appointment-card .form-select{
    height:58px;
    border-radius:16px;
    border:1.5px solid #dce4ef;
    background:#fbfdff;
    padding:14px 18px;
    font-size:15px;
    color:#1e2a5a;
    transition:all .3s ease;
    box-shadow:none;
}

.appointment-card textarea.form-control{
    height:140px;
    resize:none;
    padding-top:16px;
}

.appointment-card .form-control:focus,
.appointment-card .form-select:focus{
    border-color:#2563eb;
    background:#fff;
    box-shadow:
        0 0 0 4px rgba(37,99,235,.10),
        0 8px 20px rgba(37,99,235,.08);
}

.appointment-card .form-control::placeholder{
    color:#9aa7bd;
}

.appointment-info-card{
    background:#fff;
    border-radius:28px;
    padding:38px;
    border:1px solid #edf2f7;
    box-shadow:
        0 10px 30px rgba(15,23,42,.04),
        0 1px 2px rgba(15,23,42,.06);
}

.appointment-contact-card{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    border-radius:28px;
    padding:40px;
    color:#fff;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 35px rgba(37,99,235,.28);
}

.appointment-contact-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-80px;
    right:-80px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.contact-item i{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.opd-row{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px dashed #dfe6f1;
}

.opd-row:last-child{
    border-bottom:none;
}

@media(max-width:991px){

    .appointment-card{
        padding:35px;
    }

}

@media(max-width:767px){

    .appointment-card{
        padding:25px;
        border-radius:22px;
    }

    .appointment-info-card,
    .appointment-contact-card{
        padding:28px;
        border-radius:22px;
    }

}

/* =========================================
   INTERNATIONAL PATIENT ASSISTANCE
========================================= */

.assist-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
    text-align: center;
}

.assist-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.12);
}
.assist-card h5{
    font-weight: bold;
    margin-top: 1em;
}
.assist-card p{
    color: var(--gray-text);
}

.feature-box{
    background:#fff;
    border-radius:22px;
    padding:30px;
    border:1px solid #edf2f7;
    height:100%;
    transition:.3s ease;
}

.feature-box:hover{
    border-color:#2563eb;
    transform:translateY(-4px);
}

.support-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.support-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:500;
    color:#24345d;
}

.support-item i{
    color:var(--blue);
    font-size:18px;
}

.assist-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.assist-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-100px;
    right:-100px;
}

.assist-cta h2{
    font-size:42px;
    font-weight:700;
}

.assist-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .assist-card,
    .feature-box{
        padding:25px;
    }

    .assist-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .assist-cta h2{
        font-size:30px;
    }

}

/* =========================================
   INSURANCE PAGE
========================================= */

.insurance-card{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.insurance-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.insurance-card img{
    height:60px;
    object-fit:contain;
    margin-bottom:20px;
}

.insurance-card h6{
    font-size:16px;
    font-weight:600;
    color:#24345d;
}

.insurance-points{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.insurance-point{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.insurance-point i{
    color:var(--blue);
    font-size:18px;
}

.claim-step{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    height:100%;
    position:relative;
    transition:.35s ease;
}

.claim-step:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:var(--blue-pale);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
    margin-bottom:25px;
}

.claim-step h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.claim-step p{
    color:#6b7280;
    margin-bottom:0;
}

.insurance-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.insurance-cta::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-90px;
    right:-90px;
}

.insurance-cta h2{
    font-size:42px;
    font-weight:700;
}

.insurance-cta p{
    font-size:17px;
    opacity:.95;
}

.insurance-card i {
    color: var(--blue);
    font-size: 28px;
    margin-bottom: 15px;
}

@media(max-width:767px){

    .insurance-card,
    .claim-step{
        padding:25px;
    }

    .insurance-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .insurance-cta h2{
        font-size:30px;
    }

}

/* =========================================
   ABOUT CITY PAGE
========================================= */

.city-features,
.connectivity-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.city-feature,
.connectivity-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.city-feature i,
.connectivity-item i{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.city-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.city-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.city-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    color:#fff;
    font-size:30px;
}

.city-card h5{
    margin-bottom:15px;
    color:#1e2a5a;
}

.city-card p{
    color:#6b7280;
    margin-bottom:0;
}

.tour-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #edf2f7;
    transition:.35s ease;
}

.tour-card:hover{
    transform:translateY(-6px);
}

.tour-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.tour-content{
    padding:28px;
}

.tour-content h5{
    margin-bottom:12px;
    color:#1e2a5a;
}

.tour-content p{
    margin-bottom:0;
    color:#6b7280;
}

.city-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.city-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.city-cta h2{
    font-size:42px;
    font-weight:700;
}

.city-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .city-card{
        padding:25px;
    }

    .tour-content{
        padding:22px;
    }

    .city-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .city-cta h2{
        font-size:30px;
    }

}

/* =========================================
   FACILITIES PAGE
========================================= */

.facility-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.facility-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.facility-item i{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #deebfb;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.facility-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.facility-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.facility-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    color:#fff;
    font-size:30px;
}

.facility-card h5{
    margin-bottom:15px;
    color:#1e2a5a;
}

.facility-card p{
    margin-bottom:0;
    color:#6b7280;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.gallery-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s ease;
}

.gallery-card:hover img{
    transform:scale(1.06);
}

.gallery-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:22px;
    color:#fff;
    font-size:20px;
    font-weight:600;
    background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
}

.facility-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.facility-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.facility-cta h2{
    font-size:42px;
    font-weight:700;
}

.facility-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .facility-card{
        padding:25px;
    }

    .gallery-card img{
        height:240px;
    }

    .facility-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .facility-cta h2{
        font-size:30px;
    }

}

/* =========================================
   PATIENT RIGHTS PAGE
========================================= */

.rights-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.rights-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.rights-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.rights-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.rights-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.rights-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    color:#fff;
    font-size:30px;
}

.rights-card h5{
    margin-bottom:15px;
    color:#1e2a5a;
}

.rights-card p{
    margin-bottom:0;
    color:#6b7280;
}

.responsibility-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    position:relative;
}

.responsibility-card:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
}

.resp-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:24px;
}

.responsibility-card h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.responsibility-card p{
    margin-bottom:0;
    color:#6b7280;
}

.rights-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.rights-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.rights-cta h2{
    font-size:42px;
    font-weight:700;
}

.rights-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .rights-card,
    .responsibility-card{
        padding:25px;
    }

    .rights-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .rights-cta h2{
        font-size:30px;
    }

}

/* =========================================
   FREE QUOTE PAGE
========================================= */

.quote-points{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.quote-point{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.quote-point i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.quote-form-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.quote-form-card .form-label{
    font-weight:600;
    color:#24345d;
    margin-bottom:10px;
}

.quote-form-card .form-control,
.quote-form-card .form-select{
    height:56px;
    border-radius:16px;
    border:1px solid #dce4ef;
    background:#fbfdff;
    padding:14px 18px;
    transition:.3s ease;
    box-shadow:none;
}

.quote-form-card textarea.form-control{
    height:140px;
    resize:none;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
    background:#fff;
}

.quote-step{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
}

.quote-step:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:24px;
}

.quote-step h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.quote-step p{
    margin-bottom:0;
    color:#6b7280;
}

.quote-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.quote-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.quote-cta h2{
    font-size:42px;
    font-weight:700;
}

.quote-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .quote-form-card,
    .quote-step{
        padding:25px;
    }

    .quote-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .quote-cta h2{
        font-size:30px;
    }

}

/* =========================================
   PREPARATION BEFORE VISIT PAGE
========================================= */

.visit-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.visit-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.visit-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.prep-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    text-align:center;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.prep-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.prep-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    color:#fff;
    font-size:30px;
}

.prep-card h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.prep-card p{
    margin-bottom:0;
    color:#6b7280;
}

.visit-step{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
}

.visit-step:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:24px;
}

.visit-step h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.visit-step p{
    margin-bottom:0;
    color:#6b7280;
}

.visit-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.visit-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.visit-cta h2{
    font-size:42px;
    font-weight:700;
}

.visit-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .prep-card,
    .visit-step{
        padding:25px;
    }

    .visit-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .visit-cta h2{
        font-size:30px;
    }

}

/* =========================================
   PATIENT SAFETY PAGE
========================================= */

.safety-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.safety-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.safety-item i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

.safety-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.safety-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.safety-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    color:#fff;
    font-size:30px;
}

.safety-card h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.safety-card p{
    margin-bottom:0;
    color:#6b7280;
}

.safety-step{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
}

.safety-step:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:24px;
}

.safety-step h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.safety-step p{
    margin-bottom:0;
    color:#6b7280;
}

.safety-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.safety-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.safety-cta h2{
    font-size:42px;
    font-weight:700;
}

.safety-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .safety-card,
    .safety-step{
        padding:25px;
    }

    .safety-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .safety-cta h2{
        font-size:30px;
    }

}

/* =========================================
   FAQ PAGE
========================================= */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.faq-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.faq-wrapper{
    background:#fff;
    border-radius:30px;
    padding:45px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.accordion-item{
    border:none;
    border-radius:20px !important;
    overflow:hidden;
    background:#fff;
    border:1px solid #edf2f7;
}

.accordion-button{
    padding:22px 26px;
    font-size:17px;
    font-weight:600;
    color:#1e2a5a;
    background:#fff;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#2563eb;
    color:#fff;
}

.accordion-button::after{
    filter:brightness(0);
}

.accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.accordion-body{
    padding:22px 26px;
    color:#6b7280;
    line-height:1.8;
    background:#fff;
}

.faq-support{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.faq-support::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.faq-support h2{
    font-size:42px;
    font-weight:700;
}

.faq-support p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .faq-wrapper{
        padding:25px;
        border-radius:24px;
    }

    .accordion-button{
        font-size:15px;
        padding:18px 20px;
    }

    .accordion-body{
        padding:18px 20px;
    }

    .faq-support{
        padding:45px 25px;
        border-radius:24px;
    }

    .faq-support h2{
        font-size:30px;
    }

}

/* =========================================
   VISITOR GUIDELINES PAGE
========================================= */

.visitor-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.visitor-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.visitor-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.visitor-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf2f7;
    text-align:center;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.visitor-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.visitor-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    color:#fff;
    font-size:30px;
}

.visitor-card h5{
    margin-bottom:14px;
    color:#1e2a5a;
}

.visitor-card p{
    margin-bottom:0;
    color:#6b7280;
}

.guideline-box{
    background:#fff;
    border-radius:28px;
    padding:40px;
    border:1px solid #edf2f7;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.guide-title{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.guide-title h3{
    margin-bottom:0;
    color:#1e2a5a;
}

.guide-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.guide-icon.danger{
    background:linear-gradient(135deg,#ef4444,#dc2626);
}

.guide-list{
    list-style:none;
    padding:0;
    margin:0;
}

.guide-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:18px;
    color:#475569;
    line-height:1.7;
}

.guide-list li::before{
    content:'•';
    position:absolute;
    left:0;
    top:0;
    color:#2563eb;
    font-size:22px;
}

.timing-box{
    background:#fff;
    border-radius:24px;
    padding:30px;
    border:1px solid #edf2f7;
}

.timing-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #edf2f7;
}

.timing-row:last-child{
    border-bottom:none;
}

.timing-row span{
    color:#475569;
    font-weight:500;
}

.timing-row strong{
    color:#1e2a5a;
}

.visitor-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.visitor-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.visitor-cta h2{
    font-size:42px;
    font-weight:700;
}

.visitor-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .visitor-card,
    .guideline-box{
        padding:25px;
    }

    .timing-row{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .visitor-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .visitor-cta h2{
        font-size:30px;
    }

}

/* =========================================
   PATIENT TESTIMONIALS PAGE
========================================= */

.testimonial-points{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.testimonial-point{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.testimonial-point i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.testimonial-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    border:1px solid #edf2f7;
    height:100%;
    position:relative;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.quote-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
}

.testimonial-card p{
    color:#475569;
    line-height:1.9;
    margin-bottom:30px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:62px;
    height:62px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h6{
    margin-bottom:4px;
    color:#1e2a5a;
}

.testimonial-user span{
    color:#64748b;
    font-size:14px;
}

.review-box{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #edf2f7;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.review-box:hover{
    transform:translateY(-5px);
}

.review-box h2{
    font-size:48px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:12px;
}

.review-box p{
    margin-bottom:0;
    color:#475569;
    font-weight:500;
}

.testimonial-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.testimonial-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.testimonial-cta h2{
    font-size:42px;
    font-weight:700;
}

.testimonial-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .testimonial-card{
        padding:25px;
    }

    .review-box{
        padding:30px 20px;
    }

    .review-box h2{
        font-size:38px;
    }

    .testimonial-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .testimonial-cta h2{
        font-size:30px;
    }

}

/* =========================================
   EVENTS PAGE
========================================= */

.event-points{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.event-point{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.event-point i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.event-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.event-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.event-image{
    position:relative;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s ease;
}

.event-card:hover .event-image img{
    transform:scale(1.06);
}

.event-date{
    position:absolute;
    top:20px;
    left:20px;
    width:72px;
    height:78px;
    border-radius:18px;
    background:#2563eb;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    line-height:1.1;
    font-weight:700;
}

.event-date span{
    font-size:28px;
}

.event-content{
    padding:30px;
}

.event-meta{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.event-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#64748b;
    font-size:14px;
    font-weight:500;
}

.event-content h4{
    font-size:24px;
    line-height:1.4;
    margin-bottom:16px;
    color:#1e2a5a;
}

.event-content p{
    color:#64748b;
    margin-bottom:24px;
    line-height:1.8;
}

.event-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.event-btn:hover{
    gap:14px;
}

@media(max-width:767px){

    .event-content{
        padding:24px;
    }

    .event-content h4{
        font-size:20px;
    }

}

/* =========================================
   MEDICAL UPDATES PAGE
========================================= */

.update-points{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.update-point{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.update-point i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.update-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.update-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

.update-image{
    position:relative;
    overflow:hidden;
}

.update-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s ease;
}

.update-card:hover .update-image img{
    transform:scale(1.06);
}

.update-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#2563eb;
    color:#fff;
    padding:10px 16px;
    border-radius:14px;
    font-size:13px;
    font-weight:600;
}

.update-badge.orange{
    background:#f97316;
}

.update-badge.green{
    background:#16a34a;
}

.update-content{
    padding:30px;
}

.update-meta{
    margin-bottom:16px;
}

.update-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#64748b;
    font-size:14px;
    font-weight:500;
}

.update-content h4{
    font-size:24px;
    line-height:1.4;
    margin-bottom:16px;
    color:#1e2a5a;
}

.update-content p{
    color:#64748b;
    margin-bottom:24px;
    line-height:1.8;
}

.update-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.update-btn:hover{
    gap:14px;
}

.update-cta{
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    padding:70px 40px;
    border-radius:32px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.update-cta::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-90px;
    right:-90px;
}

.update-cta h2{
    font-size:42px;
    font-weight:700;
}

.update-cta p{
    font-size:17px;
    opacity:.95;
}

@media(max-width:767px){

    .update-content{
        padding:24px;
    }

    .update-content h4{
        font-size:20px;
    }

    .update-cta{
        padding:45px 25px;
        border-radius:24px;
    }

    .update-cta h2{
        font-size:30px;
    }

}

/* =========================================
   EVENT DETAILS PAGE
========================================= */

.event-details-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.event-details-card img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.event-meta-details{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.event-meta-details span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#64748b;
    font-size:14px;
    font-weight:500;
}

.details-title{
    font-size:44px;
    line-height:1.4;
    margin-bottom:24px;
    color:#1e2a5a;
    font-weight:700;
}

.details-text{
    font-size:17px;
    line-height:2;
    color:#475569;
    margin-bottom:22px;
}

.event-highlights{
    margin-top:45px;
}

.highlight-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.highlight-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.event-register{
    margin-top:50px;
    padding:40px;
    border-radius:24px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
}

.event-register p{
    opacity:.95;
}

@media(max-width:767px){

    .event-details-card{
        padding:25px;
    }

    .event-details-card img{
        height:260px;
    }

    .details-title{
        font-size:28px;
    }

    .event-register{
        padding:28px;
    }

}


/* =========================================
   MEDICAL UPDATE DETAILS PAGE
========================================= */

.medical-details-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.medical-details-card img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.medical-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.medical-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#64748b;
    font-size:14px;
    font-weight:500;
}

.medical-title{
    font-size:44px;
    line-height:1.4;
    margin-bottom:24px;
    color:#1e2a5a;
    font-weight:700;
}

.medical-text{
    font-size:17px;
    line-height:2;
    color:#475569;
    margin-bottom:22px;
}

.medical-highlights{
    margin-top:45px;
}

.highlight-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:#24345d;
}

.highlight-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.medical-cta{
    margin-top:50px;
    padding:40px;
    border-radius:24px;
    background:linear-gradient(135deg,#2563eb,#0f5bff);
    color:#fff;
}

.medical-cta p{
    opacity:.95;
}

@media(max-width:767px){

    .medical-details-card{
        padding:25px;
    }

    .medical-details-card img{
        height:260px;
    }

    .medical-title{
        font-size:28px;
    }

    .medical-cta{
        padding:28px;
    }

}