/* Theme Switcher */
        .theme-switcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        .theme-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .theme-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        .theme-btn:active {
            transform: scale(0.95);
        }

        /* Light Theme (Default) */
        body {
            font-family: 'Red Hat Display', sans-serif;
            font-size: 18px;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background: #f4f4f4;
            color: #333;
            text-align: left;
            transition: background 0.3s ease, color 0.3s ease;
        }
        body a {
            color: #1976d2;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        body a:hover {
            color: #0d47a1;
        }
        header {
            background: #fff;
            color: #333;
            padding: 20px 0;
            text-align: center;
            border-bottom: 1px solid #ddd;
            display: none; /* Hide the header */
        }
        h2 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }
        h3 {
            color: #333;
        }
        .container {
            max-width: 960px;
            margin: 20px auto;
            padding: 30px;
            background: #fff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .about-section {
            display: flex;
            align-items: flex-start;
            text-align: justify;
        }
        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-right: 30px;
            flex-shrink: 0;
        }
        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        #email {
            font-weight: normal;
            font-family: 'Consolas', monospace;
            color: #1976d2;
            font-weight: 500;
        }
        .about-text {
            flex: 1;
        }
        .about-text h2 {
            margin-top: 0;
        }
        footer {
            margin-top: 30px;
            padding: 20px;
            text-align: center;
            transition: color 0.3s ease;
        }
        hr {
            border: none;
            border-bottom: 1px solid #ddd;
            margin: 20px 0;
        }

        /* Dark Theme */
        body.dark-theme {
            background: #1a1a1a;
            color: #e0e0e0;
        }
        body.dark-theme a {
            color: #64b5f6;
        }
        body.dark-theme a:hover {
            color: #90caf9;
        }
        body.dark-theme h2,
        body.dark-theme h3 {
            color: #e0e0e0;
            border-bottom-color: #333;
        }
        body.dark-theme .container {
            background: #252525;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }
        body.dark-theme #email {
            color: #64b5f6;
        }
        body.dark-theme hr {
            border-bottom-color: #333;
        }

        /* Neo-Brutalism Theme */
        body.neo-brutalism {
            background: #FFE951;
            color: #000;
        }
        body.neo-brutalism a {
            color: #FF6B35;
            font-weight: 600;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }
        body.neo-brutalism a:hover {
            color: #000;
            background: #FF6B35;
            padding: 2px 4px;
            text-decoration: none;
        }
        body.neo-brutalism h2 {
            color: #000;
            font-weight: 800;
            font-size: 28px;
            border: none;
            background: #000;
            color: #FFE951;
            padding: 8px 12px;
            margin-bottom: 20px;
            box-shadow: 5px 5px 0px #000;
            transform: rotate(-1deg);
        }
        body.neo-brutalism h3 {
            color: #000;
            font-weight: 800;
            border-bottom: 4px solid #000;
            padding-bottom: 5px;
        }
        body.neo-brutalism .container {
            background: #FFF;
            border: 5px solid #000;
            border-radius: 0;
            box-shadow: 10px 10px 0px #000;
            transform: rotate(0.5deg);
        }
        body.neo-brutalism .profile-image {
            border: 5px solid #000;
            border-radius: 0;
            box-shadow: 8px 8px 0px #FF6B35;
            transform: rotate(-2deg);
        }
        body.neo-brutalism #email {
            color: #000;
            font-weight: 600;
            background: #00F5FF;
            padding: 4px 8px;
            border: 3px solid #000;
            display: inline-block;
        }
        body.neo-brutalism footer {
            color: #000;
            font-weight: 600;
        }
        body.neo-brutalism hr {
            border-bottom: 3px solid #000;
        }
        body.neo-brutalism ul li {
            margin-bottom: 12px;
        }
        body.neo-brutalism strong {
            background: #00F5FF;
            padding: 2px 4px;
        }
        body.neo-brutalism .theme-btn {
            border: 4px solid #000;
            box-shadow: 6px 6px 0px #000;
        }
        body.neo-brutalism .theme-btn:hover {
            box-shadow: 8px 8px 0px #000;
        }

        /* Theme button styles */
        .theme-btn {
            background: #fff;
        }
        body.dark-theme .theme-btn {
            background: #252525;
            border: 2px solid #444;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }
            .about-section {
                flex-direction: column;
                align-items: center;
            }
            .profile-container {
                margin-right: 0;
                margin-bottom: 20px;
            }
            .profile-image {
                margin-bottom: 10px;
            }
            .theme-switcher {
                bottom: 20px;
                right: 20px;
            }
            .theme-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            body.neo-brutalism .container {
                box-shadow: 6px 6px 0px #000;
            }
        }
