/* ==================================================
   Dark Mode Theme - SabioInfotech
   ================================================== */

/* Dark Mode Color Variables */
html.dark-mode {
    --primary-color: #1a3a5c;
    --primary-dark: #0d1b2a;
    --accent-color: #ff4444;
    --secondary-color: #8b5a5c;
    --light-color: #1a2f4a;
    --dark-color: #e0e0e0;
    --gray-color: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #1a3a5c 0%, #2a5298 100%);
    --gradient-accent: linear-gradient(135deg, #ff4444 0%, #ff7777 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5a5c 0%, #9b5a7a 100%);
    --gradient-light-red: linear-gradient(135deg, #ff6666 0%, #ff9999 100%);
    --gradient-dark-red: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    --gradient-5: linear-gradient(135deg, #1a4d7a 0%, #3a8dd0 100%);
    --gradient-6: linear-gradient(135deg, #0d5a52 0%, #1a8f6f 100%);
    --gradient-7: linear-gradient(135deg, #8b6a1f 0%, #b8862f 100%);
    --gradient-8: linear-gradient(135deg, #0d6b5f 0%, #0d8f7f 100%);
    --gradient-9: linear-gradient(135deg, #5a2d6b 0%, #6b3d7b 100%);
    --gradient-10: linear-gradient(135deg, #1a1a2a 0%, #2a2a3a 100%);
    --gradient-11: linear-gradient(135deg, #8b3a1a 0%, #b85a2f 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* ================================================== 
   Common Card Classes (Light & Dark Mode)
   ================================================== */

/* Common Card Container */
.card-common {
    background: white;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

html.dark-mode .card-common {
    background: #1a2f4a;
    color: #e0e0e0;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
html.dark-mode .badge-tag {
    background: rgba(14, 44, 99, 0.5);
    color: #88ccff;
    /* border: 1px solid #333; */
}
/* Common Card Header */
.card-header-common {
    background: #f8f9fa;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

html.dark-mode .card-header-common {
    background: #252525;
    color: #f0f0f0;
    border-bottom: 1px solid #444;
}

/* Common Card Body */
.card-body-common {
    padding: 25px;
    color: #555555;
}

html.dark-mode .card-body-common {
    color: #d0d0d0;
}

/* Common Card Title */
.card-title-common {
    color: #1a2f4a;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

html.dark-mode .card-title-common {
    color: #f0f0f0;
}

/* Common Card Text */
.card-text-common {
    color: #666666;
    line-height: 1.6;
}

html.dark-mode .card-text-common {
    color: #b0b0b0;
}

/* Common Card Hover Effect */
.card-common:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

html.dark-mode .card-common:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Service Card Common Styles */
.service-card-common {
    background: white;
    color: #333333;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

html.dark-mode .service-card-common {
    background: #1a2f4a;
    color: #e0e0e0;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.service-card-common h3,
.service-card-common h4 {
    color: #1a2f4a;
    transition: color 0.3s ease;
}

html.dark-mode .service-card-common h3,
html.dark-mode .service-card-common h4 {
    color: #f0f0f0;
}

.service-card-common p {
    color: #666666;
}

html.dark-mode .service-card-common p {
    color: #b0b0b0;
}

.service-card-common:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

html.dark-mode .service-card-common:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* ================================================== 
   Home Page Services Section Dark Mode Styles
   ================================================== */

html.dark-mode .services-section {
    background: #0a1929;
}

html.dark-mode .section-header h2 {
    color: #f0f0f0;
}

html.dark-mode .section-subtitle {
    color: #b0b0b0;
}

html.dark-mode .service-card {
    background: #1a2f4a;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

html.dark-mode .service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

html.dark-mode .service-card h3 {
    color: #f0f0f0;
}

html.dark-mode .service-card p {
    color: #b0b0b0;
}

html.dark-mode .service-icon {
    color: #88ccff;
}

/* ================================================== 
   Service Page Specific Dark Mode Styles
   ================================================== */

/* Services Hero Section */
html.dark-mode .services-hero {
    background: linear-gradient(135deg, #5a2d3b 0%, #6b3d7b 100%);
}

/* Services Overview Section */
html.dark-mode .services-overview {
    background: #0a1929;
}

html.dark-mode .overview-content .lead {
    color: #88ccff;
}

html.dark-mode .service-highlights {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .highlight-item span {
    color: #e0e0e0;
}

/* Featured Services Section */
html.dark-mode .featured-services {
    background: #0a1929;
}

html.dark-mode .featured-service-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .featured-service-card h3 {
    color: #f0f0f0;
}

html.dark-mode .featured-service-card p {
    color: #b0b0b0;
}

html.dark-mode .featured-service-card .service-icon {
    background: rgba(26, 58, 111, 0.3);
    color: #88ccff;
}

html.dark-mode .featured-service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
}

html.dark-mode .service-features li {
    color: #d0d0d0;
}

html.dark-mode .service-cta {
    color: #88ccff;
}

html.dark-mode .service-cta:hover {
    color: #ffaa00;
}

/* Specialized Services Section */
html.dark-mode .specialized-services {
    background: #0a1929;
}

html.dark-mode .specialized-service-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .specialized-service-card h4 {
    color: #f0f0f0;
}

html.dark-mode .specialized-service-card p {
    color: #b0b0b0;
}

html.dark-mode .specialized-service-card .service-icon {
    background: rgba(26, 58, 111, 0.3);
    color: #88ccff;
}

html.dark-mode .specialized-service-card .tag {
    background: rgba(14, 44, 99, 0.2);
    color: #88ccff;
    border: 1px solid #333;
}

/* Service Process Section */
html.dark-mode .service-process {
    background: #0a1929;
}

html.dark-mode .process-content .lead {
    color: #88ccff;
}

html.dark-mode .process-step {
    /* background: #1a2f4a;
    border: 1px solid #333; */
}

html.dark-mode .process-step h3 {
    color: #f0f0f0;
}

html.dark-mode .process-step p {
    color: #b0b0b0;
}

html.dark-mode .process-step::before {
    background: #ff4444;
}

html.dark-mode .process-badge {
    background: #1a2f4a;
    color: #f0f0f0;
    border: 1px solid #ff4444;
}

/* Tech Stack Section */
html.dark-mode .tech-stack {
    background: #0a1929;
}

html.dark-mode .tech-item {
    background: #1a2f4a;
    border: 1px solid #333;
    color: #e0e0e0;
}

html.dark-mode .tech-item:hover {
    border-color: #ff4444;
}

html.dark-mode .tech-item i {
    color: #88ccff;
}

/* FAQ Section */
html.dark-mode .faq-section {
    background: #0a1929;
}

html.dark-mode .accordion-button {
    background: #1a2f4a;
    color: #e0e0e0;
    border: 1px solid #333;
}

html.dark-mode .accordion-button:not(.collapsed) {
    background: #252525;
    color: #f0f0f0;
    border-color: #ff4444;
}

html.dark-mode .accordion-body {
    background: #1a2f4a;
    color: #d0d0d0;
    border-color: #333;
}

/* Testimonials Section */
html.dark-mode .testimonial-section {
    background: #0a1929;
}

html.dark-mode .testimonial-card {
    background: #1a2f4a;
    border: 1px solid #333;
    color: #d0d0d0;
}

html.dark-mode .testimonial-card .stars {
    color: #ffaa00;
}

html.dark-mode .testimonial-author {
    color: #f0f0f0;
}

html.dark-mode .testimonial-role {
    color: #a0a0a0;
}

/* CTA Section */
html.dark-mode .cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
}

html.dark-mode .cta-section h2 {
    color: #f0f0f0;
}

html.dark-mode .cta-section p {
    color: #d0d0d0;
}

/* Body Dark Mode */
html.dark-mode body {
    background-color: #0a1929;
    color: #e0e0e0;
}

/* Text Colors */
html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4,
html.dark-mode h5,
html.dark-mode h6 {
    color: #f0f0f0;
}

html.dark-mode p {
    color: #d0d0d0;
}

html.dark-mode a {
    color: #fff;
}

/* Header/Navbar Dark Mode */
html.dark-mode header.navbar {
    background-color: rgba(13, 13, 13, 0.95) !important;
    border-bottom: 1px solid #333;
}

html.dark-mode .navbar-brand {
    color: #fff !important;
}

html.dark-mode .nav-link {
    color: #d0d0d0 !important;
    transition: all 0.3s ease;
}

html.dark-mode .nav-link:hover {
    color: #ff4444 !important;
}

html.dark-mode .nav-link.active {
    color: #ff4444 !important;
}

html.dark-mode .dropdown-menu {
    background-color: #1a2f4a !important;
    border: 1px solid #333 !important;
}

html.dark-mode .dropdown-item {
    color: #d0d0d0 !important;
}

html.dark-mode .dropdown-item:hover {
    background-color: #ff4444 !important;
    color: #fff !important;
}

/* Section Dark Mode */
html.dark-mode .section-heading {
    color: #f0f0f0;
}

html.dark-mode .title {
    color: #f0f0f0;
}

html.dark-mode .subtitle {
    color: #f0f0f0;
}

html.dark-mode .subtitle-des {
    color: #a0a0a0;
}

/* Card Dark Mode */
html.dark-mode .card {
    background-color: #1a2f4a !important;
    border: 1px solid #333 !important;
    color: #e0e0e0;
}

html.dark-mode .card-body {
    background-color: #1a2f4a;
}

html.dark-mode .card-title {
    color: #f0f0f0;
}

html.dark-mode .card-text {
    color: #d0d0d0;
}

/* Blog Dark Mode */
html.dark-mode .blog-banner {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(26, 58, 111, 0.95) 100%);
}

html.dark-mode .blog-card {
    background-color: #1a2f4a !important;
    border: 1px solid #333 !important;
}

html.dark-mode .blog-content {
    background-color: #1a2f4a !important;
    color: #e0e0e0;
}

html.dark-mode .blog-post-content {
    color: #e0e0e0;
}

html.dark-mode .blog-post-content p {
    color: #d0d0d0;
}

html.dark-mode .blog-post-content h2,
html.dark-mode .blog-post-content h3 {
    color: #f0f0f0;
}

/* Forms Dark Mode */
html.dark-mode .form-control {
    background-color: #1a2f4a !important;
    border: 1px solid #444 !important;
    color: #e0e0e0 !important;
}

html.dark-mode .form-control::placeholder {
    color: #888;
}

html.dark-mode .form-control:focus {
    background-color: #1a2f4a !important;
    border-color: #ff4444 !important;
    color: #e0e0e0 !important;
}

html.dark-mode textarea.form-control {
    background-color: #1a2f4a !important;
    color: #e0e0e0 !important;
}

/* Footer Dark Mode */
html.dark-mode footer {
    background-color: #0a1929 !important;
    border-top: 1px solid #333 !important;
    color: #d0d0d0;
}

html.dark-mode footer a {
    color: #a0a0a0;
}

html.dark-mode footer a:hover {
    color: #ff4444;
}

/* Buttons Dark Mode */
html.dark-mode .btn-primary {
    background: var(--gradient-primary) !important;
    color: white !important;
}

html.dark-mode .btn-primary:hover {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%) !important;
    color: white !important;
}

html.dark-mode .btn-outline {
    border-color: #e0e0e0;
    color: #e0e0e0;
}

html.dark-mode .btn-outline:hover {
    background-color: #ff4444;
    border-color: #ff4444;
    color: white;
}

/* Preloader Dark Mode */
html.dark-mode #preloader {
    background: #0a1929;
    color: #f0f0f0;
}

/* Tables Dark Mode */
html.dark-mode table {
    color: #e0e0e0;
    border-color: #333;
}

html.dark-mode thead {
    background-color: #1a2f4a;
    color: #f0f0f0;
}

html.dark-mode tbody tr {
    border-bottom: 1px solid #333;
}

html.dark-mode tbody tr:hover {
    background-color: #1a2f4a;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 8px 12px;
    transition: all 0.3s ease;
    margin-left: 15px;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    color: #ff4444;
}

html.dark-mode .theme-toggle-btn:hover {
    color: #ffaa00;
}

/* Smooth Transition */
html,
html * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html.dark-mode-transition,
html.dark-mode-transition * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Additional Element Styling */
html.dark-mode code {
    background-color: #1a2f4a;
    color: #ff9999;
    border: 1px solid #333;
}

html.dark-mode blockquote {
    border-left-color: #ff4444;
    color: #d0d0d0;
}

html.dark-mode hr {
    border-color: #333;
}

/* Breadcrumb Dark Mode - All Pages */
html.dark-mode .breadcrumb {
    background-color: transparent;
    color: #d0d0d0;
}

html.dark-mode .breadcrumb-nav {
    margin-top: 20px;
}

html.dark-mode .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

html.dark-mode .breadcrumb-item a {
    color: #88ccff;
    transition: color 0.3s ease;
}

html.dark-mode .breadcrumb-item a:hover {
    color: #ffaa00;
}

html.dark-mode .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

html.dark-mode .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Global Page Header Breadcrumb */
html.dark-mode .global-page-header .breadcrumb {
    background: none;
    font-size: 16px;
    padding: 8px 0;
}

html.dark-mode .global-page-header .breadcrumb .active,
html.dark-mode .global-page-header .breadcrumb li a {
    color: rgba(255, 255, 255, 0.9);
}

html.dark-mode .global-page-header .breadcrumb li a:hover {
    color: #88ccff;
}

/* ================================================== 
   About Page Specific Dark Mode Styles
   ================================================== */

/* About Hero Section */
html.dark-mode .about-hero {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(26, 58, 111, 0.95) 100%);
}

html.dark-mode .about-hero .page-hero h1 {
    color: #f0f0f0;
}

html.dark-mode .about-hero .hero-subtitle {
    color: #d0d0d0;
}

/* Company Story Section */
html.dark-mode .company-story {
    background: #0a1929;
}

html.dark-mode .story-content .lead {
    color: #88ccff;
}

html.dark-mode .story-stats {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .stat-box h3 {
    color: #88ccff;
}

html.dark-mode .stat-box p {
    color: #a0a0a0;
}

/* Core Values Section */
html.dark-mode .core-values {
    background: #0a1929;
}

html.dark-mode .value-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .value-card h3 {
    color: #f0f0f0;
}

html.dark-mode .value-card p {
    color: #b0b0b0;
}

html.dark-mode .value-icon {
    background: rgba(26, 58, 111, 0.3);
    color: #88ccff;
}

html.dark-mode .value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: white;
}

html.dark-mode .tag {
    background: rgba(14, 44, 99, 0.2);
    color: #88ccff;
    border: 1px solid #333;
}

/* Team Excellence Section */
html.dark-mode .team-excellence {
    background: #0a1929;
}

html.dark-mode .excellence-content .lead {
    color: #88ccff;
}

html.dark-mode .excellence-features {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .feature-check span {
    color: #d0d0d0;
}

html.dark-mode .excellence-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .excellence-card h4 {
    color: #f0f0f0;
}

html.dark-mode .excellence-card p {
    color: #b0b0b0;
}

/* Technology Stack Section */
html.dark-mode .tech-stack {
    background: #0a1929;
}

html.dark-mode .tech-stack .section-header h2 {
    color: #f0f0f0;
}

html.dark-mode .tech-item {
    background: #1a2f4a;
    border: 1px solid #333;
    color: #d0d0d0;
}

html.dark-mode .tech-item i {
    color: #88ccff;
}

html.dark-mode .tech-item:hover {
    border-color: #ff4444;
    background: #252525;
}

html.dark-mode .tech-name {
    color: #e0e0e0;
}

/* Team Members Section */
html.dark-mode .team-section {
    background: #0a1929;
}

html.dark-mode .team-member {
    background: #1a2f4a;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

html.dark-mode .team-member h3 {
    color: #f0f0f0;
}

html.dark-mode .team-member p {
    color: #b0b0b0;
}

html.dark-mode .team-member .team_designation {
    color: #88ccff;
}

html.dark-mode .team-member .social-icons a {
    background: rgba(14, 44, 99, 0.5);
    color: #88ccff;
    border: 1px solid #333;
}

html.dark-mode .team-member .social-icons a:hover {
    background: #ff4444;
    color: white;
    border-color: #ff4444;
}

/* Testimonials/Client Section */
html.dark-mode .testimonial-section {
    background: #0a1929;
}

html.dark-mode .testimonial-card {
    background: #1a2f4a;
    border: 1px solid #333;
    color: #d0d0d0;
}

html.dark-mode .testimonial-card .stars {
    color: #ffaa00;
}

html.dark-mode .testimonial-author {
    color: #f0f0f0;
}

html.dark-mode .testimonial-role {
    color: #a0a0a0;
}

html.dark-mode .testimonial-company {
    color: #888888;
}

/* Call to Action Section */
html.dark-mode .cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
}

html.dark-mode .cta-section h2 {
    color: #f0f0f0;
}

html.dark-mode .cta-section p {
    color: #d0d0d0;
}

/* ================================================== 
   Career Page Specific Dark Mode Styles
   ================================================== */

/* Career Hero Section */
html.dark-mode .career-hero {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.1) 0%, rgba(26, 58, 111, 0.05) 100%);
}

html.dark-mode .career-hero .hero-title {
    color: #f0f0f0;
}

html.dark-mode .career-hero .hero-description {
    color: #b0b0b0;
}

html.dark-mode .career-hero .floating-element {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Why Join Us Section */
html.dark-mode .why-join-section {
    background: #0a1929;
}

html.dark-mode .benefit-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .benefit-card h3 {
    color: #f0f0f0;
}

html.dark-mode .benefit-card p {
    color: #b0b0b0;
}

html.dark-mode .benefit-icon {
    background: rgba(26, 58, 111, 0.3);
    color: #88ccff;
}

html.dark-mode .benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: white;
}

html.dark-mode .benefit-card::before {
    background: var(--gradient-primary);
}

html.dark-mode .benefit-card:hover::before {
    background: var(--gradient-primary);
    opacity: 0.2;
}

/* Job Openings Section */
html.dark-mode .job-openings-section {
    background: #0a1929;
}

html.dark-mode .job-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .job-header {
    background: linear-gradient(135deg, rgba(26, 58, 111, 0.1) 0%, rgba(42, 82, 152, 0.05) 100%);
    border-bottom: 1px solid #333;
}

html.dark-mode .job-title h3 {
    color: #f0f0f0;
}

html.dark-mode .job-tag {
    background: rgba(14, 44, 99, 0.2);
    color: #88ccff;
    border: 1px solid #333;
}

html.dark-mode .job-description p {
    color: #b0b0b0;
}

html.dark-mode .job-requirements li {
    color: #d0d0d0;
}

html.dark-mode .job-footer {
    border-top: 1px solid #333;
}

html.dark-mode .job-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Application Process Section */
html.dark-mode .process-section {
    background: #0a1929;
}

html.dark-mode .process-timeline::before {
    background: var(--gradient-primary);
}

html.dark-mode .step-number {
    background: var(--gradient-primary);
    color: white;
}

html.dark-mode .step-content h3 {
    color: #f0f0f0;
}

html.dark-mode .step-content p {
    color: #b0b0b0;
}

/* Testimonials/Culture Section */
html.dark-mode .culture-section {
    background: #0a1929;
}

html.dark-mode .culture-card {
    background: #1a2f4a;
    border: 1px solid #333;
    color: #d0d0d0;
}

html.dark-mode .culture-card h4 {
    color: #f0f0f0;
}

html.dark-mode .culture-card p {
    color: #b0b0b0;
}

/* Benefits Grid Section */
html.dark-mode .benefits-grid-section {
    background: #0a1929;
}

html.dark-mode .benefits-grid-item {
    background: #1a2f4a;
    border: 1px solid #333;
    border-radius: 10px;
}

html.dark-mode .benefits-grid-item i {
    color: #88ccff;
}

html.dark-mode .benefits-grid-item h4 {
    color: #f0f0f0;
}

html.dark-mode .benefits-grid-item p {
    color: #b0b0b0;
}

/* CTA Section */
html.dark-mode .career-cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
}

html.dark-mode .career-cta-section h2 {
    color: #f0f0f0;
}

html.dark-mode .career-cta-section p {
    color: #d0d0d0;
}

/* Newsletter Section */
html.dark-mode .newsletter-section {
    background: #0a1929;
}

html.dark-mode .newsletter-form {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .newsletter-form input {
    background: #252525;
    border: 1px solid #444;
    color: #e0e0e0;
}

html.dark-mode .newsletter-form input::placeholder {
    color: #888;
}

html.dark-mode .newsletter-form input:focus {
    border-color: #ff4444;
    background: #1a2f4a;
}

/* Stats Section */
html.dark-mode .stats-section {
    background: #0a1929;
}

html.dark-mode .stat-item {
    /* background: #1a2f4a;
    border: 1px solid #333;
    border-radius: 10px; */
}

html.dark-mode .stat-number {
    color: #88ccff;
}

html.dark-mode .stat-label {
    color: #d0d0d0;
}

/* ================================================== 
   Contact Page Specific Dark Mode Styles
   ================================================== */

/* Contact Hero Section */
html.dark-mode .contact-hero {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(26, 58, 111, 0.95) 100%);
}

html.dark-mode .contact-hero::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.03) 0%, transparent 50%);
}

html.dark-mode .contact-banner h1 {
    color: #f0f0f0;
}

html.dark-mode .contact-banner p {
    color: #d0d0d0;
}

/* Contact Card */
html.dark-mode .contact-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .contact-card h2 {
    color: #f0f0f0;
}

html.dark-mode .contact-card label {
    color: #e0e0e0;
}

html.dark-mode .contact-card .form-text {
    color: #a0a0a0;
}

/* Contact Info Card */
html.dark-mode .contact-info-card {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .contact-info-card h4 {
    color: #f0f0f0;
}

html.dark-mode .contact-info-card p {
    color: #e0e0e0;
}

html.dark-mode .contact-info-card p.text-muted {
    color: #d0d0d0 !important;
}

html.dark-mode .contact-info-card a {
    color: #88ccff;
    transition: color 0.3s ease;
}

html.dark-mode .contact-info-card a:hover {
    color: #ffaa00;
}

/* Text Muted in Dark Mode */
html.dark-mode .text-muted {
    color: #d0d0d0 !important;
}

html.dark-mode .small.text-muted {
    color: #b0b0b0 !important;
}

html.dark-mode .contact-info-card .icon-box {
    background: var(--gradient-primary);
    color: white;
}

html.dark-mode .contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #ff4444;
}

/* Form Elements */
html.dark-mode .form-control,
html.dark-mode .form-select {
    background-color: #1a2f4a;
    border: 2px solid #444;
    color: #e0e0e0;
}

html.dark-mode .form-control::placeholder {
    color: #888;
}

html.dark-mode .form-control:focus,
html.dark-mode .form-select:focus {
    background-color: #1a2f4a;
    border-color: #ff4444;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.25rem rgba(255, 68, 68, 0.1);
}

html.dark-mode textarea.form-control {
    background-color: #1a2f4a;
    color: #e0e0e0;
}

html.dark-mode textarea.form-control:focus {
    background-color: #1a2f4a;
    border-color: #ff4444;
}

/* Map Container */
html.dark-mode .map-container {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

html.dark-mode .map-container iframe {
    filter: invert(1) hue-rotate(180deg);
    opacity: 0.9;
}

/* Contact Section Background */
html.dark-mode .contact-section {
    background: #0a1929;
}

html.dark-mode .contact-section .section-header h2 {
    color: #f0f0f0;
}

html.dark-mode .contact-section .section-header p {
    color: #b0b0b0;
}

/* Social Links Section */
html.dark-mode .social-links-section {
    background: #0a1929;
}

html.dark-mode .social-link-item {
    background: #1a2f4a;
    border: 1px solid #333;
}

html.dark-mode .social-link-item:hover {
    border-color: #ff4444;
    background: #252525;
}

html.dark-mode .social-link-item a {
    color: #88ccff;
}

html.dark-mode .social-link-item a:hover {
    color: #ffaa00;
}

html.dark-mode .social-link-item i {
    color: #88ccff;
}

/* Response Message */
html.dark-mode .alert-success {
    background-color: #0d5a2a;
    border-color: #0d8a3a;
    color: #88ff88;
}

html.dark-mode .alert-danger {
    background-color: #5a0d0d;
    border-color: #8a1a1a;
    color: #ff8888;
}

/* CTA Section */
html.dark-mode .contact-cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
}

html.dark-mode .contact-cta-section h2 {
    color: #f0f0f0;
}

html.dark-mode .contact-cta-section p {
    color: #d0d0d0;
}

/* ================================================== 
   Navigation Dropdown Menu Dark Mode Styles
   ================================================== */

html.dark-mode .navbar-nav .dropdown-menu {
    background: #1a2f4a;
    border: 2px solid #88ccff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

html.dark-mode .dropdown-toggle::after {
    color: #88ccff !important;
}

html.dark-mode .dropdown-toggle:hover::after {
    color: #ffaa00 !important;
}

html.dark-mode .dropdown-toggle[aria-expanded="true"]::after {
    color: #ffaa00 !important;
}

html.dark-mode .dropdown-item {
    color: #e0e0e0;
    border-left-color: transparent;
}

html.dark-mode .dropdown-item:hover {
    background: rgba(136, 204, 255, 0.15);
    color: #88ccff;
    border-left-color: #88ccff;
}

html.dark-mode .dropdown-item.active {
    background: rgba(136, 204, 255, 0.2);
    color: #88ccff;
    border-left-color: #88ccff;
}

/* Modal Dark Mode */
html.dark-mode .modal-content {
    background-color: #1a2f4a !important;
    color: #e0e0e0;
    border: 1px solid #333 !important;
}

html.dark-mode .modal-header {
    border-bottom: 1px solid #333 !important;
}

html.dark-mode .modal-footer {
    border-top: 1px solid #333 !important;
}

html.dark-mode .close,
html.dark-mode .btn-close {
    filter: invert(1);
}

html.dark-mode .blog-post-excerpt {
    color: #b0b0b0;
}

html.dark-mode .post-meta {
    color: #a0a0a0;
}

html.dark-mode .categories-list a {
    color: #a0a0a0;
}

html.dark-mode .categories-list a:hover {
    color: #88ccff;
}

html.dark-mode .recent-date {
    color: #a0a0a0;
}

html.dark-mode .widget-description {
    color: #a0a0a0;
}

.blog-post-excerpt {
    color: var(--gray-color);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

html.dark-mode .blog-post-excerpt {
    color: #b0b0b0;
}

/* Alert Dark Mode */
html.dark-mode .alert {
    background-color: #1a2f4a;
    border: 1px solid #333;
    color: #e0e0e0;
    background-color: #0d3a52;
    border-color: #0d5a82;
    color: #88ccff;
}

html.dark-mode .alert-success {
    background-color: #0d5a2a;
    border-color: #0d8a3a;
    color: #88ff88;
}

html.dark-mode .alert-warning {
    background-color: #5a3a0d;
    border-color: #8a6a1a;
    color: #ffdd88;
}

html.dark-mode .alert-danger {
    background-color: #5a0d0d;
    border-color: #8a1a1a;
    color: #ff8888;
}

/* Badge Dark Mode */
html.dark-mode .badge {
    background-color: #ff4444 !important;
    color: white !important;
}

/* Pagination Dark Mode */
html.dark-mode .pagination {
    background-color: transparent;
}

html.dark-mode .page-link {
    background-color: #1a2f4a;
    border: 1px solid #333;
    color: #e0e0e0;
}

html.dark-mode .page-link:hover {
    background-color: #ff4444;
    border-color: #ff4444;
    color: white;
}

html.dark-mode .page-item.active .page-link {
    background-color: #ff4444;
    border-color: #ff4444;
}

