/* Institute Name Styling */
.institute-name {
    display: block;
    font-size: 0.9em;
    line-height: 1.2;
    margin-top: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #0c4a6e, #0891b2, #7c3aed, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: shimmer 3s infinite;
}

.institute-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0891b2, #7c3aed, #f97316, transparent);
    animation: lineMove 3s infinite;
}

.institute-name em {
    font-style: normal;
    font-size: 0.9em;
    opacity: 0.8;
    font-weight: 400;
    text-transform: lowercase;
    vertical-align: baseline;
}

/* Animations */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes lineMove {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .institute-name {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .institute-name {
        font-size: 0.7em;
    }
}
