/* 
===========================================
  LIGHT HEALTHCARE - GLOBAL STYLES
===========================================
*/

:root {
    /* Color Palette */
    --primary: #0B1F3A;       /* Deep Elite Blue */
    --secondary: #D4AF37;     /* Metallic Gold */
    --accent: #00C2CB;        /* Security Cyan */
    --bg-dark: #0B1F3A;
    --bg-light: #F7F9FC;
    --bg-white: #FFFFFF;
    --text-white: #FFFFFF;
    --text-dark: #000000;
    --text-body: #4B5563;
    --border-color: rgba(255, 255, 255, 0.1);
    --success: #10B981;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 120px 0;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(0, 194, 203, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Disable text selection globally */
    -webkit-user-drag: none; /* Disable image dragging */
}

/* Allow selection only for specific contact details */
.allow-select, 
.allow-select *,
input, 
textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800; /* Extra bold */
}

h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-dark {
    background-color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--secondary) !important;
}

.text-white {
    color: #ffffff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: white !important;
}

.mt-4 { margin-top: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }

.bg-light { background-color: #f8fafc; }
.text-white { color: white !important; }
.text-cyan { color: var(--accent) !important; }
.text-center { text-align: center; }
.text-success { color: var(--success); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #e6a600;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

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

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.4s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(15px);
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-container {
    min-height: 80px;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    min-height: 120px;
    transition: var(--transition-normal);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

.navbar.scrolled .logo-img {
    height: 100px;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 10px rgba(0, 194, 203, 0.2));
}
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #FFFFFF;
    min-width: 500px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: var(--border-radius-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.nav-item-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    text-decoration: none !important;
}

.dropdown-link:hover {
    background: rgba(0, 194, 203, 0.05);
    transform: translateX(5px);
}

.dropdown-link i {
    width: 40px;
    height: 40px;
    background: rgba(11, 31, 58, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.dropdown-link:hover i {
    background: var(--secondary);
    color: white;
}

.dropdown-link strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.dropdown-link span {
    display: block;
    color: var(--text-body);
    font-size: 0.8rem;
    font-weight: 400;
}

.dropdown-link::after {
    display: none !important; /* Remove the underline animation for dropdown links */
}


.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    padding: 40px 24px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    flex-direction: column;
    gap: 12px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
}

/* Section Headers */
.section-subtitle {
    display: inline-block;
    color: #000000;
    font-weight: 800; /* Extra bold */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 4px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* Hero Section - Split Premium Layout */
.hero {
    padding: 200px 0 100px;
    background: linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)), 
                url('premium_medical_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Giving more space to dashboard */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4.5rem !important;
    color: white !important;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem !important;
    max-width: 600px;
    margin: 0 0 40px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    text-shadow: none !important;
    text-align: left !important;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Monitor & Dashboard Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-floating {
    width: 100%;
    max-width: 750px; /* Increased to allow larger dashboard */
    position: relative;
    z-index: 5;
    border-radius: 16px;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.6),
        0 0 40px rgba(0, 242, 254, 0.1),
        inset 0 0 20px rgba(0, 242, 254, 0.05);
    aspect-ratio: 16 / 10;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.dashboard-floating:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.premium-dash {
    background: #0d1a2d;
    height: 100%;
    width: 100%;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.dash-header-new {
    background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent);
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-accent {
    font-size: 0.65rem;
    font-weight: 900;
    color: #00F2FE;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
    letter-spacing: 1px;
}

.dash-sep { margin: 0 10px; opacity: 0.3; color: #fff; }
.dash-title-sub { font-size: 0.55rem; opacity: 0.7; font-weight: 500; color: #f1c40f; }

.dash-user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-info { text-align: right; }
.user-name { display: block; font-size: 0.6rem; font-weight: 700; color: #fff; }
.user-role { display: block; font-size: 0.45rem; opacity: 0.5; color: #aaa; }

.user-avatar-small {
    width: 22px;
    height: 22px;
    background: url('https://i.pravatar.cc/100?u=sarah') center/cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}

.dash-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.dash-sidebar-new {
    width: 35px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.side-nav-item {
    font-size: 0.7rem;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-align: center;
    padding: 5px 0;
}

.side-nav-item.active { 
    opacity: 1; 
    color: #00F2FE; 
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.1), transparent);
    border-left: 2px solid #00F2FE;
}

.dash-grid-new {
    flex: 1;
    display: grid;
    grid-template-columns: 0.7fr 0.9fr 1.4fr;
    gap: 10px;
    padding: 10px;
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.08), transparent);
}

.dash-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Advanced Card Styling */
.mini-card, .large-card, .medium-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.card-label {
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
    letter-spacing: 0.8px;
    color: #fff;
}

.footer-bottom-mini {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

.footer-contact h4 {
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Donut Chart 3D */
.donut-wrap {
    position: relative;
    width: 65px;
    height: 65px;
    margin: 8px auto;
}

.donut-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #00F2FE 0% 65%, 
        #f1c40f 65% 85%, 
        rgba(255,255,255,0.1) 85% 100%
    );
    -webkit-mask: radial-gradient(transparent 62%, black 63%);
    mask: radial-gradient(transparent 62%, black 63%);
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.6));
    animation: rotateDash 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.donut-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
    font-family: 'Inter', sans-serif;
}

/* Gauge Chart Mock */
.gauge-wrap {
    position: relative;
    width: 65px;
    height: 40px;
    margin: 10px auto 0;
    overflow: hidden;
}

.gauge-arc {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #00F2FE 0% 50%, rgba(255,255,255,0.1) 50% 100%);
    -webkit-mask: radial-gradient(transparent 65%, black 66%);
    mask: radial-gradient(transparent 65%, black 66%);
    transform: rotate(90deg);
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.6));
}

.gauge-val {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 800;
}

/* Pie Chart 3D Mock */
.pie-chart-mock {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: 8px auto;
    background: conic-gradient(
        #3498db 0% 18%,
        #e67e22 18% 46%,
        #1abc9c 46% 74%,
        #f1c40f 74% 100%
    );
    box-shadow: 0 4px 0 #1f618d, 0 8px 15px rgba(0,0,0,0.5);
    transform: rotateX(25deg);
    transform-style: preserve-3d;
    position: relative;
    animation: scaleDash 1.5s ease-out;
}
.pie-chart-mock::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
    pointer-events: none;
}

.pie-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 8px;
}

