.profile-container {
            max-width: 1200px;
            margin: 0 auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            padding: 20px;
            animation: fadeIn 1s ease-in;
        }

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

        .profile-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #0066cc;
            margin: 0 auto 20px;
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: profileImageFloat 3s ease-in-out infinite;
        }

        @keyframes profileImageFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .profile-image:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
        }

        .profile-name {
            font-size: 2.5em;
            font-weight: 700;
            color: #0066cc;
            margin: 10px 0;
            background: linear-gradient(45deg, #0066cc, #4da6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInFromLeft 1s ease-out 0.3s both;
        }

        .profile-title {
            font-size: 1.3em;
            color: #666;
            margin-bottom: 10px;
            animation: slideInFromRight 1s ease-out 0.5s both;
        }

        .profile-tagline {
            font-style: italic;
            color: #888;
            font-size: 1.1em;
            margin-bottom: 30px;
            animation: slideInFromBottom 1s ease-out 0.7s both;
        }

        @keyframes slideInFromLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInFromRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

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

        .profile-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .content-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.1);
            border-left: 5px solid #0066cc;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: slideInUp 1s ease-out both;
        }

        .content-section:nth-child(even) {
            animation-delay: 0.2s;
        }

        .content-section:nth-child(odd) {
            animation-delay: 0.4s;
        }

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

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
        }

        .section-title {
            font-size: 1.8em;
            font-weight: 700;
            color: #0066cc;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-icon {
            font-size: 1.2em;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-3px); }
        }

        .section-content {
            font-size: 1.03em;
            text-align: justify;
        }

        .section-content p {
            margin-bottom: 15px;
        }

        .skills-list, .roles-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }

        .skill-tag, .role-tag {
            background: linear-gradient(45deg, #0066cc, #4da6ff);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: 500;
            transition: transform 0.3s ease;
            animation: skillFloat 3s ease-in-out infinite;
        }

        .skill-tag:nth-child(even), .role-tag:nth-child(even) {
            animation-delay: 1s;
        }

        .skill-tag:nth-child(3n), .role-tag:nth-child(3n) {
            animation-delay: 2s;
        }

        @keyframes skillFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-3px); }
        }

        .skill-tag:hover, .role-tag:hover {
            transform: scale(1.05) translateY(-2px);
        }

        .highlight-text {
            background: linear-gradient(120deg, rgba(0, 102, 204, 0.1) 0%, rgba(77, 166, 255, 0.1) 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .achievement-item {
            background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #0066cc;
            transition: transform 0.3s ease;
        }

        .achievement-item:hover {
            transform: translateX(5px);
        }

        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .profile-container {
                padding: 15px;
            }
            
            .profile-name {
                font-size: 2em;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.5em;
            }
            
            .skills-list, .roles-list {
                justify-content: center;
            }
        }