/* Custom styles for Axclaim */

/* Add curved corners to the "Why Axclaim?" promotional image */
.blog-image img {
    border-radius: 50px;
    overflow: hidden;
}

/* Optional: Add subtle shadow to enhance the rounded effect */
.blog-image img {
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Add hover effect */
.blog-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}