/* Profile image animations - unified across all pages */
.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(240, 165, 0, 0.3);
    animation: profilePulse 3s infinite ease-in-out !important;
    transition: all 0.3s ease;
    /* Reset any other transforms or animations */
    transform: none;
}

/* Enhanced animation combining both glow and subtle scale */
@keyframes profilePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(240, 165, 0, 0.7);
    }
    
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(240, 165, 0, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(240, 165, 0, 0);
    }
}

/* Hover effect */
.profile-img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(240, 165, 0, 0.5) !important;
}
