.admission-wrapper {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10;
}

.admission-card {
    position: sticky;
    width: 160px;
    /* 🔽 reduced size */
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.admission-card:hover {
    transform: scale(1.05);
}

.admission-card h1 {
    font-size: 14px;
}

.admission-card p {
    font-size: 11px;
    margin-bottom: 6px;
}

.admission-btn {
    background: #fff;
    color: #1e90ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
}

.admission-btn:hover {
    background: #1e90ff;
    color: #fff;
}

.admission-title {
    color: white;
    font-weight: 400;
    overflow: hidden;
    border-radius: 5px;
}