/* ============================================
   DR. POMPY DEVRAJ - PREMIUM LANDING PAGE CSS
   Light Theme · Logo Colors · Alternating BG
   ============================================ */

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

/* ── CSS Variables ── */
:root {
    --primary: #E11D48; /* Sophisticated Reddish Pink (Rose-600) */
    --primary-light: #E1F5FE;
    --primary-lighter: #F0FAFF;
    --primary-dark: #BE123C; /* Sophisticated Darker Rose-Red (Rose-700) */
    --secondary: #29B6F6;
    --secondary-light: #E1F5FE;
    --secondary-lighter: #F0FAFF;
    --secondary-dark: #0288D1;
    --accent: #00BCD4;
    --white: #FFFFFF;
    --off-white: #FAFBFD;
    --light-gray: #F4F6FA;
    --light-blue-bg: #F0F7FF;
    --light-pink-bg: #F0FAFF;
    --border: #E8ECF2;
    --border-light: #F0F2F7;
    --text-dark: #1A1D2E;
    --text-body: #4A5068;
    --text-muted: #8890A4;
    --text-light: #B0B8C9;
    --gradient-primary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #4FC3F7 100%);
    --gradient-mixed: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    --gradient-hero: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 50%, #F0FAFF 100%);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.12);
    --shadow-pink: 0 4px 20px rgba(2,136,209,0.15);
    --shadow-blue: 0 4px 20px rgba(41,182,246,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; height: auto; }

/* ── Utility ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-label::before { display: none; }

.section-header .section-subtitle {
    margin: 0 auto;
}

.text-pink { color: var(--primary); }
.text-blue { color: var(--secondary-dark); }

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 4px 0;
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

/* ── Responsive Visibility & Navbar Centering ── */
.desktop-only {
    display: none !important;
}
.mobile-only {
    display: block !important;
}

@media (min-width: 769px) {
    .desktop-only {
        display: flex !important;
    }
    .mobile-only {
        display: none !important;
    }
    .nav-logo-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }
    .nav-links {
        flex: 2;
        justify-content: center !important;
    }
    .nav-cta-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    padding: 8px 12px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary-dark);
    transform: translateX(-50%) scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links a:hover {
    color: var(--secondary-dark);
    background: rgba(2, 136, 209, 0.06);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scale(1.5);
}

.nav-cta {
    padding: 10px 22px !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-radius: 50px;
    color: white !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
    border: none;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
    color: white !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   HERO SECTION — White + Soft Gradient
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(240, 247, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(240, 250, 255, 0.8) 100%);
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Premium background dot grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(41, 182, 246, 0.06) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.02) 70%);
    animation: pulse 8s ease infinite alternate;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(41, 182, 246, 0.12) 0%, rgba(41, 182, 246, 0.02) 70%);
    animation: pulse 10s ease infinite alternate-reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: 40%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, rgba(41, 182, 246, 0.08) 100%);
    animation: float 12s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typographic top label (no capsule badge background) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-badge::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 850;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-qualification {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--primary);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-body);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-subtitle .subtitle-bold {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-hospitals {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.hospitals-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.hospitals-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.hospital-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light-gray);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.hospital-tag i {
    color: var(--secondary-dark);
    font-size: 0.8rem;
}

.hospital-tag:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    border-color: rgba(225, 29, 72, 0.15);
    transform: translateY(-2px);
}

/* Shimmer primary button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::before {
    left: 150%;
    transition: left 0.8s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Glass panel stats grid */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.hero-stat {
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-stat-number.blue {
    color: var(--secondary-dark);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    .hero-stat {
        border-right: none;
    }
    .hero-stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }
}

/* Premium Visual Right Column */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, rgba(41, 182, 246, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    filter: blur(30px);
}

.hero-image-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed;
    animation: float 8s ease-in-out infinite;
}

.hero-image-ring-1 {
    inset: -20px;
    border-color: rgba(225, 29, 72, 0.15);
}

.hero-image-ring-2 {
    inset: -50px;
    border-color: rgba(41, 182, 246, 0.1);
    animation-delay: -4s;
}

