        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            transition: background-color 0.3s, color 0.3s;
        }
        .console-font {
            font-family: 'JetBrains Mono', monospace;
        }
        .dark-mode {
            background-color: #0f172a;
            color: #10b981;
        }
        .dark-mode .section {
            background-color: #0f172a;
        }
        .dark-mode .card {
            background-color: #1e293b;
            color: #10b981;
            border: 1px solid #10b981;
        }
        .dark-mode .text-gray-800 {
            color: #10b981;
        }
        .dark-mode .text-gray-700 {
            color: #86efac;
        }
        .dark-mode .bg-white {
            background-color: #1e293b;
        }
        .dark-mode .bg-gray-100 {
            background-color: #1e293b;
        }
        .dark-mode .bg-blue-50 {
            background-color: #1e293b;
            border: 1px solid #10b981;
        }
        .dark-mode .border-gray-300 {
            border-color: #10b981;
        }
        .dark-mode .shadow-md {
            box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1), 0 2px 4px -1px rgba(16, 185, 129, 0.06);
        }
        .dark-mode .nav-link::after {
            background-color: #10b981;
        }
        .dark-mode .skill-bar {
            background-color: #10b981;
        }
        .dark-mode .bg-blue-600 {
            background-color: #10b981;
        }
        .dark-mode .text-blue-600 {
            color: #10b981;
        }
        .dark-mode .border-blue-600 {
            border-color: #10b981;
        }
        .dark-mode .hover\:bg-blue-700:hover {
            background-color: #0d9669;
        }
        .dark-mode .hover\:bg-blue-50:hover {
            background-color: #1e293b;
        }
        .dark-mode .hero-section {
            background: linear-gradient(145deg, #0f172a, #1e293b) !important;
        }
        .dark-mode .projects-section {
            background-color: #0f172a !important;
        }
        .dark-mode .contact-section {
            background-color: #0f172a !important;
        }
        .dark-mode .footer-section {
            background-color: #0f172a !important;
        }
        .dark-mode .server-icon-container {
            background-color: #1e293b;
            border: 4px solid #1e293b;
        }
        .dark-mode .server-icon {
            color: #10b981;
        }
        .dark-mode .project-card {
            background-color: #1e293b !important;
            color: #10b981;
            border: 1px solid #10b981;
        }
        .dark-mode .project-card .text-gray-700 {
            color: #86efac;
        }
        .dark-mode .contact-info-box {
            background-color: #1e293b !important;
            color: #10b981;
        }
        .dark-mode .contact-info-box .text-gray-600 {
            color: #86efac;
        }
        .dark-mode .form-input {
            background-color: #1e293b;
            border-color: #10b981;
            color: #10b981;
        }
        .dark-mode .form-input:focus {
            outline: 2px solid #10b981;
            outline-offset: 2px;
        }
        .dark-mode .form-label {
            color: #86efac;
        }
        .section {
            padding: 5rem 1rem;
            transition: background-color 0.3s;
        }
        .skill-bar {
            transition: width 1.5s ease-in-out;
        }
        .project-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 0 0 auto;
            width: 400px;
            margin-right: 1.5rem;
        }
        .project-card:hover {
            transform: translateY(-5px);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .theme-toggle {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .theme-toggle.dark {
            background-color: #10b981;
            color: #0f172a;
        }
        .theme-toggle.light {
            background-color: #3b82f6;
            color: #fff;
        }
        .console-border {
            border: 1px solid #10b981;
        }
        .console-text {
            color: #10b981;
        }
        .console-bg {
            background-color: #0f172a;
        }
        .projects-scroller {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1rem 0;
            scrollbar-width: none; /* Firefox */
        }
        .projects-scroller::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Edge */
        }
        .scroll-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }
        .scroll-button:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        .scroll-button.left {
            left: 10px;
        }
        .scroll-button.right {
            right: 10px;
        }
        .projects-container {
            position: relative;
        }
    