 /* Base Styles */
        :root {
            --primary: #4b6cb7;
            --secondary: #000428;
            --accent: #00ff9d;
            --text: #ffffff;
            --glass-light: rgba(255, 255, 255, 0.2);
            --glass-dark: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            background-size: cover;
            background-attachment: fixed;
            overflow: hidden;
        }

        /* Background Elements for Depth */
        body::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent), transparent 70%);
            opacity: 0.1;
            top: 10%;
            left: 10%;
            filter: blur(40px);
            animation: float 15s ease-in-out infinite;
        }

        body::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent), transparent 70%);
            opacity: 0.05;
            bottom: 10%;
            right: 10%;
            filter: blur(60px);
            animation: float 18s ease-in-out infinite reverse;
        }

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

        /* Card Container */
        .profile-card {
            position: relative;
            width: 360px;
            min-height: 500px;
            backdrop-filter: blur(16px) saturate(180%);
            background-color: var(--glass-light);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.125);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            overflow: hidden;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
            transform: skewY(10deg) translateY(-50px);
            z-index: -1;
        }

        /* Profile Image */
        .profile-img {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            margin-bottom: 20px;
        }

        .profile-img img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            transform-origin: center center;
            cursor: pointer;
        }

        .profile-img img:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        /* Profile Content */
        .profile-content {
            padding: 20px 40px;
            text-align: center;
            color: var(--text);
        }

        .profile-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .profile-title {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .profile-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--accent);
        }

        .profile-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }

        /* Contact Button */
        .contact-btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--text);
            border: 1px solid var(--text);
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: translateX(-100%);
            transition: all 0.5s ease;
        }

        .contact-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(75, 118, 183, 0.5);
            border-color: var(--accent);
            color: var(--accent);
        }

        .contact-btn:hover::before {
            transform: translateX(100%);
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text);
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--glass-light), var(--glass-dark));
            border-radius: 50%;
            z-index: -1;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
            color: var(--accent);
            box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
        }

        .social-icons a:hover i {
            animation: bounce 0.5s ease;
        }

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

        /* Responsive */
        @media (max-width: 480px) {
            .profile-card {
                width: 90%;
                min-height: 450px;
            }
        }
