
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #10b981;
            --primary-dark: #059669;
            --primary-light: #6ee7b7;
            --dark: #0f172a;
            --dark-secondary: #1e293b;
            --dark-tertiary: #334155;
            --text-primary: #f1f5f9;
            --text-secondary: #cbd5e1;
            --accent: #06b6d4;
            --accent-2: #f59e0b;
            --border: #475569;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, #1a2f4a 100%);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== HEADER / NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
            padding: 1.2rem 2rem;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }


        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* ===== LANGUAGE SWITCHER ===== */
        .language-switcher {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 0 1rem;
        }

        .lang-divider {
            color: var(--border);
        }

        .lang-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.4rem 0.6rem;
            border-radius: 4px;
        }

        .lang-btn:hover {
            color: var(--primary);
        }

        .lang-btn.active {
            color: var(--primary);
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--primary);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0.75rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        /* ===== RTL SUPPORT ===== */
        html[dir="rtl"] {
            direction: rtl;
            text-align: right;
        }

        html[dir="rtl"] nav {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .nav-links {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .hero {
            direction: rtl;
        }

        html[dir="rtl"] .hero-content {
            text-align: right;
        }

        html[dir="rtl"] .tech-stack {
            justify-content: flex-end;
        }

        html[dir="rtl"] .hero-image {
            order: -1;
        }

        html[dir="rtl"] .skill-card {
            text-align: right;
        }

        html[dir="rtl"] .portfolio-card-content {
            text-align: right;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            margin-top: 80px;
            padding: 6rem 2rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: calc(100vh - 80px);
        }

        .hero-content h1 {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            animation: slideInUp 0.8s ease 0.2s both;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: slideInUp 0.8s ease 0.4s both;
        }

        .tech-stack {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease 0.5s both;
        }

        .tech-badge {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tech-badge:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: slideInUp 0.8s ease 0.6s both;
        }

        .button-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            display: inline-block;
        }

        .button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
        }

        .button-secondary {
            background: transparent;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border: 2px solid var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .button-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 0.8s ease 0.3s both;
        }

        .hero-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .floating-card {
            position: absolute;
            background: rgba(51, 65, 85, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 12px;
            padding: 1.2rem;
            border-radius: 15px;
        }

        .floating-card-1 {
            bottom: 50px;
            left: -80px;
            width: 200px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card-2 {
            top: 50px;
            right: -100px;
            width: 220px;
            animation: float 4s ease-in-out infinite 0.5s;
        }

        .floating-card-3 {
            bottom: 50px;
            right: 70px;
            width: 220px;
            animation: float 5s ease-in-out infinite 0.9s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(20px); }
        }

        /* ===== SOCIAL LINKS ===== */
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            animation: slideInUp 0.8s ease 0.7s both;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        /* ===== SKILLS SECTION ===== */
        .skills-section {
            padding: 6rem 2rem;
            background: rgba(30, 41, 59, 0.5);
            border-top: 1px solid rgba(148, 163, 184, 0.1);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
        }

        .skills-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .skill-card {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .skill-card:hover {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border-color: var(--primary);
            transform: translateY(-8px);
        }

        .skill-card:hover::before {
            transform: scaleX(1);
        }

        .skill-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .skill-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .skill-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .tech-tag {
            background: rgba(16, 185, 129, 0.15);
            color: var(--primary-light);
            padding: 0.35rem 0.85rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* ===== PORTFOLIO SECTION ===== */
        .portfolio-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .portfolio-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.6) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }

        .portfolio-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .portfolio-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .portfolio-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .portfolio-card-content {
            padding: 2rem;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .portfolio-link:hover {
            gap: 1rem;
        }

        /* ===== EDUCATION SECTION ===== */
        .education-section {
            padding: 6rem 2rem;
            background: rgba(30, 41, 59, 0.5);
            border-top: 1px solid rgba(148, 163, 184, 0.1);
        }

        .education-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .education-card {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .education-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .education-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .education-card .subtitle {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background: rgba(15, 23, 42, 0.9);
            border-top: 1px solid rgba(148, 163, 184, 0.1);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 4rem 2rem;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            nav {
                gap: 1rem;
            }

            .language-switcher {
                gap: 0.5rem;
            }

            .lang-btn {
                font-size: 0.8rem;
                padding: 0.3rem 0.4rem;
            }

            .cta-button {
                padding: 0.6rem 1.5rem;
                font-size: 0.85rem;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 2.5rem 1.5rem;
                margin-top: 70px;
                min-height: auto;
                gap: 2.5rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
                margin-bottom: 1.2rem;
            }

            .hero-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .tech-stack {
                gap: 0.8rem;
                margin-bottom: 1.5rem;
            }

            .tech-badge {
                font-size: 0.8rem;
                padding: 0.4rem 0.9rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .button-primary, .button-secondary {
                width: 100%;
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }

            .hero-image {
                order: -1;
            }

            .hero-image img {
                max-width: 280px;
                margin: 0 auto;
            }

            .floating-card {
                display: none;
            }

            .social-links {
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .social-icon {
                width: 40px;
                height: 40px;
            }

            .skills-section {
                padding: 4rem 1.5rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .skill-card {
                padding: 1.5rem;
            }

            .skill-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .skill-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .skill-card p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .tech-tag {
                padding: 0.3rem 0.7rem;
                font-size: 0.75rem;
            }

            .portfolio-section {
                padding: 4rem 1.5rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2.5rem;
            }

            .portfolio-card {
                border-radius: 12px;
            }

            .portfolio-card-content {
                padding: 1.5rem;
            }

            .portfolio-icon {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }

            .portfolio-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .portfolio-card p {
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 1rem;
            }

            .education-section {
                padding: 4rem 1.5rem;
            }

            .education-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2.5rem;
            }

            .education-card {
                padding: 1.5rem;
            }

            .education-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }

            .education-card .subtitle {
                font-size: 0.85rem;
                margin-bottom: 0.8rem;
            }

            footer {
                padding: 2.5rem 1.5rem;
            }

            .footer-links {
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }

            .footer-social {
                gap: 1rem;
                margin: 1.5rem 0;
            }

            .footer-social a {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 600px) {
            header {
                padding: 0.9rem 1rem;
            }

            nav {
                gap: 0.5rem;
            }

            .language-switcher {
                gap: 0.4rem;
            }

            .lang-btn {
                font-size: 0.75rem;
                padding: 0.25rem 0.3rem;
            }

            .cta-button {
                padding: 0.5rem 1.2rem;
                font-size: 0.8rem;
                border-radius: 30px;
            }

            .hero {
                margin-top: 65px;
                padding: 2rem 1rem;
                gap: 1.5rem;
            }

            .hero-content h1 {
                font-size: 1.75rem;
                line-height: 1.2;
                margin-bottom: 1rem;
                letter-spacing: -0.5px;
            }

            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
                line-height: 1.6;
            }

            .tech-stack {
                gap: 0.6rem;
                margin-bottom: 1.2rem;
            }

            .tech-badge {
                font-size: 0.75rem;
                padding: 0.35rem 0.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.8rem;
            }

            .button-primary, .button-secondary {
                width: 100%;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                border-radius: 30px;
            }

            .hero-image img {
                max-width: 240px;
            }

            .social-links {
                gap: 0.8rem;
                margin-top: 1.2rem;
            }

            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }

            .skills-section {
                padding: 3rem 1rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
                margin-bottom: 0.6rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .skills-grid {
                gap: 1.2rem;
            }

            .skill-card {
                padding: 1.2rem;
            }

            .skill-icon {
                font-size: 1.8rem;
                margin-bottom: 0.6rem;
            }

            .skill-card h3 {
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }

            .skill-card p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .tech-list {
                gap: 0.6rem;
                margin-top: 1rem;
            }

            .tech-tag {
                padding: 0.25rem 0.6rem;
                font-size: 0.7rem;
            }

            .portfolio-section {
                padding: 3rem 1rem;
            }

            .portfolio-grid {
                gap: 1.2rem;
                margin-top: 2rem;
            }

            .portfolio-card {
                border-radius: 10px;
            }

            .portfolio-card-content {
                padding: 1.2rem;
            }

            .portfolio-icon {
                font-size: 1.6rem;
                margin-bottom: 0.6rem;
            }

            .portfolio-card h3 {
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }

            .portfolio-card p {
                font-size: 0.85rem;
                line-height: 1.5;
                margin-bottom: 0.8rem;
            }

            .education-section {
                padding: 3rem 1rem;
            }

            .education-grid {
                gap: 1.2rem;
                margin-top: 2rem;
            }

            .education-card {
                padding: 1.2rem;
            }

            .education-card h3 {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }

            .education-card .subtitle {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
            }

            footer {
                padding: 2rem 1rem;
                margin-top: 2rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 1.2rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }

            .footer-social {
                gap: 0.8rem;
                margin: 1.2rem 0;
            }

            .footer-social a {
                width: 38px;
                height: 38px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 400px) {
            header {
                padding: 0.8rem 0.8rem;
            }

            .language-switcher {
                gap: 0.3rem;
            }

            .lang-btn {
                font-size: 0.7rem;
                padding: 0.2rem 0.25rem;
            }

            .lang-divider {
                font-size: 0.7rem;
            }

            .cta-button {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }

            .hero {
                margin-top: 60px;
                padding: 1.5rem 0.8rem;
                gap: 1.2rem;
            }

            .hero-content h1 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }

            .hero-content p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .tech-stack {
                gap: 0.5rem;
                margin-bottom: 1rem;
            }

            .tech-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.7rem;
            }

            .button-primary, .button-secondary {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }

            .hero-image img {
                max-width: 200px;
            }

            .social-icon {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .skills-section {
                padding: 2.5rem 0.8rem;
            }

            .section-header h2 {
                font-size: 1.3rem;
            }

            .skill-card {
                padding: 1rem;
            }

            .skill-icon {
                font-size: 1.6rem;
            }

            .skill-card h3 {
                font-size: 0.95rem;
            }

            .skill-card p {
                font-size: 0.8rem;
            }

            .portfolio-section {
                padding: 2.5rem 0.8rem;
            }

            .portfolio-card-content {
                padding: 1rem;
            }

            .portfolio-icon {
                font-size: 1.4rem;
            }

            .portfolio-card h3 {
                font-size: 0.95rem;
            }

            .portfolio-card p {
                font-size: 0.8rem;
            }

            .education-section {
                padding: 2.5rem 0.8rem;
            }

            .education-card {
                padding: 1rem;
            }

            .education-card h3 {
                font-size: 0.95rem;
            }

            footer {
                padding: 1.5rem 0.8rem;
            }

            footer p {
                font-size: 0.75rem;
            }
        }


::selection {
  background-color: var(--primary-dark);
  color: var(--text-primary); 
}
