
        @import url('https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&family=Satisfy&display=swap');

        body {
            font-family: 'Andika', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ebef 100%);
            min-height: 100vh;
            margin: 0;
            padding: 20px 0;
        }

        .portfolio-container {
            /* background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
            max-width: 900px;
            padding: 40px; */
            margin-top: 100px;
        }

        .profile-image-div {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
            border: 4px solid #fff;
        }

        .profile-image:hover {
            transform: scale(1.05);
        }

        .intro {
            text-align: center;
            line-height: 1.6;
        }

        .name {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            margin: 20px 0;
        }

        .title {
            font-size: 18px;
            color: #3498db;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .certifications {
            color: #7f8c8d;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .grey-text {
            color: #555;
            font-size: 16px;
            line-height: 1.7;
            margin: 25px 0;
        }

        .achievement-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            display: inline-block;
            margin: 15px 0;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .achievement-badge i {
            margin-right: 8px;
        }

        .social-links {
            margin: 30px 0;
        }

        .social-links a {
            color: #3498db;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #2980b9;
            text-decoration: none;
        }

        .social-links a i {
            margin-right: 5px;
        }

        .button-container {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-custom {
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: white;
            text-decoration: none;
        }

        .btn-secondary-custom {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .btn-secondary-custom:hover {
            background: #667eea;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .portfolio-container {
                margin: 10px;
                padding: 30px 20px;
            }
            
            .profile-image {
                width: 150px;
                height: 150px;
            }
            
            .name {
                font-size: 24px;
            }
            
            .title {
                font-size: 16px;
            }
            
            .certifications {
                font-size: 14px;
            }
            
            .grey-text {
                font-size: 15px;
            }
            
            .social-links {
                text-align: center;
            }
            
            .social-links a {
                display: block;
                margin: 10px 0;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-custom {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .portfolio-container {
                padding: 20px 15px;
            }
            
            .profile-image {
                width: 120px;
                height: 120px;
            }
            
            .name {
                font-size: 22px;
            }
            
            .achievement-badge {
                font-size: 14px;
                padding: 10px 15px;
            }
        }