/* Enhanced Dark Mode Fix */
[data-theme="dark"] {
    color-scheme: dark;
}

[data-theme="dark"] body {
    background: #1f2937 !important;
    color: #f9fafb !important;
}

[data-theme="dark"] h1, h2, h3, h4, h5, h6 {
    color: #f9fafb !important;
}

[data-theme="dark"] p {
    color: #e5e7eb !important;
}

/* Card and content containers */
[data-theme="dark"] .card,
[data-theme="dark"] .job-card,
[data-theme="dark"] .solution-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .service-highlight,
[data-theme="dark"] .feature-box,
[data-theme="dark"] .blog-post {
    background: #374151 !important;
    color: #f9fafb !important;
    border-color: #4b5563 !important;
}

/* Ensure all text in cards is visible */
[data-theme="dark"] .card h4,
[data-theme="dark"] .solution-card h4,
[data-theme="dark"] .feature-card h4,
[data-theme="dark"] .service-highlight h4,
[data-theme="dark"] .feature-box h4,
[data-theme="dark"] .blog-post h5 {
    color: #f9fafb !important;
}

[data-theme="dark"] .card p,
[data-theme="dark"] .solution-card p,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .service-highlight p,
[data-theme="dark"] .feature-box p,
[data-theme="dark"] .blog-post p {
    color: #d1d5db !important;
}

/* Blog post specific elements */
[data-theme="dark"] .blog-post .date {
    color: #9ca3af !important;
}

[data-theme="dark"] .blog-post a {
    color: #60a5fa !important;
}

/* Feature box content */
[data-theme="dark"] .feature-box-content h4 {
    color: #f9fafb !important;
}

[data-theme="dark"] .feature-box-content p {
    color: #d1d5db !important;
}

[data-theme="dark"] .feature-box-content a {
    color: #60a5fa !important;
}

/* Section backgrounds */
[data-theme="dark"] .section {
    background: #1f2937 !important;
}

/* Form elements */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: #374151 !important;
    color: #f9fafb !important;
    border-color: #4b5563 !important;
}

/* Header elements */
[data-theme="dark"] #Header,
[data-theme="dark"] #Top_bar {
    background: #374151 !important;
}

[data-theme="dark"] #Action_bar {
    background: #1f2937 !important;
}

[data-theme="dark"] #menu a {
    color: #f9fafb !important;
}

/* Footer */
[data-theme="dark"] footer {
    background: #111827 !important;
    color: #f9fafb !important;
}

/* Hero section */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%) !important;
}

/* Fix inline styled elements */
[data-theme="dark"] [style*="color: #2d3748"] {
    color: #f9fafb !important;
}

[data-theme="dark"] [style*="color: #4a5568"] {
    color: #d1d5db !important;
}