
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');
        
        :root {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --dark: #0f172a;
            --light: #f8fafc;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .dark {
            /* background-color: #0f172a; */
            color: #f8fafc;
        }
        
        .light {
            background-color: #f8fafc;
            color: #0f172a;
        }
        
        .gradient-text {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(90deg, #3b82f6, #8b5cf6);
        }
        
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .dark .card-hover:hover {
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
        }
        
        .skill-bar {
            height: 8px;
            border-radius: 4px;
            background-color: #e2e8f0;
        }
        
        .dark .skill-bar {
            background-color: #1e293b;
        }
        
        .skill-progress {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 1s ease-in-out;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--primary);
            border: 3px solid var(--light);
        }
        
        .dark .timeline-item::before {
            border-color: var(--dark);
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: -23px;
            top: 0;
            width: 2px;
            height: 100%;
            background-color: #cbd5e1;
        }
        
        .dark .timeline::before {
            background-color: #334155;
        }
        
        .project-card {
            perspective: 1000px;
        }
        
        .project-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .project-card:hover .project-inner {
            transform: rotateY(180deg);
        }
        
        .project-front, .project-back {
            backface-visibility: hidden;
        }
        
        .project-back {
            transform: rotateY(180deg);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            bottom: -8px;
            left: 20%;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }
        
        /* Mobile Menu Styles */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .timeline-item::before {
                left: -20px;
                width: 12px;
                height: 12px;
            }
            
            .timeline::before {
                left: -15px;
            }
            
            .project-card:hover .project-inner {
                transform: none;
            }
            
            .project-back {
                display: none;
            }
            
            .hero-image {
                width: 220px;
                height: 220px;
            }
        }
        
        @media (max-width: 640px) {
            .section-title::after {
                width: 80%;
                left: 10%;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            
            .hero-buttons a {
                width: 100%;
                text-align: center;
            }
        }
        #text-hero{
            color: black;
        }
                #text-hero-white{
            color: white;
        }