.hero-doctor-img {
    position: relative;
    width: 360px;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    z-index: 2;
    background: var(--off-white);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.12);
    border: 6px solid var(--white);
    outline: 1.5px solid rgba(225, 29, 72, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 6s ease-in-out infinite;
}

.hero-doctor-img:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: 0 30px 60px rgba(225, 29, 72, 0.2);
    outline-color: rgba(225, 29, 72, 0.2);
}

/* Glassmorphism Floating Cards */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 5s ease-in-out infinite;
}

.hero-float-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.hero-float-card.card-top {
    top: 6%;
    right: -10%;
    animation-delay: -1s;
}

.hero-float-card.card-bottom {
    bottom: 10%;
    left: -10%;
    animation-delay: -3.5s;
}

.float-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.float-card-icon.pink {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(225, 29, 72, 0.04) 100%);
    color: var(--primary);
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.float-card-icon.blue {
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.15) 0%, rgba(41, 182, 246, 0.04) 100%);
    color: var(--secondary-dark);
    border: 1px solid rgba(41, 182, 246, 0.2);
}

.float-card-title {
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.float-card-sub {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════
   ABOUT — White BG
   ══════════════════════════════════════ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.about-card::after {
    display: none;
}

.about-profile-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-2xl);
    display: block;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.about-profile-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(2,136,209,0.35);
    z-index: 2;
}

