@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-360deg); /* Counterclockwise spin */
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Initial 3-second spin */
.logo {
    animation: spin 3s ease-in-out;
}
#typed-text {
    font-weight: bold;
    color: #6E6E6E; /* You can change this to match your brand */
    border-right: 2px solid white; /* Cursor effect */
    padding-left: 5px;
    animation: blink 0.8s infinite;
}

/* Cursor blinking effect */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}