  @keyframes gradientBG {
            0% {background-position: 0% 50%;}
            50% {background-position: 100% 50%;}
            100% {background-position: 0% 50%;}
        }
        @keyframes gradientCard {
            0% {background-position: 0% 50%;}
            50% {background-position: 100% 50%;}
            100% {background-position: 0% 50%;}
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: linear-gradient(-45deg, #1E3E62, #0B192C, #1E3E62, #0B192C);
            background-size: 400% 400%;
            animation: gradientBG 12s ease infinite;
        }
        .card {
            background: linear-gradient(-45deg, #447D9B, #273F4F, #447D9B, #273F4F);
            background-size: 400% 400%;
            animation: gradientCard 10s ease infinite;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            width: 400px;
            text-align: center;
            padding: 35px 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #00bcd4;
            transition: transform 0.5s ease;
        }
        .profile-img:hover {
            transform: rotate(5deg) scale(1.05);
        }
        h2 {
            margin: 15px 0 5px;
            font-size: 1.8rem;
            color: #FFD700;
            animation: fadeInDown 1s ease;
        }
        p {
            margin: 0;
            font-size: 1rem;
            color: #ccc;
            animation: fadeInUp 1s ease;
        }
        .social-links {
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .social-links a {
            display: inline-block;
            width: 100%;
            padding: 14px 0;
            border-radius: 12px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            color: #B8CFCE;
            background: #EAEFEF;
            transition: all 0.3s ease, transform 0.2s ease;
        }
        .social-links a:hover {
            background: #00bcd4;
            transform: scale(1.07) translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .social-links a:active {
            transform: scale(0.95);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) inset;
        }
        @keyframes fadeInDown {
            from {opacity: 0; transform: translateY(-20px);}
            to {opacity: 1; transform: translateY(0);}
        }
        @keyframes fadeInUp {
            from {opacity: 0; transform: translateY(20px);}
            to {opacity: 1; transform: translateY(0);}
        }