.scholarship-link {
    position: relative;
    animation: blink 2s infinite;
}

.scholarship-link i {
    color: #ffc107;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.3;
    }
}

.scholarship-link:hover {
    animation: none;
}

.scholarship-link:hover i {
    animation: none;
    color: #ff6b35;
}

.scholarship-link {
    position: relative;
    animation: blink 2s infinite;
    /* Blinks every 2 seconds, infinitely */
}

.scholarship-link i {
    color: #ffc107;
    /* Yellow/gold color for the graduation cap icon */
    animation: blink 2s infinite;
    /* Same blinking animation */
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
        /* Fully visible */
    }

    25%,
    75% {
        opacity: 0.3;
        /* Partially transparent during blink */
    }
}

/* Stop blinking on hover for better UX */
.scholarship-link:hover {
    animation: none;
}

.scholarship-link:hover i {
    animation: none;
    color: #ff6b35;
    /* Orange color on hover */
}
