.au-pg-container {
    padding-top: 100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding-bottom: 20px;
    }

    .au-pg-profile-card {
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    max-width: 90%;
    margin: 0px auto;
    }


    @keyframes au-pg-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    }

    .au-pg-profile-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding: 3rem;
    align-items: start;
    }

    .au-pg-author-info {
    animation: au-pg-slide-in-left 0.8s ease-out;
    }

    @keyframes au-pg-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

    .au-pg-author-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: #3d59ab;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    }

    .au-pg-author-designation {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    }

    .au-pg-author-designation::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #3d59ab;
    border-radius: 2px;
    }

    .au-pg-author-bio {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    }

    .au-pg-author-bio p {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: au-pg-fade-in-up 0.6s ease-out forwards;
    }

    .au-pg-author-bio p:nth-child(1) { animation-delay: 0.2s; }
    .au-pg-author-bio p:nth-child(2) { animation-delay: 0.4s; }
    .au-pg-author-bio p:nth-child(3) { animation-delay: 0.6s; }
    .au-pg-author-bio p:nth-child(4) { animation-delay: 0.8s; }
    .au-pg-author-bio p:nth-child(5) { animation-delay: 1s; }
    .au-pg-author-bio p:nth-child(6) { animation-delay: 1.2s; }

    @keyframes au-pg-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .au-pg-quote-highlight {
    font-style: italic;
    font-weight: 500;
    color: #667eea;
    position: relative;
    padding: 1rem 0;
    margin: 1rem 0;
    }

    .au-pg-quote-highlight::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: serif;
    }

    .au-pg-social-links {
    display: flex;
    gap: 1rem;
    animation: au-pg-slide-in-up 0.8s ease-out 1.4s both;
    }

    @keyframes au-pg-slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .au-pg-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    }

    .au-pg-social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    }

    .au-pg-social-icon:hover::before {
    opacity: 1;
    }

    .au-pg-social-icon i {
    font-size: 1.25rem;
    color: #6b7280;
    transition: all 0.3s ease;
    z-index: 1;
    }

    .au-pg-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .au-pg-social-icon:hover i {
    color: #667eea;
    }

    .au-pg-author-image-container {
    position: relative;
    animation: au-pg-slide-in-right 0.8s ease-out;
    }

    @keyframes au-pg-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }

    .au-pg-author-photo {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    }

    .au-pg-author-image-container::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: #ffd700;
    border-radius: 32px;
    z-index: 1;
    background-size: 300% 300%;
    animation: au-pg-gradient-rotate 4s ease infinite;
    }

    @keyframes au-pg-gradient-rotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    }

    .au-pg-author-image-container::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    }

    .au-pg-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    }

    .au-pg-floating-elements::before,
    .au-pg-floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: au-pg-float 6s ease-in-out infinite;
    }

    .au-pg-floating-elements::before {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    }

    .au-pg-floating-elements::after {
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
    }

    @keyframes au-pg-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    }

    @media (max-width: 768px) {
    .au-pg-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .au-pg-author-image-container {
        order: -1;
        justify-self: center;
    }

    .au-pg-author-photo {
        width: 200px;
        height: 200px;
    }

    .au-pg-social-links {
        justify-content: center;
    }

    .au-pg-author-designation {
        padding-left: 0;
    }

    .au-pg-author-designation::before {
        display: none;
    }
    }

    @media (max-width: 480px) {
    .au-pg-container {
        padding: 80px 0px 0px 0px;
    }

    .au-pg-profile-content {
        padding: 1.5rem;
    }

    .au-pg-author-name {
        font-size: 2rem;
    }
    }




.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.linkedin:hover {
    background: #0a66c2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}