.pie-legend span {
    font-size: 0.45rem;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
    font-weight: 500;
}

.pie-legend span::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Simple Flat Bar Chart */
.simple-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 90px;
    padding: 10px 5px 0;
    gap: 8px;
    width: 100%;
}

.s-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    animation: barRise 1s ease-out forwards;
    transform-origin: bottom;
    position: relative;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.s-bar::after {
    content: attr(data-percent);
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.6rem;
    padding: 3px 6px;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.s-bar:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.s-bar:hover {
    filter: brightness(1.2);
}

/* Performance Line Chart */
.line-chart-mock {
    height: 70px;
    width: 100%;
    margin-top: 5px;
    position: relative;
}

.line-animate {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dashLine 4s forwards ease-in-out;
    filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.5));
}

.point-glow {
    animation: pulseGlow 2s infinite;
    filter: drop-shadow(0 0 8px #fff);
}

/* Progress Bars refined */
.prog-row { margin-bottom: 6px; }
.prog-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.5rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.prog-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #00F2FE, #00ff88);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* Background Glow adjustment */
.dash-grid-new::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.03), transparent);
    pointer-events: none;
}

/* Animations */
@keyframes rotateDash {
    from { transform: rotate(-90deg); opacity: 0; }
    to { transform: rotate(0); opacity: 1; }
}

