@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Funnel Display", ui-sans-serif, system-ui, sans-serif;
        }
        
        body {
            background: #323439;
            color: #fdfdfd;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            perspective: 1000px;
        }
        
        .card-container {
            width: 100%;
            max-width: 400px;
            height: 600px;
            perspective: 1000px;
            margin: 2rem;
        }
        
        .card {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }
        
        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 24px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }
        
        .card-front {
            background: linear-gradient(145deg, #3f5a6d, #323439);
            border: 1px solid rgba(169, 196, 217, 0.1);
        }
        
        .card-back {
            background: linear-gradient(145deg, #3f5a6d, #323439);
            transform: rotateY(180deg);
            border: 1px solid rgba(169, 196, 217, 0.1);
        }
        
        .logo {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .logo-text {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(to right, #6090b4, #a9c4d9);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            position: relative;
        }
        
        .logo-text::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, #6090b4, #a9c4d9);
            border-radius: 3px;
        }
        
        .ai-element {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.05;
        }
        
        .pulse {
            position: absolute;
            border-radius: 50%;
            background: #6090b4;
            opacity: 0.3;
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.5);
                opacity: 0.5;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .contact-info {
            text-align: center;
            margin-top: 1rem;
        }
        
        .name {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, #fdfdfd, #a9c4d9);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .position {
            font-size: 1rem;
            color: #a9c4d9;
            margin-bottom: 1.5rem;
        }
        
        .one-liner {
            font-size: 1.1rem;
            color: #e2ecf4;
            margin: 1.5rem 0;
            padding: 1rem;
            border-radius: 12px;
            background: rgba(169, 196, 217, 0.05);
            border: 1px solid rgba(169, 196, 217, 0.1);
            text-align: center;
        }
        
        .custom-underline {
            text-decoration-color: #6090b4;
        }
        
        .contact-details {
            margin: 1.5rem 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.8rem;
            border-radius: 12px;
            background: rgba(169, 196, 217, 0.05);
            border: 1px solid rgba(169, 196, 217, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(169, 196, 217, 0.15);
            transform: translateX(5px);
        }
        
        .contact-icon {
            margin-right: 1rem;
            color: #6090b4;
            font-size: 1.2rem;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .cta-button {
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            background: #6090b4;
            color: #fdfdfd;
            text-align: center;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .vcf-button {
            background: transparent;
            border: 1px solid #6090b4;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(96, 144, 180, 0.25);
        }
        
        .vcf-button:hover {
            background: #6090b4;
            color: #fdfdfd;
            box-shadow: 0 7px 14px rgba(96, 144, 180, 0.25);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(169, 196, 217, 0.1);
            color: #e2ecf4;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #6090b4;
            transform: translateY(-3px);
        }
        
        .flip-button {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(169, 196, 217, 0.1);
            color: #e2ecf4;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .flip-button:hover {
            background: #6090b4;
            transform: rotate(180deg);
        }
        
        .hint {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: #a9c4d9;
            opacity: 0.7;
            animation: hintPulse 2s infinite;
        }
        
        @keyframes hintPulse {
            0% { opacity: 0.7; }
            50% { opacity: 0.4; }
            100% { opacity: 0.7; }
        }
        
        .vcf-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(169, 196, 217, 0.1);
            color: #e2ecf4;
            transition: all 0.3s ease;
            z-index: 10;
            cursor: pointer;
        }
        
        .vcf-icon:hover {
            background: #6090b4;
            transform: scale(1.1);
        }
        
        @media (max-width: 480px) {
            .card-container {
                max-width: 100%;
                height: 600px;
                margin: 1rem;
            ;
            }

            .cta-button {
                padding: 10px;
            }

            .space{
                margin-top: 10px;
            }
            
            .name {
                font-size: 1.5rem;
            }
            
            .logo-text {
                font-size: 2rem;
            }
        }