* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #06b6d4;
            --primary-dark: #0891b2;
            --accent-color: #8b5cf6;
            --bg-dark: #0f172a;
            --bg-card: #1e293b;
            --bg-secondary: #334155;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --border-color: #475569;
            --hover-bg: #475569;
            --gradient: linear-gradient(135deg, #06b6d4, #8b5cf6);
            --success-color: #10b981;
            --warning-color: #f59e0b;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        .header {
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            top: 0;
            z-index: 100;
             animation: slideDown 0.8s ease-out;
        }

        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem 0;
        }

        .name {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .title-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid transparent;
        }

        .contact-item:hover {
            color: var(--primary-color);
            background: var(--hover-bg);
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
        }

        .contact-item i {
            font-size: 1.1rem;
        }

        /* Main Content */
        .main {
            padding: 4rem 0;
        }

        .section {
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section:nth-child(1) { animation-delay: 0.2s; }
        .section:nth-child(2) { animation-delay: 0.4s; }
        .section:nth-child(3) { animation-delay: 0.6s; }
        .section:nth-child(4) { animation-delay: 0.8s; }
        .section:nth-child(5) { animation-delay: 1.0s; }
        .section:nth-child(6) { animation-delay: 1.2s; }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gradient);
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 3rem;
            align-items: start;
            max-width: 1000px;
            margin: 0 auto;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid transparent;
            background: var(--gradient);
            padding: 4px;
            animation: fadeIn 1s ease-out;
            transition: all 0.3s ease;
            justify-self: center;
        }

        .profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
        }

        .profile-image-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .profile-image-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .about-content {
            text-align: left;
        }

        .about-text {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: flex-start;
            margin-bottom: 2rem;
        }

        .skill-tag {
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
            border-color: transparent;
        }

        .resume-download {
            position: absolute;
            top: 2rem;
            right: 2rem;
            margin-top: 0;
        }

        .resume-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .resume-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
        }

        /* Skills Table Section */
        .skills-table-container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            overflow: hidden;
            position: relative;
        }

        .skills-table-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }

        .skills-table {
            width: 100%;
            border-collapse: collapse;
        }

        .skills-table th {
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--border-color);
        }

        .skills-table th:first-child {
            width: 30%;
            background: linear-gradient(135deg, var(--bg-secondary), var(--hover-bg));
        }

        .skills-table td {
            padding: 1.25rem 1.5rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            font-size: 1rem;
            line-height: 1.6;
        }

        .skills-table td:first-child {
            background: rgba(30, 41, 59, 0.5);
            font-weight: 600;
            color: var(--primary-color);
            border-right: 2px solid var(--border-color);
        }

        .skills-table tr:hover td {
            background: rgba(6, 182, 212, 0.05);
        }

        .skills-table tr:hover td:first-child {
            background: rgba(6, 182, 212, 0.1);
            color: var(--primary-color);
        }

        .skills-table tr:last-child td {
            border-bottom: none;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-color);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Experience Section */
        .experience-timeline {
            position: relative;
            margin: 2rem 0;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 2rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gradient);
        }

        .experience-item {
            position: relative;
            padding-left: 5rem;
            margin-bottom: 3rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            padding-left: 5rem;
            transition: all 0.3s ease;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            left: -3rem;
            top: 2rem;
            width: 1rem;
            height: 1rem;
            background: var(--primary-color);
            border-radius: 50%;
            border: 3px solid var(--bg-dark);
            z-index: 2;
        }

        .experience-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-color);
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .experience-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .experience-company {
            color: var(--primary-color);
            font-weight: 500;
            margin-top: 0.25rem;
        }

        .experience-duration {
            color: var(--text-muted);
            font-size: 0.9rem;
            background: var(--bg-secondary);
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            border: 1px solid var(--border-color);
        }

        .experience-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .experience-achievements {
            list-style: none;
        }

        .experience-achievements li {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .experience-achievements li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Certifications Section */
        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .certification-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .certification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-color);
        }

        .certification-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .cert-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .cert-icon {
            background: var(--gradient);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .cert-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .cert-issuer {
            color: var(--primary-color);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .cert-date {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin: 1rem 0;
        }

        .cert-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            margin-top: 1rem;
            position: relative;
            z-index: 2;
        }

        .cert-link:hover {
            color: var(--primary-color);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: var(--primary-color);
            background: rgba(30, 41, 59, 0.8);
        }

        .project-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .project-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-tag {
            background: var(--bg-secondary);
            color: var(--text-muted);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid var(--border-color);
        }

        .project-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient);
            color: white;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            flex: 1;
            justify-content: center;
            min-width: 140px;
        }

        .project-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(6, 182, 212, 0.4);
            border-color: var(--primary-color);
        }

        .project-link.secondary {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .project-link.secondary:hover {
            background: var(--hover-bg);
            border-color: var(--accent-color);
            color: var(--accent-color);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--bg-card);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .name {
                font-size: 2rem;
            }

            .contact-info {
                gap: 1rem;
            }

            .contact-item {
                padding: 0.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .profile-image {
                justify-self: center;
                margin-bottom: 1rem;
            }

            .projects-grid,
            .certifications-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .project-card,
            .certification-card {
                padding: 1.5rem;
            }

            .experience-timeline::before {
                left: 1rem;
            }

            .experience-item {
                padding-left: 3rem;
            }

            .experience-item::before {
                left: -2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Skills Table Mobile */
            .skills-table-container {
                overflow-x: auto;
            }

            .skills-table th,
            .skills-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .skills-table th:first-child {
                width: 25%;
                min-width: 120px;
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                flex-direction: column;
                gap: 0.5rem;
            }

            .skills {
                justify-content: center;
            }

            .skill-tag {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .experience-header {
                flex-direction: column;
                gap: 0.5rem;
            }

            .skills-table th,
            .skills-table td {
                padding: 0.75rem;
                font-size: 0.8rem;
            }

            .skills-table th:first-child {
                width: 30%;
            }
        }