.circle-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-text-container svg {
    width: 300px;
    height: 300px;
    animation: spinText 10s linear infinite;
}

svg text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    fill: white;
}

.center-icon {
    position: absolute;
    font-size: 40px;
    color: #fff; /* Adjust the icon color */
}

@keyframes spinText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}




.circle-text-container .center-icon,
.circle-text-container .elementor-widget-container svg {
    display: block;
    margin: auto;
    text-align: center;
}

.circle-text-container svg.center-icon {
    width: auto;
    height: auto;
    max-width: 100%; /* Ensure SVG scales properly */
}

.circle-text-container .center-icon svg {
    display: inline-block;
    width: 100%;
    height: 100%;
}

