        :root {
            --completed-color: #e6ffee;
            --completed-hover: #d1f9db;
            --in-progress-color: #e6f7ff;
            --in-progress-hover: #d1e9fb;
            --pending-color: #fff8e6;
            --pending-hover: #f9ecd1;
            --primary-color: #4a6cfa;
            --primary-hover: #3a59d6;
            --accent-color: #ff7043;
            --accent-hover: #f4511e;
            --text-primary: #333;
            --text-secondary: #666;
            --background-light: #f4f6f9;
            --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --primary-color: #0078c8;
            --secondary-color: #5c9dda;
            --light-blue: #e6f7ff;
            --gray-light: #f5f7fa;
            --gray-medium: #eaedf2;
            --gray-dark: #4a5568;
            --text-color: #333;
            --success-color: #4caf50;
            --warning-color: #ff9800;
            --danger-color: #f44336;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: var(--background-light);
            color: var(--text-primary);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 700;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--primary-color);
            display: inline-block;
        }

        .page-description {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: var(--text-secondary);
        }

        /* Task Table - Enhanced for large screens */
        .task-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 20px;
            box-shadow: var(--card-shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
            background-color: white;
        }

        .task-table th {
            background-color: #f8f9fa;
            padding: 16px 14px;
            text-align: left;
            cursor: pointer;
            position: relative;
            border-bottom: 2px solid #e9ecef;
            transition: var(--transition);
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .task-table th:hover {
            background-color: #f1f3f5;
        }

        .task-table th.asc:after,
        .task-table th.desc:after {
            content: "";
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
        }

        .task-table th.asc:after {
            border-bottom: 5px solid var(--primary-color);
        }

        .task-table th.desc:after {
            border-top: 5px solid var(--primary-color);
        }

        .task-table td {
            padding: 16px 14px;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
            transition: var(--transition);
        }

        .task-table tr {
            transition: var(--transition);
            cursor: pointer;
        }

        /* Status row colors */
        .task-table tr.completed {
            background-color: var(--completed-color);
        }
        .task-table tr.completed:hover {
            background-color: var(--completed-hover);
        }
        .task-table tr.in-progress {
            background-color: var(--in-progress-color);
        }
        .task-table tr.in-progress:hover {
            background-color: var(--in-progress-hover);
        }
        .task-table tr.pending {
            background-color: var(--pending-color);
        }
        .task-table tr.pending:hover {
            background-color: var(--pending-hover);
        }

        /* Mobile Card View */
        .task-cards {
            display: none;
        }

        /* Table scroll wrapper for better mobile handling */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 0 -15px;
            padding: 0 15px;
        }
        
        /* Tablet view - horizontal scroll */
        @media screen and (max-width: 1024px) and (min-width: 769px) {
            .task-table {
                font-size: 0.85rem;
                min-width: 900px;
            }
            
            .task-table th, .task-table td {
                padding: 10px 8px;
                white-space: nowrap;
            }
            
            /* Shorter column names for tablets */
            .task-table th:nth-child(3) { display: none; } /* Hide Description */
            .task-table td:nth-child(3) { display: none; }
        }
        
        @media screen and (max-width: 768px) {
            .task-table {
                display: none !important;
            }

            .task-cards {
                display: block !important;
            }

            .task-card {
                background-color: white;
                border-radius: 16px;
                margin-bottom: 20px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.08);
                overflow: hidden;
                cursor: pointer;
                position: relative;
                border-left: 5px solid transparent;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                animation: slideInUp 0.4s ease-out;
            }
            
            @keyframes slideInUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .task-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            }

            /* Priority color borders */
            .task-card[data-priority="High"] {
                border-left-color: #dc3545;
            }
            
            .task-card[data-priority="Medium"] {
                border-left-color: #ffc107;
            }
            
            .task-card[data-priority="Low"] {
                border-left-color: #28a745;
            }
            
            .task-card.completed {
                background: linear-gradient(135deg, #f0fff4 0%, #f7fafc 100%);
                border-left-color: #28a745;
            }

            .task-card.in-progress {
                background: linear-gradient(135deg, #fff9e6 0%, #f7fafc 100%);
                border-left-color: #ffc107;
            }

            .task-card.pending {
                background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
            }

            .task-card-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 18px;
                background: rgba(255,255,255,0.5);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }
            
            .task-card-header h3 {
                font-size: 1.1rem;
                font-weight: 700;
                color: #1a202c;
                margin: 0;
            }
            
            /* Glassmorphism status badge */
            .task-card-header .status-pill {
                padding: 6px 14px;
                border-radius: 20px;
                font-size: 0.75rem;
                font-weight: 600;
                letter-spacing: 0.5px;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255,255,255,0.3);
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }

            .task-card-body {
                padding: 18px;
            }
            
            .task-card-body p {
                margin: 10px 0;
                line-height: 1.6;
                color: #4a5568;
            }
            
            .task-card-body p strong {
                color: #2d3748;
                font-weight: 600;
            }
            
            /* Time progress bar */
            .time-progress {
                margin: 12px 0;
                padding: 8px 0;
            }
            
            .time-progress-label {
                display: flex;
                justify-content: space-between;
                font-size: 0.75rem;
                color: #718096;
                margin-bottom: 6px;
            }
            
            .time-progress-bar-bg {
                height: 8px;
                background: #e2e8f0;
                border-radius: 10px;
                overflow: hidden;
                position: relative;
            }
            
            .time-progress-bar-fill {
                height: 100%;
                background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
                border-radius: 10px;
                transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 0 8px rgba(71, 118, 230, 0.4);
            }

            .task-card-actions {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                padding: 15px;
                background-color: rgba(0,0,0,0.03);
            }

            .task-card-actions a {
                text-decoration: none;
                color: white;
                background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
                padding: 10px 12px;
                border-radius: 8px;
                font-weight: 600;
                font-size: 0.85rem;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 2px 8px rgba(71, 118, 230, 0.2);
            }

            .task-card-actions a:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(71, 118, 230, 0.3);
            }
            
            .task-card-actions a:active {
                transform: translateY(0);
                box-shadow: 0 2px 6px rgba(71, 118, 230, 0.2);
            }
            
            .task-card-actions a:nth-child(3) {
                background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            }
            
            .task-card-actions a:nth-child(4) {
                background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            }
            
            /* Hide Mark Achieved button */
            .task-card-actions a[href*="achieved.php"] {
                display: none;
            }
            
            /* Ripple effect container */
            @keyframes ripple {
                to {
                    transform: scale(4);
                    opacity: 0;
                }
            }
        }

        /* Build Dream Button - Enhanced */
        .build-dream-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
            color: white;
            padding: 16px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin: 25px 0;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
            width: fit-content;
        }

        .build-dream-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(71, 118, 230, 0.4);
        }

        /* ENHANCED FILTERING SYSTEM */
        .filter-dashboard {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .filter-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }

        .filter-tab {
            padding: 12px 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-secondary);
            position: relative;
            transition: var(--transition);
        }

        .filter-tab.active {
            color: var(--primary-color);
        }

        .filter-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px 3px 0 0;
        }

        .filter-content {
            display: none;
            animation: fadeIn 0.3s ease forwards;
        }

        .filter-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Tag-based filtering */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .filter-tag {
            background-color: #f5f7fa;
            border: 2px solid transparent;
            border-radius: 30px;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-tag:hover {
            background-color: #e9ecef;
            transform: translateY(-2px);
        }

        .filter-tag.selected {
            background-color: #e8f0fe;
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .tag-icon {
            display: inline-flex;
            width: 18px;
            height: 18px;
            border-radius: 50%;
        }

        .tag-icon.high {
            background-color: #f44336;
        }

        .tag-icon.medium {
            background-color: #ff9800;
        }

        .tag-icon.low {
            background-color: #4caf50;
        }

        .tag-icon.completed {
            background-color: #4caf50;
        }

        .tag-icon.in-progress {
            background-color: #2196f3;
        }

        .tag-icon.pending {
            background-color: #ff9800;
        }

        /* Active filters display */
        .active-filters-wrapper {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 15px;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .active-filters-wrapper.hidden {
            display: none;
        }

        .active-filter-tag {
            background-color: white;
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .clear-all-filters {
            margin-left: auto;
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            padding: 6px 12px;
            border-radius: 20px;
            background-color: rgba(74, 108, 250, 0.1);
        }

        .clear-all-filters:hover {
            background-color: rgba(74, 108, 250, 0.2);
        }

        .remove-filter {
            cursor: pointer;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f1f2f4;
            border-radius: 50%;
            font-size: 10px;
            margin-left: 5px;
            transition: var(--transition);
        }

        .remove-filter:hover {
            background-color: #e4e6e9;
        }

        /* Custom Toggle Switch */
        .filter-switches {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .filter-switch {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: var(--primary-color);
        }

        input:focus + .slider {
            box-shadow: 0 0 1px var(--primary-color);
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        .switch-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* Filter actions */
        .filter-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
        }

        .filter-action-btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-apply {
            background-color: var(--primary-color);
            color: white;
        }

        .filter-apply:hover {
            background-color: var(--primary-hover);
        }

        .filter-reset {
            background-color: #f1f2f4;
            color: var(--text-secondary);
        }

        .filter-reset:hover {
            background-color: #e4e6e9;
        }

        /* Visual filter indicators */
        .filter-indicators {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .filter-indicator {
            height: 6px;
            flex: 1;
            border-radius: 3px;
            background-color: #e9ecef;
            position: relative;
            overflow: hidden;
        }

        .filter-indicator-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            width: 0;
            transition: width 0.5s ease;
        }

        /* Status indicators */
        .status-pill {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            display: inline-block;
        }

        .status-pill.completed {
            background-color: #d1f9db;
            color: #1e8e3e;
        }

        .status-pill.in-progress {
            background-color: #d1e9fb;
            color: #1a73e8;
        }

        .status-pill.pending {
            background-color: #f9ecd1;
            color: #e37400;
        }

        /* Priority indicators */
        .priority-pill {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            display: inline-block;
        }

        .priority-pill.high {
            background-color: #fde0e0;
            color: #c62828;
        }

        .priority-pill.medium {
            background-color: #fff0e0;
            color: #e65100;
        }

        .priority-pill.low {
            background-color: #e0f7e0;
            color: #2e7d32;
        }

        /* Responsive improvements */
        @media screen and (min-width: 1200px) {
            .container {
                padding: 30px 40px;
            }
            
            .task-table th, .task-table td {
                padding: 18px 16px;
            }
        }

        .svgstyle {
            height: 50px;
            transition: var(--transition);
        }

        .filter-item:hover .svgstyle {
            transform: scale(1.1);
        }

        /* Header section enhancement */
        .header-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .title-container {
            flex: 1;
        }

        .username-display {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
            background-color: rgba(74, 108, 250, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            display: inline-block;
            margin-top: 10px;
        }

        /* Filter control toggle */
        .filter-control-toggle {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            box-shadow: var(--card-shadow);
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-control-toggle:hover {
            background-color: #f9fafc;
        }

        .toggle-text {
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toggle-icon {
            transition: var(--transition);
        }

        .toggle-icon.open {
            transform: rotate(180deg);
        }

        /* Action icons styling */
        .action-icons {
            display: flex;
            gap: 12px;
        }

        .action-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: var(--transition);
            color: var(--text-secondary);
            background-color: rgba(0,0,0,0.03);
        }

        .action-icons a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hide Mark Achieved button on all devices */
        .action-icons a[href*="achieved.php"] {
            display: none !important;
        }

        /* Responsive adjustments for mobile */
        @media screen and (max-width: 768px) {
            .filter-tabs {
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 5px;
            }
            
            .filter-tabs::-webkit-scrollbar {
                height: 4px;
            }
            
            .filter-tabs::-webkit-scrollbar-thumb {
                background-color: #d1d5db;
                border-radius: 2px;
            }
            
            .filter-tab {
                padding: 12px 15px;
            }
            
            .active-filters-wrapper {
                padding: 10px;
            }
            
            .filter-switches {
                flex-direction: column;
                gap: 15px;
            }
        }

        #goal-notification-banner {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #4a6cfa, #8E54E9);
            color: white;
            padding: 16px 28px;
            border-radius: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            font-size: 1rem;
            z-index: 9999;
            text-align: center;
        }
        @media (max-width: 600px) {
            #goal-notification-banner {
                font-size: 0.9rem;
                padding: 12px 10px;
                bottom: 10px;
            }
        }

        /* Add new styles for login form */
        .login-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .login-form input {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
        }

        .login-form button {
            background: var(--primary-color);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
        }

        .login-form button:hover {
            background: var(--primary-hover);
        }

        .login-form .register-link {
            text-align: center;
            margin-top: 15px;
        }

        .login-form .register-link a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .login-form .register-link a:hover {
            text-decoration: underline;
        }

        .modal-login {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100vw;
            height: 100vh;
            overflow: auto;
            background: rgba(0,0,0,0.45);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s;
        }
        .modal-login .modal-content {
            background: #fff;
            margin: 60px auto;
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            padding: 36px 32px 28px 32px;
            max-width: 420px;
            position: relative;
            animation: slideDown 0.3s;
        }
        .close-modal {
            position: absolute;
            top: 18px;
            right: 22px;
            font-size: 2em;
            color: #aaa;
            cursor: pointer;
            z-index: 10;
            transition: color 0.2s;
        }
        .close-modal:hover {
            color: #e03a3a;
        }
        .login-tabs {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 24px;
            gap: 12px;
        }
        .login-tabs .tab {
            flex: 1;
            text-align: center;
            padding: 14px 0;
            cursor: pointer;
            font-weight: 600;
            border-radius: 10px 10px 0 0;
            background: #fff;
            color: #222;
            transition: background 0.2s, color 0.2s;
            font-size: 1.1em;
            border: none;
            box-shadow: none;
        }
        .login-tabs .tab.active {
            background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(59,130,246,0.10);
        }
        .form-container {
            display: none;
            animation: fadeIn 0.5s;
        }
        .form-container.active {
            display: block;
        }
        .form-title {
            text-align: center;
            margin-bottom: 22px;
            color: #3b5bfd;
            font-size: 2em;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .input-group {
            position: relative;
            margin-bottom: 18px;
        }
        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #b0b8d1;
            font-size: 1.2em;
        }
        .input-group input {
            width: 100%;
            padding: 14px 14px 14px 44px;
            border: none;
            border-radius: 10px;
            font-size: 1.1em;
            background: #eaf1ff;
            color: #222;
            box-shadow: 0 2px 8px rgba(59,130,246,0.04);
            transition: border 0.2s, box-shadow 0.2s;
        }
        .input-group input:focus {
            outline: none;
            border: 1.5px solid #3b82f6;
            box-shadow: 0 0 0 2px #3b82f633;
        }
        button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            margin-top: 18px;
            box-shadow: 0 4px 16px rgba(59,130,246,0.10);
            transition: background 0.2s, box-shadow 0.2s;
        }
        button:hover {
            background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
            box-shadow: 0 8px 24px rgba(59,130,246,0.18);
        }
        .forgot-link {
            text-align: center;
            margin-top: 18px;
            cursor: pointer;
            color: #3b5bfd;
            font-weight: 600;
            font-size: 1.05em;
            transition: color 0.2s;
            display: block;
        }
        .forgot-link:hover {
            color: #6366f1;
            text-decoration: underline;
        }
        .message {
            margin-top: 10px;
            padding: 10px;
            text-align: center;
            border-radius: 8px;
            display: none;
            font-weight: 500;
            font-size: 1em;
        }
        @media (max-width: 600px) {
            .modal-login .modal-content {
                padding: 18px 4vw 18px 4vw;
                max-width: 98vw;
            }
            .form-title {
                font-size: 1.3em;
            }
            .login-tabs .tab {
                font-size: 1em;
                padding: 10px 0;
            }
            button {
                font-size: 1em;
                padding: 12px;
            }
        }
        .showcase {
            padding: 80px 0;
            background-color: var(--gray-light);
        }
        .showcase-item {
            display: flex;
            align-items: center;
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        .showcase-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .showcase-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        .showcase-content {
            flex: 1;
            padding: 0 40px;
        }
        .showcase-image {
            flex: 1;
            background-color: var(--gray-medium);
            height: 400px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }
        .showcase-slideshow {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: var(--gray-medium);
        }
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-color: var(--gray-medium);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        .slide img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }
        .slideshow-nav {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .slideshow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slideshow-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        .showcase-content h3 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
        }
        .showcase-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        .showcase-content p {
            color: var(--gray-dark);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        @media (max-width: 992px) {
            .showcase-item, 
            .showcase-item:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
            .showcase-content {
                margin-bottom: 30px;
                padding: 0;
            }
            .showcase-content h3 {
                padding-left: 0;
            }
            .showcase-content h3::before {
                display: none;
            }
            .showcase-image {
                aspect-ratio: 4 / 3;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        @media (max-width: 768px) {
          .showcase-item, .showcase-item:nth-child(even) {
            flex-direction: column;
            text-align: center;
          }
          .showcase-image {
            width: 100%;
            max-width: 100%;
            height: auto !important;
            min-height: 180px;
            margin: 0 auto 18px auto;
            display: block;
          }
          .showcase-image img,
          .showcase-image .showcase-slideshow,
          .showcase-image .slide {
            width: 100% !important;
            height: auto !important;
            max-width: 100%;
            display: block;
            object-fit: contain;
          }
        }
        /* Modern Hero Section */
        .hero-modern {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          min-height: 340px;
          background: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
          text-align: center;
          border-radius: 0 0 36px 36px;
          box-shadow: 0 8px 32px 0 rgba(31,38,135,0.07);
          margin-bottom: 32px;
        }
        .hero-modern h1 {
          font-size: 3.2rem;
          font-weight: 900;
          color: #1976d2;
          margin-bottom: 18px;
          letter-spacing: -1px;
          font-family: 'Poppins', Arial, sans-serif;
        }
        .hero-modern p {
          font-size: 1.35rem;
          color: #4a5568;
          max-width: 600px;
          margin: 0 auto;
          font-weight: 400;
          line-height: 1.5;
        }
        /* Modern CTA Section (Enhanced) */
        .cta-modern {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          min-height: 220px;
          margin: 48px auto 0 auto;
          max-width: 700px;
          background: rgba(236, 242, 255, 0.65); /* more frosted glass */
          border-radius: 36px;
          box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
          padding: 48px 0 32px 0;
          backdrop-filter: blur(8px);
          -webkit-backdrop-filter: blur(8px);
        }
        .cta-modern-btn {
          display: inline-flex;
          align-items: center;
          gap: 16px;
          background: linear-gradient(90deg,#3b82f6 0%,#6366f1 100%);
          color: #fff;
          font-size: 1.45rem;
          font-weight: 700;
          padding: 22px 64px;
          border-radius: 50px;
          box-shadow: 0 4px 16px rgba(59,130,246,0.13);
          text-decoration: none;
          transition: background 0.2s, box-shadow 0.2s, transform 0.2s, filter 0.2s;
          letter-spacing: 0.5px;
          position: relative;
          overflow: hidden;
        }
        .cta-modern-btn svg {
          width: 1.6em;
          height: 1.6em;
          fill: #fff;
          flex-shrink: 0;
          filter: drop-shadow(0 2px 8px #3b82f6aa);
        }
        .cta-modern-btn:hover {
          background: linear-gradient(90deg,#6366f1 0%,#3b82f6 100%);
          box-shadow: 0 8px 32px 0 #6366f1cc, 0 0 24px 4px #3b82f6aa;
          transform: translateY(-2px) scale(1.04);
          filter: drop-shadow(0 0 16px #6366f1cc);
          animation: cta-glow 1.2s infinite alternate;
        }
        @keyframes cta-glow {
          from { box-shadow: 0 8px 32px 0 #6366f1cc, 0 0 24px 4px #3b82f6aa; }
          to { box-shadow: 0 12px 48px 0 #6366f1ee, 0 0 40px 8px #3b82f6cc; }
        }
        .cta-microtext {
          margin-top: 18px;
          font-size: 1.02rem;
          color: #6b7280;
          opacity: 0.85;
          letter-spacing: 0.01em;
          font-weight: 500;
          text-align: center;
        }
        @media (max-width: 600px) {
          .cta-modern { padding: 24px 0 16px 0; min-height: 120px; border-radius: 18px; }
          .cta-modern-btn { font-size: 1.1rem; padding: 14px 24px; }
          .cta-modern-btn svg { width: 1.2em; height: 1.2em; }
          .cta-microtext { font-size: 0.95rem; }
        }

        /* --- SVG Tab Switcher Styles (TOGGLE) --- */
        .svg-tabs {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          gap: 0;
          background: #f4f7fd;
          border-radius: 16px;
          box-shadow: 0 2px 12px rgba(71, 118, 230, 0.06);
          margin-bottom: 28px;
          padding: 6px;
          width: 340px; /* or whatever fits your design */
        }

        .svg-tab {
          flex: 1 1 0;
          text-align: center;
          min-width: 0;
          padding: 16px 36px;
          font-size: 1.15rem;
          font-weight: 700;
          border: none;
          border-radius: 12px;
          background: transparent;
          color: #4776E6;
          cursor: pointer;
          transition: box-shadow 0.2s, background 0.2s, color 0.2s;
          outline: none;
          margin: 0 2px;
          box-shadow: none;
          position: relative;
          z-index: 1;
        }

        .svg-tab.active {
          background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
          color: #fff;
          box-shadow: 0 4px 16px rgba(71, 118, 230, 0.13);
          border: none;
        }

        .svg-tab:not(.active) {
          background: #f4f7fd;
          color: #4776E6;
          border: 2px solid #4776E6;
          box-shadow: none;
        }

        .svg-tab:hover {
          background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
          color: #fff;
          box-shadow: 0 4px 16px rgba(71, 118, 230, 0.13);
          border: none;
        }

        .svg-view {
          display: none;
          width: 100%;
        }
        .svg-view.active {
          display: block;
        }

        .svg-view svg,
        .svg-view object {
          width: 100%;
          max-width: 900px;
          min-width: 280px;
          height: auto;
          display: block;
          margin: 0 auto;
        }
