@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
        
        body {
            background-color: #121212;
            color: #f8fafc;
            font-family: 'Inter', sans-serif;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #0ea5e9, #6366f1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.3);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .progress-bar {
            height: 6px;
            background: #2d2d2d;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #0ea5e9, #6366f1);
            border-radius: 3px;
            transition: width 1s ease-in-out;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #0ea5e9, #6366f1);
        }
        
        .timeline-dot {
            position: absolute;
            left: -4px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #0ea5e9;
        }
        
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0ea5e9, #6366f1);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .typing-effect {
            border-right: 2px solid #0ea5e9;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #0ea5e9 }
        }
        
        .tech-icon {
            transition: all 0.3s ease;
        }
        
        .tech-icon:hover {
            transform: translateY(-5px);
            filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
        }
        
        .skill-icon {
            transition: all 0.3s ease;
            filter: grayscale(30%);
        }
        
        .skill-icon:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        /* Template Slider Styles */
        .template-slider {
            overflow: hidden;
            position: relative;
        }
        
        .template-slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .template-card {
            flex: 0 0 100%;
            transition: all 0.3s ease;
        }
        
        @media (min-width: 768px) {
            .template-card {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 1024px) {
            .template-card {
                flex: 0 0 33.333%;
            }
        }
        
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-nav-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav-prev {
            left: 20px;
        }
        
        .slider-nav-next {
            right: 20px;
        }
        
        .slider-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-indicator.active {
            width: 30px;
            border-radius: 10px;
        }
        
        .tech-tag {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .tech-tag i {
            margin-right: 0.25rem;
        }