
/* Adjust icon size on mobile screens */
@media (max-width: 767px) {
    .testimonial-two__counter-icon img {
        max-width: 100px; /* Reduce the icon size for mobile */
        height: auto; /* Ensure aspect ratio is maintained */
    }

    /* Optional: Adjust the padding and margins for better spacing on mobile */
    .col-md-6 {
        padding: 50px;
        margin: 1%;
    }
}

