@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circular-text {
    animation: rotateCircle 10s linear infinite;
}

.circular-text-content {
    font-size: 29px; /* Adjust for better readability */
    fill: #333; /* Dark text */
    letter-spacing: 2px; /* Improves spacing between letters */
}