.about-badge .num {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .lbl {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.about-text {
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-feature:hover {
    background: var(--primary-lighter);
    border-color: rgba(233,30,99,0.12);
    transform: translateX(4px);
}

.about-feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   SERVICES — Light Blue/Gray BG
   ══════════════════════════════════════ */
.services {
    padding: 100px 0;
    background: var(--light-blue-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(225, 228, 235, 0.6);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 29, 46, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(2,136,209,0.02) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 29, 46, 0.07);
    border-color: rgba(225, 228, 235, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(1.3);
    background: radial-gradient(circle, var(--glow-color, rgba(2,136,209,0.05)) 0%, transparent 70%);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: var(--primary-lighter);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(6deg);
}

.service-name {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: var(--theme-color, var(--primary));
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 2;
    align-content: flex-start;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    background: #FAFBFD;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--text-body);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.service-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--tag-shadow, rgba(0,0,0,0.05));
    background: var(--tag-bg, var(--primary-light));
    border-color: var(--tag-border, rgba(233,30,99,0.15));
    color: var(--theme-color, var(--primary));
}

/* ── Service Card Thematic Color Schemes (Nth-child Rotations) ── */

/* Theme 1: Neurology, Mental Health (Indigo/Purple) - Card 1, 7 */
.service-card:nth-child(6n+1) {
    --theme-color: #6366F1;
    --glow-color: rgba(99, 102, 241, 0.08);
    --tag-bg: rgba(99, 102, 241, 0.05);
    --tag-border: rgba(99, 102, 241, 0.15);
    --tag-shadow: rgba(99, 102, 241, 0.15);
}
.service-card:nth-child(6n+1)::before {
    background: linear-gradient(90deg, #4F46E5, #818CF8);
}
.service-card:nth-child(6n+1) .service-icon {
    background: rgba(99, 102, 241, 0.08);
}

/* Theme 2: Gastroenterology, Rheumatology (Orange/Amber) - Card 2, 8 */
.service-card:nth-child(6n+2) {
    --theme-color: #D97706;
    --glow-color: rgba(245, 158, 11, 0.08);
    --tag-bg: rgba(245, 158, 11, 0.05);
    --tag-border: rgba(245, 158, 11, 0.15);
    --tag-shadow: rgba(245, 158, 11, 0.15);
}
.service-card:nth-child(6n+2)::before {
    background: linear-gradient(90deg, #D97706, #FBBF24);
}
.service-card:nth-child(6n+2) .service-icon {
    background: rgba(245, 158, 11, 0.08);
}

/* Theme 3: Cardiology, Proctology (Rose/Red) - Card 3, 9 */
.service-card:nth-child(6n+3) {
    --theme-color: #E11D48;
    --glow-color: rgba(225, 29, 72, 0.08);
    --tag-bg: rgba(225, 29, 72, 0.05);
    --tag-border: rgba(225, 29, 72, 0.15);
    --tag-shadow: rgba(225, 29, 72, 0.15);
}
.service-card:nth-child(6n+3)::before {
    background: linear-gradient(90deg, #E11D48, #FDA4AF);
}
.service-card:nth-child(6n+3) .service-icon {
    background: rgba(225, 29, 72, 0.08);
}

/* Theme 4: Respiratory, Ophthalmology (Teal/Cyan) - Card 4, 10 */
.service-card:nth-child(6n+4) {
    --theme-color: #0D9488;
    --glow-color: rgba(13, 148, 136, 0.08);
    --tag-bg: rgba(13, 148, 136, 0.05);
    --tag-border: rgba(13, 148, 136, 0.15);
    --tag-shadow: rgba(13, 148, 136, 0.15);
}
.service-card:nth-child(6n+4)::before {
    background: linear-gradient(90deg, #0D9488, #6EE7B7);
}
.service-card:nth-child(6n+4) .service-icon {
    background: rgba(13, 148, 136, 0.08);
}

/* Theme 5: Surgery, Nephrology (Emerald/Green) - Card 5, 11 */
.service-card:nth-child(6n+5) {
    --theme-color: #059669;
    --glow-color: rgba(5, 150, 105, 0.08);
    --tag-bg: rgba(5, 150, 105, 0.05);
    --tag-border: rgba(5, 150, 105, 0.15);
    --tag-shadow: rgba(5, 150, 105, 0.15);
}
.service-card:nth-child(6n+5)::before {
    background: linear-gradient(90deg, #059669, #A7F3D0);
}
.service-card:nth-child(6n+5) .service-icon {
    background: rgba(5, 150, 105, 0.08);
}

/* Theme 6: Dermatology, Emergency (Blue/Sky) - Card 6, 12 */
.service-card:nth-child(6n) {
    --theme-color: #0288D1;
    --glow-color: rgba(2, 136, 209, 0.08);
    --tag-bg: rgba(2, 136, 209, 0.05);
    --tag-border: rgba(2, 136, 209, 0.15);
    --tag-shadow: rgba(2, 136, 209, 0.15);
}
.service-card:nth-child(6n)::before {
    background: linear-gradient(90deg, #0288D1, #81D4FA);
}
.service-card:nth-child(6n) .service-icon {
    background: rgba(2, 136, 209, 0.08);
}

/* ══════════════════════════════════════
   STATS — White BG with gradient bar
   ══════════════════════════════════════ */
.stats {
    padding: 72px 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--radius-xl);
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-card:nth-child(even) { background: var(--secondary-lighter); }
.stat-card:nth-child(even)::after { background: var(--gradient-secondary); }

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card:nth-child(even) .stat-number { color: var(--secondary-dark); }

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════
   LOCATIONS — Light Pink BG
   ══════════════════════════════════════ */
.locations {
    padding: 100px 0;
    background: var(--light-pink-bg);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.location-card {
    background: var(--white);
    border: 1px solid rgba(225, 228, 235, 0.6);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(13, 29, 46, 0.02);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.05);
    border-color: rgba(225, 29, 72, 0.1);
}

.location-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover::after {
    transform: scaleY(1);
}

.location-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(225, 29, 72, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover .location-icon {
    transform: scale(1.08);
    background: rgba(225, 29, 72, 0.1);
}

.location-name {
    font-size: 1.05rem;
    font-weight: 750;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s ease;
}

.location-card:hover .location-name {
    color: var(--primary);
}

.location-address {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.55;
}

/* ══════════════════════════════════════
   CTA — Gradient BG
   ══════════════════════════════════════ */
.cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(2,136,209,0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: var(--secondary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   FAQ — Light Blue BG
   ══════════════════════════════════════ */
.faq {
    padding: 100px 0;
    background: var(--light-blue-bg);
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(233,30,99,0.12);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: rgba(233,30,99,0.2);
    box-shadow: var(--shadow-pink);
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-dark);
    transition: var(--transition);
    user-select: none;
    gap: 12px;
}

.faq-question:hover { color: var(--primary); }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.85;
}

/* ══════════════════════════════════════
   CONTACT — White BG
   ══════════════════════════════════════ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    gap: 14px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(233,30,99,0.12);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-card-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-card-value a {
    color: var(--text-dark);
}

.contact-card-value a:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--light-gray);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-body);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink);
}

.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 380px;
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ══════════════════════════════════════
   FOOTER — Dark Section
   ══════════════════════════════════════ */
.footer {
    background: #1A1D2E;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 90px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.84rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

.biztraffics-link {
    font-weight: 700;
    background: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: var(--transition);
}

.biztraffics-link:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

/* ══════════════════════════════════════
   FIXED BUTTONS
   ══════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 84px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    border-color: rgba(225, 29, 72, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Unified Contact Bar styling */
.quick-contact-bar {
    position: fixed;
    bottom: 20px;
    right: 24px;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.95);
    z-index: 999;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white !important;
}

.contact-btn i {
    font-size: 1.05rem;
}

.contact-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.contact-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.contact-btn.call {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

.contact-btn.call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.3);
}

@media (max-width: 768px) {
    .quick-contact-bar {
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 5px;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--border-light);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
        gap: 8px;
    }
    .contact-btn {
        flex: 0 1 auto;
        width: 125px;
        justify-content: center;
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    .contact-btn i {
        font-size: 0.9rem !important;
    }
    .scroll-top {
        bottom: 60px;
        right: 16px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats-row { justify-content: center; }
    .hero-visual { display: none; }
    .about .container { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { max-width: 400px; margin: 0 auto; }
    .about-profile-img { height: auto !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px;
        gap: 18px;
        transition: var(--transition-slow);
        box-shadow: -5px 0 30px rgba(0,0,0,0.08);
        z-index: 1000;
    }
    .nav-links.open { right: 0; }
    .mobile-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 28px 20px; }
    .service-tag { font-size: 0.74rem; padding: 5px 11px; }
    .service-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    
    /* Responsive Hero Height & Padding */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 105px 0 45px !important;
    }
    
    /* Responsive Logo Size */
    .nav-logo img {
        height: 40px !important;
    }
    .navbar.scrolled .nav-logo img {
        height: 36px !important;
    }

    /* Responsive Hero Text Sizes */
    .hero-badge {
        font-size: 0.68rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 12px !important;
        gap: 6px !important;
    }
    .hero-badge::before {
        width: 16px !important;
        height: 1.5px !important;
    }
    .hero-title {
        font-size: 2.1rem !important;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }
    .hero-qualification {
        font-size: 1rem !important;
        margin-top: 4px !important;
    }
    .hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        margin-bottom: 20px !important;
    }
    .hero-subtitle .subtitle-bold {
        font-size: 1.1rem !important;
        margin-bottom: 4px !important;
    }

    /* Responsive Side-by-Side Hero Buttons */
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-bottom: 24px !important;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        flex: 0 1 auto !important;
        padding: 8px 16px !important;
        font-size: 0.76rem !important;
        font-weight: 700 !important;
        justify-content: center !important;
        white-space: nowrap !important;
        border-radius: 50px !important;
    }
    .hero-actions .btn-primary i,
    .hero-actions .btn-outline i {
        font-size: 0.78rem !important;
    }

    /* Responsive Hospital Tags */
    .hero-hospitals {
        margin-top: 24px !important;
        padding-top: 16px !important;
    }
    .hospitals-label {
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
    }
    .hospitals-list {
        justify-content: center !important;
        gap: 8px 10px !important;
    }
    .hospital-tag {
        font-size: 0.75rem !important;
        padding: 5px 10px !important;
    }

    .cta-card { padding: 40px 20px; }
    .about-features { grid-template-columns: 1fr; }
    .footer { padding-bottom: 100px !important; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-contact-column {
        grid-column: 1 / -1;
    }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .stats-grid { gap: 10px; }
    .stat-card { padding: 18px 10px; }
    .stat-number { font-size: 1.6rem; }
    .stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
    .stat-label { font-size: 0.75rem; }
    .hero-actions { flex-direction: row !important; justify-content: center !important; gap: 8px !important; }
    .hero-stats-row { flex-wrap: wrap; gap: 20px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .section-title { font-size: 1.7rem; }

    /* Compact Modal on Mobile */
    .reachout-modal-content {
        padding: 16px 20px !important;
        border-radius: var(--radius-lg) !important;
    }
    .reachout-modal-header {
        margin-bottom: 12px !important;
    }
    .reachout-modal-header h3 {
        font-size: 1.2rem !important;
    }
    .reachout-modal-header p {
        font-size: 0.78rem !important;
    }
    .reachout-modal-content .form-group {
        margin-bottom: 10px !important;
        gap: 3px !important;
    }
    .reachout-modal-content label {
        font-size: 0.7rem !important;
    }
    .reachout-modal-content input,
    .reachout-modal-content textarea {
        padding: 8px 12px !important;
        font-size: 0.82rem !important;
    }
    .form-submit-btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* ══════════════════════════════════════
   GALLERY SECTION & LIGHTBOX
   ══════════════════════════════════════ */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--light-gray);
    color: var(--text-body);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--secondary-dark);
    background: var(--primary-lighter);
    border-color: rgba(2, 136, 209, 0.15);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    border: 1px solid var(--border-light);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 29, 46, 0.85) 0%, rgba(13, 29, 46, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.gallery-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.gallery-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* Lightbox Modal CSS */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 20, 30, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 75%;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    text-align: center;
    color: white;
    width: 100%;
}

.lightbox-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 8px;
}

.lightbox-caption h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

/* ══════════════════════════════════════
   REACH OUT POPUP MODAL
   ══════════════════════════════════════ */
.reachout-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 29, 46, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.reachout-modal.open {
    opacity: 1;
    visibility: visible;
}

.reachout-modal-content {
    background: var(--white);
    width: calc(100% - 32px);
    max-width: 480px;
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.reachout-modal-content::-webkit-scrollbar {
    width: 6px;
}
.reachout-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.reachout-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 10px;
}

.reachout-modal.open .reachout-modal-content {
    transform: scale(1);
}

.reachout-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.reachout-modal-close:hover {
    color: var(--primary);
    transform: scale(1.15) rotate(90deg);
}

.reachout-modal-header {
    margin-bottom: 20px;
}

.reachout-modal-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.reachout-modal-header p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Form Styling */
.reachout-modal-content .form-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reachout-modal-content .form-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (min-width: 600px) {
    .reachout-modal-content .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

.reachout-modal-content label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reachout-modal-content input,
.reachout-modal-content textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--off-white);
}

.reachout-modal-content input:focus,
.reachout-modal-content textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Success Animation Styles */
.success-animation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 10px;
}

.success-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 8px;
}

.success-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

/* Checkmark Animation (Pure CSS) */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 19px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(76, 175, 80, 0.2);
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 1;
    box-sizing: content-box;
}
.success-checkmark .check-icon .icon-fix {
    width: 5px;
    height: 90px;
    background-color: #FFFFFF;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    transform: rotate(-45deg);
}

@keyframes rotate-circle {
    0% { transform: rotate(-45deg); }
    5% { transform: rotate(-45deg); }
    12% { transform: rotate(-405deg); }
    100% { transform: rotate(-405deg); }
}
@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 19px; top: 46px; }
}
@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

/* Ensure button styling supports button elements inside .contact-btn */
.contact-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

/* ══════════════════════════════════════
   VIDEO PRESENTATION SECTION
   ══════════════════════════════════════ */
.video-section {
    padding: 100px 0;
    background: var(--light-blue-bg);
    position: relative;
}

.video-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ══════════════════════════════════════
   IN-PAGE CONTACT FORM CARD
   ══════════════════════════════════════ */
.contact-form-card {
    background: var(--white);
    border: 1px solid rgba(225, 228, 235, 0.7);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(13, 29, 46, 0.03);
}

.contact-form-card .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-card .form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 600px) {
    .contact-form-card .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.contact-form-card label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--off-white);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.contact-form-card .form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════
   PAGE LOADER OVERLAY
   ══════════════════════════════════════ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Uiverse.io loader by satyamchaudharydev */
.loader {
    --clr: #e11d48;
    width: 50px;
    height: 50px;
    position: relative;
}

.loader:before, .loader:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 10px solid transparent;
    border-top-color: var(--clr);
}

.loader:before {
    z-index: 100;
    animation: loaderSpin 1s infinite;
}

.loader:after {
    border: 10px solid #f3d0d9;
}

@keyframes loaderSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
