   /* Custom fonts and glassmorphism styles */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
        }
        
        :root {
            --bg-primary: #f5f7fa;
            --bg-secondary: #ffffff;
            --text-primary: #1a1a1a;
            --text-secondary: #6b7280;
            --glass-bg: rgba(255, 255, 255, 0.4);
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow-color: rgba(0, 0, 0, 0.1);
            --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --accent-glow: rgba(102, 126, 234, 0.3);
        }
        
        [data-theme="dark"] {
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            --glass-bg: rgba(26, 26, 26, 0.4);
            --glass-border: rgba(255, 255, 255, 0.15);
            --shadow-color: rgba(0, 0, 0, 0.3);
            --accent-glow: rgba(102, 126, 234, 0.2);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.3s cubic-bezier(0.2, 0.9, 0.3, 1), 
                        color 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
            overflow-x: hidden;
            position: relative;
        }
        
        /* Background pattern for more glass effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        [data-theme="dark"] body::before {
            background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 40% 20%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
        }
        
        /* Gradient text fix for RTL */
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            padding: 0 0.5rem;
        }
        
        /* Animated gradient background */
        .bg-gradient-animated {
            background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #4facfe);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Glass morphism effect - iOS 26 style */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            box-shadow: 0 8px 32px var(--shadow-color);
        }
        
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            box-shadow: 0 4px 24px var(--shadow-color);
            transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1),
                        box-shadow 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
        }
        
        .glass-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px var(--shadow-color);
        }
        
        /* Button styles */
        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),
                        box-shadow 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
            box-shadow: 0 4px 20px var(--accent-glow);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .btn-primary:hover::before {
            opacity: 1;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--accent-glow);
        }
        
        .btn-secondary {
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            color: var(--text-primary);
            padding: 12px 28px;
            border-radius: 12px;
            border: 1px solid var(--glass-border);
            font-weight: 600;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
        }
        
        .btn-secondary:hover {
            transform: translateY(-2px);
            border-color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.6);
        }
        
        [data-theme="dark"] .btn-secondary:hover {
            background: rgba(26, 26, 26, 0.6);
        }
        
        /* Theme toggle */
        .theme-toggle {
            width: 60px;
            height: 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
        }
        
        .theme-toggle-slider {
            width: 26px;
            height: 26px;
            background: var(--accent-gradient);
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 3px;
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        [data-theme="dark"] .theme-toggle-slider {
            transform: translateX(28px);
        }
        
        /* Language toggle */
        .lang-toggle {
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        
        .lang-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .lang-toggle:hover::before {
            opacity: 1;
        }
        
        .lang-toggle:hover {
            color: white;
            border-color: transparent;
        }
        
        .lang-toggle span {
            position: relative;
            z-index: 1;
        }
        
        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            transition: right 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
            z-index: 50;
            padding: 80px 30px 30px;
            border-left: 1px solid var(--glass-border);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        /* Skill progress bar */
        .skill-bar {
            height: 8px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .skill-progress {
            height: 100%;
            background: var(--accent-gradient);
            border-radius: 10px;
            transition: width 1s cubic-bezier(0.2, 0.9, 0.3, 1);
            position: relative;
        }
        
        .skill-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Form styles */
        input, textarea {
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 2px solid var(--glass-border);
            border-radius: 16px;
            padding: 20px 24px;
            color: var(--text-primary);
            width: 100%;
            min-height: 56px;
            transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
            font-family: inherit;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .inp{
          padding-left: 10px;
        }
        .inpm{
          padding-left: 10px;
          padding-top: 10px;
        }
        textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        input::placeholder, textarea::placeholder {
            color: var(--text-secondary);
            opacity: 0.6;
            font-weight: 400;
        }
        
        input:hover, textarea:hover {
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }
        
        input:focus, textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px var(--accent-glow), 0 8px 20px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.6);
            transform: translateY(-1px);
        }
        
        [data-theme="dark"] input:focus, 
        [data-theme="dark"] textarea:focus {
            background: rgba(26, 26, 26, 0.6);
        }
        
        [data-theme="dark"] input,
        [data-theme="dark"] textarea {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        label {
            font-size: 15px;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }
        
        /* Social icons */
        .social-icon {
            width: 48px;
            height: 48px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
            color: var(--text-primary);
            position: relative;
            overflow: hidden;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .social-icon:hover::before {
            opacity: 1;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px var(--accent-glow);
            border-color: transparent;
        }
        
        .social-icon:hover i {
            position: relative;
            z-index: 1;
            color: white;
        }
        
        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.3, 1),
                        transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--glass-bg);
            border-radius: 10px;
            border: 2px solid var(--bg-primary);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-secondary);
        }
        
        /* Animated Avatar */
        .avatar-container {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            position: relative;
        }
        
        /* Responsive utilities */
        @media (max-width: 768px) {
            .glass-card {
                border-radius: 14px;
            }
            .avatar-container {
                width: 160px;
                height: 160px;
            }
        }