@keyframes scaleDash {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes dashLine {
    to { stroke-dashoffset: 0; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; r: 2; }
    50% { opacity: 1; r: 3; filter: blur(2px); }
}

@keyframes slideRight {
    from { width: 0; }
}
.dash-stat {
    border: 1px solid rgba(255,255,255,0.05);
}

.d-label {
    display: block;
    opacity: 0.5;
    font-size: 10px;
    margin-bottom: 5px;
}

.d-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.dash-chart-area {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.bar-chart-mock {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), #2A6FDB);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.monitor-neck {
    width: 60px;
    height: 30px;
    background: #1a1a1a;
    margin: 0 auto;
}

.monitor-base {
    width: 160px;
    height: 8px;
    background: #2a2a2a;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 203, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(40px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -16px;
}
.avatar:first-child { margin-left: 0; }

.trust-text {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #F59E0B;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.trust-text span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Dashboard Mockup - CSS Art */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    transform: perspective(1500px) rotateY(-15deg) rotateX(5deg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1500px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
    box-shadow: 30px 60px 80px rgba(0,0,0,0.15);
}

.dash-header {
    background: #f8fafc;
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #eab308; }
.dots span:nth-child(3) { background: #22c55e; }

.dash-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.dash-body {
    padding: 32px;
}

.stat-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    flex: 1;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(42, 111, 219, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon.cyan {
    background: rgba(0, 194, 203, 0.1);
    color: var(--accent);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-body);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trend {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.trend.up {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.dash-chart.combo-chart {
    position: relative;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    height: 220px;
    border-radius: var(--border-radius-md);
    padding: 40px 20px 0;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 0;
    border-bottom: none;
    overflow: visible;
    perspective: 800px;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.chart-bar-new {
    flex: 1;
    position: relative;
    z-index: 5;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px 6px 2px 2px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    transform-style: preserve-3d;
}

.chart-bar-new::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bar-color), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* 3D Depth Side */
.chart-bar-new::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
    background: rgba(0,0,0,0.2);
    transform: skewY(45deg);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.chart-bar-new:hover::after {
    transform: translateX(100%);
}

.bar-1 { --bar-color: #ef4444; }
.bar-2 { --bar-color: #f97316; }
.bar-3 { --bar-color: #f59e0b; }
.bar-4 { --bar-color: #eab308; }
.bar-5 { --bar-color: #84cc16; }
.bar-6 { --bar-color: #22c55e; }

.chart-bar-new:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px -5px var(--bar-color);
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    padding: 40px 0 20px 0;
}

.chart-grid-lines span {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.chart-tooltip {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
    transform: translate(-50%, -100%);
    margin-top: -10px;
}

.chart-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.chart-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--primary);
}

.chart-tooltip.active {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.chart-base-line {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: white;
    z-index: 10;
}

.dash-notification {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

.notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}

.notif-text strong {
    color: var(--text-dark);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    transform: perspective(1000px) translateZ(50px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-1 {
    top: -20px;
    right: -20px;
}

.badge-1 i { color: #F59E0B; }

.badge-2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s;
}

.badge-2 i { color: var(--success); }

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

/* Trust Bar */
.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.trust-item h4 {
    color: white;
    margin: 0;
    font-size: 1.125rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-container {
    width: 100%;
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-real-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}

.overlay-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin: 0;
}

.stat-box p {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 24px;
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 3px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(42, 111, 219, 0.05);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    color: white;
}

/* Premium RCM Card */
.premium-rcm-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 40px;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.premium-rcm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.premium-rcm-card .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.premium-rcm-card:hover .bg-img {
    transform: scale(1.1);
}

.premium-rcm-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
    z-index: 2;
}

.premium-rcm-card .card-content {
    position: relative;
    z-index: 3;
}



.premium-rcm-card h3 {
    font-size: 2.8rem;
    color: #000000;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
}


.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

/* Services Showcase Refined Layout */
.services-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.services-info {
    flex: 1;
}

.services-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.expertise-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.eh-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.eh-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.eh-text h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.eh-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.visual-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 0;
}

@media (max-width: 992px) {
    .services-showcase {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .services-visual {
        justify-content: center;
    }
    .eh-item {
        flex-direction: column;
        text-align: center;
    }
}


/* Automation */
.automation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.automation-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.auto-feature {
    display: flex;
    gap: 20px;
}

.af-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 194, 203, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.af-text h4 {
    color: #FFFFFF;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.glass-panel {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    transform: perspective(1200px) rotateY(10deg);
    transition: transform var(--transition-slow);
}

.glass-panel:hover {
    transform: perspective(1200px) rotateY(5deg) translateY(-10px);
}

.gp-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: monospace;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 100px; /* Note: pulse-dot in GP header is small, but there's another one in map visual. I should be careful. */
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse-success 1.5s infinite;
}

@keyframes pulse-success {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.gp-body {
    padding: 40px;
    position: relative;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.excel-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.excel-indicator i {
    color: #22c55e;
    font-size: 1.2rem;
}

.excel-indicator span {
    font-size: 0.8rem;
    font-family: monospace;
    color: #111827;
}

.code-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    min-height: 100px;
}

.console-font {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #1a202c;
}

.log-line {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid transparent;
    min-height: 1.2em;
}

.typing {
    width: 0;
    animation: 
        typing 2s steps(40, end) forwards,
        blink-caret 0.75s step-end infinite;
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 3s; }
.delay-3 { animation-delay: 5s; }

.success-log {
    color: #059669;
    font-weight: 600;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent); }
}

.status-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 8px;
    font-weight: 600;
}

/* New Rich Elements for AI Scrubbing */
.gp-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.stat-item {
    flex: 1;
}

.stat-item .label {
    display: block;
    font-size: 0.75rem;
    color: #475569; /* Darker gray for readability on white bg */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.mini-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1); /* Dark track for light bg */
    border-radius: 4px;
    overflow: hidden;
}

.mini-bar .fill {
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: growWidth 2s ease-out forwards;
}

@keyframes growWidth {
    from { width: 0; }
}

.data-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    filter: none;
}

.n-1 { top: 20%; left: 80%; animation: floatNode 4s infinite; }
.n-2 { top: 60%; left: 10%; animation: floatNode 5s infinite 1s; }
.n-3 { top: 80%; left: 70%; animation: floatNode 6s infinite 2s; }

@keyframes floatNode {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(10px, -20px); opacity: 0.6; }
}

/* Why Choose Us */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diff-card {
    padding: 32px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-sm);
}

.diff-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.diff-card h4 {
    font-size: 1.25rem;
}

.comparison-strip {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: 64px 0;
}

.comp-table-wrapper {
    overflow-x: auto;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table th, .comp-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comp-table th {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
}

.comp-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.traditional {
    color: var(--text-body);
}

.light-health {
    background-color: rgba(42, 111, 219, 0.03);
    font-weight: 500;
}

.light-health i {
    margin-right: 8px;
}

.badge-accent {
    display: inline-block;
    padding: 6px 12px;
    background: var(--secondary);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
}

.micro-cta {
    padding: 48px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px dashed var(--secondary);
}

/* Process */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-step {
    background: rgba(255, 255, 255, 1);
    padding: 32px;
    border-radius: var(--border-radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(42, 111, 219, 0.3);
}

.step-content {
    margin-top: 16px;
}

/* Specialties We Serve */
.specialties {
    background: #ffffff !important;
    color: #000000 !important;
}

.specialties .section-subtitle,
.specialties .section-title {
    color: #000000 !important;
}

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

@media (max-width: 1200px) {
    .specialties-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

.specialty-card {
    background: #f8fafc; /* Subtle light background for cards against white section */
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 32px 16px;
    transition: var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%; /* Ensure all cards are same height */
}

.specialty-card:hover {
    background: #f1f5f9;
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.spec-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 16px;
    height: 60px; /* Fixed height for icons to align text */
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialty-card h4 {
    color: #000000 !important;
    font-size: 1.15rem;
    margin: 0;
    font-weight: 800;
}



/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.insight-card {
    background: rgba(255, 255, 255, 1);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.insight-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.insight-content {
    padding: 24px;
}

.insight-date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 12px;
}

.insight-content h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.875rem;
}

.read-more i {
    transition: var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.result-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900; /* Max bold */
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1;
}

.result-number span {
    color: var(--accent);
}

.result-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.bg-shape {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.03);
    transform: rotate(30deg);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 1);
    padding: 40px;
    border-radius: var(--border-radius-md);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(42, 111, 219, 0.1);
    position: absolute;
    top: 32px;
    right: 32px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-body);
}

/* CTA & Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cta-info {
    padding: 64px;
    background: var(--primary);
    color: white;
}

.cta-info h2 {
    color: white;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.cd-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 4px;
}

.cd-item div {
    display: flex;
    flex-direction: column;
}

.cd-item span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cd-item strong {
    font-size: 1.125rem;
}

.contact-form-container {
    padding: 64px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #f8fafc;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    outline: none;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.1);
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    background: var(--primary);
    color: white;
}

.footer h4, .hipaa-footer h4, .rcm-footer h4 { 
    color: white; 
    margin-top: 0;
}
.footer p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-link-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer-link-list li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    height: 180px;
    background: #ffffff;
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 194, 203, 0.2);
    transition: all 0.4s ease;
    object-fit: contain;
}

.footer-logo:hover .logo-img {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 194, 203, 0.4);
}


.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: var(--secondary);
}

.footer h4 {
    color: white;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-weight: 500;
}

.cert-badge i {
    color: var(--success);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.875rem;
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #ffffff;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title { font-size: 3rem !important; }
    .hero-container { gap: 32px; }
    .services-grid, .diff-grid, .testimonials-grid, .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specialties-grid { grid-template-columns: repeat(3, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    
    .dropdown-content {
        min-width: 400px;
    }

    .rcm-hero-container { grid-template-columns: 1fr; text-align: center; }
    .rcm-hero-left { text-align: center; }
    .rcm-hero h1 { font-size: 3rem !important; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1, .hero-title { font-size: 2.25rem !important; line-height: 1.2 !important; }
    h2, .section-title { font-size: 1.85rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.5rem !important; }
    
    .section-desc { font-size: 0.95rem; margin-bottom: 24px; }
    .badge { font-size: 0.75rem; padding: 6px 12px; }

    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; color: white; font-size: 1.25rem; }
    .navbar.scrolled .mobile-menu-btn { color: white; background: rgba(255,255,255,0.1); }

    .logo-img { height: 60px; }
    .navbar.scrolled .logo-img { height: 50px; }
    .nav-container { min-height: 80px; }
    .navbar.scrolled .nav-container { min-height: 70px; }
    
    .hero { padding: 120px 0 50px; text-align: center; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 30px; }
    .hero-content { text-align: center; padding: 0 10px; }
    .hero-subtitle { text-align: center !important; margin: 0 auto 24px !important; font-size: 1rem !important; line-height: 1.6 !important; }
    .hero-btns { justify-content: center; flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; gap: 12px; }
    .btn-lg { padding: 14px 24px; font-size: 1rem; width: 100%; }
    
    .dashboard-floating {
        transform: none !important;
        max-width: 100%;
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .hero-container, .about-container, .automation-container, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-visual { margin-bottom: 30px; }
    
    .automation-container { grid-template-areas: "content" "visual"; }
    .automation-content { grid-area: content; text-align: center; }
    .automation-visual { grid-area: visual; margin-top: 30px; }
    
    .services-grid, .diff-grid, .testimonials-grid, .results-grid, .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    .result-number, .metric-val { font-size: 2.25rem !important; }
    .stat-number { font-size: 2rem !important; }

    .comp-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }
    .comp-table { min-width: 600px; font-size: 0.9rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo { justify-content: center; }
    .social-icons { justify-content: center; }
    .cert-badges { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 15px; }
    
    .cta-info, .contact-form-container { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; }
    
    .hipaa-grid { grid-template-columns: 1fr; gap: 20px; }
    .hipaa-card { padding: 30px 20px; }

    /* RCM and Details pages specific mobile fixes */
    .rcm-hero-container { gap: 30px; }
    .rcm-hero h1 { font-size: 2.5rem !important; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .metric-item { border-right: none; padding: 15px; background: rgba(255,255,255,0.05); border-radius: 12px; }
    
    .intro-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .intro-left h2 { font-size: 2.25rem !important; }

    .step-row { grid-template-columns: 1fr !important; gap: 20px !important; margin-bottom: 60px; }
    .step-content-card { width: 100% !important; left: 0 !important; margin-left: 0 !important; padding: 30px 20px !important; margin-top: 0 !important; text-align: center; }
    .step-badge { margin: 0 auto 20px; }
    .step-image { height: 300px !important; order: -1 !important; }
    
    .mid-cta h2 { font-size: 2.25rem !important; }
    
    .dashboard-main { padding: 20px !important; }
    .dash-widgets { grid-template-columns: 1fr !important; }
    .dashboard-sidebar { width: 100% !important; height: 60px !important; flex-direction: row !important; padding: 0 20px !important; justify-content: space-between !important; }
    .dash-nav { flex-direction: row !important; width: auto !important; }
    .modern-dashboard { flex-direction: column !important; }
}

@media (max-width: 480px) {
    h1, .hero-title { font-size: 2rem !important; }
    h2 { font-size: 1.65rem !important; }
    .specialties-grid { grid-template-columns: 1fr; }
    .result-number, .metric-val { font-size: 2rem !important; }
    .hero-btns { width: 100%; }
    .container { padding-left: 20px; padding-right: 20px; }
}

/* Preloader styles removed to avoid conflict with the clean logo display at the end of the file */



/* HIPAA Compliance Section */
.hipaa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.hipaa-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--border-color);
}

.hipaa-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.hipaa-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 111, 219, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition-normal);
}

.hipaa-card:hover .hipaa-icon {
    background: var(--secondary);
    color: white;
    transform: rotateY(360deg);
}

.hipaa-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.hipaa-card p {
    color: var(--text-body);
    font-size: 1rem;
}


/* Mobile Dropdown Styles */
.mobile-nav-item {
    width: 100%;
}

.mobile-dropdown-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.mobile-dropdown-trigger i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.02);
    padding-left: 20px;
}

