.btn:hover {
   
    transform: scale(1.05);
}

.btn:hover::after {
    transform: translateX(5px); /* Move image slightly on hover */
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 30px; /* Adjust for space for the image */
}

.btn::after {
    content: '';
    background-image: url('https://kajabi-storefronts-production.kajabi-cdn.com/kajabi-storefronts-production/file-uploads/themes/2157739727/settings_images/e8536-4a77-25a5-0ec4-307a0db1463_noun-arrow-3771846_1_.png'); /* Replace with your image path */
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 50px; /* Adjust based on your image size */
    height: 50px; /* Adjust based on your image size */
    margin-left: 10px; /* Space between text and image */
}