/* ===== CSS VARIABLES & THEME CONFIGURATION ===== */
        :root {
            /* Bootstrap Variables Overrides */
            --bs-primary: #D50C14;
            --bs-primary-rgb: 213, 12, 20;
            --bs-secondary: #FABE14;
            --bs-secondary-rgb: 214, 161, 0;
            --bs-primary-light: #dbeafe;
            --bs-accent-color: #FABE14;
            --bs-border-gray: #dfdfdf;

            /* Color Palette */
            --white: #ffffff;
            --light-gray: #f8fafc;
            --border-gray: #e2e8f0;
            --medium-gray: #64748b;
            --dark-gray: #374151;
            --dark: #1f2937;

            /* Text Colors */
            --text-primary: #000000;
            --text-secondary: #0e0e0e;
            --text-muted: #000000;
            --text-light: var(--white);
            --text-accent: var(--bs-primary);

            /* Background Colors */
            --body-bg: var(--white);
            --section-bg: var(--white);
            --card-bg: var(--light-gray);
            --hero-overlay: rgba(15, 23, 42, 0.7);
            --nav-bg: var(--white);
            --content-bg: var(--white);

            /* Layout & Spacing */
            --container-max-width: 90%;
            --grid-gap: 1.5rem;
            --content-spacing: 1.5rem;
            --card-padding: 1.5rem;
            --section-padding: 2rem;
            --border-radius: 8px;

            /* Typography */
            --font-family: 'Satoshi', Arial, sans-serif;
            --font-size-base: 1rem;
            --font-size-sm: 0.875rem;
            --font-size-lg: 1.125rem;
            --font-size-xl: 1.25rem;
            --font-size-2xl: 1.5rem;
            --font-size-3xl: 1.875rem;
            --line-height-base: 1.6;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;

            /* Shadows & Effects */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition-fast: 0.15s ease;
            --transition-normal: 0.3s ease;

            /* Borders & Focus */
            --border-style: solid;
            --border-color: var(--border-gray);
            --border: 1px var(--border-style) var(--border-color);
            --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.1);
            --focus-color: var(--bs-primary);

            /* Component Dimensions */
            --hero-min-height: 60vh;
            --nav-height: 100px;
            --disability-nav-height: 60px;
            --button-padding: 0.75rem 1.5rem;
            --input-padding: 0.75rem;
            --icon-size: 1.5rem;
            --section-icon-size: 1.5rem;
        }

        /* ===== DARK MODE THEME CONFIGURATION ===== */
        body.dark-mode {
            /* Dark Mode Color Overrides */
            --bs-primary: #a50106;
            --bs-primary-rgb: 213, 12, 20;
            --bs-primary-light: #334155;
            --bs-secondary: #a67c00;
            --bs-secondary-rgb: 214, 161, 0;
            --bs-accent-color: #836200;

            /* Dark Mode Color Palette */
            --white: #fbfbfb;
            --light-gray: #23272a;
            --border-gray: #334155;
            --medium-gray: #64748b;
            --dark-gray: #d1d5db;
            --dark: #0e0e0e;

            /* Dark Mode Text Colors */
            --text-primary: #f1f5f9;
            --text-secondary: #e5e7eb;
            --text-muted: #94a3b8;
            --text-light: #f1f5f9;
            --text-accent: #f7f7f7;

            /* Dark Mode Background Colors */
            --body-bg: #181a1b;
            --section-bg: #23272a;
            --card-bg: #23272a;
            --hero-overlay: rgba(15, 23, 42, 0.85);
            --nav-bg: #23272a;
            --content-bg: #181a1b;

            /* Dark Mode Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
            --border-color: #334155;
            --focus-color: var(--bs-primary);
        }

        /* ===== DARK MODE COMPONENT STYLES ===== */
        /* Dark Mode Layout Components */
        body.dark-mode .simple-card,
        body.dark-mode .info-card,
        body.dark-mode .stat-card,
        body.dark-mode .image-card,
        body.dark-mode .card,
        body.dark-mode .elegant-card {
            background: var(--card-bg);
            border: 1px var(--border-style) var(--border-color);
        }

        body.dark-mode .simple-card h4,
        body.dark-mode .info-card h4,
        body.dark-mode .stat-card .stat-number,
        body.dark-mode .card-title,
        body.dark-mode .header-title {
            color: var(--text-accent);
        }

        body.dark-mode .simple-card p,
        body.dark-mode .info-card p,
        body.dark-mode .stat-card .stat-label,
        body.dark-mode .card-text,
        body.dark-mode .elegant-text {
            color: var(--text-primary);
        }

        body.dark-mode .quick-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
        }

        /* Dark Mode Navigation */
        body.dark-mode .nav-btn {
            background: var(--card-bg);
            border-color: var(--border-color);
            color: var(--text-primary);
        }

        body.dark-mode .nav-btn:hover {
            background: var(--bs-secondary);
            border-color: var(--bs-primary);
        }

        body.dark-mode .nav-btn.active {
            background: var(--bs-primary);
            color: var(--white);
        }

        body.dark-mode .section-nav {
            background: var(--nav-bg);
            border-color: var(--border-color);
        }

        body.dark-mode .main-navbar {
            background: var(--nav-bg);
            border-color: var(--border-color);
        }

        /* Dark Mode Typography */
        body.dark-mode .subsection h3 {
            background: var(--card-bg);
            border-color: var(--bs-primary);
            color: var(--text-primary);
        }

        body.dark-mode .subsection h4,
        body.dark-mode .subsection h5,
        body.dark-mode .subsection h6 {
            color: var(--text-primary);
            border-color: var(--bs-accent-color);
        }

        /* Dark Mode Utility Classes */
        body.dark-mode .bg-primary {
            background-color: var(--bs-primary) !important;
        }

        body.dark-mode .text-primary {
            color: var(--text-accent) !important;
        }

        body.dark-mode .text-muted {
            color: var(--text-primary) !important;
        }

        body.dark-mode .small {
            color: var(--text-primary);
        }

        body.dark-mode .shadow {
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
        }

        body.dark-mode .border-0 {
            border: 1px solid var(--border-color) !important;
        }

        body.dark-mode .fas.text-white {
            color: var(--text-light) !important;
        }

        body.dark-mode .fas.text-primary,
        body.dark-mode .fas.text-secondary {
            color: var(--text-accent) !important;
        }

        body.dark-mode * {
            box-sizing: border-box;
        }
        
        .bg-secondary {
            background-color: var(--bs-secondary) !important;
        }
        /* ===== BASE STYLES & GLOBAL RESET ===== */
        body {
            background: var(--body-bg);
            font-family: var(--font-family);
            line-height: var(--line-height-base);
            color: var(--text-primary);
            margin: 0;
            padding: 0;
        }

        /* ===== ACCESSIBILITY STYLES ===== */
        /* Skip Link for Screen Readers */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--bs-primary);
            color: var(--text-light);
            padding: 8px 16px;
            text-decoration: none;
            border-radius: var(--border-radius);
            z-index: 1000;
            font-weight: var(--font-weight-semibold);
        }

        .skip-link:focus {
            top: 6px;
            outline: 2px solid var(--text-light);
        }

        /* Focus Styles */
        *:focus {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
            box-shadow: 0 0 0 5px rgba(var(--bs-primary-rgb), 0.3);
        }

        button:focus,
        .nav-btn:focus,
        .disability-nav-btn:focus {
            outline: 3px solid var(--text-light);
            outline-offset: 2px;
            box-shadow: 0 0 0 3px var(--bs-secondary);
            border: 2px solid var(--bs-secondary);
        }

        /* ===== NAVIGATION COMPONENTS ===== */
        /* Main Application Navbar */
        .main-navbar {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            background: var(--white);
            border-bottom: var(--border);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }

        /* Disability Categories Navigation Bar */
        .disability-navbar {
            position: relative;
            left: 0;
            right: 0;
            height: var(--disability-nav-height);
            background: var(--bs-primary);
            z-index: 999;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Disability Content Sections */
        .disability-content {
            width: 100%;
            transition: opacity 0.3s ease-in-out;
        }

        .disability-content[style*="display: none"] {
            opacity: 0;
        }

        .disability-content[style*="display: block"] {
            opacity: 1;
        }

        /* Disability Navigation Elements */
        .disability-nav-title {
            color: var(--text-light);
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-semibold);
            margin-right: 2rem;
        }

        .disability-nav-buttons {
            display: flex;
            gap: 0.5rem;
            flex: 1;
        }

        .disability-nav-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 0.5em 0.8em;
            cursor: pointer;
            transition: all var(--transition-normal);
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-medium);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex: 1;
            justify-content: center;
            min-width: 120px;
        }

        .disability-nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-1px);
        }

        .disability-nav-btn.active {
            background: var(--white);
            color: var(--bs-primary);
            border-color: var(--white);
            font-weight: var(--font-weight-semibold);
        }

        .disability-nav-btn i {
            font-size: 1rem;
        }

        /* ===== MOBILE NAVIGATION COMPONENTS ===== */
        /* Mobile Hamburger Header for Disability Navigation */
        .disability-mobile-header {
            display: none;
            position: relative;
            background: var(--bs-primary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
        }

        /* Mobile Toggle Button */
        .disability-mobile-toggle {
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-family);
            transition: all var(--transition-normal);
            flex-shrink: 0;
        }

        .disability-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .disability-mobile-toggle:focus {
            outline: 3px solid var(--text-light);
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
        }

        .disability-mobile-toggle i {
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Mobile Header Text */
        .header-text {
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-medium);
            color: var(--white);
            text-align: center;
            flex-grow: 1;
            pointer-events: none;
        }

        /* Mobile Navigation Menu */
        .disability-mobile-menu {
            position: relative;
            background: var(--bs-primary);
            padding: 0.5rem;
            display: none;
            flex-direction: column;
            gap: 0.5rem;
            min-width: 200px;
            max-height: 300px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .disability-mobile-menu.show {
            display: flex;
        }

        .disability-mobile-menu .disability-nav-btn {
            width: 100%;
            justify-content: flex-start;
            min-width: auto;
            padding: 0.75rem;
            font-size: 0.9em;
            min-height: 44px;
            flex-shrink: 0;
        }

        /* ===== RESPONSIVE NAVIGATION BREAKPOINTS ===== */
        /* Extra Small devices (phones, 320px and up) */
        @media (max-width: 575px) {
            .disability-navbar {
                display: none;
            }

            .disability-mobile-header {
                display: flex;
            }

            .disability-navbar {
                display: none;
            }

            .disability-mobile-toggle {
                padding: 0.75rem;
                min-height: 56px;
            }

            .disability-mobile-toggle i {
                font-size: 1.1rem;
            }

            .header-text {
                font-size: 0.9rem;
            }

            .disability-mobile-menu {
                padding: 0.25rem;
            }

            .disability-mobile-menu .disability-nav-btn {
                padding: 0.6rem;
                font-size: 0.85em;
                min-height: 44px;
            }
        }

        /* Small devices (landscape phones, 576px and up) */
        @media (min-width: 576px) and (max-width: 767px) {
            .disability-navbar {
                display: none;
            }

            .disability-mobile-header {
                display: flex;
            }

            .disability-navbar {
                display: none;
            }

            .disability-mobile-menu {
                padding: 0.75rem;
            }

            .disability-mobile-menu .disability-nav-btn {
                padding: 0.8rem;
                font-size: 0.9em;
            }
        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 768px) and (max-width: 991px) {
            .disability-navbar {
                display: none;
            }

            .disability-mobile-header {
                display: flex;
            }

            .disability-navbar {
                display: none;
            }

            .disability-mobile-menu {
                padding: 0.75rem;
            }

            .disability-mobile-menu .disability-nav-btn {
                padding: 0.9rem;
                font-size: 0.95em;
                min-height: 48px;
            }
        }

        /* Large devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .disability-mobile-header {
                display: none !important;
            }

            .disability-navbar {
                display: flex;
            }
        }

        /* Landscape orientation adjustments */
        @media (max-width: 767px) and (orientation: landscape) {
            .disability-navbar {
                display: none;
            }

            .disability-mobile-menu .disability-nav-btn {
                padding: 0.5rem;
                font-size: 0.8em;
                min-height: 36px;
            }
        }

        /* ===== DARK MODE NAVIGATION OVERRIDES ===== */
        /* Dark Mode Mobile Navigation */
        body.dark-mode .disability-nav-btn {
            background: var(--bs-primary);
            color: var(--white);
        }

        body.dark-mode .disability-nav-btn.active,
        body.dark-mode .disability-nav-btn.active i {
            background: var(--white);
            color: var(--dark);
        }

        /* ===== UTILITY COMPONENTS ===== */
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--bs-primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--bs-secondary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
        }

        .back-to-top:focus {
            outline: 3px solid #ffffff;
            outline-offset: 2px;
            box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.5);
        }

        /* ===== HERO SECTION COMPONENTS ===== */
        /* Main Hero Section */
        .hero-section {
            position: relative;
            min-height: var(--hero-min-height);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            overflow: hidden;
            width: 100%;
        }

        /* Hero Background Image */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url(../img/home-main-img-desktop.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Hero Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--hero-overlay);
            z-index: 2;
        }

        /* Hero Content Container */
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 3rem 1rem;
            width: 95%;
            max-width: 600px;
            background: #fff;
            border-radius: 15px;
        }

        .dark-mode .hero-content {
            background: #23272a;
        }

        /* Hero Icon with Animation */
        .hero-icon {
            margin-bottom: 1.5rem;
            animation: float 3s ease-in-out infinite;
            color: var(--bs-primary);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Hero Typography */
        .hero-title {
            font-size: var(--font-size-3xl);
            font-weight: var(--font-weight-bold);
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .hero-subtitle {
            font-size: var(--font-size-xl);
            margin-bottom: 2rem;
            opacity: 0.95;
            color: var(--text-primary);
        }

        /* ===== MAIN CONTENT LAYOUT ===== */
        /* Main Content Container */
        .main-content {
            background: var(--content-bg);
            min-height: 100vh;
            width: 100%;
        }

        /* General Container */
        .container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
        }

        /* ===== SECTION NAVIGATION ===== */
        /* Section Navigation Container */
        .section-nav {
            background: var(--nav-bg);
            border-bottom: var(--border);
            padding: var(--section-padding);
            margin-bottom: 0;
            box-shadow: var(--shadow-sm);
            width: 100%;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Navigation Title */
        .nav-title {
            font-size: var(--font-size-xl);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-align: center;
        }

        /* Navigation Buttons Grid */
        .nav-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            justify-items: center;
        }

        /* Individual Navigation Button */
        .nav-btn {
            background: var(--card-bg);
            border: var(--border);
            border-radius: var(--border-radius);
            padding: var(--button-padding);
            cursor: pointer;
            transition: all var(--transition-normal);
            text-align: left;
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-medium);
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* Navigation Button Responsive */
        @media (max-width: 768px) {
            .nav-btn {
                min-width: 70%;
            }
        }

        /* Navigation Button States */
        .nav-btn:hover {
            background: var(--white);
            border-color: var(--bs-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .nav-btn.active {
            background: var(--bs-primary);
            color: var(--text-light);
            border-color: var(--bs-primary);
            box-shadow: var(--shadow-md);
        }

        /* Navigation Button Icons */
        .nav-btn i {
            font-size: var(--icon-size);
            color: var(--text-accent);
        }

        .nav-btn.active i {
            color: var(--text-light);
        }

        /* ===== CONTENT SECTIONS ===== */
        /* Content Sections Container */
        .content-sections {
            background: var(--section-bg);
            width: 100%;
        }

        /* Individual Content Section */
        .content-section {
            display: none;
            background: var(--section-bg);
            width: 100%;
            margin: 0;
        }

        .content-section.active {
            display: block;
        }

        /* ===== SECTION HEADERS & SUBSECTIONS ===== */
        /* Section Header */
        .section-header {
            background: var(--bs-primary);
            color: var(--text-light);
            padding: var(--section-padding);
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 100%;
        }

        /* Section Icon */
        .section-icon {
            font-size: var(--section-icon-size);
            color: var(--text-light);
        }

        /* Section Header Title */
        .section-header h2 {
            font-size: var(--font-size-2xl);
            font-weight: var(--font-weight-semibold);
            margin: 0;
            color: var(--text-light);
        }

        /* Subsection Container */
        .subsection {
            padding: var(--section-padding);
            border-bottom: var(--border);
            width: 100%;
        }

        .subsection:last-child {
            border-bottom: none;
        }

        /* Subsection Heading Level 3 */
        .subsection h3 {
            font-size: var(--font-size-xl);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: var(--content-spacing);
            padding-left: 1rem;
            border-left: 4px solid var(--bs-primary);
            background: var(--light-gray);
            padding: 1rem;
            border-radius: var(--border-radius);
        }

        /* Subsection Heading Level 4 */
        .subsection h4 {
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: 1rem;
            padding-left: 0.75rem;
            border-left: 3px solid var(--bs-secondary);
        }

        /* ===== CONTENT LAYOUT & TYPOGRAPHY ===== */
        /* Content Grid Layout */
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--grid-gap);
            align-items: center;
            margin: 15px 0px;
        }

        /* Content Text Blocks */
        .content-text {
            color: var(--text-secondary);
        }

        .content-text p {
            margin-bottom: 1rem;
            line-height: var(--line-height-base);
            color: var(--text-secondary);
        }

        /* ===== CARD COMPONENTS ===== */
        /* Info Cards Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--grid-gap);
            margin-bottom: var(--content-spacing);
        }

        /* Info Card Component */
        .info-card {
            background: var(--card-bg);
            border: var(--border);
            border-radius: var(--border-radius);
            padding: var(--card-padding);
            text-align: center;
            transition: all var(--transition-normal);
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--bs-primary);
        }

        .info-card h4 {
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-semibold);
            color: var(--text-accent);
            margin-bottom: 0.5rem;
        }

        .info-card p {
            font-size: var(--font-size-sm);
            color: var(--text-muted);
            margin: 0;
            line-height: var(--line-height-base);
        }

        /* Simple Card Component */
        .simple-card {
            background: var(--card-bg);
            border: var(--border);
            border-radius: var(--border-radius);
            padding: 1rem;
            margin-bottom: 1rem;
            transition: all var(--transition-normal);
        }

        .simple-card:hover {
            border-color: var(--bs-primary);
            box-shadow: var(--shadow-sm);
        }

        .simple-card h4 {
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-semibold);
            color: var(--text-accent);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .simple-card p {
            font-size: var(--font-size-base);
            color: var(--text-secondary);
            margin: 0;
            line-height: var(--line-height-base);
        }

        /* ===== IMAGE COMPONENTS ===== */
        /* Image Container */
        .image-container {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 400px;
            border: var(--border);
        }

        /* Section Image */
        .section-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity var(--transition-normal);
            opacity: 0;
        }

        .section-image[src] {
            opacity: 1;
        }

        /* Image Badge */
        .image-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--bs-secondary);
            color: var(--text-primary);
            padding: 0.375rem 0.75rem;
            border-radius: 50px;
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-medium);
            box-shadow: var(--shadow-sm);
        }

        /* ===== BADGE COMPONENTS ===== */
        /* Label Badge */
        .label-badge {
            color: var(--text-primary);
            background-color: var(--bs-secondary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-semibold);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        /* ===== GRID LAYOUT SYSTEMS ===== */
        /* Base Grid Layouts */
        .two-column-grid,
        .three-column-grid,
        .stats-grid {
            display: grid;
            gap: var(--grid-gap);
            margin-bottom: var(--content-spacing);
        }

        /* Two Column Grid */
        .two-column-grid {
            grid-template-columns: 1fr 1fr;
        }

        /* Three Column Grid */
        .three-column-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Statistics Grid */
        .stats-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        /* ===== SPECIALIZED CARD COMPONENTS ===== */
        /* Stat Card Component */
        .stat-card {
            background: var(--white);
            border: var(--border);
            border-radius: var(--border-radius);
            padding: 2rem 1rem;
            text-align: center;
            transition: all var(--transition-normal);
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--bs-primary);
        }

        .stat-number {
            font-size: var(--font-size-3xl);
            font-weight: var(--font-weight-bold);
            color: var(--text-accent);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: var(--font-size-base);
            color: var(--text-muted);
            font-weight: var(--font-weight-medium);
        }

        /* Image Card Component */
        .image-card {
            background: var(--white);
            border: var(--border);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all var(--transition-normal);
            margin-bottom: 1rem;
        }

        .image-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .image-card-header {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .image-card-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-card-content {
            padding: 1.5rem;
        }

        .image-card-content h4 {
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .image-card-content p {
            color: var(--text-secondary);
            margin: 0;
            line-height: var(--line-height-base);
        }

        /* ===== TIMELINE COMPONENTS ===== */
        /* Timeline Container */
        .timeline {
            position: relative;
            margin-bottom: var(--content-spacing);
        }

        /* Timeline Item */
        .timeline-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
        }

        /* Timeline Marker */
        .timeline-marker {
            width: 40px;
            height: 40px;
            background: var(--bs-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-weight: var(--font-weight-bold);
            flex-shrink: 0;
        }

        /* Timeline Content */
        .timeline-content {
            flex: 1;
            background: var(--card-bg);
            border: var(--border);
            border-radius: var(--border-radius);
            padding: 1.5rem;
        }

        .timeline-content h4 {
            font-size: var(--font-size-lg);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: var(--text-secondary);
            margin: 0;
            line-height: var(--line-height-base);
        }

        /* ===== ELEGANT CARD COMPONENTS ===== */
        /* Elegant Card Base */
        .elegant-card {
            border-radius: 20px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .gradient-border::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--bs-secondary);
        }

        .card-header-elegant {
            padding: 2rem 2.5rem 1.5rem;
            background: linear-gradient(135deg,
                    var(--light-gray) 0%,
                    var(--border-gray) 100%);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--bs-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            flex-shrink: 0;
        }

        .header-icon i {
            font-size: 1.5rem;
            color: var(--text-light);
        }

        .header-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.3;
        }

        .card-body-elegant {
            padding: 2rem 2.5rem 2.5rem;
        }

        .elegant-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }

        .elegant-text:last-child {
            margin-bottom: 0;
        }

        /* HERO IMAGE & QUICK INFO CARDS */
        .checkin-hero-section {
            margin-bottom: 3rem;
        }

        .quick-info-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-left: 1.5rem;
            margin: 20px 0px;
        }

        .quick-card {
            background: var(--white);
            border-radius: 15px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: var(--shadow-md);
            border-left: 4px solid transparent;
        }

        .quick-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bs-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-md);
        }

        .quick-icon i {
            font-size: 1.25rem;
            color: var(--text-light);
        }

        .quick-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .quick-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
        }

        /* FEATURE SHOWCASE */
        .feature-showcase {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: var(--grid-gap);
            margin-bottom: var(--content-spacing);
            align-items: center;
        }

        .feature-content {
            padding: 1rem;
        }

        .feature-title {
            font-size: var(--font-size-2xl);
            font-weight: var(--font-weight-bold);
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: var(--line-height-base);
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-highlight {
            background: var(--light-gray);
            border: var(--border);
            border-radius: var(--border-radius);
            padding: 1rem;
            text-align: center;
        }

        .feature-highlight i {
            font-size: 1.5rem;
            color: var(--text-accent);
            margin-bottom: 0.5rem;
            display: block;
        }

        .feature-highlight h5 {
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-semibold);
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .feature-highlight p {
            font-size: var(--font-size-sm);
            color: var(--text-muted);
            margin: 0;
        }

        .feature-image {
            width: 100%;
            height: 300px;
            border-radius: var(--border-radius);
            object-fit: cover;
            border: var(--border);
        }

        /* RESPONSIVE DESIGN */

        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            :root {
                --container-max-width: 95%;
            }

            .navbar-brand {
                font-size: var(--font-size-lg);
            }

            .quick-info-cards {
                padding-left: 1rem;
            }
        }

        /* Tablets */
        @media (max-width: 992px) {
            :root {
                --section-padding: 1.5rem;
                --content-spacing: 1rem;
                --grid-gap: 1rem;
            }

            .navbar-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                border-top: var(--border);
                box-shadow: var(--shadow-md);
                flex-direction: column;
                padding: 1rem;
                gap: 0.5rem;
            }

            .disability-nav-title {
                display: none;
            }

            .disability-nav-buttons {
                gap: 0.25rem;
                flex-wrap: wrap;
            }

            .disability-nav-btn {
                min-width: 70px;
                font-size: 0.75rem;
                padding: 0.375rem 0.5rem;
                flex: 1 1 auto;
            }

            .nav-buttons {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 0.75rem;
            }

            .content-layout {
                grid-template-columns: 1fr;
                gap: var(--content-spacing);
            }

            .info-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }

            .two-column-grid {
                grid-template-columns: 1fr;
            }

            .three-column-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-showcase {
                grid-template-columns: 1fr;
            }

            .feature-highlights {
                grid-template-columns: 1fr;
            }

            .checkin-hero-section .row {
                flex-direction: column-reverse;
            }

            .quick-info-cards {
                padding-left: 0;
                margin-top: 2rem;
            }

            .elegant-card {
                margin-bottom: 2rem;
            }

            .card-header-elegant {
                padding: 1.5rem 2rem 1rem;
            }

            .card-body-elegant {
                padding: 1.5rem 2rem 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
        }

        /* Small tablets and large phones */
        @media (max-width: 768px) {
            :root {
                --hero-min-height: 50vh;
                --section-padding: 1rem;
                --card-padding: 1rem;
                --content-spacing: 1rem;
                --grid-gap: 0.75rem;
            }

            .main-navbar {
                padding: 0 1rem;
            }

            .navbar-brand {
                font-size: var(--font-size-base);
            }

            .navbar-brand i {
                font-size: 1.25rem;
            }

            .disability-navbar {
                display: none;
            }

            .disability-mobile-header {
                display: flex;
            }

            .hero-section {
                padding-top: 60px;
            }

            .hero-title {
                font-size: var(--font-size-2xl);
            }

            .hero-subtitle {
                font-size: var(--font-size-lg);
            }

            .hero-icon i {
                font-size: 2rem;
            }

            .nav-buttons {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .nav-btn {
                text-align: center;
                justify-content: center;
                padding: 1rem;
            }

            .section-nav {
                padding: 1rem;
            }

            .subsection {
                padding: 1rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .image-container {
                height: 200px;
            }

            .three-column-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .process-step {
                margin-bottom: 2rem;
            }

            .process-step .row {
                flex-direction: column;
            }

            .process-step .col-lg-8,
            .process-step .col-lg-4 {
                order: initial;
                margin-bottom: 1rem;
            }

            .timeline-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .timeline-marker {
                align-self: center;
                margin-bottom: 0.5rem;
            }

            .elegant-card {
                border-radius: 15px;
                margin-bottom: 1.5rem;
            }

            .card-header-elegant {
                padding: 1.25rem 1.5rem 0.75rem;
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .card-body-elegant {
                padding: 1rem 1.5rem 1.5rem;
            }

            .header-icon {
                width: 50px;
                height: 50px;
            }

            .header-icon i {
                font-size: 1.25rem;
            }

            .header-title {
                font-size: 1.25rem;
            }

            .quick-card {
                padding: 1rem;
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .quick-icon {
                align-self: center;
            }
        }

        /* Phones */
        @media (max-width: 576px) {
            :root {
                --section-padding: 0.75rem;
                --card-padding: 0.75rem;
                --content-spacing: 0.75rem;
                --grid-gap: 0.5rem;
                --hero-min-height: 40vh;
            }

            .main-navbar {
                padding: 0 0.75rem;
            }

            .disability-navbar {
                display: none;
            }

            .disability-mobile-header {
                display: block;
            }

            .hero-section {
                padding-top: 60px;
            }

            .hero-content {
                padding: 1.5rem 0.75rem;
            }

            .hero-title {
                font-size: var(--font-size-xl);
                margin-bottom: 0.75rem;
            }

            .hero-subtitle {
                font-size: var(--font-size-base);
                margin-bottom: 1.5rem;
            }

            .hero-icon {
                margin-bottom: 1rem;
            }

            .hero-icon i {
                font-size: 1.75rem;
            }

            .section-header {
                padding: 0.75rem;
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .section-header h2 {
                font-size: var(--font-size-lg);
            }

            .section-icon {
                font-size: 1.25rem;
            }

            .subsection {
                padding: 0.75rem;
            }

            .subsection h3 {
                font-size: var(--font-size-base);
                padding: 0.75rem;
            }

            .subsection h4 {
                font-size: var(--font-size-base);
                padding-left: 0.5rem;
            }

            .image-container {
                height: 150px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .stat-card {
                padding: 1rem 0.75rem;
            }

            .stat-number {
                font-size: var(--font-size-2xl);
            }

            .feature-image {
                height: 150px;
            }

            .info-card,
            .simple-card {
                padding: 0.75rem;
            }

            .info-card h4,
            .simple-card h4 {
                font-size: var(--font-size-base);
            }

            .elegant-card {
                border-radius: 12px;
                margin-bottom: 1rem;
            }

            .card-header-elegant {
                padding: 1rem 1.25rem 0.5rem;
            }

            .card-body-elegant {
                padding: 0.75rem 1.25rem 1.25rem;
            }

            .header-icon {
                width: 40px;
                height: 40px;
            }

            .header-icon i {
                font-size: 1rem;
            }

            .header-title {
                font-size: 1rem;
            }

            .elegant-text {
                font-size: 0.95rem;
                text-align: left;
            }

            .quick-card {
                padding: 0.75rem;
                border-radius: 12px;
            }

            .quick-icon {
                width: 40px;
                height: 40px;
            }

            .quick-icon i {
                font-size: 1rem;
            }

            .quick-content h5 {
                font-size: 0.95rem;
            }

            .quick-content p {
                font-size: 0.85rem;
            }

            .timeline-content {
                padding: 1rem;
            }

            .timeline-content h4 {
                font-size: var(--font-size-base);
            }

            .image-card-header {
                height: 150px;
            }

            .image-card-content {
                padding: 1rem;
            }

            .process-step {
                margin-bottom: 1.5rem;
            }

            .step-content {
                margin-bottom: 1rem;
            }

            .step-title {
                font-size: 1.1rem;
            }

            .step-description {
                font-size: 0.9rem;
            }
        }

        /* Extra small phones */
        @media (max-width: 375px) {
            :root {
                --section-padding: 0.5rem;
                --card-padding: 0.5rem;
                --content-spacing: 0.5rem;
                --grid-gap: 0.5rem;
            }

            .container {
                padding: 0 0.5rem;
            }

            .main-navbar {
                padding: 0 0.5rem;
            }

            .disability-navbar {
                padding: 0 0.5rem;
            }

            .disability-nav-btn {
                min-width: 45px;
                font-size: 0.6rem;
                padding: 0.2rem;
            }

            .nav-btn {
                padding: 0.75rem;
                font-size: 0.9rem;
            }

            .section-header,
            .subsection {
                padding: 0.5rem;
            }

            .elegant-card {
                margin-bottom: 0.75rem;
            }

            .card-header-elegant {
                padding: 0.75rem 1rem 0.5rem;
            }

            .card-body-elegant {
                padding: 0.5rem 1rem 1rem;
            }

            .quick-card {
                padding: 0.5rem;
            }

            .stat-card {
                padding: 0.75rem 0.5rem;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {

            .nav-btn,
            .disability-nav-btn,
            .info-card,
            .simple-card,
            .quick-card {
                min-height: 44px;
                touch-action: manipulation;
            }

            .nav-btn:hover,
            .disability-nav-btn:hover,
            .info-card:hover,
            .simple-card:hover {
                transform: none;
            }

            .elegant-card:hover {
                transform: none;
            }

            button {
                min-height: 44px;
                min-width: 44px;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --border-gray: #000000;
                --text-muted: #000000;
                --text-secondary: #000000;
            }

            .info-card,
            .simple-card,
            .elegant-card {
                border: 2px solid var(--text-primary);
            }

            .disability-nav-btn,
            .nav-btn {
                border: 2px solid var(--text-primary);
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .hero-icon {
                animation: none;
            }

            .elegant-card:hover,
            .info-card:hover,
            .simple-card:hover,
            .nav-btn:hover,
            .disability-nav-btn:hover {
                transform: none;
            }
        }

        /* Print styles */
        @media print {

            .main-navbar,
            .disability-navbar,
            .hero-section,
            .section-nav {
                display: none !important;
            }

            body {
                padding-top: 0;
                font-size: 12pt;
                line-height: 1.4;
            }

            .content-section {
                display: block !important;
                break-inside: avoid;
                page-break-inside: avoid;
            }

            .elegant-card,
            .simple-card,
            .info-card {
                break-inside: avoid;
                page-break-inside: avoid;
                border: 1pt solid #000;
                margin-bottom: 10pt;
            }

            .container {
                max-width: 100%;
                padding: 0;
            }

            h1,
            h2,
            h3,
            h4 {
                page-break-after: avoid;
            }

            img {
                max-width: 100% !important;
                height: auto !important;
            }
        }

        @media (prefers-contrast: high) {
            :root {
                --border-gray: #000000;
                --text-muted: #000000;
                --text-secondary: #000000;
            }

            .info-card,
            .simple-card {
                border: 2px solid var(--text-primary);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }

            .hero-icon {
                animation: none;
            }
        }

        @media print {

            .main-navbar,
            .disability-navbar,
            .hero-section,
            .section-nav {
                display: none;
            }

            body {
                padding-top: 0;
            }

            .content-section {
                display: block !important;
                break-inside: avoid;
            }
        }

        body.dark-mode .elegant-card.gradient-border {
            background: var(--card-bg);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .card-header-elegant {
            background: var(--card-bg);
            border-bottom: 1px solid var(--border-color);
        }

        body.dark-mode .header-icon {
            background: rgba(37, 99, 235, 0.2);
            color: var(--text-accent);
        }

        body.dark-mode .header-title {
            color: var(--text-accent);
        }

        body.dark-mode .elegant-text {
            color: var(--text-primary);
        }

        body.dark-mode .card-body-elegant {
            background: var(--card-bg);
        }

        /* Stats Grid Dark Mode */
        body.dark-mode .stats-grid .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
        }

        body.dark-mode .stats-grid .stat-number {
            color: var(--text-accent);
        }

        body.dark-mode .stats-grid .stat-label {
            color: var(--text-primary);
        }

        /* Timeline Dark Mode */
        body.dark-mode .timeline-item {
            border-color: var(--border-color);
        }

        body.dark-mode .timeline-marker {
            background: var(--bs-primary);
            color: var(--text-light);
        }

        body.dark-mode .timeline-content h4 {
            color: var(--text-accent);
        }

        body.dark-mode .timeline-content p {
            color: var(--text-primary);
        }

        body.dark-mode .process-step {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
        }

        body.dark-mode .step-content {
            background: var(--card-bg);
        }

        /* Image Container Dark Mode */
        body.dark-mode .image-container {
            border-color: var(--border-color);
            background: var(--card-bg);
        }

        body.dark-mode .image-badge {
            background: var(--bs-secondary);
            color: var(--text-light);
        }

        /* List Styles Dark Mode */
        body.dark-mode .list-unstyled li {
            color: var(--text-primary);
        }

        body.dark-mode .list-unstyled .fas {
            color: var(--text-accent);
        }

        /* Bootstrap Overrides for Dark Mode */

        body.dark-mode .bg-primary {
            background-color: var(--bs-primary) !important;
        }

        body.dark-mode .bg-success {
            background-color: #059669 !important;
        }

        body.dark-mode .text-primary,
        body.dark-mode .text-secondary {
            color: var(--text-accent) !important;
        }

        body.dark-mode .text-white {
            color: var(--text-light) !important;
        }

        /* Additional Card Styles for Dark Mode */
        body.dark-mode .card-body {
            background: var(--card-bg);
        }

        body.dark-mode .card.border-0.shadow {
            background: var(--card-bg);
            border: 1px solid var(--border-color) !important;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
        }

        body.dark-mode .rounded-circle {
            background: var(--bs-primary);
        }

        /* Fix for Bootstrap Utility Classes in Dark Mode */
        body.dark-mode .border-0 {
            border: 1px solid var(--border-color) !important;
        }

        body.dark-mode .shadow {
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
        }

        body.dark-mode .text-muted {
            color: var(--text-primary) !important;
        }

        /* Light mode text color overrides */
        .text-muted,
        .card-text.text-muted,
        .text-muted.small,
        .text-muted.lead,
        li.text-muted,
        p.text-muted {
            color: #000000 !important;
        }

        .card-text,
        .elegant-text,
        .content-text p,
        .simple-card p,
        .info-card p,
        .stat-label,
        .timeline-content p,
        .process-step p,
        .small {
            color: #000000;
        }

        /* Keep dark mode text colors as they are */
        body.dark-mode .text-muted,
        body.dark-mode .card-text.text-muted,
        body.dark-mode .text-muted.small,
        body.dark-mode .text-muted.lead,
        body.dark-mode li.text-muted,
        body.dark-mode p.text-muted {
            color: var(--text-primary) !important;
        }

        body.dark-mode .card-text,
        body.dark-mode .elegant-text,
        body.dark-mode .content-text p,
        body.dark-mode .simple-card p,
        body.dark-mode .info-card p,
        body.dark-mode .stat-label,
        body.dark-mode .timeline-content p,
        body.dark-mode .process-step p,
        body.dark-mode .small {
            color: var(--text-primary);
        }

        /* Additional text color overrides for specific elements */
        .step-description,
        .card-text.lead,
        .elegant-text,
        .content-text p,
        .process-step p {
            color: #000000 !important;
        }

        body.dark-mode .step-description,
        body.dark-mode .card-text.lead,
        body.dark-mode .elegant-text,
        body.dark-mode .content-text p,
        body.dark-mode .process-step p {
            color: var(--text-primary) !important;
        }

        /* ===== ACCESSIBILITY WIDGET ===== */
        /* Accessibility Widget Container */
        .accessibility-widget {
            position: fixed;
            top: 0;
            right: 0;
            z-index: 10000;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .switcher-area {
            position: relative;
        }

        .switcher-icon {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            z-index: 10001;
            transition: all 0.3s ease;
        }

        .switcher-icon:hover {
            transform: translateY(-50%) scale(1.15);
        }

        .switcher-btn-open {
            animation: gentle-pulse 3s ease-in-out infinite;
        }

        @keyframes gentle-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .switcher-btn-open,
        .switcher-btn-close {
            background: var(--bs-secondary);
            border-radius: 4px 0 0 4px;
            border: none;
            width: 100%;
            height: 100%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            min-width: 60px;
            min-height: 60px;
        }

        .switcher-btn-open:hover,
        .switcher-btn-close:hover {
            background: var(--bs-primary);
            box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
        }

        .switcher-btn-open:hover path {
            fill: #fff;
        }

        .switcher-btn-close:hover i {
            color: #fff;
        }

        .switcher-items {
            position: fixed;
            top: 50%;
            right: -380px;
            transform: translateY(-50%);
            width: 380px;
            height: 50vh;
            max-height: 50vh;
            overflow-y: auto;
            background: var(--bs-white);
            border-radius: 8px 0 0 8px;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--bs-border-gray);
            border-right: none;
            z-index: 10000;
            transition: right 0.3s ease;
        }

        /* Responsive design for different screen sizes */
        @media (max-width: 768px) {
            .switcher-items {
                width: 60vw;
                right: -60vw;
                height: 60vh;
                max-height: 60vh;
            }

            .switcher-icon {
                width: 70px;
                height: 70px;
            }

            .widget-btn {
                padding: 12px 16px;
                font-size: 14px;
            }

            .widget-slider {
                height: 8px;
            }

            .widget-slider::-webkit-slider-thumb {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .switcher-items {
                width: 80vw;
                right: -90vw;
                height: 70vh;
                max-height: 70vh;
            }

            .switcher-icon {
                width: 60px;
                height: 60px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .switcher-items {
                width: 400px;
                right: -400px;
            }
        }

        @media (min-width: 1025px) {
            .switcher-items {
                width: 420px;
                right: -420px;
            }
        }

        .widget-header {
            padding: 20px;
            border-bottom: 1px solid var(--bs-border-gray);
            text-align: center;
            background: var(--bs-light-gray);
        }

        .widget-header h2 {
            color: var(--bs-gray-800);
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 5px 0;
        }

        .widget-header p {
            color: var(--bs-gray-500);
            font-size: 12px;
            margin: 0;
        }

        .widget-section {
            padding: 15px 20px;
            border-bottom: 1px solid var(--bs-border-gray);
        }

        .widget-label {
            color: var(--bs-gray-800);
            font-size: 14px;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }

        .button-group {
            display: flex;
            gap: 8px;
        }

        .widget-btn {
            flex: 1;
            padding: 8px 16px;
            background: var(--bs-light-gray);
            color: var(--bs-gray-500);
            border: 1px solid var(--bs-border-gray);
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .widget-btn.active {
            background: var(--bs-primary);
            color: var(--bs-white);
            border-color: var(--bs-primary);
        }

        .widget-btn:hover:not(.active) {
            background: var(--bs-border-gray);
            color: var(--bs-gray-500);
            border-color: var(--bs-border-gray);
        }

        .widget-slider {
            width: 100%;
            height: 6px;
            background: #dfdfdf;
            border-radius: 3px;
            outline: none;
            appearance: none;
            cursor: pointer;
        }

        .widget-slider::-webkit-slider-thumb {
            appearance: none;
            width: 16px;
            height: 16px;
            background: var(--bs-primary);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
        }

        .widget-slider::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: var(--bs-primary);
            border-radius: 50%;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
        }

        .slider-value {
            text-align: center;
            margin-top: 8px;
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
        }

        .reset-btn {
            width: 100%;
            padding: 12px 16px;
            background: var(--bs-primary);
            border: none;
            border-radius: 6px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .reset-btn:hover {
            background: var(--bs-secondary);
        }

        /* Scrollbar styling */
        .switcher-items::-webkit-scrollbar {
            width: 6px;
        }

        .switcher-items::-webkit-scrollbar-track {
            background: #f8fafc;
            border-radius: 3px;
        }

        .switcher-items::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 3px;
        }

        .switcher-items::-webkit-scrollbar-thumb:hover {
            background: #9ca3af;
        }

        /* Focus styles for accessibility */
        .widget-btn:focus,
        .reset-btn:focus,
        .switcher-btn-open:focus,
        .switcher-btn-close:focus,
        .widget-slider:focus {
            outline: 2px solid rgba(var(--bs-primary-rgb), 0.1);
            outline-offset: 2px;
        }

        /* Focus styles for accessibility */
        .widget-btn:focus,
        .reset-btn:focus,
        .switcher-btn-open:focus,
        .switcher-btn-close:focus,
        .widget-slider:focus {
            outline: 2px solid rgba(var(--bs-primary-rgb), 0.1);
            outline-offset: 2px;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 18px;
            background: transparent;
            font-family: inherit;
            margin-left: 24px;
        }

        .lang-divider {
            display: inline-block;
            width: 2px;
            height: 32px;
            background: #fff;
            margin: 0 12px;
            opacity: 0.5;
        }

        .lang-ml-btn {
            background: none;
            border: none;
            color: #fff;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 8px;
            cursor: pointer;
        }

        .lang-en-btn {
            background: none;
            border: none;
            color: #fff;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 8px;
            cursor: pointer;
        }

        .lang-btn-active {
            color: #ffffff !important;
            opacity: 1 !important;
        }

        .lang-btn-inactive {
            color: #b3aee7 !important;
            opacity: 0.6 !important;
        }


        /* ===== END OF STYLESHEET ===== */

        .logo {
            max-height: 80px;
        }

        .logo.dark,
         .dark-mode  .logo.normal {
            display: none;
        }

        .dark-mode  .logo.dark {
            display: block;
        }