:root {
    --primary: #6c63ff;
    --secondary: #ff6584;
    --dark: #2a2a3c;
    --light: #f8f9fa;
    --gray: #e2e8f0;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --card-bg: white;
    --text-secondary: #555;
    --timeline-bg: white;
    --form-bg: white;
    --footer-bg: var(--dark);
    --footer-text: white;
    --footer-link: rgba(255, 255, 255, 0.7);
    --footer-border: rgba(255, 255, 255, 0.1);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
            font-family: 'Raleway', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            transition: var(--transition);
            margin: 0;
            padding-top: 80px; /* To account for fixed header */
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

         /* Header & Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: var(--transition);
        }

        [data-theme="dark"] header {
            background-color: rgba(30, 41, 59, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        }

        header.scrolled {
            padding: 0.5rem 0;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;  
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            position: relative;
        }

        .logo::after {
            content: '.';
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .theme-toggle {
            background: transparent;
            border: none;
            color: var(--dark);
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 1.5rem;
            padding: 0.5rem;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        [data-theme="dark"] .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--light);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                z-index: 999;
            }

            [data-theme="dark"] .nav-links {
                background-color: var(--dark);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .hamburger {
                display: block;
            }

            .theme-toggle {
                margin-left: auto;
                margin-right: 1rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0.1;
            z-index: -1;
            animation: pulse 6s infinite ease-in-out;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .hero-text {
            flex: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text h1 {
            font-family: 'Raleway', sans-serif;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-text h1 span {
            color: var(--primary);
            position: relative;
        }

        .hero-text h1 span::after {
            content: '!';
            color: var(--secondary);
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            color: #555;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--secondary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            animation: fadeInRight 1s ease-out;
        }

        .profile-container {
            position: relative;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .profile-container::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            z-index: -1;
            animation: rotate 10s linear infinite;
        }

        .profile-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sections */
        section {
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        /* Why Hire Me */
        .why-hire {
            background-color: white;
            position: relative;
        }

        .hire-container {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .hire-content {
            flex: 1;
        }

        .hire-content p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid var(--gray);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .feature-card ul {
            list-style: none;
        }

        .feature-card ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .feature-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        /* Experience */
        .experience {
            background: linear-gradient(to bottom, #f8f9fa, #eef2ff);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: calc(50% - 2rem);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: calc(50% + 2rem);
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -10px;
            border-right: 1px solid var(--gray);
            border-top: 1px solid var(--gray);
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -10px;
            border-left: 1px solid var(--gray);
            border-bottom: 1px solid var(--gray);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .timeline-content h4 {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        /* Portfolio */
.portfolio {
    background-color: white;
    padding: 4rem 1rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    background-color: white;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    background: var(--gray);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* GitHub Link Button */
.github-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.github-link:hover {
    background-color: #333;
}

/* Pagination */
.portfolio-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.page-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
    transition: var(--transition);
}

.page-btn.active,
.page-btn:hover {
    background-color: var(--primary);
    color: #fff;
}
/* Slider container */
.portfolio-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
}

/* Hide all items by default */
.portfolio-slider .portfolio-item {
    display: none;
}

/* Show only active item */
.portfolio-slider .portfolio-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



        /* Contact */
        .contact {
            background: linear-gradient(to bottom, #eef2ff, #f8f9fa);
        }

        .contact-container {
            display: flex;
            gap: 3rem;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .contact-info p {
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .contact-detail:hover .contact-icon {
            background: var(--secondary);
            transform: scale(1.1);
        }

        .contact-text h4 {
            margin-bottom: 0.3rem;
        }

        .contact-text p {
            margin: 0;
            color: #666;
        }

        .contact-form {
            flex: 1;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: flex;
            gap: 1.5rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--gray);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            display: inline-block;
        }

        .submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Raleway', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .footer-logo::after {
            content: '.';
            color: var(--secondary);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.15;
            }
            100% {
                transform: scale(1);
                opacity: 0.1;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column-reverse;
                text-align: center;
            }

            .hero-text p {
                margin: 0 auto 2rem;
            }

            .hire-container {
                flex-direction: column;
            }

            .timeline::before {
                left: 2rem;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 3rem;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-content::before {
                left: -10px !important;
                border-left: 1px solid var(--gray);
                border-bottom: 1px solid var(--gray);
                border-right: none;
                border-top: none;
                top: 20px;
            }

            .contact-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 2rem 0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .hamburger {
                display: block;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2.3rem;
            }

            .profile-container {
                width: 280px;
                height: 280px;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* Animation classes */
        .animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate.animated {
            opacity: 1;
            transform: translateY(0);
        }
        .toast {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #28a745;
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
        z-index: 9999;
    }

    .toast.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    


[data-theme="dark"] {
    --primary: #6c63ff;
    --secondary: #f59e0b;
    --dark: #f8fafc;
    --light: #1e293b;
    --gray: #94a3b8;
    --card-bg: #334155;
    --text-secondary: #94a3b8;
    --timeline-bg: #334155;
    --form-bg: #334155;
    --footer-bg: #0f172a;
    --footer-text: #f8fafc;
    --footer-link: rgba(248, 250, 252, 0.7);
    --footer-border: rgba(248, 250, 252, 0.1);
}

/* Rest of your existing CSS remains the same until the sections */

/* Why Hire Me */
.why-hire {
    background-color: var(--light);
    position: relative;
}

.feature-card {
    background: var(--card-bg);
    color: var(--dark);
    border: 1px solid var(--gray);
}

/* Experience */
.experience {
    background: linear-gradient(to bottom, var(--light), var(--gray));
}

.timeline-content {
    background: var(--timeline-bg);
    color: var(--dark);
}

.timeline-content::before {
    background: var(--timeline-bg);
}

/* Portfolio */
.portfolio {
    background-color: var(--light);
}

.portfolio-item {
    background-color: var(--card-bg);
}

.portfolio-info p {
    color: var(--text-secondary);
}

.portfolio-tag {
    background: var(--gray);
    color: var(--dark);
}

/* Contact */
.contact {
    background: linear-gradient(to bottom, var(--gray), var(--light));
}

.contact-form {
    background: var(--form-bg);
    color: var(--dark);
}

.contact-text p {
    color: var(--text-secondary);
}

/* Form elements */
.form-group input,
.form-group textarea {
    background: var(--light);
    color: var(--dark);
    border-color: var(--gray);
}

/* Footer */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-logo {
    color: var(--footer-text);
}

.footer-links a {
    color: var(--footer-link);
}

.copyright {
    color: var(--footer-link);
    border-top: 1px solid var(--footer-border);
}

/* Text colors */
.hero-text p {
    color: var(--text-secondary);
}

/* Dark mode toggle animation */
.theme-toggle {
    transition: transform 0.5s ease, background-color 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

/* Dark mode transition for smooth color changes */
body, section, .feature-card, .timeline-content, .portfolio-item, .contact-form {
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Ensure text remains visible in dark mode */
[data-theme="dark"] {
    color: var(--dark);
}

[data-theme="dark"] .section-title h2,
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .timeline-content h3,
[data-theme="dark"] .portfolio-info h3,
[data-theme="dark"] .contact-info h3 {
    color: var(--primary);
}

[data-theme="dark"] .feature-card ul li::before {
    color: var(--secondary);
}

[data-theme="dark"] .timeline-content h4 {
    color: var(--secondary);
}

/* Keep the rest of your existing CSS below this point */
/* Dark Mode Toggle Styles */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
}

.theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
}

.theme-toggle i {
    font-size: 1.5rem;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .theme-switcher {
        bottom: 70px; /* Above mobile navigation if you have it */
        right: 15px;
    }
    
    .theme-toggle {
        width: 45px;
        height: 45px;
    }
}

/* Your existing dark mode styles remain the same */
[data-theme="dark"] {
    --primary: #6c63ff;
    --secondary: #f59e0b;
    --dark: #f8fafc;
    --light: #1e293b;
    --gray: #94a3b8;
    --card-bg: #334155;
    --text-secondary: #94a3b8;
    --timeline-bg: #334155;
    --form-bg: #334155;
    --footer-bg: #0f172a;
    --footer-text: #f8fafc;
    --footer-link: rgba(248, 250, 252, 0.7);
    --footer-border: rgba(248, 250, 252, 0.1);
}

/* Rest of your existing CSS... */
