
     body {
    background: linear-gradient(135deg, #1B1A3A 0%, #3A2F75 50%, #FF4FB7 100%);
    min-height: 100vh;
    overflow-x: hidden;
    padding: 20px;
}


       .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
}


        @media (min-width: 992px) {
            .container {
                flex-direction: row;
                min-height: 600px;
            }
        }

        /* Left Panel */
        .left-panel {
            flex: 1;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(58, 47, 117, 0.9) 0%, rgba(255, 79, 183, 0.7) 100%);
            position: relative;
            overflow: hidden;
        }

        .image-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .outer-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(from 0deg, #FF4FB7, #6A4DE8, #3A2F75, #FF4FB7);
            padding: 8px;
            animation: rotate 20s linear infinite;
        }

        .outer-ring::before {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            z-index: 1;
        }

        .inner-ring {
            position: absolute;
            width: 90%;
            height: 90%;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.4);
            z-index: 2;
        }

        .profile-image {
            width: 85%;
            height: 85%;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            z-index: 3;
            position: relative;
            background: #2a2349;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            bottom: 15%;
            left: 10%;
            animation-delay: 1.5s;
        }

        .floating-element:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 50%;
            right: 15%;
            animation-delay: 3s;
        }

        /* Right Panel */
        .right-panel {
            flex: 1;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
        }

       .name {
    font-family: 'Poppins', sans-serif !important; /* FORCE English clean font */
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #FF4FB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}


        .title {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: #FF4FB7;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 79, 183, 0.4);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(to right, #FF4FB7, #6A4DE8);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 79, 183, 0.3);
            border: none;
            cursor: pointer;
            width: fit-content;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(255, 79, 183, 0.5);
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::after {
            left: 100%;
        }

        /* Animations */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 1s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .name {
                font-size: 2.5rem;
            }
            
            .title {
                font-size: 1.2rem;
            }
            
            .image-container {
                height: 300px;
            }
            
            .right-panel {
                padding: 30px 25px;
                text-align: center;
                align-items: center;
            }
            
            .social-icons {
                justify-content: center;
            }
        }

    footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: -20px;
}
