/* HealthTrixss Professional Theme Variables */
:root {
    --primary-blue: #2E456B;
    --accent-orange: #FFA002;
    --dark-teal: #277493;
    --tan-accent: #E8F0F5;
    --light-orange: #FFCA4B;
    --light-green: #88ABA2;
    --light-teal: #67AA5F;
    --light-grey: #ABAFAS;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
}

/* Professional background theme overrides with HealthTrixss styling */
body {
    background-color: #FFFFFF !important;
    color: #2E456B !important;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.text-muted {
    color: #277493 !important;
}

/* Additional HealthTrixss Professional styling */
.navbar {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 4px rgba(46, 69, 107, 0.1);
}

.card {
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(46, 69, 107, 0.08);
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 69, 107, 0.15);
}

.card-header {
    background-color: #E8F0F5;
    border-bottom: 2px solid #ABAFAS;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.25rem 1.5rem;
}

/* Override Bootstrap primary color with HealthTrixss theme */
.text-primary {
    color: #2E456B !important;
}

.bg-primary {
    background-color: #2E456B !important;
}

.bg-primary-blue {
    background-color: #2E456B !important;
}

.border-primary {
    border-color: #2E456B !important;
}

/* Loading spinner */
.spinner-border {
    color: #2E456B;
}

.spinner-border-primary {
    color: #2E456B;
}

/* Success/Info colors with HealthTrixss theme */
.text-info {
    color: #277493 !important;
}

.text-success {
    color: #88ABA2 !important;
}

.text-warning {
    color: #FFCA4B !important;
}

/* Enhanced card effects for HealthTrixss */
.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #2E456B;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Link colors for HealthTrixss */
a {
    color: #2E456B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFA002;
    text-decoration: underline;
}

/* Progress indicators */
.progress-bar {
    background-color: #2E456B;
}

/* Custom HealthTrixss-style button */
.btn-healthtrixs {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-teal));
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-healthtrixs:hover {
    background: linear-gradient(135deg, var(--dark-teal), var(--primary-blue));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46, 69, 107, 0.3);
    color: white;
}

/* Secondary button style */
.btn-secondary {
    background-color: var(--light-grey);
    border-color: var(--light-grey);
    color: var(--text-dark);
    border-radius: 8px;
}

.btn-secondary:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

/* Additional HealthTrixss styling for professional look */
.container {
    max-width: 1200px;
}

.lead {
    color: var(--dark-teal);
    font-weight: 400;
    line-height: 1.6;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    font-weight: 600;
}

.form-text {
    color: var(--dark-teal) !important;
    font-size: 0.875rem;
}

/* Status indicators for HealthTrixss */
.badge {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.badge-primary {
    background-color: var(--primary-blue);
}

.badge-success {
    background-color: var(--light-green);
}

.badge-warning {
    background-color: var(--light-orange);
    color: var(--text-dark);
}

/* Hero section styling */
.hero-section {
    background: linear-gradient(135deg, var(--tan-accent), #ffffff);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Feature highlights */
.feature-icon {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

/* Footer enhancements */
footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
    color: var(--light-orange) !important;
}

/* Hero Banner Section - HealthTrixss Style */
.hero-banner {
    background-color: #2E456B !important;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 6rem 0;
    margin: 0;
    width: 100%;
}


.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: #FFFFFF !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.text-accent {
    color: #FFA002 !important;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    color: #FFFFFF !important;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Hero button styling */
.hero-actions .btn:first-child {
    background-color: #FFA002 !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-actions .btn:first-child:hover {
    background-color: #e89002 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 160, 2, 0.4);
}

.hero-actions .btn:last-child {
    background-color: transparent !important;
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-actions .btn:last-child:hover {
    background-color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #2E456B !important;
    transform: translateY(-1px);
}

/* Override conflicting button styles for hero section */
.hero-actions .btn-primary {
    background-color: #FFA002 !important;
    border: none !important;
    color: #FFFFFF !important;
}

.hero-actions .btn-primary:hover {
    background-color: #e89002 !important;
    color: #FFFFFF !important;
}

.hero-actions .btn-outline-primary {
    background-color: transparent !important;
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
}

.hero-actions .btn-outline-primary:hover {
    background-color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #2E456B !important;
}

.stats-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(46, 69, 107, 0.1);
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.stat-item {
    padding: 1rem 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2E456B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #277493;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive typography */
@media (max-width: 768px) {
    .hero-banner {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stats-card {
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 1.5rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 80%;
        margin: 0 auto 1rem auto;
    }
    
    .hero-banner {
        padding: 3rem 0 4rem 0 !important;
    }
}