.mobile-dropdown-content.active {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile-dropdown-link {
    display: block;
    color: var(--text-body);
    padding: 8px 0;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.mobile-dropdown-link:hover {
    color: var(--secondary);
}


/* Extended Animations */
.animate-fade {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.animate-fade.visible {
    opacity: 1;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hover scales for all buttons and interactive cards */
.service-card, .diff-card, .insight-card, .hipaa-card, .premium-rcm-card, .btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.service-card:hover, .diff-card:hover, .insight-card:hover, .hipaa-card:hover, .premium-rcm-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


/* Contact Map Visual */
.map-visual {
    position: relative;
    height: 180px;
    width: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.1);
}
.map-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) opacity(80%);
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.3;
    mix-blend-mode: overlay;
}
.map-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    color: var(--primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-accent 2s infinite;
}
@keyframes pulse-accent {
    0% { box-shadow: 0 0 0 0 rgba(0, 194, 203, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 194, 203, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 194, 203, 0); }
}
.map-badge strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1;
    margin-bottom: 2px;
}
.map-badge span {
    font-size: 0.7rem;
    color: var(--text-body);
}

/* Compliance Badge */
.compliance-badge-contact {
    background: rgba(0,0,0,0.3);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.1);
}
.compliance-badge-contact .badge-title {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}
.compliance-badge-contact strong {
    font-size: 1rem;
    color: white;
}
.compliance-badge-contact i {
    font-size: 2.5rem;
    color: var(--secondary);
}

/* HIPAA Form Banner */
.hipaa-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 16px;
    border-radius: var(--border-radius-sm);
}
.hipaa-banner i {
    font-size: 1.5rem;
    color: var(--success);
}
.hipaa-banner p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}
.hipaa-banner strong {
    color: var(--success);
}


/* 
===========================================
  PRELOADER - LH LOGO ANIMATION (AE PORT)
===========================================
*/

/* 
===========================================
  PRELOADER - PREMIUM LOGO ANIMATION
===========================================
*/

/* 
===========================================
  PRELOADER - CLEAN LOGO DISPLAY
===========================================
*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Changed to white for a cleaner look with the logo */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-anim-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.preloader-logo {
    width: 100%;
    height: auto;
    max-width: 500px;
    animation: simple-pulse 2s ease-in-out infinite;
}

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