
        :root {
            --primary-color: #10b981;
            --secondary-color: #059669;
            --accent-color: #34d399;
            --dark-green: #065f46;
            --light-green: #d1fae5;
            --gradient-1: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-2: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            --gradient-3: linear-gradient(135deg, #a7f3d0 0%, #10b981 100%);
            --gradient-4: linear-gradient(135deg, #065f46 0%, #059669 100%);
            --dark-color: linear-gradient(135deg, #065f46 0%, #111827 100%);
            --light-color: #f9fafb;
            --text-color: #374151;
            --shadow-sm: 0 5px 15px rgba(16, 185, 129, 0.1);
            --shadow-md: 0 10px 25px rgba(16, 185, 129, 0.15);
            --shadow-lg: 0 20px 40px rgba(16, 185, 129, 0.2);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazirmatn', 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            line-height: 1.8;
            display: flex;
        }

        /* ========== LODING SPINNER ========== */
        .loading-spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .spinner {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.1);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        .loading-spinner.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* ========== VERTICAL NAVBAR ========== */
        .vertical-navbar {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            height: 100vh;
            background: var(--dark-color);
            color: white;
            padding: 30px 0;
            z-index: 1000;
            box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            transition: var(--transition);
        }

        .navbar-profile {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 30px;
        }

        .navbar-profile-img {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            position: relative;
        }

        .navbar-profile-img img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px solid rgba(52, 211, 153, 0.3);
            object-fit: cover;
            transition: var(--transition);
        }

        .navbar-profile-img:hover img {
            transform: scale(1.05);
            border-color: var(--primary-color);
        }

        .navbar-profile h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }

        .navbar-profile p {
            color: var(--accent-color);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .vertical-nav {
            list-style: none;
            padding: 0 30px;
        }

        .nav-item {
            margin-bottom: 15px;
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            color: #d1d5db;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 15px;
            transition: var(--transition);
            font-weight: 500;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-4);
            border-radius: 15px;
            transition: var(--transition);
            z-index: -1;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: white;
            transform: translateX(-10px);
            box-shadow: var(--shadow-md);
        }

        .nav-icon {
            width: 40px;
            height: 40px;
            background: rgba(52, 211, 153, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            color: var(--accent-color);
            transition: var(--transition);
        }

        .nav-link:hover .nav-icon,
        .nav-link.active .nav-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: rotate(-10deg) scale(1.1);
        }

        .nav-text {
            flex-grow: 1;
        }

        .active-indicator {
            position: absolute;
            top: 50%;
            right: -15px;
            transform: translateY(-50%);
            width: 6px;
            height: 0;
            background: var(--gradient-1);
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .nav-link.active .active-indicator {
            height: 40px;
        }

        .nav-footer {
            margin-top: 40px;
            padding: 0 30px;
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(52, 211, 153, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-5px) rotate(10deg);
        }

        /* ========== MAIN CONTENT ========== */
        .main-content {
            flex: 1;
            margin-right: 280px;
            transition: var(--transition);
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .main-content.page-transition {
            opacity: 0;
            transform: translateY(20px);
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            overflow: hidden;
            padding: 80px 40px;
        }

        .hero-bg-shapes {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0.08;
            animation: float 20s infinite linear;
        }

        .bg-shape:nth-child(1) {
            width: 600px;
            height: 600px;
            top: -300px;
            left: -300px;
            animation-delay: 0s;
        }

        .bg-shape:nth-child(2) {
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -100px;
            animation-delay: 5s;
            background: var(--gradient-2);
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .profile-container {
            position: relative;
            margin-bottom: 40px;
        }

        .profile-img-wrapper {
            width: 250px;
            height: 250px;
            margin: 0 auto 30px;
            position: relative;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid white;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            position: relative;
            animation: profile-float 6s ease-in-out infinite;
        }

        @keyframes profile-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-glow {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 290px;
            height: 290px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
            z-index: -1;
            animation: glow-pulse 3s infinite alternate;
        }

        @keyframes glow-pulse {
            0% {
                opacity: 0.5;
                transform: scale(0.95);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--gradient-4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            text-align: center;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            position: relative;
            text-align: center;
            font-weight: 600;
        }

        .typing-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            height: 60px;
            margin-bottom: 30px;
            text-align: center;
        }

        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 40px;
            background: var(--primary-color);
            margin-right: 5px;
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            background: white;
            padding: 25px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            min-width: 150px;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-color);
            margin-top: 10px;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .btn-primary-custom {
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-4);
            transition: var(--transition);
            z-index: -1;
        }

        .btn-primary-custom:hover::before {
            width: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 13px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .btn-outline-custom:hover {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 100px 40px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .section.active {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 5px;
            background: var(--gradient-1);
            border-radius: 5px;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }

        /* ========== ABOUT ========== */
        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .about-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
        }

        /* ========== SKILLS ========== */
        .skill-item {
            margin-bottom: 30px;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .skill-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .skill-percent {
            color: var(--primary-color);
            font-weight: 700;
        }

        .skill-bar {
            height: 12px;
            background: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .skill-progress {
            height: 100%;
            border-radius: 10px;
            background: var(--gradient-1);
            width: 0;
            transition: width 1.5s cubic-bezier(0.1, 0.82, 0.76, 0.99);
        }

        /* ========== PORTFOLIO ========== */
        .portfolio-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        /* ========== PORTFOLIO - Dynamic Gradient Overlay ========== */
        .portfolio-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            height: 250px;
            background: white;
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(0, 0, 0, 0.7) 0%,
                    rgba(0, 0, 0, 0.4) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 25px;
            text-align: right;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-content {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .portfolio-item:hover .portfolio-content {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .portfolio-category {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .portfolio-links {
            display: flex;
            gap: 10px;
        }

        .portfolio-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .portfolio-link:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        /* ========== EXPERIENCE ========== */
        .experience-column-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: var(--dark-green);
            position: relative;
            padding-bottom: 15px;
        }

        .experience-column-title::after {
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-2);
            border-radius: 2px;
        }

        .experience-column {
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: var(--transition);
            position: relative;
        }

        .experience-column:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .experience-column::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .experience-column.work-column::before {
            background: var(--gradient-1);
        }

        .experience-column.education-column::before {
            background: var(--gradient-2);
        }

        .experience-timeline {
            position: relative;
            padding-right: 30px;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            right: 15px;
            width: 3px;
            height: 100%;
            background: var(--gradient-1);
        }

        .education-timeline::before {
            background: var(--gradient-2);
        }

        .experience-item {
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
        }

        .experience-item:last-child {
            margin-bottom: 0;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            top: 10px;
            right: 5px;
            width: 20px;
            height: 20px;
            background: var(--gradient-1);
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.2);
        }

        .education-item::before {
            background: var(--gradient-2);
            box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.2);
        }

        .experience-content {
            margin-right: 40px;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .experience-content:hover {
            transform: translateX(-5px);
            box-shadow: var(--shadow-md);
        }

        .experience-header {
            margin-bottom: 15px;
        }

        .experience-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .experience-company {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .education-company {
            color: var(--secondary-color);
        }

        .experience-date {
            display: inline-block;
            background: var(--gradient-1);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .education-date {
            background: var(--gradient-2);
        }

        /* ========== CONTACT ========== */
        .contact-form .form-control {
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            margin-bottom: 25px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .contact-info-item {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            text-align: center;
        }

        .contact-info-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .contact-info-item:hover .contact-icon {
            transform: rotate(-15deg) scale(1.1);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .vertical-navbar {
                width: 250px;
            }

            .main-content {
                margin-right: 250px;
            }
        }

        @media (max-width: 992px) {
            .vertical-navbar {
                transform: translateX(100%);
                width: 300px;
            }

            .vertical-navbar.active {
                transform: translateX(0);
            }

            .main-content {
                margin-right: 0;
                overflow-x: hidden;
            }

            .menu-toggle {
                position: fixed;
                top: 20px;
                left: 20px;
                z-index: 1001;
                background: var(--gradient-1);
                color: white;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                box-shadow: var(--shadow-md);
                cursor: pointer;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .experience-columns {
                flex-direction: column;
            }

            .experience-column {
                margin-bottom: 40px;
            }

            .experience-column:last-child {
                margin-bottom: 0;
            }

            .skills-row .col-lg-6 {
                margin-bottom: 30px;
            }

            .about-section-row .col-lg-6 {
                margin-bottom: 30px;
            }

            .contact-row .col-lg-8,
            .contact-row .col-lg-4 {
                height: auto !important;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }

            .profile-img-wrapper {
                width: 200px;
                height: 200px;
            }

            .profile-glow {
                width: 240px;
                height: 240px;
            }

            .section {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .experience-column-title {
                font-size: 1.7rem;
            }

            .portfolio-container {
                grid-template-columns: 1fr;
            }

            .hero-section {
                padding: 80px 20px;
            }

            .skills-row {
                display: flex;
                flex-direction: column;
            }

            .skills-row .col-lg-6 {
                width: 100%;
            }

            .about-section-row {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .experience-content {
                padding: 20px;
            }

            .experience-title {
                font-size: 1.2rem;
            }

            .experience-column {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-stats {
                gap: 20px;
            }

            .stat-item {
                min-width: 120px;
                padding: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                width: 100%;
                max-width: 300px;
            }

            .experience-column-title {
                font-size: 1.5rem;
            }

            .experience-timeline::before {
                right: 10px;
            }

            .experience-item::before {
                right: 0;
            }

            .experience-content {
                margin-right: 30px;
                padding: 15px;
            }
        }

        .about-section-row {
            margin-bottom: 30px;
        }

        .skills-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .skills-row .col-lg-6 {
            flex: 1;
            min-width: 300px;
        }

        .contact-row {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
        }

        .contact-row .col-lg-8,
        .contact-row .col-lg-4 {
            display: flex;
        }

        .contact-row .about-card,
        .contact-row .contact-info-grid {
            flex: 1;
        }

        .bg-light {
            background-color: #f8f9fa !important;
        }

        .experience-columns {
            display: flex;
            gap: 40px;
        }

        .experience-column {
            flex: 1;
        }

        .experience-item {
            position: relative;
        }

        .experience-description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }

    